From e9282bb546f560da6396f44e2ce9e04136348e2c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 13 May 2020 08:22:52 -0700 Subject: [PATCH 01/52] add dmidecode parser --- jc/cli.py | 1 + jc/parsers/dmidecode.py | 174 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 175 insertions(+) create mode 100644 jc/parsers/dmidecode.py diff --git a/jc/cli.py b/jc/cli.py index d8a728ad..8ef97b5f 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -35,6 +35,7 @@ parsers = [ 'csv', 'df', 'dig', + 'dmidecode', 'du', 'env', 'file', diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py new file mode 100644 index 00000000..82d57ec4 --- /dev/null +++ b/jc/parsers/dmidecode.py @@ -0,0 +1,174 @@ +"""jc - JSON CLI output utility dmidecode Parser + +Usage: + + specify --dmidecode as the first argument if the piped input is coming from dmidecode + +Compatibility: + + 'linux' + +Examples: + + $ dmidecode | jc --dmidecode -p + [] + + $ dmidecode | jc --dmidecode -p -r + [] +""" +import jc.utils + + +class info(): + version = '1.0' + description = 'dmidecode command parser' + author = 'Kelly Brazil' + author_email = 'kellyjonbrazil@gmail.com' + # details = 'enter any other details here' + + # compatible options: linux, darwin, cygwin, win32, aix, freebsd + compatible = ['linux'] + magic_commands = ['dmidecode'] + + +__version__ = info.version + + +def process(proc_data): + """ + Final processing to conform to the schema. + + Parameters: + + proc_data: (dictionary) raw structured data to process + + Returns: + + List of dictionaries. Structured data with the following schema: + + [ + { + "dmidecode": string, + "bar": boolean, + "baz": integer + } + ] + """ + + # rebuild output for added semantic information + return proc_data + + +def parse(data, raw=False, quiet=False): + """ + Main text parsing function + + Parameters: + + data: (string) text data to parse + raw: (boolean) output preprocessed JSON if True + quiet: (boolean) suppress warning messages if True + + Returns: + + List of dictionaries. Raw or processed structured data. + """ + if not quiet: + jc.utils.compatibility(__name__, info.compatible) + + item_header = False + item_values = False + value_list = False + item = None + attribute = None + values = None + raw_output = [] + + for line in filter(None, data.replace('\t', '').splitlines()): + + # header + if line.startswith('Handle ') and line.endswith('bytes'): + item_header = True + item_values = False + value_list = False + + if item: + raw_output.append(item) + + # Handle 0x0000, DMI type 0, 24 bytes + header = line.replace(',', ' ').split() + item = { + 'handle': header[1], + 'type': header[4], + 'bytes': header[5] + } + continue + + # description + if item_header: + item_header = False + item_values = True + value_list = False + + item['description'] = line + item['values'] = {} + continue + + # keys and values + if item_values and not value_list and not line.strip().endswith(':'): + item_header = False + item_values = True + value_list = False + + if values: + item['values'][attribute] = values + values = [] + + if len(line.split(':', maxsplit=1)) == 2: + key = line.split(':', maxsplit=1)[0].strip().lower().replace(' ', '_') + val = line.split(':', maxsplit=1)[1].strip() + item['values'].update({key: val}) + else: + pass + continue + + # back to keys and values when inside multi-line key + if item_values and value_list and len(line.split(':', maxsplit=1)) == 2: + item_header = False + item_values = True + value_list = False + + if values: + item['values'][attribute] = values + values = [] + + key = line.split(':', maxsplit=1)[0].strip().lower().replace(' ', '_') + val = line.split(':', maxsplit=1)[1].strip() + item['values'].update({key: val}) + continue + + # multi-line key + if item_values and line.strip().endswith(':'): + item_header = False + item_values = True + value_list = True + + if values: + item['values'][attribute] = values + + attribute = line[:-1].strip().lower().replace(' ', '_') + values = [] + continue + + # multi-line values + if value_list: + values.append(line) + continue + + if item: + raw_output.append(item) + + if raw: + return raw_output + else: + return process(raw_output) From 4d3e65b980d50164b8220e59560822b9871580ea Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 13 May 2020 09:00:32 -0700 Subject: [PATCH 02/52] fix missing values --- jc/parsers/dmidecode.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index 82d57ec4..99999904 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -93,6 +93,9 @@ def parse(data, raw=False, quiet=False): value_list = False if item: + if values: + item['values'][attribute] = values + values = [] raw_output.append(item) # Handle 0x0000, DMI type 0, 24 bytes @@ -162,7 +165,7 @@ def parse(data, raw=False, quiet=False): # multi-line values if value_list: - values.append(line) + values.append(line.strip()) continue if item: From 6685138200d5955115707d04aad0293ea8af5b15 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 13 May 2020 09:25:02 -0700 Subject: [PATCH 03/52] fix for missing multi-line values that come immediately after a previous multi-line value --- jc/parsers/dmidecode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index 99999904..6a6506d7 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -136,7 +136,7 @@ def parse(data, raw=False, quiet=False): continue # back to keys and values when inside multi-line key - if item_values and value_list and len(line.split(':', maxsplit=1)) == 2: + if item_values and value_list and len(line.split(':', maxsplit=1)) == 2 and not line.strip().endswith(':'): item_header = False item_values = True value_list = False From 8900a59d4cb424ff58d1eb27f8fda7ea0a668a5c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 13 May 2020 09:31:12 -0700 Subject: [PATCH 04/52] simplify logic by removing redundant block --- jc/parsers/dmidecode.py | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index 6a6506d7..50d66cbe 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -118,25 +118,7 @@ def parse(data, raw=False, quiet=False): continue # keys and values - if item_values and not value_list and not line.strip().endswith(':'): - item_header = False - item_values = True - value_list = False - - if values: - item['values'][attribute] = values - values = [] - - if len(line.split(':', maxsplit=1)) == 2: - key = line.split(':', maxsplit=1)[0].strip().lower().replace(' ', '_') - val = line.split(':', maxsplit=1)[1].strip() - item['values'].update({key: val}) - else: - pass - continue - - # back to keys and values when inside multi-line key - if item_values and value_list and len(line.split(':', maxsplit=1)) == 2 and not line.strip().endswith(':'): + if item_values and len(line.split(':', maxsplit=1)) == 2 and not line.strip().endswith(':'): item_header = False item_values = True value_list = False From f90dec4c0ecf88623fb22273b7527ec8884826c4 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 13 May 2020 09:43:23 -0700 Subject: [PATCH 05/52] add examples to documentation --- jc/parsers/dmidecode.py | 99 ++++++++++++++++++++++++++++++++++++++--- 1 file changed, 94 insertions(+), 5 deletions(-) diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index 50d66cbe..13a8838b 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -11,10 +11,92 @@ Compatibility: Examples: $ dmidecode | jc --dmidecode -p - [] + [ + { + "handle": "0x0000", + "type": 0, + "bytes": 24, + "description": "BIOS Information", + "values": { + "vendor": "Phoenix Technologies LTD", + "version": "6.00", + "release_date": "04/13/2018", + "address": "0xEA490", + "runtime_size": "88944 bytes", + "rom_size": "64 kB", + "characteristics": [ + "ISA is supported", + "PCI is supported", + "PC Card (PCMCIA) is supported", + "PNP is supported", + "APM is supported", + "BIOS is upgradeable", + "BIOS shadowing is allowed", + "ESCD support is available", + "Boot from CD is supported", + "Selectable boot is supported", + "EDD is supported", + "Print screen service is supported (int 5h)", + "8042 keyboard services are supported (int 9h)", + "Serial services are supported (int 14h)", + "Printer services are supported (int 17h)", + "CGA/mono video services are supported (int 10h)", + "ACPI is supported", + "Smart battery is supported", + "BIOS boot specification is supported", + "Function key-initiated network boot is supported", + "Targeted content distribution is supported" + ], + "bios_revision": "4.6", + "firmware_revision": "0.0" + } + }, + ... + ] $ dmidecode | jc --dmidecode -p -r - [] + [ + { + "handle": "0x0000", + "type": "0", + "bytes": "24", + "description": "BIOS Information", + "values": { + "vendor": "Phoenix Technologies LTD", + "version": "6.00", + "release_date": "04/13/2018", + "address": "0xEA490", + "runtime_size": "88944 bytes", + "rom_size": "64 kB", + "characteristics": [ + "ISA is supported", + "PCI is supported", + "PC Card (PCMCIA) is supported", + "PNP is supported", + "APM is supported", + "BIOS is upgradeable", + "BIOS shadowing is allowed", + "ESCD support is available", + "Boot from CD is supported", + "Selectable boot is supported", + "EDD is supported", + "Print screen service is supported (int 5h)", + "8042 keyboard services are supported (int 9h)", + "Serial services are supported (int 14h)", + "Printer services are supported (int 17h)", + "CGA/mono video services are supported (int 10h)", + "ACPI is supported", + "Smart battery is supported", + "BIOS boot specification is supported", + "Function key-initiated network boot is supported", + "Targeted content distribution is supported" + ], + "bios_revision": "4.6", + "firmware_revision": "0.0" + } + }, + ... + ] """ import jc.utils @@ -48,9 +130,16 @@ def process(proc_data): [ { - "dmidecode": string, - "bar": boolean, - "baz": integer + "handle": string, + "type": integer, + "bytes": integer, + "description": string, + "values": { + "lowercase_no_spaces_keys": string, + "multiline_key_values": [ + string, + ] + } } ] """ From 76eca3b65911a0a340d3d94322a8145ee89c50da Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 13 May 2020 09:43:35 -0700 Subject: [PATCH 06/52] add dmidecode --- docgen.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docgen.sh b/docgen.sh index f09c7f85..4c58b0c5 100755 --- a/docgen.sh +++ b/docgen.sh @@ -13,6 +13,7 @@ pydocmd simple jc.parsers.crontab_u+ > ../docs/parsers/crontab_u.md pydocmd simple jc.parsers.csv+ > ../docs/parsers/csv.md pydocmd simple jc.parsers.df+ > ../docs/parsers/df.md pydocmd simple jc.parsers.dig+ > ../docs/parsers/dig.md +pydocmd simple jc.parsers.dmidecode+ > ../docs/parsers/dmidecode.md pydocmd simple jc.parsers.du+ > ../docs/parsers/du.md pydocmd simple jc.parsers.env+ > ../docs/parsers/env.md pydocmd simple jc.parsers.file+ > ../docs/parsers/file.md From addb234e6162c58750cb67947bc4776635bf54fb Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 13 May 2020 09:44:20 -0700 Subject: [PATCH 07/52] add dmidecode doc --- docs/parsers/dmidecode.md | 153 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100644 docs/parsers/dmidecode.md diff --git a/docs/parsers/dmidecode.md b/docs/parsers/dmidecode.md new file mode 100644 index 00000000..af933f33 --- /dev/null +++ b/docs/parsers/dmidecode.md @@ -0,0 +1,153 @@ +# jc.parsers.dmidecode +jc - JSON CLI output utility dmidecode Parser + +Usage: + + specify --dmidecode as the first argument if the piped input is coming from dmidecode + +Compatibility: + + 'linux' + +Examples: + + $ dmidecode | jc --dmidecode -p + [ + { + "handle": "0x0000", + "type": 0, + "bytes": 24, + "description": "BIOS Information", + "values": { + "vendor": "Phoenix Technologies LTD", + "version": "6.00", + "release_date": "04/13/2018", + "address": "0xEA490", + "runtime_size": "88944 bytes", + "rom_size": "64 kB", + "characteristics": [ + "ISA is supported", + "PCI is supported", + "PC Card (PCMCIA) is supported", + "PNP is supported", + "APM is supported", + "BIOS is upgradeable", + "BIOS shadowing is allowed", + "ESCD support is available", + "Boot from CD is supported", + "Selectable boot is supported", + "EDD is supported", + "Print screen service is supported (int 5h)", + "8042 keyboard services are supported (int 9h)", + "Serial services are supported (int 14h)", + "Printer services are supported (int 17h)", + "CGA/mono video services are supported (int 10h)", + "ACPI is supported", + "Smart battery is supported", + "BIOS boot specification is supported", + "Function key-initiated network boot is supported", + "Targeted content distribution is supported" + ], + "bios_revision": "4.6", + "firmware_revision": "0.0" + } + }, + ... + ] + + $ dmidecode | jc --dmidecode -p -r + [ + { + "handle": "0x0000", + "type": "0", + "bytes": "24", + "description": "BIOS Information", + "values": { + "vendor": "Phoenix Technologies LTD", + "version": "6.00", + "release_date": "04/13/2018", + "address": "0xEA490", + "runtime_size": "88944 bytes", + "rom_size": "64 kB", + "characteristics": [ + "ISA is supported", + "PCI is supported", + "PC Card (PCMCIA) is supported", + "PNP is supported", + "APM is supported", + "BIOS is upgradeable", + "BIOS shadowing is allowed", + "ESCD support is available", + "Boot from CD is supported", + "Selectable boot is supported", + "EDD is supported", + "Print screen service is supported (int 5h)", + "8042 keyboard services are supported (int 9h)", + "Serial services are supported (int 14h)", + "Printer services are supported (int 17h)", + "CGA/mono video services are supported (int 10h)", + "ACPI is supported", + "Smart battery is supported", + "BIOS boot specification is supported", + "Function key-initiated network boot is supported", + "Targeted content distribution is supported" + ], + "bios_revision": "4.6", + "firmware_revision": "0.0" + } + }, + ... + ] + +## info +```python +info(self, /, *args, **kwargs) +``` + +## process +```python +process(proc_data) +``` + +Final processing to conform to the schema. + +Parameters: + + proc_data: (dictionary) raw structured data to process + +Returns: + + List of dictionaries. Structured data with the following schema: + + [ + { + "handle": string, + "type": integer, + "bytes": integer, + "description": string, + "values": { + "lowercase_no_spaces_keys": string, + "multiline_key_values": [ + string, + ] + } + } + ] + +## parse +```python +parse(data, raw=False, quiet=False) +``` + +Main text parsing function + +Parameters: + + data: (string) text data to parse + raw: (boolean) output preprocessed JSON if True + quiet: (boolean) suppress warning messages if True + +Returns: + + List of dictionaries. Raw or processed structured data. + From e53b9f5992450b53efc886b4fa9ca16f3dd07530 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 13 May 2020 10:12:40 -0700 Subject: [PATCH 08/52] add caveats to documentation --- jc/parsers/dmidecode.py | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index 13a8838b..02ff9542 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -4,6 +4,43 @@ Usage: specify --dmidecode as the first argument if the piped input is coming from dmidecode + Note: Because the output of dmidecode has some quirks, there may (rarely) be some missing data. + For example, with mixed single and multi-line items only the first item is output. + + this: + Associated Memory Slots: 2 + 0x0006 + 0x0007 + + is converted to: + "associated_memory_slots": "2", + + Very rarely there is an item with multiple sub-items and descriptions. These items will + become corrupted. + + this: + Handle 0x019F, DMI type 10, 8 bytes + On Board Device 1 Information + Type: Video + Status: Disabled + Description: VMware SVGA II + On Board Device 2 Information + Type: Sound + Status: Disabled + Description: ES1371 + + is converted to: + { + "handle": "0x019F", + "type": 10, + "bytes": 8, + "description": "On Board Device 1 Information", + "values": { + "type": "Sound", + "status": "Disabled", + "description": "ES1371" + } + Compatibility: 'linux' From 2f654b5f1acda01192294f4c18a5a31363e7f387 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 13 May 2020 10:13:27 -0700 Subject: [PATCH 09/52] doc update --- docs/parsers/dmidecode.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/docs/parsers/dmidecode.md b/docs/parsers/dmidecode.md index af933f33..ed2bc0c9 100644 --- a/docs/parsers/dmidecode.md +++ b/docs/parsers/dmidecode.md @@ -5,6 +5,43 @@ Usage: specify --dmidecode as the first argument if the piped input is coming from dmidecode + Note: Because the output of dmidecode has some quirks, there may (rarely) be some missing data. + For example, with mixed single and multi-line items only the first item is output. + + this: + Associated Memory Slots: 2 + 0x0006 + 0x0007 + + is converted to: + "associated_memory_slots": "2", + + Very rarely there is an item with multiple sub-items and descriptions. These items will + become corrupted. + + this: + Handle 0x019F, DMI type 10, 8 bytes + On Board Device 1 Information + Type: Video + Status: Disabled + Description: VMware SVGA II + On Board Device 2 Information + Type: Sound + Status: Disabled + Description: ES1371 + + is converted to: + { + "handle": "0x019F", + "type": 10, + "bytes": 8, + "description": "On Board Device 1 Information", + "values": { + "type": "Sound", + "status": "Disabled", + "description": "ES1371" + } + Compatibility: 'linux' From 29d6670119d8fcd0344e90f01bfb6260aa936e50 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 13 May 2020 10:18:49 -0700 Subject: [PATCH 10/52] convert integers --- jc/parsers/dmidecode.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index 02ff9542..12f0e885 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -180,8 +180,16 @@ def process(proc_data): } ] """ + for entry in proc_data: + int_list = ['type', 'bytes'] + for key in int_list: + if key in entry: + try: + key_int = int(entry[key]) + entry[key] = key_int + except (ValueError): + entry[key] = None - # rebuild output for added semantic information return proc_data From 09b3b4932b0fa4a2b18c88a8465c15a194b727e6 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 13 May 2020 10:51:38 -0700 Subject: [PATCH 11/52] add dmidecode output fixtures --- tests/fixtures/centos-7.7/dmidecode.out | 11810 ++++++++++++++++++++ tests/fixtures/fedora32/dmidecode.out | 11810 ++++++++++++++++++++ tests/fixtures/ubuntu-18.04/dmidecode.out | 11810 ++++++++++++++++++++ 3 files changed, 35430 insertions(+) create mode 100644 tests/fixtures/centos-7.7/dmidecode.out create mode 100644 tests/fixtures/fedora32/dmidecode.out create mode 100644 tests/fixtures/ubuntu-18.04/dmidecode.out diff --git a/tests/fixtures/centos-7.7/dmidecode.out b/tests/fixtures/centos-7.7/dmidecode.out new file mode 100644 index 00000000..b15f125d --- /dev/null +++ b/tests/fixtures/centos-7.7/dmidecode.out @@ -0,0 +1,11810 @@ +# dmidecode 3.2 +Getting SMBIOS data from sysfs. +SMBIOS 2.7 present. +620 structures occupying 29060 bytes. +Table at 0x000E0010. + +Handle 0x0000, DMI type 0, 24 bytes +BIOS Information + Vendor: Phoenix Technologies LTD + Version: 6.00 + Release Date: 04/13/2018 + Address: 0xEA490 + Runtime Size: 88944 bytes + ROM Size: 64 kB + Characteristics: + ISA is supported + PCI is supported + PC Card (PCMCIA) is supported + PNP is supported + APM is supported + BIOS is upgradeable + BIOS shadowing is allowed + ESCD support is available + Boot from CD is supported + Selectable boot is supported + EDD is supported + Print screen service is supported (int 5h) + 8042 keyboard services are supported (int 9h) + Serial services are supported (int 14h) + Printer services are supported (int 17h) + CGA/mono video services are supported (int 10h) + ACPI is supported + Smart battery is supported + BIOS boot specification is supported + Function key-initiated network boot is supported + Targeted content distribution is supported + BIOS Revision: 4.6 + Firmware Revision: 0.0 + +Handle 0x0001, DMI type 1, 27 bytes +System Information + Manufacturer: VMware, Inc. + Product Name: VMware Virtual Platform + Version: None + Serial Number: VMware-56 4d fd 28 89 33 f8 e2-64 74 01 59 92 3b 58 0e + UUID: 28fd4d56-3389-e2f8-6474-0159923b580e + Wake-up Type: Power Switch + SKU Number: Not Specified + Family: Not Specified + +Handle 0x0002, DMI type 2, 15 bytes +Base Board Information + Manufacturer: Intel Corporation + Product Name: 440BX Desktop Reference Platform + Version: None + Serial Number: None + Asset Tag: Not Specified + Features: None + Location In Chassis: Not Specified + Chassis Handle: 0x0000 + Type: Unknown + Contained Object Handles: 0 + +Handle 0x0003, DMI type 3, 21 bytes +Chassis Information + Manufacturer: No Enclosure + Type: Other + Lock: Not Present + Version: N/A + Serial Number: None + Asset Tag: No Asset Tag + Boot-up State: Safe + Power Supply State: Safe + Thermal State: Safe + Security Status: None + OEM Information: 0x00001234 + Height: Unspecified + Number Of Power Cords: Unspecified + Contained Elements: 0 + +Handle 0x0004, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #000 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 08 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Enabled + Upgrade: ZIF Socket + L1 Cache Handle: 0x0094 + L2 Cache Handle: 0x0114 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0005, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #001 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0095 + L2 Cache Handle: 0x0115 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0006, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #002 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0096 + L2 Cache Handle: 0x0116 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0007, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #003 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0097 + L2 Cache Handle: 0x0117 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0008, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #004 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0098 + L2 Cache Handle: 0x0118 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0009, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #005 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0099 + L2 Cache Handle: 0x0119 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #006 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009A + L2 Cache Handle: 0x011A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #007 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009B + L2 Cache Handle: 0x011B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #008 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009C + L2 Cache Handle: 0x011C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #009 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009D + L2 Cache Handle: 0x011D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #010 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009E + L2 Cache Handle: 0x011E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #011 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009F + L2 Cache Handle: 0x011F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0010, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #012 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A0 + L2 Cache Handle: 0x0120 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0011, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #013 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A1 + L2 Cache Handle: 0x0121 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0012, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #014 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A2 + L2 Cache Handle: 0x0122 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0013, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #015 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A3 + L2 Cache Handle: 0x0123 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0014, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #016 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A4 + L2 Cache Handle: 0x0124 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0015, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #017 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A5 + L2 Cache Handle: 0x0125 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0016, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #018 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A6 + L2 Cache Handle: 0x0126 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0017, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #019 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A7 + L2 Cache Handle: 0x0127 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0018, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #020 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A8 + L2 Cache Handle: 0x0128 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0019, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #021 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A9 + L2 Cache Handle: 0x0129 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #022 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AA + L2 Cache Handle: 0x012A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #023 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AB + L2 Cache Handle: 0x012B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #024 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AC + L2 Cache Handle: 0x012C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #025 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AD + L2 Cache Handle: 0x012D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #026 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AE + L2 Cache Handle: 0x012E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #027 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AF + L2 Cache Handle: 0x012F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0020, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #028 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B0 + L2 Cache Handle: 0x0130 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0021, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #029 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B1 + L2 Cache Handle: 0x0131 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0022, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #030 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B2 + L2 Cache Handle: 0x0132 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0023, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #031 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B3 + L2 Cache Handle: 0x0133 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0024, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #032 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B4 + L2 Cache Handle: 0x0134 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0025, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #033 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B5 + L2 Cache Handle: 0x0135 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0026, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #034 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B6 + L2 Cache Handle: 0x0136 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0027, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #035 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B7 + L2 Cache Handle: 0x0137 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0028, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #036 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B8 + L2 Cache Handle: 0x0138 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0029, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #037 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B9 + L2 Cache Handle: 0x0139 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #038 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BA + L2 Cache Handle: 0x013A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #039 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BB + L2 Cache Handle: 0x013B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #040 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BC + L2 Cache Handle: 0x013C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #041 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BD + L2 Cache Handle: 0x013D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #042 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BE + L2 Cache Handle: 0x013E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #043 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BF + L2 Cache Handle: 0x013F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0030, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #044 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C0 + L2 Cache Handle: 0x0140 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0031, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #045 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C1 + L2 Cache Handle: 0x0141 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0032, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #046 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C2 + L2 Cache Handle: 0x0142 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0033, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #047 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C3 + L2 Cache Handle: 0x0143 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0034, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #048 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C4 + L2 Cache Handle: 0x0144 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0035, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #049 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C5 + L2 Cache Handle: 0x0145 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0036, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #050 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C6 + L2 Cache Handle: 0x0146 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0037, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #051 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C7 + L2 Cache Handle: 0x0147 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0038, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #052 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C8 + L2 Cache Handle: 0x0148 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0039, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #053 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C9 + L2 Cache Handle: 0x0149 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #054 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CA + L2 Cache Handle: 0x014A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #055 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CB + L2 Cache Handle: 0x014B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #056 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CC + L2 Cache Handle: 0x014C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #057 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CD + L2 Cache Handle: 0x014D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #058 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CE + L2 Cache Handle: 0x014E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #059 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CF + L2 Cache Handle: 0x014F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0040, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #060 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D0 + L2 Cache Handle: 0x0150 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0041, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #061 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D1 + L2 Cache Handle: 0x0151 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0042, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #062 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D2 + L2 Cache Handle: 0x0152 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0043, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #063 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D3 + L2 Cache Handle: 0x0153 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0044, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #064 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D4 + L2 Cache Handle: 0x0154 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0045, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #065 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D5 + L2 Cache Handle: 0x0155 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0046, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #066 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D6 + L2 Cache Handle: 0x0156 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0047, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #067 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D7 + L2 Cache Handle: 0x0157 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0048, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #068 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D8 + L2 Cache Handle: 0x0158 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0049, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #069 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D9 + L2 Cache Handle: 0x0159 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #070 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DA + L2 Cache Handle: 0x015A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #071 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DB + L2 Cache Handle: 0x015B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #072 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DC + L2 Cache Handle: 0x015C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #073 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DD + L2 Cache Handle: 0x015D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #074 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DE + L2 Cache Handle: 0x015E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #075 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DF + L2 Cache Handle: 0x015F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0050, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #076 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E0 + L2 Cache Handle: 0x0160 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0051, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #077 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E1 + L2 Cache Handle: 0x0161 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0052, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #078 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E2 + L2 Cache Handle: 0x0162 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0053, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #079 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E3 + L2 Cache Handle: 0x0163 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0054, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #080 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E4 + L2 Cache Handle: 0x0164 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0055, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #081 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E5 + L2 Cache Handle: 0x0165 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0056, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #082 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E6 + L2 Cache Handle: 0x0166 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0057, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #083 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E7 + L2 Cache Handle: 0x0167 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0058, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #084 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E8 + L2 Cache Handle: 0x0168 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0059, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #085 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E9 + L2 Cache Handle: 0x0169 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #086 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EA + L2 Cache Handle: 0x016A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #087 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EB + L2 Cache Handle: 0x016B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #088 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EC + L2 Cache Handle: 0x016C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #089 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00ED + L2 Cache Handle: 0x016D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #090 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EE + L2 Cache Handle: 0x016E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #091 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EF + L2 Cache Handle: 0x016F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0060, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #092 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F0 + L2 Cache Handle: 0x0170 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0061, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #093 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F1 + L2 Cache Handle: 0x0171 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0062, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #094 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F2 + L2 Cache Handle: 0x0172 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0063, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #095 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F3 + L2 Cache Handle: 0x0173 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0064, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #096 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F4 + L2 Cache Handle: 0x0174 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0065, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #097 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F5 + L2 Cache Handle: 0x0175 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0066, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #098 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F6 + L2 Cache Handle: 0x0176 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0067, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #099 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F7 + L2 Cache Handle: 0x0177 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0068, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #100 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F8 + L2 Cache Handle: 0x0178 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0069, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #101 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F9 + L2 Cache Handle: 0x0179 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #102 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FA + L2 Cache Handle: 0x017A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #103 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FB + L2 Cache Handle: 0x017B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #104 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FC + L2 Cache Handle: 0x017C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #105 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FD + L2 Cache Handle: 0x017D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #106 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FE + L2 Cache Handle: 0x017E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #107 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FF + L2 Cache Handle: 0x017F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0070, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #108 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0100 + L2 Cache Handle: 0x0180 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0071, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #109 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0101 + L2 Cache Handle: 0x0181 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0072, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #110 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0102 + L2 Cache Handle: 0x0182 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0073, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #111 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0103 + L2 Cache Handle: 0x0183 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0074, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #112 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0104 + L2 Cache Handle: 0x0184 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0075, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #113 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0105 + L2 Cache Handle: 0x0185 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0076, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #114 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0106 + L2 Cache Handle: 0x0186 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0077, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #115 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0107 + L2 Cache Handle: 0x0187 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0078, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #116 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0108 + L2 Cache Handle: 0x0188 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0079, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #117 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0109 + L2 Cache Handle: 0x0189 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #118 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010A + L2 Cache Handle: 0x018A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #119 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010B + L2 Cache Handle: 0x018B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #120 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010C + L2 Cache Handle: 0x018C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #121 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010D + L2 Cache Handle: 0x018D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #122 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010E + L2 Cache Handle: 0x018E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #123 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010F + L2 Cache Handle: 0x018F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0080, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #124 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0110 + L2 Cache Handle: 0x0190 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0081, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #125 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0111 + L2 Cache Handle: 0x0191 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0082, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #126 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0112 + L2 Cache Handle: 0x0192 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0083, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #127 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0113 + L2 Cache Handle: 0x0193 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0084, DMI type 5, 46 bytes +Memory Controller Information + Error Detecting Method: None + Error Correcting Capabilities: + None + Supported Interleave: One-way Interleave + Current Interleave: One-way Interleave + Maximum Memory Module Size: 32768 MB + Maximum Total Memory Size: 491520 MB + Supported Speeds: + 70 ns + 60 ns + Supported Memory Types: + FPM + EDO + DIMM + SDRAM + Memory Module Voltage: 3.3 V + Associated Memory Slots: 15 + 0x0006 + 0x0007 + 0x0008 + 0x0009 + 0x000A + 0x000B + 0x000C + 0x000D + 0x000E + 0x000F + 0x0010 + 0x0011 + 0x0012 + 0x0013 + 0x0014 + Enabled Error Correcting Capabilities: + None + +Handle 0x0085, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #0 + Bank Connections: None + Current Speed: Unknown + Type: EDO DIMM + Installed Size: 4096 MB (Single-bank Connection) + Enabled Size: 4096 MB (Single-bank Connection) + Error Status: OK + +Handle 0x0086, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #1 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0087, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #2 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0088, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #3 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0089, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #4 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008A, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #5 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008B, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #6 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008C, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #7 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008D, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #8 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008E, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #9 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008F, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #10 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0090, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #11 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0091, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #12 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0092, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #13 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0093, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #14 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0094, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0095, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0096, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0097, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0098, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0099, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00ED, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0100, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0101, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0102, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0103, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0104, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0105, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0106, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0107, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0108, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0109, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0110, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0111, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0112, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0113, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0114, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0115, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0116, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0117, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0118, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0119, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0120, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0121, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0122, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0123, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0124, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0125, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0126, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0127, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0128, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0129, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0130, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0131, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0132, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0133, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0134, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0135, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0136, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0137, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0138, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0139, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0140, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0141, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0142, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0143, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0144, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0145, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0146, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0147, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0148, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0149, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0150, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0151, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0152, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0153, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0154, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0155, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0156, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0157, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0158, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0159, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0160, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0161, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0162, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0163, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0164, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0165, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0166, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0167, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0168, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0169, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0170, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0171, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0172, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0173, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0174, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0175, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0176, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0177, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0178, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0179, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0180, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0181, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0182, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0183, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0184, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0185, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0186, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0187, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0188, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0189, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0190, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0191, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0192, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0193, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0194, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J19 + Internal Connector Type: 9 Pin Dual Inline (pin 10 cut) + External Reference Designator: COM 1 + External Connector Type: DB-9 male + Port Type: Serial Port 16550A Compatible + +Handle 0x0195, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J23 + Internal Connector Type: 25 Pin Dual Inline (pin 26 cut) + External Reference Designator: Parallel + External Connector Type: DB-25 female + Port Type: Parallel Port ECP/EPP + +Handle 0x0196, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J11 + Internal Connector Type: None + External Reference Designator: Keyboard + External Connector Type: Circular DIN-8 male + Port Type: Keyboard Port + +Handle 0x0197, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J12 + Internal Connector Type: None + External Reference Designator: PS/2 Mouse + External Connector Type: Circular DIN-8 male + Port Type: Keyboard Port + +Handle 0x0198, DMI type 9, 17 bytes +System Slot Information + Designation: ISA Slot J8 + Type: 16-bit ISA + Current Usage: Unknown + Length: Short + Characteristics: + 5.0 V is provided + Bus Address: 00ff:ff:1f.7 + +Handle 0x0199, DMI type 9, 17 bytes +System Slot Information + Designation: ISA Slot J9 + Type: 16-bit ISA + Current Usage: Unknown + Length: Short + Characteristics: + 5.0 V is provided + Bus Address: 00ff:ff:1f.7 + +Handle 0x019A, DMI type 9, 17 bytes +System Slot Information + Designation: ISA Slot J10 + Type: 16-bit ISA + Current Usage: Unknown + Length: Short + Characteristics: + 5.0 V is provided + Bus Address: 00ff:ff:1f.7 + +Handle 0x019B, DMI type 9, 17 bytes +System Slot Information + Designation: PCI Slot J11 + Type: 32-bit PCI + Current Usage: In Use + Length: Long + ID: 1 + Characteristics: + 5.0 V is provided + 3.3 V is provided + Bus Address: 0000:00:0f.0 + +Handle 0x019C, DMI type 9, 17 bytes +System Slot Information + Designation: PCI Slot J12 + Type: 32-bit PCI + Current Usage: In Use + Length: Long + ID: 2 + Characteristics: + 5.0 V is provided + 3.3 V is provided + Bus Address: 0000:00:10.0 + +Handle 0x019D, DMI type 9, 17 bytes +System Slot Information + Designation: PCI Slot J13 + Type: 32-bit PCI + Current Usage: In Use + Length: Long + ID: 3 + Characteristics: + 5.0 V is provided + 3.3 V is provided + Bus Address: 0000:00:11.0 + +Handle 0x019E, DMI type 9, 17 bytes +System Slot Information + Designation: PCI Slot J14 + Type: 32-bit PCI + Current Usage: Available + Length: Long + ID: 4 + Characteristics: + 5.0 V is provided + 3.3 V is provided + Bus Address: 0000:00:12.0 + +Handle 0x019F, DMI type 10, 8 bytes +On Board Device 1 Information + Type: Video + Status: Disabled + Description: VMware SVGA II +On Board Device 2 Information + Type: Sound + Status: Disabled + Description: ES1371 + +Handle 0x01A0, DMI type 11, 5 bytes +OEM Strings + String 1: [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] + String 2: Welcome to the Virtual Machine + +Handle 0x01A1, DMI type 15, 29 bytes +System Event Log + Area Length: 16 bytes + Header Start Offset: 0x0000 + Header Length: 16 bytes + Data Start Offset: 0x0010 + Access Method: General-purpose non-volatile data functions + Access Address: 0x0000 + Status: Invalid, Full + Change Token: 0x00000036 + Header Format: Type 1 + Supported Log Type Descriptors: 3 + Descriptor 1: POST error + Data Format 1: POST results bitmap + Descriptor 2: Single-bit ECC memory error + Data Format 2: Multiple-event + Descriptor 3: Multi-bit ECC memory error + Data Format 3: Multiple-event + +Handle 0x01A2, DMI type 16, 23 bytes +Physical Memory Array + Location: System Board Or Motherboard + Use: System Memory + Error Correction Type: None + Maximum Capacity: 65 GB + Error Information Handle: Not Provided + Number Of Devices: 64 + +Handle 0x01A3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: 4096 MB + Form Factor: DIMM + Set: None + Locator: RAM slot #0 + Bank Locator: RAM slot #0 + Type: DRAM + Type Detail: EDO + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01A4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #1 + Bank Locator: RAM slot #1 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01A5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #2 + Bank Locator: RAM slot #2 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01A6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #3 + Bank Locator: RAM slot #3 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01A7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #4 + Bank Locator: RAM slot #4 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01A8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #5 + Bank Locator: RAM slot #5 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01A9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #6 + Bank Locator: RAM slot #6 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01AA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #7 + Bank Locator: RAM slot #7 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01AB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #8 + Bank Locator: RAM slot #8 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01AC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #9 + Bank Locator: RAM slot #9 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01AD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #10 + Bank Locator: RAM slot #10 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01AE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #11 + Bank Locator: RAM slot #11 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01AF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #12 + Bank Locator: RAM slot #12 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #13 + Bank Locator: RAM slot #13 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #14 + Bank Locator: RAM slot #14 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #15 + Bank Locator: RAM slot #15 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #16 + Bank Locator: RAM slot #16 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #17 + Bank Locator: RAM slot #17 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #18 + Bank Locator: RAM slot #18 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #19 + Bank Locator: RAM slot #19 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #20 + Bank Locator: RAM slot #20 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #21 + Bank Locator: RAM slot #21 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #22 + Bank Locator: RAM slot #22 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01BA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #23 + Bank Locator: RAM slot #23 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01BB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #24 + Bank Locator: RAM slot #24 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01BC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #25 + Bank Locator: RAM slot #25 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01BD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #26 + Bank Locator: RAM slot #26 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01BE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #27 + Bank Locator: RAM slot #27 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01BF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #28 + Bank Locator: RAM slot #28 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #29 + Bank Locator: RAM slot #29 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #30 + Bank Locator: RAM slot #30 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #31 + Bank Locator: RAM slot #31 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #32 + Bank Locator: RAM slot #32 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #33 + Bank Locator: RAM slot #33 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #34 + Bank Locator: RAM slot #34 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #35 + Bank Locator: RAM slot #35 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #36 + Bank Locator: RAM slot #36 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #37 + Bank Locator: RAM slot #37 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #38 + Bank Locator: RAM slot #38 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01CA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #39 + Bank Locator: RAM slot #39 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01CB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #40 + Bank Locator: RAM slot #40 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01CC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #41 + Bank Locator: RAM slot #41 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01CD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #42 + Bank Locator: RAM slot #42 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01CE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #43 + Bank Locator: RAM slot #43 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01CF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #44 + Bank Locator: RAM slot #44 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #45 + Bank Locator: RAM slot #45 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #46 + Bank Locator: RAM slot #46 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #47 + Bank Locator: RAM slot #47 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #48 + Bank Locator: RAM slot #48 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #49 + Bank Locator: RAM slot #49 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #50 + Bank Locator: RAM slot #50 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #51 + Bank Locator: RAM slot #51 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #52 + Bank Locator: RAM slot #52 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #53 + Bank Locator: RAM slot #53 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #54 + Bank Locator: RAM slot #54 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01DA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #55 + Bank Locator: RAM slot #55 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01DB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #56 + Bank Locator: RAM slot #56 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01DC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #57 + Bank Locator: RAM slot #57 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01DD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #58 + Bank Locator: RAM slot #58 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01DE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #59 + Bank Locator: RAM slot #59 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01DF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #60 + Bank Locator: RAM slot #60 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #61 + Bank Locator: RAM slot #61 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #62 + Bank Locator: RAM slot #62 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #63 + Bank Locator: RAM slot #63 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #0 + Bank Locator: NVD #0 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #1 + Bank Locator: NVD #1 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #2 + Bank Locator: NVD #2 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #3 + Bank Locator: NVD #3 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #4 + Bank Locator: NVD #4 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #5 + Bank Locator: NVD #5 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #6 + Bank Locator: NVD #6 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01EA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #7 + Bank Locator: NVD #7 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01EB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #8 + Bank Locator: NVD #8 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01EC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #9 + Bank Locator: NVD #9 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01ED, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #10 + Bank Locator: NVD #10 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01EE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #11 + Bank Locator: NVD #11 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01EF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #12 + Bank Locator: NVD #12 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #13 + Bank Locator: NVD #13 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #14 + Bank Locator: NVD #14 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #15 + Bank Locator: NVD #15 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #16 + Bank Locator: NVD #16 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #17 + Bank Locator: NVD #17 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #18 + Bank Locator: NVD #18 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #19 + Bank Locator: NVD #19 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #20 + Bank Locator: NVD #20 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #21 + Bank Locator: NVD #21 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #22 + Bank Locator: NVD #22 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01FA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #23 + Bank Locator: NVD #23 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01FB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #24 + Bank Locator: NVD #24 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01FC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #25 + Bank Locator: NVD #25 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01FD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #26 + Bank Locator: NVD #26 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01FE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #27 + Bank Locator: NVD #27 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01FF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #28 + Bank Locator: NVD #28 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0200, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #29 + Bank Locator: NVD #29 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0201, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #30 + Bank Locator: NVD #30 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0202, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #31 + Bank Locator: NVD #31 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0203, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #32 + Bank Locator: NVD #32 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0204, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #33 + Bank Locator: NVD #33 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0205, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #34 + Bank Locator: NVD #34 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0206, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #35 + Bank Locator: NVD #35 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0207, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #36 + Bank Locator: NVD #36 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0208, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #37 + Bank Locator: NVD #37 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0209, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #38 + Bank Locator: NVD #38 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x020A, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #39 + Bank Locator: NVD #39 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x020B, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #40 + Bank Locator: NVD #40 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x020C, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #41 + Bank Locator: NVD #41 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x020D, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #42 + Bank Locator: NVD #42 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x020E, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #43 + Bank Locator: NVD #43 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x020F, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #44 + Bank Locator: NVD #44 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0210, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #45 + Bank Locator: NVD #45 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0211, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #46 + Bank Locator: NVD #46 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0212, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #47 + Bank Locator: NVD #47 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0213, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #48 + Bank Locator: NVD #48 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0214, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #49 + Bank Locator: NVD #49 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0215, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #50 + Bank Locator: NVD #50 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0216, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #51 + Bank Locator: NVD #51 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0217, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #52 + Bank Locator: NVD #52 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0218, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #53 + Bank Locator: NVD #53 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0219, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #54 + Bank Locator: NVD #54 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x021A, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #55 + Bank Locator: NVD #55 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x021B, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #56 + Bank Locator: NVD #56 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x021C, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #57 + Bank Locator: NVD #57 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x021D, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #58 + Bank Locator: NVD #58 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x021E, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #59 + Bank Locator: NVD #59 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x021F, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #60 + Bank Locator: NVD #60 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0220, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #61 + Bank Locator: NVD #61 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0221, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #62 + Bank Locator: NVD #62 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0222, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #63 + Bank Locator: NVD #63 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0223, DMI type 18, 23 bytes +32-bit Memory Error Information + Type: OK + Granularity: Unknown + Operation: Unknown + Vendor Syndrome: Unknown + Memory Array Address: Unknown + Device Address: Unknown + Resolution: Unknown + +Handle 0x0224, DMI type 19, 31 bytes +Memory Array Mapped Address + Starting Address: 0x00000000000 + Ending Address: 0x000FFFFFFFF + Range Size: 4 GB + Physical Array Handle: 0x0025 + Partition Width: 64 + +Handle 0x0225, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0026 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0226, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0027 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0227, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0028 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0228, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0029 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0229, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002A + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022A, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002B + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022B, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002C + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022C, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002D + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022D, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002E + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022E, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002F + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022F, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0030 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0230, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0031 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0231, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0032 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0232, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0033 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0233, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0034 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0234, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0035 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0235, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0036 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0236, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0037 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0237, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0038 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0238, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0039 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0239, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003A + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023A, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003B + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023B, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003C + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023C, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003D + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023D, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003E + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023E, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003F + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023F, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0040 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0240, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0041 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0241, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0042 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0242, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0043 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0243, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0044 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0244, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0045 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0245, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0046 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0246, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0047 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0247, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0048 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0248, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0049 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0249, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004A + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024A, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004B + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024B, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004C + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024C, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004D + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024D, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004E + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024E, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004F + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024F, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0050 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0250, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0051 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0251, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0052 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0252, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0053 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0253, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0054 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0254, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0055 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0255, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0056 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0256, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0057 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0257, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0058 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0258, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0059 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0259, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005A + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025A, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005B + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025B, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005C + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025C, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005D + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025D, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005E + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025E, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005F + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025F, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0060 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0260, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0061 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0261, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0062 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0262, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0063 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0263, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0064 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0264, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0065 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0265, DMI type 23, 13 bytes +System Reset + Status: Enabled + Watchdog Timer: Present + Boot Option: Do Not Reboot + Boot Option On Limit: Do Not Reboot + Reset Count: Unknown + Reset Limit: Unknown + Timer Interval: Unknown + Timeout: Unknown + +Handle 0x0266, DMI type 24, 5 bytes +Hardware Security + Power-On Password Status: Disabled + Keyboard Password Status: Unknown + Administrator Password Status: Enabled + Front Panel Reset Status: Unknown + +Handle 0x0267, DMI type 30, 6 bytes +Out-of-band Remote Access + Manufacturer Name: Intel + Inbound Connection: Enabled + Outbound Connection: Disabled + +Handle 0x0268, DMI type 32, 20 bytes +System Boot Information + Status: No errors detected + +Handle 0x0269, DMI type 33, 31 bytes +64-bit Memory Error Information + Type: OK + Granularity: Unknown + Operation: Unknown + Vendor Syndrome: Unknown + Memory Array Address: Unknown + Device Address: Unknown + Resolution: Unknown + +Handle 0x026A, DMI type 126, 4 bytes +Inactive + +Handle 0x026B, DMI type 127, 4 bytes +End Of Table + diff --git a/tests/fixtures/fedora32/dmidecode.out b/tests/fixtures/fedora32/dmidecode.out new file mode 100644 index 00000000..6ee5badf --- /dev/null +++ b/tests/fixtures/fedora32/dmidecode.out @@ -0,0 +1,11810 @@ +# dmidecode 3.2 +Getting SMBIOS data from sysfs. +SMBIOS 2.7 present. +620 structures occupying 29060 bytes. +Table at 0x000E0010. + +Handle 0x0000, DMI type 0, 24 bytes +BIOS Information + Vendor: Phoenix Technologies LTD + Version: 6.00 + Release Date: 04/13/2018 + Address: 0xEA490 + Runtime Size: 88944 bytes + ROM Size: 64 kB + Characteristics: + ISA is supported + PCI is supported + PC Card (PCMCIA) is supported + PNP is supported + APM is supported + BIOS is upgradeable + BIOS shadowing is allowed + ESCD support is available + Boot from CD is supported + Selectable boot is supported + EDD is supported + Print screen service is supported (int 5h) + 8042 keyboard services are supported (int 9h) + Serial services are supported (int 14h) + Printer services are supported (int 17h) + CGA/mono video services are supported (int 10h) + ACPI is supported + Smart battery is supported + BIOS boot specification is supported + Function key-initiated network boot is supported + Targeted content distribution is supported + BIOS Revision: 4.6 + Firmware Revision: 0.0 + +Handle 0x0001, DMI type 1, 27 bytes +System Information + Manufacturer: VMware, Inc. + Product Name: VMware Virtual Platform + Version: None + Serial Number: VMware-56 4d bf 23 01 aa 4e 9f-c3 92 24 bd 7b 66 16 68 + UUID: 23bf4d56-aa01-9f4e-c392-24bd7b661668 + Wake-up Type: Power Switch + SKU Number: Not Specified + Family: Not Specified + +Handle 0x0002, DMI type 2, 15 bytes +Base Board Information + Manufacturer: Intel Corporation + Product Name: 440BX Desktop Reference Platform + Version: None + Serial Number: None + Asset Tag: Not Specified + Features: None + Location In Chassis: Not Specified + Chassis Handle: 0x0000 + Type: Unknown + Contained Object Handles: 0 + +Handle 0x0003, DMI type 3, 21 bytes +Chassis Information + Manufacturer: No Enclosure + Type: Other + Lock: Not Present + Version: N/A + Serial Number: None + Asset Tag: No Asset Tag + Boot-up State: Safe + Power Supply State: Safe + Thermal State: Safe + Security Status: None + OEM Information: 0x00001234 + Height: Unspecified + Number Of Power Cords: Unspecified + Contained Elements: 0 + +Handle 0x0004, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #000 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 08 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Enabled + Upgrade: ZIF Socket + L1 Cache Handle: 0x0094 + L2 Cache Handle: 0x0114 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0005, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #001 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0095 + L2 Cache Handle: 0x0115 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0006, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #002 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0096 + L2 Cache Handle: 0x0116 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0007, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #003 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0097 + L2 Cache Handle: 0x0117 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0008, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #004 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0098 + L2 Cache Handle: 0x0118 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0009, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #005 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0099 + L2 Cache Handle: 0x0119 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #006 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009A + L2 Cache Handle: 0x011A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #007 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009B + L2 Cache Handle: 0x011B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #008 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009C + L2 Cache Handle: 0x011C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #009 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009D + L2 Cache Handle: 0x011D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #010 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009E + L2 Cache Handle: 0x011E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #011 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009F + L2 Cache Handle: 0x011F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0010, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #012 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A0 + L2 Cache Handle: 0x0120 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0011, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #013 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A1 + L2 Cache Handle: 0x0121 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0012, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #014 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A2 + L2 Cache Handle: 0x0122 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0013, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #015 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A3 + L2 Cache Handle: 0x0123 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0014, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #016 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A4 + L2 Cache Handle: 0x0124 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0015, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #017 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A5 + L2 Cache Handle: 0x0125 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0016, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #018 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A6 + L2 Cache Handle: 0x0126 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0017, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #019 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A7 + L2 Cache Handle: 0x0127 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0018, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #020 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A8 + L2 Cache Handle: 0x0128 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0019, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #021 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A9 + L2 Cache Handle: 0x0129 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #022 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AA + L2 Cache Handle: 0x012A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #023 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AB + L2 Cache Handle: 0x012B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #024 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AC + L2 Cache Handle: 0x012C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #025 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AD + L2 Cache Handle: 0x012D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #026 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AE + L2 Cache Handle: 0x012E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #027 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AF + L2 Cache Handle: 0x012F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0020, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #028 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B0 + L2 Cache Handle: 0x0130 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0021, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #029 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B1 + L2 Cache Handle: 0x0131 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0022, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #030 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B2 + L2 Cache Handle: 0x0132 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0023, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #031 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B3 + L2 Cache Handle: 0x0133 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0024, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #032 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B4 + L2 Cache Handle: 0x0134 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0025, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #033 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B5 + L2 Cache Handle: 0x0135 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0026, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #034 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B6 + L2 Cache Handle: 0x0136 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0027, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #035 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B7 + L2 Cache Handle: 0x0137 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0028, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #036 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B8 + L2 Cache Handle: 0x0138 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0029, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #037 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B9 + L2 Cache Handle: 0x0139 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #038 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BA + L2 Cache Handle: 0x013A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #039 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BB + L2 Cache Handle: 0x013B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #040 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BC + L2 Cache Handle: 0x013C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #041 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BD + L2 Cache Handle: 0x013D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #042 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BE + L2 Cache Handle: 0x013E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #043 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BF + L2 Cache Handle: 0x013F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0030, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #044 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C0 + L2 Cache Handle: 0x0140 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0031, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #045 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C1 + L2 Cache Handle: 0x0141 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0032, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #046 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C2 + L2 Cache Handle: 0x0142 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0033, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #047 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C3 + L2 Cache Handle: 0x0143 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0034, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #048 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C4 + L2 Cache Handle: 0x0144 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0035, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #049 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C5 + L2 Cache Handle: 0x0145 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0036, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #050 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C6 + L2 Cache Handle: 0x0146 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0037, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #051 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C7 + L2 Cache Handle: 0x0147 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0038, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #052 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C8 + L2 Cache Handle: 0x0148 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0039, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #053 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C9 + L2 Cache Handle: 0x0149 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #054 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CA + L2 Cache Handle: 0x014A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #055 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CB + L2 Cache Handle: 0x014B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #056 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CC + L2 Cache Handle: 0x014C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #057 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CD + L2 Cache Handle: 0x014D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #058 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CE + L2 Cache Handle: 0x014E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #059 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CF + L2 Cache Handle: 0x014F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0040, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #060 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D0 + L2 Cache Handle: 0x0150 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0041, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #061 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D1 + L2 Cache Handle: 0x0151 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0042, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #062 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D2 + L2 Cache Handle: 0x0152 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0043, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #063 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D3 + L2 Cache Handle: 0x0153 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0044, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #064 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D4 + L2 Cache Handle: 0x0154 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0045, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #065 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D5 + L2 Cache Handle: 0x0155 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0046, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #066 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D6 + L2 Cache Handle: 0x0156 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0047, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #067 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D7 + L2 Cache Handle: 0x0157 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0048, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #068 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D8 + L2 Cache Handle: 0x0158 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0049, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #069 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D9 + L2 Cache Handle: 0x0159 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #070 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DA + L2 Cache Handle: 0x015A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #071 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DB + L2 Cache Handle: 0x015B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #072 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DC + L2 Cache Handle: 0x015C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #073 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DD + L2 Cache Handle: 0x015D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #074 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DE + L2 Cache Handle: 0x015E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #075 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DF + L2 Cache Handle: 0x015F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0050, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #076 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E0 + L2 Cache Handle: 0x0160 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0051, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #077 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E1 + L2 Cache Handle: 0x0161 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0052, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #078 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E2 + L2 Cache Handle: 0x0162 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0053, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #079 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E3 + L2 Cache Handle: 0x0163 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0054, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #080 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E4 + L2 Cache Handle: 0x0164 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0055, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #081 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E5 + L2 Cache Handle: 0x0165 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0056, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #082 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E6 + L2 Cache Handle: 0x0166 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0057, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #083 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E7 + L2 Cache Handle: 0x0167 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0058, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #084 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E8 + L2 Cache Handle: 0x0168 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0059, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #085 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E9 + L2 Cache Handle: 0x0169 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #086 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EA + L2 Cache Handle: 0x016A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #087 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EB + L2 Cache Handle: 0x016B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #088 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EC + L2 Cache Handle: 0x016C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #089 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00ED + L2 Cache Handle: 0x016D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #090 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EE + L2 Cache Handle: 0x016E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #091 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EF + L2 Cache Handle: 0x016F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0060, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #092 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F0 + L2 Cache Handle: 0x0170 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0061, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #093 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F1 + L2 Cache Handle: 0x0171 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0062, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #094 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F2 + L2 Cache Handle: 0x0172 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0063, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #095 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F3 + L2 Cache Handle: 0x0173 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0064, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #096 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F4 + L2 Cache Handle: 0x0174 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0065, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #097 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F5 + L2 Cache Handle: 0x0175 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0066, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #098 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F6 + L2 Cache Handle: 0x0176 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0067, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #099 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F7 + L2 Cache Handle: 0x0177 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0068, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #100 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F8 + L2 Cache Handle: 0x0178 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0069, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #101 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F9 + L2 Cache Handle: 0x0179 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #102 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FA + L2 Cache Handle: 0x017A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #103 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FB + L2 Cache Handle: 0x017B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #104 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FC + L2 Cache Handle: 0x017C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #105 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FD + L2 Cache Handle: 0x017D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #106 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FE + L2 Cache Handle: 0x017E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #107 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FF + L2 Cache Handle: 0x017F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0070, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #108 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0100 + L2 Cache Handle: 0x0180 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0071, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #109 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0101 + L2 Cache Handle: 0x0181 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0072, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #110 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0102 + L2 Cache Handle: 0x0182 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0073, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #111 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0103 + L2 Cache Handle: 0x0183 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0074, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #112 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0104 + L2 Cache Handle: 0x0184 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0075, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #113 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0105 + L2 Cache Handle: 0x0185 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0076, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #114 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0106 + L2 Cache Handle: 0x0186 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0077, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #115 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0107 + L2 Cache Handle: 0x0187 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0078, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #116 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0108 + L2 Cache Handle: 0x0188 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0079, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #117 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0109 + L2 Cache Handle: 0x0189 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #118 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010A + L2 Cache Handle: 0x018A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #119 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010B + L2 Cache Handle: 0x018B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #120 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010C + L2 Cache Handle: 0x018C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #121 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010D + L2 Cache Handle: 0x018D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #122 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010E + L2 Cache Handle: 0x018E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #123 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010F + L2 Cache Handle: 0x018F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0080, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #124 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0110 + L2 Cache Handle: 0x0190 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0081, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #125 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0111 + L2 Cache Handle: 0x0191 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0082, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #126 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0112 + L2 Cache Handle: 0x0192 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0083, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #127 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0113 + L2 Cache Handle: 0x0193 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0084, DMI type 5, 46 bytes +Memory Controller Information + Error Detecting Method: None + Error Correcting Capabilities: + None + Supported Interleave: One-way Interleave + Current Interleave: One-way Interleave + Maximum Memory Module Size: 32768 MB + Maximum Total Memory Size: 491520 MB + Supported Speeds: + 70 ns + 60 ns + Supported Memory Types: + FPM + EDO + DIMM + SDRAM + Memory Module Voltage: 3.3 V + Associated Memory Slots: 15 + 0x0006 + 0x0007 + 0x0008 + 0x0009 + 0x000A + 0x000B + 0x000C + 0x000D + 0x000E + 0x000F + 0x0010 + 0x0011 + 0x0012 + 0x0013 + 0x0014 + Enabled Error Correcting Capabilities: + None + +Handle 0x0085, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #0 + Bank Connections: None + Current Speed: Unknown + Type: EDO DIMM + Installed Size: 4096 MB (Single-bank Connection) + Enabled Size: 4096 MB (Single-bank Connection) + Error Status: OK + +Handle 0x0086, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #1 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0087, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #2 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0088, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #3 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0089, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #4 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008A, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #5 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008B, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #6 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008C, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #7 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008D, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #8 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008E, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #9 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008F, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #10 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0090, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #11 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0091, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #12 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0092, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #13 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0093, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #14 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0094, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0095, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0096, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0097, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0098, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0099, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00ED, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0100, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0101, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0102, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0103, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0104, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0105, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0106, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0107, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0108, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0109, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0110, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0111, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0112, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0113, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0114, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0115, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0116, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0117, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0118, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0119, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0120, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0121, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0122, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0123, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0124, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0125, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0126, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0127, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0128, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0129, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0130, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0131, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0132, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0133, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0134, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0135, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0136, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0137, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0138, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0139, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0140, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0141, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0142, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0143, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0144, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0145, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0146, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0147, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0148, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0149, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0150, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0151, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0152, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0153, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0154, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0155, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0156, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0157, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0158, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0159, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0160, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0161, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0162, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0163, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0164, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0165, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0166, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0167, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0168, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0169, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0170, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0171, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0172, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0173, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0174, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0175, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0176, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0177, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0178, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0179, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0180, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0181, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0182, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0183, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0184, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0185, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0186, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0187, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0188, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0189, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0190, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0191, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0192, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0193, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24 MB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0194, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J19 + Internal Connector Type: 9 Pin Dual Inline (pin 10 cut) + External Reference Designator: COM 1 + External Connector Type: DB-9 male + Port Type: Serial Port 16550A Compatible + +Handle 0x0195, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J23 + Internal Connector Type: 25 Pin Dual Inline (pin 26 cut) + External Reference Designator: Parallel + External Connector Type: DB-25 female + Port Type: Parallel Port ECP/EPP + +Handle 0x0196, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J11 + Internal Connector Type: None + External Reference Designator: Keyboard + External Connector Type: Circular DIN-8 male + Port Type: Keyboard Port + +Handle 0x0197, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J12 + Internal Connector Type: None + External Reference Designator: PS/2 Mouse + External Connector Type: Circular DIN-8 male + Port Type: Keyboard Port + +Handle 0x0198, DMI type 9, 17 bytes +System Slot Information + Designation: ISA Slot J8 + Type: 16-bit ISA + Current Usage: Unknown + Length: Short + Characteristics: + 5.0 V is provided + Bus Address: 00ff:ff:1f.7 + +Handle 0x0199, DMI type 9, 17 bytes +System Slot Information + Designation: ISA Slot J9 + Type: 16-bit ISA + Current Usage: Unknown + Length: Short + Characteristics: + 5.0 V is provided + Bus Address: 00ff:ff:1f.7 + +Handle 0x019A, DMI type 9, 17 bytes +System Slot Information + Designation: ISA Slot J10 + Type: 16-bit ISA + Current Usage: Unknown + Length: Short + Characteristics: + 5.0 V is provided + Bus Address: 00ff:ff:1f.7 + +Handle 0x019B, DMI type 9, 17 bytes +System Slot Information + Designation: PCI Slot J11 + Type: 32-bit PCI + Current Usage: In Use + Length: Long + ID: 1 + Characteristics: + 5.0 V is provided + 3.3 V is provided + Bus Address: 0000:00:0f.0 + +Handle 0x019C, DMI type 9, 17 bytes +System Slot Information + Designation: PCI Slot J12 + Type: 32-bit PCI + Current Usage: In Use + Length: Long + ID: 2 + Characteristics: + 5.0 V is provided + 3.3 V is provided + Bus Address: 0000:00:10.0 + +Handle 0x019D, DMI type 9, 17 bytes +System Slot Information + Designation: PCI Slot J13 + Type: 32-bit PCI + Current Usage: In Use + Length: Long + ID: 3 + Characteristics: + 5.0 V is provided + 3.3 V is provided + Bus Address: 0000:00:11.0 + +Handle 0x019E, DMI type 9, 17 bytes +System Slot Information + Designation: PCI Slot J14 + Type: 32-bit PCI + Current Usage: Available + Length: Long + ID: 4 + Characteristics: + 5.0 V is provided + 3.3 V is provided + Bus Address: 0000:00:12.0 + +Handle 0x019F, DMI type 10, 8 bytes +On Board Device 1 Information + Type: Video + Status: Disabled + Description: VMware SVGA II +On Board Device 2 Information + Type: Sound + Status: Disabled + Description: ES1371 + +Handle 0x01A0, DMI type 11, 5 bytes +OEM Strings + String 1: [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] + String 2: Welcome to the Virtual Machine + +Handle 0x01A1, DMI type 15, 29 bytes +System Event Log + Area Length: 16 bytes + Header Start Offset: 0x0000 + Header Length: 16 bytes + Data Start Offset: 0x0010 + Access Method: General-purpose non-volatile data functions + Access Address: 0x0000 + Status: Invalid, Full + Change Token: 0x00000036 + Header Format: Type 1 + Supported Log Type Descriptors: 3 + Descriptor 1: POST error + Data Format 1: POST results bitmap + Descriptor 2: Single-bit ECC memory error + Data Format 2: Multiple-event + Descriptor 3: Multi-bit ECC memory error + Data Format 3: Multiple-event + +Handle 0x01A2, DMI type 16, 23 bytes +Physical Memory Array + Location: System Board Or Motherboard + Use: System Memory + Error Correction Type: None + Maximum Capacity: 65 GB + Error Information Handle: Not Provided + Number Of Devices: 64 + +Handle 0x01A3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: 4 GB + Form Factor: DIMM + Set: None + Locator: RAM slot #0 + Bank Locator: RAM slot #0 + Type: DRAM + Type Detail: EDO + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01A4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #1 + Bank Locator: RAM slot #1 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01A5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #2 + Bank Locator: RAM slot #2 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01A6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #3 + Bank Locator: RAM slot #3 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01A7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #4 + Bank Locator: RAM slot #4 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01A8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #5 + Bank Locator: RAM slot #5 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01A9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #6 + Bank Locator: RAM slot #6 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01AA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #7 + Bank Locator: RAM slot #7 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01AB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #8 + Bank Locator: RAM slot #8 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01AC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #9 + Bank Locator: RAM slot #9 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01AD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #10 + Bank Locator: RAM slot #10 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01AE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #11 + Bank Locator: RAM slot #11 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01AF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #12 + Bank Locator: RAM slot #12 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #13 + Bank Locator: RAM slot #13 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #14 + Bank Locator: RAM slot #14 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #15 + Bank Locator: RAM slot #15 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #16 + Bank Locator: RAM slot #16 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #17 + Bank Locator: RAM slot #17 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #18 + Bank Locator: RAM slot #18 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #19 + Bank Locator: RAM slot #19 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #20 + Bank Locator: RAM slot #20 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #21 + Bank Locator: RAM slot #21 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01B9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #22 + Bank Locator: RAM slot #22 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01BA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #23 + Bank Locator: RAM slot #23 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01BB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #24 + Bank Locator: RAM slot #24 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01BC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #25 + Bank Locator: RAM slot #25 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01BD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #26 + Bank Locator: RAM slot #26 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01BE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #27 + Bank Locator: RAM slot #27 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01BF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #28 + Bank Locator: RAM slot #28 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #29 + Bank Locator: RAM slot #29 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #30 + Bank Locator: RAM slot #30 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #31 + Bank Locator: RAM slot #31 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #32 + Bank Locator: RAM slot #32 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #33 + Bank Locator: RAM slot #33 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #34 + Bank Locator: RAM slot #34 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #35 + Bank Locator: RAM slot #35 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #36 + Bank Locator: RAM slot #36 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #37 + Bank Locator: RAM slot #37 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01C9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #38 + Bank Locator: RAM slot #38 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01CA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #39 + Bank Locator: RAM slot #39 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01CB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #40 + Bank Locator: RAM slot #40 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01CC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #41 + Bank Locator: RAM slot #41 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01CD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #42 + Bank Locator: RAM slot #42 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01CE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #43 + Bank Locator: RAM slot #43 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01CF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #44 + Bank Locator: RAM slot #44 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #45 + Bank Locator: RAM slot #45 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #46 + Bank Locator: RAM slot #46 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #47 + Bank Locator: RAM slot #47 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #48 + Bank Locator: RAM slot #48 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #49 + Bank Locator: RAM slot #49 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #50 + Bank Locator: RAM slot #50 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #51 + Bank Locator: RAM slot #51 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #52 + Bank Locator: RAM slot #52 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #53 + Bank Locator: RAM slot #53 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01D9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #54 + Bank Locator: RAM slot #54 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01DA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #55 + Bank Locator: RAM slot #55 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01DB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #56 + Bank Locator: RAM slot #56 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01DC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #57 + Bank Locator: RAM slot #57 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01DD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #58 + Bank Locator: RAM slot #58 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01DE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #59 + Bank Locator: RAM slot #59 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01DF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #60 + Bank Locator: RAM slot #60 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #61 + Bank Locator: RAM slot #61 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #62 + Bank Locator: RAM slot #62 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #63 + Bank Locator: RAM slot #63 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #0 + Bank Locator: NVD #0 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #1 + Bank Locator: NVD #1 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #2 + Bank Locator: NVD #2 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #3 + Bank Locator: NVD #3 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #4 + Bank Locator: NVD #4 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #5 + Bank Locator: NVD #5 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01E9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #6 + Bank Locator: NVD #6 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01EA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #7 + Bank Locator: NVD #7 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01EB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #8 + Bank Locator: NVD #8 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01EC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #9 + Bank Locator: NVD #9 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01ED, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #10 + Bank Locator: NVD #10 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01EE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #11 + Bank Locator: NVD #11 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01EF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #12 + Bank Locator: NVD #12 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #13 + Bank Locator: NVD #13 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #14 + Bank Locator: NVD #14 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #15 + Bank Locator: NVD #15 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #16 + Bank Locator: NVD #16 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #17 + Bank Locator: NVD #17 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #18 + Bank Locator: NVD #18 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #19 + Bank Locator: NVD #19 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #20 + Bank Locator: NVD #20 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #21 + Bank Locator: NVD #21 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01F9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #22 + Bank Locator: NVD #22 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01FA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #23 + Bank Locator: NVD #23 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01FB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #24 + Bank Locator: NVD #24 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01FC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #25 + Bank Locator: NVD #25 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01FD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #26 + Bank Locator: NVD #26 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01FE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #27 + Bank Locator: NVD #27 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x01FF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #28 + Bank Locator: NVD #28 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0200, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #29 + Bank Locator: NVD #29 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0201, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #30 + Bank Locator: NVD #30 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0202, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #31 + Bank Locator: NVD #31 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0203, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #32 + Bank Locator: NVD #32 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0204, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #33 + Bank Locator: NVD #33 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0205, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #34 + Bank Locator: NVD #34 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0206, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #35 + Bank Locator: NVD #35 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0207, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #36 + Bank Locator: NVD #36 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0208, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #37 + Bank Locator: NVD #37 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0209, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #38 + Bank Locator: NVD #38 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x020A, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #39 + Bank Locator: NVD #39 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x020B, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #40 + Bank Locator: NVD #40 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x020C, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #41 + Bank Locator: NVD #41 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x020D, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #42 + Bank Locator: NVD #42 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x020E, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #43 + Bank Locator: NVD #43 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x020F, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #44 + Bank Locator: NVD #44 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0210, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #45 + Bank Locator: NVD #45 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0211, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #46 + Bank Locator: NVD #46 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0212, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #47 + Bank Locator: NVD #47 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0213, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #48 + Bank Locator: NVD #48 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0214, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #49 + Bank Locator: NVD #49 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0215, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #50 + Bank Locator: NVD #50 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0216, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #51 + Bank Locator: NVD #51 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0217, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #52 + Bank Locator: NVD #52 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0218, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #53 + Bank Locator: NVD #53 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0219, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #54 + Bank Locator: NVD #54 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x021A, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #55 + Bank Locator: NVD #55 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x021B, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #56 + Bank Locator: NVD #56 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x021C, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #57 + Bank Locator: NVD #57 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x021D, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #58 + Bank Locator: NVD #58 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x021E, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #59 + Bank Locator: NVD #59 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x021F, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #60 + Bank Locator: NVD #60 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0220, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #61 + Bank Locator: NVD #61 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0221, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #62 + Bank Locator: NVD #62 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0222, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #63 + Bank Locator: NVD #63 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Memory Speed: Unknown + +Handle 0x0223, DMI type 18, 23 bytes +32-bit Memory Error Information + Type: OK + Granularity: Unknown + Operation: Unknown + Vendor Syndrome: Unknown + Memory Array Address: Unknown + Device Address: Unknown + Resolution: Unknown + +Handle 0x0224, DMI type 19, 31 bytes +Memory Array Mapped Address + Starting Address: 0x00000000000 + Ending Address: 0x000FFFFFFFF + Range Size: 4 GB + Physical Array Handle: 0x0025 + Partition Width: 64 + +Handle 0x0225, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0026 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0226, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0027 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0227, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0028 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0228, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0029 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0229, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002A + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022A, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002B + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022B, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002C + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022C, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002D + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022D, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002E + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022E, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002F + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022F, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0030 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0230, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0031 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0231, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0032 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0232, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0033 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0233, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0034 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0234, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0035 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0235, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0036 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0236, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0037 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0237, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0038 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0238, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0039 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0239, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003A + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023A, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003B + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023B, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003C + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023C, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003D + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023D, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003E + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023E, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003F + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023F, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0040 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0240, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0041 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0241, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0042 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0242, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0043 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0243, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0044 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0244, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0045 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0245, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0046 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0246, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0047 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0247, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0048 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0248, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0049 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0249, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004A + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024A, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004B + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024B, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004C + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024C, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004D + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024D, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004E + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024E, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004F + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024F, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0050 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0250, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0051 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0251, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0052 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0252, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0053 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0253, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0054 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0254, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0055 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0255, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0056 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0256, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0057 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0257, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0058 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0258, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0059 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0259, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005A + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025A, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005B + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025B, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005C + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025C, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005D + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025D, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005E + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025E, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005F + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025F, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0060 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0260, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0061 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0261, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0062 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0262, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0063 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0263, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0064 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0264, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x010BFEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0065 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0265, DMI type 23, 13 bytes +System Reset + Status: Enabled + Watchdog Timer: Present + Boot Option: Do Not Reboot + Boot Option On Limit: Do Not Reboot + Reset Count: Unknown + Reset Limit: Unknown + Timer Interval: Unknown + Timeout: Unknown + +Handle 0x0266, DMI type 24, 5 bytes +Hardware Security + Power-On Password Status: Disabled + Keyboard Password Status: Unknown + Administrator Password Status: Enabled + Front Panel Reset Status: Unknown + +Handle 0x0267, DMI type 30, 6 bytes +Out-of-band Remote Access + Manufacturer Name: Intel + Inbound Connection: Enabled + Outbound Connection: Disabled + +Handle 0x0268, DMI type 32, 20 bytes +System Boot Information + Status: No errors detected + +Handle 0x0269, DMI type 33, 31 bytes +64-bit Memory Error Information + Type: OK + Granularity: Unknown + Operation: Unknown + Vendor Syndrome: Unknown + Memory Array Address: Unknown + Device Address: Unknown + Resolution: Unknown + +Handle 0x026A, DMI type 126, 4 bytes +Inactive + +Handle 0x026B, DMI type 127, 4 bytes +End Of Table + diff --git a/tests/fixtures/ubuntu-18.04/dmidecode.out b/tests/fixtures/ubuntu-18.04/dmidecode.out new file mode 100644 index 00000000..8d50a28d --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/dmidecode.out @@ -0,0 +1,11810 @@ +# dmidecode 3.1 +Getting SMBIOS data from sysfs. +SMBIOS 2.7 present. +620 structures occupying 29060 bytes. +Table at 0x000E0010. + +Handle 0x0000, DMI type 0, 24 bytes +BIOS Information + Vendor: Phoenix Technologies LTD + Version: 6.00 + Release Date: 04/13/2018 + Address: 0xEA490 + Runtime Size: 88944 bytes + ROM Size: 64 kB + Characteristics: + ISA is supported + PCI is supported + PC Card (PCMCIA) is supported + PNP is supported + APM is supported + BIOS is upgradeable + BIOS shadowing is allowed + ESCD support is available + Boot from CD is supported + Selectable boot is supported + EDD is supported + Print screen service is supported (int 5h) + 8042 keyboard services are supported (int 9h) + Serial services are supported (int 14h) + Printer services are supported (int 17h) + CGA/mono video services are supported (int 10h) + ACPI is supported + Smart battery is supported + BIOS boot specification is supported + Function key-initiated network boot is supported + Targeted content distribution is supported + BIOS Revision: 4.6 + Firmware Revision: 0.0 + +Handle 0x0001, DMI type 1, 27 bytes +System Information + Manufacturer: VMware, Inc. + Product Name: VMware Virtual Platform + Version: None + Serial Number: VMware-56 4d 0d 1a cc cf 45 fa-43 81 ac 1f 3b 99 45 17 + UUID: 1A0D4D56-CFCC-FA45-4381-AC1F3B994517 + Wake-up Type: Power Switch + SKU Number: Not Specified + Family: Not Specified + +Handle 0x0002, DMI type 2, 15 bytes +Base Board Information + Manufacturer: Intel Corporation + Product Name: 440BX Desktop Reference Platform + Version: None + Serial Number: None + Asset Tag: Not Specified + Features: None + Location In Chassis: Not Specified + Chassis Handle: 0x0000 + Type: Unknown + Contained Object Handles: 0 + +Handle 0x0003, DMI type 3, 21 bytes +Chassis Information + Manufacturer: No Enclosure + Type: Other + Lock: Not Present + Version: N/A + Serial Number: None + Asset Tag: No Asset Tag + Boot-up State: Safe + Power Supply State: Safe + Thermal State: Safe + Security Status: None + OEM Information: 0x00001234 + Height: Unspecified + Number Of Power Cords: Unspecified + Contained Elements: 0 + +Handle 0x0004, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #000 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 08 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Enabled + Upgrade: ZIF Socket + L1 Cache Handle: 0x0094 + L2 Cache Handle: 0x0114 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0005, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #001 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0095 + L2 Cache Handle: 0x0115 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0006, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #002 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0096 + L2 Cache Handle: 0x0116 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0007, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #003 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0097 + L2 Cache Handle: 0x0117 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0008, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #004 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0098 + L2 Cache Handle: 0x0118 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0009, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #005 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0099 + L2 Cache Handle: 0x0119 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #006 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009A + L2 Cache Handle: 0x011A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #007 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009B + L2 Cache Handle: 0x011B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #008 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009C + L2 Cache Handle: 0x011C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #009 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009D + L2 Cache Handle: 0x011D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #010 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009E + L2 Cache Handle: 0x011E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x000F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #011 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x009F + L2 Cache Handle: 0x011F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0010, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #012 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A0 + L2 Cache Handle: 0x0120 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0011, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #013 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A1 + L2 Cache Handle: 0x0121 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0012, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #014 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A2 + L2 Cache Handle: 0x0122 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0013, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #015 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A3 + L2 Cache Handle: 0x0123 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0014, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #016 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A4 + L2 Cache Handle: 0x0124 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0015, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #017 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A5 + L2 Cache Handle: 0x0125 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0016, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #018 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A6 + L2 Cache Handle: 0x0126 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0017, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #019 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A7 + L2 Cache Handle: 0x0127 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0018, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #020 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A8 + L2 Cache Handle: 0x0128 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0019, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #021 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00A9 + L2 Cache Handle: 0x0129 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #022 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AA + L2 Cache Handle: 0x012A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #023 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AB + L2 Cache Handle: 0x012B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #024 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AC + L2 Cache Handle: 0x012C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #025 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AD + L2 Cache Handle: 0x012D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #026 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AE + L2 Cache Handle: 0x012E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x001F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #027 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00AF + L2 Cache Handle: 0x012F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0020, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #028 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B0 + L2 Cache Handle: 0x0130 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0021, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #029 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B1 + L2 Cache Handle: 0x0131 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0022, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #030 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B2 + L2 Cache Handle: 0x0132 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0023, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #031 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B3 + L2 Cache Handle: 0x0133 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0024, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #032 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B4 + L2 Cache Handle: 0x0134 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0025, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #033 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B5 + L2 Cache Handle: 0x0135 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0026, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #034 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B6 + L2 Cache Handle: 0x0136 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0027, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #035 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B7 + L2 Cache Handle: 0x0137 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0028, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #036 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B8 + L2 Cache Handle: 0x0138 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0029, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #037 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00B9 + L2 Cache Handle: 0x0139 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #038 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BA + L2 Cache Handle: 0x013A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #039 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BB + L2 Cache Handle: 0x013B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #040 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BC + L2 Cache Handle: 0x013C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #041 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BD + L2 Cache Handle: 0x013D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #042 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BE + L2 Cache Handle: 0x013E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x002F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #043 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00BF + L2 Cache Handle: 0x013F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0030, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #044 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C0 + L2 Cache Handle: 0x0140 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0031, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #045 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C1 + L2 Cache Handle: 0x0141 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0032, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #046 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C2 + L2 Cache Handle: 0x0142 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0033, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #047 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C3 + L2 Cache Handle: 0x0143 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0034, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #048 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C4 + L2 Cache Handle: 0x0144 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0035, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #049 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C5 + L2 Cache Handle: 0x0145 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0036, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #050 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C6 + L2 Cache Handle: 0x0146 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0037, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #051 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C7 + L2 Cache Handle: 0x0147 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0038, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #052 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C8 + L2 Cache Handle: 0x0148 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0039, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #053 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00C9 + L2 Cache Handle: 0x0149 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #054 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CA + L2 Cache Handle: 0x014A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #055 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CB + L2 Cache Handle: 0x014B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #056 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CC + L2 Cache Handle: 0x014C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #057 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CD + L2 Cache Handle: 0x014D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #058 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CE + L2 Cache Handle: 0x014E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x003F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #059 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00CF + L2 Cache Handle: 0x014F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0040, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #060 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D0 + L2 Cache Handle: 0x0150 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0041, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #061 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D1 + L2 Cache Handle: 0x0151 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0042, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #062 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D2 + L2 Cache Handle: 0x0152 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0043, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #063 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D3 + L2 Cache Handle: 0x0153 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0044, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #064 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D4 + L2 Cache Handle: 0x0154 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0045, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #065 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D5 + L2 Cache Handle: 0x0155 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0046, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #066 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D6 + L2 Cache Handle: 0x0156 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0047, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #067 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D7 + L2 Cache Handle: 0x0157 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0048, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #068 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D8 + L2 Cache Handle: 0x0158 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0049, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #069 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00D9 + L2 Cache Handle: 0x0159 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #070 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DA + L2 Cache Handle: 0x015A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #071 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DB + L2 Cache Handle: 0x015B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #072 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DC + L2 Cache Handle: 0x015C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #073 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DD + L2 Cache Handle: 0x015D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #074 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DE + L2 Cache Handle: 0x015E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x004F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #075 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00DF + L2 Cache Handle: 0x015F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0050, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #076 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E0 + L2 Cache Handle: 0x0160 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0051, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #077 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E1 + L2 Cache Handle: 0x0161 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0052, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #078 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E2 + L2 Cache Handle: 0x0162 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0053, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #079 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E3 + L2 Cache Handle: 0x0163 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0054, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #080 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E4 + L2 Cache Handle: 0x0164 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0055, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #081 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E5 + L2 Cache Handle: 0x0165 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0056, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #082 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E6 + L2 Cache Handle: 0x0166 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0057, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #083 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E7 + L2 Cache Handle: 0x0167 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0058, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #084 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E8 + L2 Cache Handle: 0x0168 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0059, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #085 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00E9 + L2 Cache Handle: 0x0169 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #086 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EA + L2 Cache Handle: 0x016A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #087 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EB + L2 Cache Handle: 0x016B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #088 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EC + L2 Cache Handle: 0x016C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #089 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00ED + L2 Cache Handle: 0x016D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #090 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EE + L2 Cache Handle: 0x016E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x005F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #091 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00EF + L2 Cache Handle: 0x016F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0060, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #092 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F0 + L2 Cache Handle: 0x0170 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0061, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #093 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F1 + L2 Cache Handle: 0x0171 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0062, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #094 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F2 + L2 Cache Handle: 0x0172 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0063, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #095 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F3 + L2 Cache Handle: 0x0173 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0064, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #096 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F4 + L2 Cache Handle: 0x0174 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0065, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #097 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F5 + L2 Cache Handle: 0x0175 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0066, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #098 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F6 + L2 Cache Handle: 0x0176 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0067, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #099 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F7 + L2 Cache Handle: 0x0177 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0068, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #100 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F8 + L2 Cache Handle: 0x0178 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0069, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #101 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00F9 + L2 Cache Handle: 0x0179 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #102 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FA + L2 Cache Handle: 0x017A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #103 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FB + L2 Cache Handle: 0x017B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #104 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FC + L2 Cache Handle: 0x017C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #105 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FD + L2 Cache Handle: 0x017D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #106 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FE + L2 Cache Handle: 0x017E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x006F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #107 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x00FF + L2 Cache Handle: 0x017F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0070, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #108 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0100 + L2 Cache Handle: 0x0180 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0071, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #109 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0101 + L2 Cache Handle: 0x0181 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0072, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #110 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0102 + L2 Cache Handle: 0x0182 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0073, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #111 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0103 + L2 Cache Handle: 0x0183 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0074, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #112 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0104 + L2 Cache Handle: 0x0184 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0075, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #113 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0105 + L2 Cache Handle: 0x0185 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0076, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #114 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0106 + L2 Cache Handle: 0x0186 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0077, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #115 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0107 + L2 Cache Handle: 0x0187 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0078, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #116 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0108 + L2 Cache Handle: 0x0188 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0079, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #117 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0109 + L2 Cache Handle: 0x0189 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007A, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #118 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010A + L2 Cache Handle: 0x018A + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007B, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #119 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010B + L2 Cache Handle: 0x018B + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007C, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #120 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010C + L2 Cache Handle: 0x018C + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007D, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #121 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010D + L2 Cache Handle: 0x018D + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007E, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #122 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010E + L2 Cache Handle: 0x018E + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x007F, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #123 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x010F + L2 Cache Handle: 0x018F + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0080, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #124 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0110 + L2 Cache Handle: 0x0190 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0081, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #125 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0111 + L2 Cache Handle: 0x0191 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0082, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #126 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0112 + L2 Cache Handle: 0x0192 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0083, DMI type 4, 42 bytes +Processor Information + Socket Designation: CPU #127 + Type: Central Processor + Family: Unknown + Manufacturer: GenuineIntel + ID: EA 06 00 00 FF FB 8B 0F + Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz + Voltage: 3.3 V + External Clock: Unknown + Max Speed: 30000 MHz + Current Speed: 2400 MHz + Status: Populated, Disabled By BIOS + Upgrade: ZIF Socket + L1 Cache Handle: 0x0113 + L2 Cache Handle: 0x0193 + L3 Cache Handle: Not Provided + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 1 + Core Enabled: 1 + Characteristics: + 64-bit capable + Execute Protection + +Handle 0x0084, DMI type 5, 46 bytes +Memory Controller Information + Error Detecting Method: None + Error Correcting Capabilities: + None + Supported Interleave: One-way Interleave + Current Interleave: One-way Interleave + Maximum Memory Module Size: 32768 MB + Maximum Total Memory Size: 491520 MB + Supported Speeds: + 70 ns + 60 ns + Supported Memory Types: + FPM + EDO + DIMM + SDRAM + Memory Module Voltage: 3.3 V + Associated Memory Slots: 15 + 0x0006 + 0x0007 + 0x0008 + 0x0009 + 0x000A + 0x000B + 0x000C + 0x000D + 0x000E + 0x000F + 0x0010 + 0x0011 + 0x0012 + 0x0013 + 0x0014 + Enabled Error Correcting Capabilities: + None + +Handle 0x0085, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #0 + Bank Connections: None + Current Speed: Unknown + Type: EDO DIMM + Installed Size: 2048 MB (Single-bank Connection) + Enabled Size: 2048 MB (Single-bank Connection) + Error Status: OK + +Handle 0x0086, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #1 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0087, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #2 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0088, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #3 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0089, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #4 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008A, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #5 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008B, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #6 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008C, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #7 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008D, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #8 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008E, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #9 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x008F, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #10 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0090, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #11 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0091, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #12 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0092, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #13 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0093, DMI type 6, 12 bytes +Memory Module Information + Socket Designation: RAM socket #14 + Bank Connections: None + Current Speed: Unknown + Type: DIMM + Installed Size: Not Installed + Enabled Size: Not Installed + Error Status: OK + +Handle 0x0094, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0095, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0096, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0097, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0098, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0099, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x009F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00A9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00AF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00B9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00BF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00C9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00CF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00D9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00DF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00E9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00ED, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00EF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F0, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F1, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F2, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F3, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F4, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F5, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F6, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F7, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F8, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00F9, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FA, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FB, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FC, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FD, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FE, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x00FF, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0100, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0101, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0102, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0103, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0104, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0105, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0106, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0107, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0108, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0109, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x010F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0110, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0111, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0112, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0113, DMI type 7, 19 bytes +Cache Information + Socket Designation: L1 + Configuration: Enabled, Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 16 kB + Maximum Size: 16 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Asynchronous + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0114, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0115, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0116, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0117, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0118, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0119, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x011F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0120, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0121, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0122, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0123, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0124, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0125, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0126, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0127, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0128, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0129, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x012F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0130, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0131, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0132, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0133, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0134, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0135, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0136, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0137, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0138, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0139, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x013F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0140, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0141, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0142, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0143, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0144, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0145, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0146, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0147, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0148, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0149, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x014F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0150, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0151, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0152, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0153, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0154, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0155, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0156, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0157, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0158, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0159, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x015F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0160, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0161, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0162, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0163, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0164, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0165, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0166, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0167, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0168, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0169, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x016F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0170, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0171, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0172, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0173, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0174, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0175, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0176, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0177, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0178, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0179, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x017F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0180, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0181, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0182, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0183, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0184, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0185, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0186, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0187, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0188, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0189, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018A, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018B, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018C, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018D, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018E, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x018F, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0190, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0191, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0192, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0193, DMI type 7, 19 bytes +Cache Information + Socket Designation: L2 + Configuration: Enabled, Socketed, Level 2 + Operational Mode: Write Back + Location: External + Installed Size: 0 kB + Maximum Size: 24576 kB + Supported SRAM Types: + Burst + Pipeline Burst + Asynchronous + Installed SRAM Type: Burst + Speed: Unknown + Error Correction Type: Unknown + System Type: Unknown + Associativity: Unknown + +Handle 0x0194, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J19 + Internal Connector Type: 9 Pin Dual Inline (pin 10 cut) + External Reference Designator: COM 1 + External Connector Type: DB-9 male + Port Type: Serial Port 16550A Compatible + +Handle 0x0195, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J23 + Internal Connector Type: 25 Pin Dual Inline (pin 26 cut) + External Reference Designator: Parallel + External Connector Type: DB-25 female + Port Type: Parallel Port ECP/EPP + +Handle 0x0196, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J11 + Internal Connector Type: None + External Reference Designator: Keyboard + External Connector Type: Circular DIN-8 male + Port Type: Keyboard Port + +Handle 0x0197, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J12 + Internal Connector Type: None + External Reference Designator: PS/2 Mouse + External Connector Type: Circular DIN-8 male + Port Type: Keyboard Port + +Handle 0x0198, DMI type 9, 17 bytes +System Slot Information + Designation: ISA Slot J8 + Type: 16-bit ISA + Current Usage: Unknown + Length: Short + Characteristics: + 5.0 V is provided + Bus Address: 00ff:ff:1f.7 + +Handle 0x0199, DMI type 9, 17 bytes +System Slot Information + Designation: ISA Slot J9 + Type: 16-bit ISA + Current Usage: Unknown + Length: Short + Characteristics: + 5.0 V is provided + Bus Address: 00ff:ff:1f.7 + +Handle 0x019A, DMI type 9, 17 bytes +System Slot Information + Designation: ISA Slot J10 + Type: 16-bit ISA + Current Usage: Unknown + Length: Short + Characteristics: + 5.0 V is provided + Bus Address: 00ff:ff:1f.7 + +Handle 0x019B, DMI type 9, 17 bytes +System Slot Information + Designation: PCI Slot J11 + Type: 32-bit PCI + Current Usage: In Use + Length: Long + ID: 1 + Characteristics: + 5.0 V is provided + 3.3 V is provided + Bus Address: 0000:00:0f.0 + +Handle 0x019C, DMI type 9, 17 bytes +System Slot Information + Designation: PCI Slot J12 + Type: 32-bit PCI + Current Usage: In Use + Length: Long + ID: 2 + Characteristics: + 5.0 V is provided + 3.3 V is provided + Bus Address: 0000:00:10.0 + +Handle 0x019D, DMI type 9, 17 bytes +System Slot Information + Designation: PCI Slot J13 + Type: 32-bit PCI + Current Usage: In Use + Length: Long + ID: 3 + Characteristics: + 5.0 V is provided + 3.3 V is provided + Bus Address: 0000:00:11.0 + +Handle 0x019E, DMI type 9, 17 bytes +System Slot Information + Designation: PCI Slot J14 + Type: 32-bit PCI + Current Usage: Available + Length: Long + ID: 4 + Characteristics: + 5.0 V is provided + 3.3 V is provided + Bus Address: 0000:00:12.0 + +Handle 0x019F, DMI type 10, 8 bytes +On Board Device 1 Information + Type: Video + Status: Disabled + Description: VMware SVGA II +On Board Device 2 Information + Type: Sound + Status: Disabled + Description: ES1371 + +Handle 0x01A0, DMI type 11, 5 bytes +OEM Strings + String 1: [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] + String 2: Welcome to the Virtual Machine + +Handle 0x01A1, DMI type 15, 29 bytes +System Event Log + Area Length: 16 bytes + Header Start Offset: 0x0000 + Header Length: 16 bytes + Data Start Offset: 0x0010 + Access Method: General-purpose non-volatile data functions + Access Address: 0x0000 + Status: Invalid, Full + Change Token: 0x00000036 + Header Format: Type 1 + Supported Log Type Descriptors: 3 + Descriptor 1: POST error + Data Format 1: POST results bitmap + Descriptor 2: Single-bit ECC memory error + Data Format 2: Multiple-event + Descriptor 3: Multi-bit ECC memory error + Data Format 3: Multiple-event + +Handle 0x01A2, DMI type 16, 23 bytes +Physical Memory Array + Location: System Board Or Motherboard + Use: System Memory + Error Correction Type: None + Maximum Capacity: 3 GB + Error Information Handle: Not Provided + Number Of Devices: 64 + +Handle 0x01A3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: 2048 MB + Form Factor: DIMM + Set: None + Locator: RAM slot #0 + Bank Locator: RAM slot #0 + Type: DRAM + Type Detail: EDO + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01A4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #1 + Bank Locator: RAM slot #1 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01A5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #2 + Bank Locator: RAM slot #2 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01A6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #3 + Bank Locator: RAM slot #3 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01A7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #4 + Bank Locator: RAM slot #4 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01A8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #5 + Bank Locator: RAM slot #5 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01A9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #6 + Bank Locator: RAM slot #6 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01AA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #7 + Bank Locator: RAM slot #7 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01AB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #8 + Bank Locator: RAM slot #8 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01AC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #9 + Bank Locator: RAM slot #9 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01AD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #10 + Bank Locator: RAM slot #10 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01AE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #11 + Bank Locator: RAM slot #11 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01AF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #12 + Bank Locator: RAM slot #12 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01B0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #13 + Bank Locator: RAM slot #13 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01B1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #14 + Bank Locator: RAM slot #14 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01B2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #15 + Bank Locator: RAM slot #15 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01B3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #16 + Bank Locator: RAM slot #16 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01B4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #17 + Bank Locator: RAM slot #17 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01B5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #18 + Bank Locator: RAM slot #18 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01B6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #19 + Bank Locator: RAM slot #19 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01B7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #20 + Bank Locator: RAM slot #20 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01B8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #21 + Bank Locator: RAM slot #21 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01B9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #22 + Bank Locator: RAM slot #22 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01BA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #23 + Bank Locator: RAM slot #23 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01BB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #24 + Bank Locator: RAM slot #24 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01BC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #25 + Bank Locator: RAM slot #25 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01BD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #26 + Bank Locator: RAM slot #26 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01BE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #27 + Bank Locator: RAM slot #27 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01BF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #28 + Bank Locator: RAM slot #28 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01C0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #29 + Bank Locator: RAM slot #29 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01C1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #30 + Bank Locator: RAM slot #30 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01C2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #31 + Bank Locator: RAM slot #31 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01C3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #32 + Bank Locator: RAM slot #32 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01C4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #33 + Bank Locator: RAM slot #33 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01C5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #34 + Bank Locator: RAM slot #34 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01C6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #35 + Bank Locator: RAM slot #35 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01C7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #36 + Bank Locator: RAM slot #36 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01C8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #37 + Bank Locator: RAM slot #37 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01C9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #38 + Bank Locator: RAM slot #38 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01CA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #39 + Bank Locator: RAM slot #39 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01CB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #40 + Bank Locator: RAM slot #40 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01CC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #41 + Bank Locator: RAM slot #41 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01CD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #42 + Bank Locator: RAM slot #42 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01CE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #43 + Bank Locator: RAM slot #43 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01CF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #44 + Bank Locator: RAM slot #44 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01D0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #45 + Bank Locator: RAM slot #45 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01D1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #46 + Bank Locator: RAM slot #46 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01D2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #47 + Bank Locator: RAM slot #47 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01D3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #48 + Bank Locator: RAM slot #48 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01D4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #49 + Bank Locator: RAM slot #49 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01D5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #50 + Bank Locator: RAM slot #50 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01D6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #51 + Bank Locator: RAM slot #51 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01D7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #52 + Bank Locator: RAM slot #52 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01D8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #53 + Bank Locator: RAM slot #53 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01D9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #54 + Bank Locator: RAM slot #54 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01DA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #55 + Bank Locator: RAM slot #55 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01DB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #56 + Bank Locator: RAM slot #56 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01DC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #57 + Bank Locator: RAM slot #57 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01DD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #58 + Bank Locator: RAM slot #58 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01DE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #59 + Bank Locator: RAM slot #59 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01DF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #60 + Bank Locator: RAM slot #60 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01E0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #61 + Bank Locator: RAM slot #61 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01E1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #62 + Bank Locator: RAM slot #62 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01E2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: Unknown + Data Width: Unknown + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: RAM slot #63 + Bank Locator: RAM slot #63 + Type: DRAM + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01E3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #0 + Bank Locator: NVD #0 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01E4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #1 + Bank Locator: NVD #1 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01E5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #2 + Bank Locator: NVD #2 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01E6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #3 + Bank Locator: NVD #3 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01E7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #4 + Bank Locator: NVD #4 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01E8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #5 + Bank Locator: NVD #5 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01E9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #6 + Bank Locator: NVD #6 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01EA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #7 + Bank Locator: NVD #7 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01EB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #8 + Bank Locator: NVD #8 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01EC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #9 + Bank Locator: NVD #9 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01ED, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #10 + Bank Locator: NVD #10 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01EE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #11 + Bank Locator: NVD #11 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01EF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #12 + Bank Locator: NVD #12 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01F0, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #13 + Bank Locator: NVD #13 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01F1, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #14 + Bank Locator: NVD #14 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01F2, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #15 + Bank Locator: NVD #15 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01F3, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #16 + Bank Locator: NVD #16 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01F4, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #17 + Bank Locator: NVD #17 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01F5, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #18 + Bank Locator: NVD #18 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01F6, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #19 + Bank Locator: NVD #19 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01F7, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #20 + Bank Locator: NVD #20 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01F8, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #21 + Bank Locator: NVD #21 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01F9, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #22 + Bank Locator: NVD #22 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01FA, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #23 + Bank Locator: NVD #23 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01FB, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #24 + Bank Locator: NVD #24 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01FC, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #25 + Bank Locator: NVD #25 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01FD, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #26 + Bank Locator: NVD #26 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01FE, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #27 + Bank Locator: NVD #27 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x01FF, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #28 + Bank Locator: NVD #28 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0200, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #29 + Bank Locator: NVD #29 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0201, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #30 + Bank Locator: NVD #30 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0202, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #31 + Bank Locator: NVD #31 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0203, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #32 + Bank Locator: NVD #32 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0204, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #33 + Bank Locator: NVD #33 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0205, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #34 + Bank Locator: NVD #34 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0206, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #35 + Bank Locator: NVD #35 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0207, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #36 + Bank Locator: NVD #36 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0208, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #37 + Bank Locator: NVD #37 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0209, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #38 + Bank Locator: NVD #38 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x020A, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #39 + Bank Locator: NVD #39 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x020B, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #40 + Bank Locator: NVD #40 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x020C, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #41 + Bank Locator: NVD #41 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x020D, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #42 + Bank Locator: NVD #42 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x020E, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #43 + Bank Locator: NVD #43 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x020F, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #44 + Bank Locator: NVD #44 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0210, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #45 + Bank Locator: NVD #45 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0211, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #46 + Bank Locator: NVD #46 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0212, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #47 + Bank Locator: NVD #47 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0213, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #48 + Bank Locator: NVD #48 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0214, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #49 + Bank Locator: NVD #49 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0215, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #50 + Bank Locator: NVD #50 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0216, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #51 + Bank Locator: NVD #51 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0217, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #52 + Bank Locator: NVD #52 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0218, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #53 + Bank Locator: NVD #53 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0219, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #54 + Bank Locator: NVD #54 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x021A, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #55 + Bank Locator: NVD #55 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x021B, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #56 + Bank Locator: NVD #56 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x021C, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #57 + Bank Locator: NVD #57 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x021D, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #58 + Bank Locator: NVD #58 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x021E, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #59 + Bank Locator: NVD #59 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x021F, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #60 + Bank Locator: NVD #60 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0220, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #61 + Bank Locator: NVD #61 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0221, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #62 + Bank Locator: NVD #62 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0222, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x0025 + Error Information Handle: No Error + Total Width: 32 bits + Data Width: 32 bits + Size: No Module Installed + Form Factor: DIMM + Set: None + Locator: NVD #63 + Bank Locator: NVD #63 + Type: Other + Type Detail: Unknown + Speed: Unknown + Manufacturer: Not Specified + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Rank: Unknown + Configured Clock Speed: Unknown + +Handle 0x0223, DMI type 18, 23 bytes +32-bit Memory Error Information + Type: OK + Granularity: Unknown + Operation: Unknown + Vendor Syndrome: Unknown + Memory Array Address: Unknown + Device Address: Unknown + Resolution: Unknown + +Handle 0x0224, DMI type 19, 31 bytes +Memory Array Mapped Address + Starting Address: 0x00000000000 + Ending Address: 0x0007FFFFFFF + Range Size: 2 GB + Physical Array Handle: 0x0025 + Partition Width: 64 + +Handle 0x0225, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0026 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0226, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0027 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0227, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0028 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0228, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0029 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0229, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002A + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022A, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002B + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022B, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002C + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022C, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002D + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022D, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002E + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022E, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x002F + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x022F, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0030 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0230, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0031 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0231, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0032 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0232, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0033 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0233, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0034 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0234, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0035 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0235, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0036 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0236, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0037 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0237, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0038 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0238, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0039 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0239, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003A + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023A, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003B + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023B, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003C + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023C, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003D + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023D, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003E + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023E, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x003F + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x023F, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0040 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0240, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0041 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0241, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0042 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0242, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0043 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0243, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0044 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0244, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0045 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0245, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0046 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0246, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0047 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0247, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0048 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0248, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0049 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0249, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004A + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024A, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004B + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024B, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004C + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024C, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004D + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024D, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004E + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024E, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x004F + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x024F, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0050 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0250, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0051 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0251, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0052 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0252, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0053 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0253, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0054 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0254, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0055 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0255, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0056 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0256, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0057 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0257, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0058 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0258, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0059 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0259, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005A + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025A, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005B + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025B, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005C + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025C, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005D + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025D, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005E + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025E, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x005F + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x025F, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0060 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0260, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0061 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0261, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0062 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0262, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0063 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0263, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0064 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0264, DMI type 20, 35 bytes +Memory Device Mapped Address + Starting Address: 0x00080000000 + Ending Address: 0x0103FEFFFFF + Range Size: 64511 MB + Physical Device Handle: 0x0065 + Memory Array Mapped Address Handle: 0x00A7 + Partition Row Position: Unknown + Interleave Position: Unknown + Interleaved Data Depth: Unknown + +Handle 0x0265, DMI type 23, 13 bytes +System Reset + Status: Enabled + Watchdog Timer: Present + Boot Option: Do Not Reboot + Boot Option On Limit: Do Not Reboot + Reset Count: Unknown + Reset Limit: Unknown + Timer Interval: Unknown + Timeout: Unknown + +Handle 0x0266, DMI type 24, 5 bytes +Hardware Security + Power-On Password Status: Disabled + Keyboard Password Status: Unknown + Administrator Password Status: Enabled + Front Panel Reset Status: Unknown + +Handle 0x0267, DMI type 30, 6 bytes +Out-of-band Remote Access + Manufacturer Name: Intel + Inbound Connection: Enabled + Outbound Connection: Disabled + +Handle 0x0268, DMI type 32, 20 bytes +System Boot Information + Status: No errors detected + +Handle 0x0269, DMI type 33, 31 bytes +64-bit Memory Error Information + Type: OK + Granularity: Unknown + Operation: Unknown + Vendor Syndrome: Unknown + Memory Array Address: Unknown + Device Address: Unknown + Resolution: Unknown + +Handle 0x026A, DMI type 126, 4 bytes +Inactive + +Handle 0x026B, DMI type 127, 4 bytes +End Of Table + From 54364928fc826ead7774a4cec1bcb73a5cb9ee0f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 14 May 2020 08:57:23 -0700 Subject: [PATCH 12/52] fix oddities like hybrid single/multiline data and items containing multiple records --- docs/parsers/dmidecode.md | 37 ------------ jc/parsers/dmidecode.py | 118 ++++++++++++++++++++++++-------------- 2 files changed, 74 insertions(+), 81 deletions(-) diff --git a/docs/parsers/dmidecode.md b/docs/parsers/dmidecode.md index ed2bc0c9..af933f33 100644 --- a/docs/parsers/dmidecode.md +++ b/docs/parsers/dmidecode.md @@ -5,43 +5,6 @@ Usage: specify --dmidecode as the first argument if the piped input is coming from dmidecode - Note: Because the output of dmidecode has some quirks, there may (rarely) be some missing data. - For example, with mixed single and multi-line items only the first item is output. - - this: - Associated Memory Slots: 2 - 0x0006 - 0x0007 - - is converted to: - "associated_memory_slots": "2", - - Very rarely there is an item with multiple sub-items and descriptions. These items will - become corrupted. - - this: - Handle 0x019F, DMI type 10, 8 bytes - On Board Device 1 Information - Type: Video - Status: Disabled - Description: VMware SVGA II - On Board Device 2 Information - Type: Sound - Status: Disabled - Description: ES1371 - - is converted to: - { - "handle": "0x019F", - "type": 10, - "bytes": 8, - "description": "On Board Device 1 Information", - "values": { - "type": "Sound", - "status": "Disabled", - "description": "ES1371" - } - Compatibility: 'linux' diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index 12f0e885..b2324f0b 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -4,43 +4,6 @@ Usage: specify --dmidecode as the first argument if the piped input is coming from dmidecode - Note: Because the output of dmidecode has some quirks, there may (rarely) be some missing data. - For example, with mixed single and multi-line items only the first item is output. - - this: - Associated Memory Slots: 2 - 0x0006 - 0x0007 - - is converted to: - "associated_memory_slots": "2", - - Very rarely there is an item with multiple sub-items and descriptions. These items will - become corrupted. - - this: - Handle 0x019F, DMI type 10, 8 bytes - On Board Device 1 Information - Type: Video - Status: Disabled - Description: VMware SVGA II - On Board Device 2 Information - Type: Sound - Status: Disabled - Description: ES1371 - - is converted to: - { - "handle": "0x019F", - "type": 10, - "bytes": 8, - "description": "On Board Device 1 Information", - "values": { - "type": "Sound", - "status": "Disabled", - "description": "ES1371" - } - Compatibility: 'linux' @@ -213,15 +176,30 @@ def parse(data, raw=False, quiet=False): item_header = False item_values = False value_list = False + item = None + header = None + key = None + val = None attribute = None values = None + key_data = None + raw_output = [] - for line in filter(None, data.replace('\t', '').splitlines()): + data = data.splitlines() - # header - if line.startswith('Handle ') and line.endswith('bytes'): + # remove header rows + for row in data.copy(): + if not row.startswith('Handle '): + data.pop(0) + else: + break + + for line in data: + + # new item + if not line: item_header = True item_values = False value_list = False @@ -229,9 +207,22 @@ def parse(data, raw=False, quiet=False): if item: if values: item['values'][attribute] = values - values = [] + if key_data: + item['values'][f'{key}_data'] = key_data raw_output.append(item) + item = {} + header = None + key = None + val = None + attribute = None + values = [] + key_data = [] + continue + + # header + if line.startswith('Handle ') and line.endswith('bytes'): + # Handle 0x0000, DMI type 0, 24 bytes header = line.replace(',', ' ').split() item = { @@ -251,8 +242,33 @@ def parse(data, raw=False, quiet=False): item['values'] = {} continue + # new item if multiple descriptions in handle + if not item_header and not line.startswith('\t'): + item_header = False + item_values = True + value_list = False + + if item: + if values: + item['values'][attribute] = values + if key_data: + item['values'][f'{key}_data'] = key_data + raw_output.append(item) + + item = { + 'handle': header[1], + 'type': header[4], + 'bytes': header[5], + 'description': line, + 'values': {} + } + continue + # keys and values - if item_values and len(line.split(':', maxsplit=1)) == 2 and not line.strip().endswith(':'): + if item_values \ + and len(line.split(':', maxsplit=1)) == 2 \ + and line.startswith('\t') \ + and not line.strip().endswith(':'): item_header = False item_values = True value_list = False @@ -267,23 +283,37 @@ def parse(data, raw=False, quiet=False): continue # multi-line key - if item_values and line.strip().endswith(':'): + if item_values \ + and line.startswith('\t') \ + and line.strip().endswith(':'): item_header = False item_values = True value_list = True if values: item['values'][attribute] = values + if key_data: + item['values'][f'{key}_data'] = key_data attribute = line[:-1].strip().lower().replace(' ', '_') values = [] continue # multi-line values - if value_list: + if value_list \ + and line.startswith('\t\t'): values.append(line.strip()) continue + # data for hybrid multi-line objects + if item_values \ + and not value_list \ + and line.startswith('\t\t'): + if f'{key}_data' not in item['values']: + item['values'][f'{key}_data'] = [] + key_data.append(line.strip()) + continue + if item: raw_output.append(item) From 2ef00763bfe7c4348f30026759941efe39861a0c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 14 May 2020 09:33:45 -0700 Subject: [PATCH 13/52] fix first item --- jc/parsers/dmidecode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index b2324f0b..31a6021d 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -191,13 +191,13 @@ def parse(data, raw=False, quiet=False): # remove header rows for row in data.copy(): - if not row.startswith('Handle '): + if row: data.pop(0) else: break + # main parsing loop for line in data: - # new item if not line: item_header = True From b4276643b70f7820f8f53df22b32fffb54e30ca2 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 14 May 2020 09:43:13 -0700 Subject: [PATCH 14/52] add dmidecode tests and fixtures --- tests/fixtures/centos-7.7/dmidecode.json | 1 + tests/fixtures/fedora32/dmidecode.json | 1 + tests/fixtures/ubuntu-18.04/dmidecode.json | 1 + tests/test_dmidecode.py | 53 ++++++++++++++++++++++ 4 files changed, 56 insertions(+) create mode 100644 tests/fixtures/centos-7.7/dmidecode.json create mode 100644 tests/fixtures/fedora32/dmidecode.json create mode 100644 tests/fixtures/ubuntu-18.04/dmidecode.json create mode 100644 tests/test_dmidecode.py diff --git a/tests/fixtures/centos-7.7/dmidecode.json b/tests/fixtures/centos-7.7/dmidecode.json new file mode 100644 index 00000000..e3532309 --- /dev/null +++ b/tests/fixtures/centos-7.7/dmidecode.json @@ -0,0 +1 @@ +[{"handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": {"vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": ["ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported"], "bios_revision": "4.6", "firmware_revision": "0.0"}}, {"handle": "0x0001", "type": 1, "bytes": 27, "description": "System Information", "values": {"manufacturer": "VMware, Inc.", "product_name": "VMware Virtual Platform", "version": "None", "serial_number": "VMware-56 4d fd 28 89 33 f8 e2-64 74 01 59 92 3b 58 0e", "uuid": "28fd4d56-3389-e2f8-6474-0159923b580e", "wake-up_type": "Power Switch", "sku_number": "Not Specified", "family": "Not Specified"}}, {"handle": "0x0002", "type": 2, "bytes": 15, "description": "Base Board Information", "values": {"manufacturer": "Intel Corporation", "product_name": "440BX Desktop Reference Platform", "version": "None", "serial_number": "None", "asset_tag": "Not Specified", "features": "None", "location_in_chassis": "Not Specified", "chassis_handle": "0x0000", "type": "Unknown", "contained_object_handles": "0"}}, {"handle": "0x0003", "type": 3, "bytes": 21, "description": "Chassis Information", "values": {"manufacturer": "No Enclosure", "type": "Other", "lock": "Not Present", "version": "N/A", "serial_number": "None", "asset_tag": "No Asset Tag", "boot-up_state": "Safe", "power_supply_state": "Safe", "thermal_state": "Safe", "security_status": "None", "oem_information": "0x00001234", "height": "Unspecified", "number_of_power_cords": "Unspecified", "contained_elements": "0"}}, {"handle": "0x0004", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #000", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 08 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Enabled", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0094", "l2_cache_handle": "0x0114", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0005", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #001", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0095", "l2_cache_handle": "0x0115", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0006", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #002", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0096", "l2_cache_handle": "0x0116", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0007", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #003", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0097", "l2_cache_handle": "0x0117", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0008", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #004", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0098", "l2_cache_handle": "0x0118", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0009", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #005", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0099", "l2_cache_handle": "0x0119", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #006", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009A", "l2_cache_handle": "0x011A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #007", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009B", "l2_cache_handle": "0x011B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #008", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009C", "l2_cache_handle": "0x011C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #009", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009D", "l2_cache_handle": "0x011D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #010", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009E", "l2_cache_handle": "0x011E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #011", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009F", "l2_cache_handle": "0x011F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0010", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #012", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A0", "l2_cache_handle": "0x0120", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0011", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #013", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A1", "l2_cache_handle": "0x0121", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0012", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #014", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A2", "l2_cache_handle": "0x0122", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0013", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #015", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A3", "l2_cache_handle": "0x0123", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0014", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #016", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A4", "l2_cache_handle": "0x0124", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0015", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #017", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A5", "l2_cache_handle": "0x0125", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0016", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #018", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A6", "l2_cache_handle": "0x0126", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0017", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #019", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A7", "l2_cache_handle": "0x0127", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0018", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #020", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A8", "l2_cache_handle": "0x0128", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0019", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #021", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A9", "l2_cache_handle": "0x0129", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #022", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AA", "l2_cache_handle": "0x012A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #023", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AB", "l2_cache_handle": "0x012B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #024", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AC", "l2_cache_handle": "0x012C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #025", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AD", "l2_cache_handle": "0x012D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #026", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AE", "l2_cache_handle": "0x012E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #027", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AF", "l2_cache_handle": "0x012F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0020", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #028", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B0", "l2_cache_handle": "0x0130", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0021", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #029", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B1", "l2_cache_handle": "0x0131", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0022", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #030", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B2", "l2_cache_handle": "0x0132", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0023", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #031", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B3", "l2_cache_handle": "0x0133", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0024", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #032", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B4", "l2_cache_handle": "0x0134", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0025", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #033", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B5", "l2_cache_handle": "0x0135", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0026", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #034", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B6", "l2_cache_handle": "0x0136", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0027", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #035", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B7", "l2_cache_handle": "0x0137", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0028", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #036", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B8", "l2_cache_handle": "0x0138", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0029", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #037", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B9", "l2_cache_handle": "0x0139", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #038", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BA", "l2_cache_handle": "0x013A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #039", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BB", "l2_cache_handle": "0x013B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #040", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BC", "l2_cache_handle": "0x013C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #041", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BD", "l2_cache_handle": "0x013D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #042", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BE", "l2_cache_handle": "0x013E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #043", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BF", "l2_cache_handle": "0x013F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0030", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #044", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C0", "l2_cache_handle": "0x0140", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0031", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #045", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C1", "l2_cache_handle": "0x0141", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0032", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #046", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C2", "l2_cache_handle": "0x0142", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0033", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #047", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C3", "l2_cache_handle": "0x0143", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0034", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #048", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C4", "l2_cache_handle": "0x0144", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0035", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #049", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C5", "l2_cache_handle": "0x0145", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0036", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #050", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C6", "l2_cache_handle": "0x0146", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0037", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #051", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C7", "l2_cache_handle": "0x0147", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0038", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #052", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C8", "l2_cache_handle": "0x0148", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0039", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #053", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C9", "l2_cache_handle": "0x0149", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #054", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CA", "l2_cache_handle": "0x014A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #055", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CB", "l2_cache_handle": "0x014B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #056", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CC", "l2_cache_handle": "0x014C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #057", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CD", "l2_cache_handle": "0x014D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #058", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CE", "l2_cache_handle": "0x014E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #059", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CF", "l2_cache_handle": "0x014F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0040", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #060", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D0", "l2_cache_handle": "0x0150", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0041", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #061", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D1", "l2_cache_handle": "0x0151", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0042", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #062", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D2", "l2_cache_handle": "0x0152", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0043", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #063", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D3", "l2_cache_handle": "0x0153", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0044", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #064", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D4", "l2_cache_handle": "0x0154", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0045", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #065", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D5", "l2_cache_handle": "0x0155", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0046", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #066", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D6", "l2_cache_handle": "0x0156", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0047", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #067", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D7", "l2_cache_handle": "0x0157", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0048", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #068", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D8", "l2_cache_handle": "0x0158", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0049", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #069", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D9", "l2_cache_handle": "0x0159", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #070", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DA", "l2_cache_handle": "0x015A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #071", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DB", "l2_cache_handle": "0x015B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #072", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DC", "l2_cache_handle": "0x015C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #073", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DD", "l2_cache_handle": "0x015D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #074", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DE", "l2_cache_handle": "0x015E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #075", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DF", "l2_cache_handle": "0x015F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0050", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #076", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E0", "l2_cache_handle": "0x0160", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0051", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #077", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E1", "l2_cache_handle": "0x0161", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0052", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #078", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E2", "l2_cache_handle": "0x0162", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0053", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #079", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E3", "l2_cache_handle": "0x0163", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0054", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #080", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E4", "l2_cache_handle": "0x0164", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0055", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #081", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E5", "l2_cache_handle": "0x0165", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0056", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #082", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E6", "l2_cache_handle": "0x0166", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0057", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #083", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E7", "l2_cache_handle": "0x0167", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0058", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #084", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E8", "l2_cache_handle": "0x0168", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0059", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #085", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E9", "l2_cache_handle": "0x0169", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #086", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EA", "l2_cache_handle": "0x016A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #087", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EB", "l2_cache_handle": "0x016B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #088", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EC", "l2_cache_handle": "0x016C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #089", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00ED", "l2_cache_handle": "0x016D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #090", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EE", "l2_cache_handle": "0x016E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #091", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EF", "l2_cache_handle": "0x016F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0060", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #092", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F0", "l2_cache_handle": "0x0170", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0061", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #093", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F1", "l2_cache_handle": "0x0171", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0062", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #094", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F2", "l2_cache_handle": "0x0172", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0063", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #095", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F3", "l2_cache_handle": "0x0173", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0064", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #096", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F4", "l2_cache_handle": "0x0174", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0065", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #097", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F5", "l2_cache_handle": "0x0175", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0066", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #098", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F6", "l2_cache_handle": "0x0176", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0067", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #099", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F7", "l2_cache_handle": "0x0177", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0068", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #100", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F8", "l2_cache_handle": "0x0178", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0069", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #101", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F9", "l2_cache_handle": "0x0179", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #102", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FA", "l2_cache_handle": "0x017A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #103", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FB", "l2_cache_handle": "0x017B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #104", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FC", "l2_cache_handle": "0x017C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #105", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FD", "l2_cache_handle": "0x017D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #106", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FE", "l2_cache_handle": "0x017E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #107", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FF", "l2_cache_handle": "0x017F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0070", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #108", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0100", "l2_cache_handle": "0x0180", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0071", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #109", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0101", "l2_cache_handle": "0x0181", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0072", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #110", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0102", "l2_cache_handle": "0x0182", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0073", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #111", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0103", "l2_cache_handle": "0x0183", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0074", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #112", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0104", "l2_cache_handle": "0x0184", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0075", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #113", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0105", "l2_cache_handle": "0x0185", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0076", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #114", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0106", "l2_cache_handle": "0x0186", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0077", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #115", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0107", "l2_cache_handle": "0x0187", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0078", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #116", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0108", "l2_cache_handle": "0x0188", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0079", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #117", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0109", "l2_cache_handle": "0x0189", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #118", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010A", "l2_cache_handle": "0x018A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #119", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010B", "l2_cache_handle": "0x018B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #120", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010C", "l2_cache_handle": "0x018C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #121", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010D", "l2_cache_handle": "0x018D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #122", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010E", "l2_cache_handle": "0x018E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #123", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010F", "l2_cache_handle": "0x018F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0080", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #124", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0110", "l2_cache_handle": "0x0190", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0081", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #125", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0111", "l2_cache_handle": "0x0191", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0082", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #126", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0112", "l2_cache_handle": "0x0192", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0083", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #127", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0113", "l2_cache_handle": "0x0193", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0084", "type": 5, "bytes": 46, "description": "Memory Controller Information", "values": {"error_detecting_method": "None", "error_correcting_capabilities": ["None"], "supported_interleave": "One-way Interleave", "current_interleave": "One-way Interleave", "maximum_memory_module_size": "32768 MB", "maximum_total_memory_size": "491520 MB", "supported_speeds": ["70 ns", "60 ns"], "supported_memory_types": ["FPM", "EDO", "DIMM", "SDRAM"], "memory_module_voltage": "3.3 V", "associated_memory_slots": "15", "associated_memory_slots_data": ["0x0006", "0x0007", "0x0008", "0x0009", "0x000A", "0x000B", "0x000C", "0x000D", "0x000E", "0x000F", "0x0010", "0x0011", "0x0012", "0x0013", "0x0014"], "enabled_error_correcting_capabilities": ["None"]}}, {"handle": "0x0085", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #0", "bank_connections": "None", "current_speed": "Unknown", "type": "EDO DIMM", "installed_size": "4096 MB (Single-bank Connection)", "enabled_size": "4096 MB (Single-bank Connection)", "error_status": "OK"}}, {"handle": "0x0086", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #1", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0087", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #2", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0088", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #3", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0089", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #4", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008A", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #5", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008B", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #6", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008C", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #7", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008D", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #8", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008E", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #9", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008F", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #10", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0090", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #11", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0091", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #12", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0092", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #13", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0093", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #14", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0094", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0095", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0096", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0097", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0098", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0099", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00ED", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0100", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0101", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0102", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0103", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0104", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0105", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0106", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0107", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0108", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0109", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0110", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0111", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0112", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0113", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0114", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0115", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0116", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0117", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0118", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0119", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0120", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0121", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0122", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0123", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0124", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0125", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0126", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0127", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0128", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0129", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0130", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0131", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0132", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0133", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0134", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0135", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0136", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0137", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0138", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0139", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0140", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0141", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0142", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0143", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0144", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0145", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0146", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0147", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0148", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0149", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0150", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0151", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0152", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0153", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0154", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0155", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0156", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0157", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0158", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0159", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0160", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0161", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0162", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0163", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0164", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0165", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0166", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0167", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0168", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0169", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0170", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0171", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0172", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0173", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0174", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0175", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0176", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0177", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0178", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0179", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0180", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0181", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0182", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0183", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0184", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0185", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0186", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0187", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0188", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0189", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0190", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0191", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0192", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0193", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0194", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J19", "internal_connector_type": "9 Pin Dual Inline (pin 10 cut)", "external_reference_designator": "COM 1", "external_connector_type": "DB-9 male", "port_type": "Serial Port 16550A Compatible"}}, {"handle": "0x0195", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J23", "internal_connector_type": "25 Pin Dual Inline (pin 26 cut)", "external_reference_designator": "Parallel", "external_connector_type": "DB-25 female", "port_type": "Parallel Port ECP/EPP"}}, {"handle": "0x0196", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J11", "internal_connector_type": "None", "external_reference_designator": "Keyboard", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0197", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J12", "internal_connector_type": "None", "external_reference_designator": "PS/2 Mouse", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0198", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J8", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x0199", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J9", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019A", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J10", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019B", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J11", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "1", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:0f.0"}}, {"handle": "0x019C", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J12", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "2", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:10.0"}}, {"handle": "0x019D", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J13", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "3", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:11.0"}}, {"handle": "0x019E", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J14", "type": "32-bit PCI", "current_usage": "Available", "length": "Long", "id": "4", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:12.0"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 1 Information", "values": {"type": "Video", "status": "Disabled", "description": "VMware SVGA II"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 2 Information", "values": {"type": "Sound", "status": "Disabled", "description": "ES1371"}}, {"handle": "0x01A0", "type": 11, "bytes": 5, "description": "OEM Strings", "values": {"string_1": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]", "string_2": "Welcome to the Virtual Machine"}}, {"handle": "0x01A1", "type": 15, "bytes": 29, "description": "System Event Log", "values": {"area_length": "16 bytes", "header_start_offset": "0x0000", "header_length": "16 bytes", "data_start_offset": "0x0010", "access_method": "General-purpose non-volatile data functions", "access_address": "0x0000", "status": "Invalid, Full", "change_token": "0x00000036", "header_format": "Type 1", "supported_log_type_descriptors": "3", "descriptor_1": "POST error", "data_format_1": "POST results bitmap", "descriptor_2": "Single-bit ECC memory error", "data_format_2": "Multiple-event", "descriptor_3": "Multi-bit ECC memory error", "data_format_3": "Multiple-event"}}, {"handle": "0x01A2", "type": 16, "bytes": 23, "description": "Physical Memory Array", "values": {"location": "System Board Or Motherboard", "use": "System Memory", "error_correction_type": "None", "maximum_capacity": "65 GB", "error_information_handle": "Not Provided", "number_of_devices": "64"}}, {"handle": "0x01A3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "4096 MB", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #0", "bank_locator": "RAM slot #0", "type": "DRAM", "type_detail": "EDO", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #1", "bank_locator": "RAM slot #1", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #2", "bank_locator": "RAM slot #2", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #3", "bank_locator": "RAM slot #3", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #4", "bank_locator": "RAM slot #4", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #5", "bank_locator": "RAM slot #5", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #6", "bank_locator": "RAM slot #6", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #7", "bank_locator": "RAM slot #7", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #8", "bank_locator": "RAM slot #8", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #9", "bank_locator": "RAM slot #9", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #10", "bank_locator": "RAM slot #10", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #11", "bank_locator": "RAM slot #11", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #12", "bank_locator": "RAM slot #12", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #13", "bank_locator": "RAM slot #13", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #14", "bank_locator": "RAM slot #14", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #15", "bank_locator": "RAM slot #15", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #16", "bank_locator": "RAM slot #16", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #17", "bank_locator": "RAM slot #17", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #18", "bank_locator": "RAM slot #18", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #19", "bank_locator": "RAM slot #19", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #20", "bank_locator": "RAM slot #20", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #21", "bank_locator": "RAM slot #21", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #22", "bank_locator": "RAM slot #22", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #23", "bank_locator": "RAM slot #23", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #24", "bank_locator": "RAM slot #24", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #25", "bank_locator": "RAM slot #25", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #26", "bank_locator": "RAM slot #26", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #27", "bank_locator": "RAM slot #27", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #28", "bank_locator": "RAM slot #28", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #29", "bank_locator": "RAM slot #29", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #30", "bank_locator": "RAM slot #30", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #31", "bank_locator": "RAM slot #31", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #32", "bank_locator": "RAM slot #32", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #33", "bank_locator": "RAM slot #33", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #34", "bank_locator": "RAM slot #34", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #35", "bank_locator": "RAM slot #35", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #36", "bank_locator": "RAM slot #36", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #37", "bank_locator": "RAM slot #37", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #38", "bank_locator": "RAM slot #38", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #39", "bank_locator": "RAM slot #39", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #40", "bank_locator": "RAM slot #40", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #41", "bank_locator": "RAM slot #41", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #42", "bank_locator": "RAM slot #42", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #43", "bank_locator": "RAM slot #43", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #44", "bank_locator": "RAM slot #44", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #45", "bank_locator": "RAM slot #45", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #46", "bank_locator": "RAM slot #46", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #47", "bank_locator": "RAM slot #47", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #48", "bank_locator": "RAM slot #48", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #49", "bank_locator": "RAM slot #49", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #50", "bank_locator": "RAM slot #50", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #51", "bank_locator": "RAM slot #51", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #52", "bank_locator": "RAM slot #52", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #53", "bank_locator": "RAM slot #53", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #54", "bank_locator": "RAM slot #54", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #55", "bank_locator": "RAM slot #55", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #56", "bank_locator": "RAM slot #56", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #57", "bank_locator": "RAM slot #57", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #58", "bank_locator": "RAM slot #58", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #59", "bank_locator": "RAM slot #59", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #60", "bank_locator": "RAM slot #60", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #61", "bank_locator": "RAM slot #61", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #62", "bank_locator": "RAM slot #62", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #63", "bank_locator": "RAM slot #63", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #0", "bank_locator": "NVD #0", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #1", "bank_locator": "NVD #1", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #2", "bank_locator": "NVD #2", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #3", "bank_locator": "NVD #3", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #4", "bank_locator": "NVD #4", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #5", "bank_locator": "NVD #5", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #6", "bank_locator": "NVD #6", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #7", "bank_locator": "NVD #7", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #8", "bank_locator": "NVD #8", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #9", "bank_locator": "NVD #9", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01ED", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #10", "bank_locator": "NVD #10", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #11", "bank_locator": "NVD #11", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #12", "bank_locator": "NVD #12", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #13", "bank_locator": "NVD #13", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #14", "bank_locator": "NVD #14", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #15", "bank_locator": "NVD #15", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #16", "bank_locator": "NVD #16", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #17", "bank_locator": "NVD #17", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #18", "bank_locator": "NVD #18", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #19", "bank_locator": "NVD #19", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #20", "bank_locator": "NVD #20", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #21", "bank_locator": "NVD #21", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #22", "bank_locator": "NVD #22", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #23", "bank_locator": "NVD #23", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #24", "bank_locator": "NVD #24", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #25", "bank_locator": "NVD #25", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #26", "bank_locator": "NVD #26", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #27", "bank_locator": "NVD #27", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #28", "bank_locator": "NVD #28", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0200", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #29", "bank_locator": "NVD #29", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0201", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #30", "bank_locator": "NVD #30", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0202", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #31", "bank_locator": "NVD #31", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0203", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #32", "bank_locator": "NVD #32", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0204", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #33", "bank_locator": "NVD #33", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0205", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #34", "bank_locator": "NVD #34", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0206", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #35", "bank_locator": "NVD #35", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0207", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #36", "bank_locator": "NVD #36", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0208", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #37", "bank_locator": "NVD #37", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0209", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #38", "bank_locator": "NVD #38", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #39", "bank_locator": "NVD #39", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #40", "bank_locator": "NVD #40", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #41", "bank_locator": "NVD #41", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #42", "bank_locator": "NVD #42", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #43", "bank_locator": "NVD #43", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #44", "bank_locator": "NVD #44", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0210", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #45", "bank_locator": "NVD #45", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0211", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #46", "bank_locator": "NVD #46", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0212", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #47", "bank_locator": "NVD #47", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0213", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #48", "bank_locator": "NVD #48", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0214", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #49", "bank_locator": "NVD #49", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0215", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #50", "bank_locator": "NVD #50", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0216", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #51", "bank_locator": "NVD #51", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0217", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #52", "bank_locator": "NVD #52", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0218", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #53", "bank_locator": "NVD #53", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0219", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #54", "bank_locator": "NVD #54", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #55", "bank_locator": "NVD #55", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #56", "bank_locator": "NVD #56", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #57", "bank_locator": "NVD #57", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #58", "bank_locator": "NVD #58", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #59", "bank_locator": "NVD #59", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #60", "bank_locator": "NVD #60", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0220", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #61", "bank_locator": "NVD #61", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0221", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #62", "bank_locator": "NVD #62", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0222", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #63", "bank_locator": "NVD #63", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0223", "type": 18, "bytes": 23, "description": "32-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x0224", "type": 19, "bytes": 31, "description": "Memory Array Mapped Address", "values": {"starting_address": "0x00000000000", "ending_address": "0x000FFFFFFFF", "range_size": "4 GB", "physical_array_handle": "0x0025", "partition_width": "64"}}, {"handle": "0x0225", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0026", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0226", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0027", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0227", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0028", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0228", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0029", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0229", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0030", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0230", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0031", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0231", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0032", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0232", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0033", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0233", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0034", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0234", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0035", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0235", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0036", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0236", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0037", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0237", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0038", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0238", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0039", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0239", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0040", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0240", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0041", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0241", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0042", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0242", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0043", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0243", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0044", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0244", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0045", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0245", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0046", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0246", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0047", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0247", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0048", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0248", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0049", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0249", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0050", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0250", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0051", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0251", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0052", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0252", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0053", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0253", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0054", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0254", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0055", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0255", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0056", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0256", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0057", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0257", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0058", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0258", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0059", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0259", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0060", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0260", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0061", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0261", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0062", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0262", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0063", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0263", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0064", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0264", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0065", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0265", "type": 23, "bytes": 13, "description": "System Reset", "values": {"status": "Enabled", "watchdog_timer": "Present", "boot_option": "Do Not Reboot", "boot_option_on_limit": "Do Not Reboot", "reset_count": "Unknown", "reset_limit": "Unknown", "timer_interval": "Unknown", "timeout": "Unknown"}}, {"handle": "0x0266", "type": 24, "bytes": 5, "description": "Hardware Security", "values": {"power-on_password_status": "Disabled", "keyboard_password_status": "Unknown", "administrator_password_status": "Enabled", "front_panel_reset_status": "Unknown"}}, {"handle": "0x0267", "type": 30, "bytes": 6, "description": "Out-of-band Remote Access", "values": {"manufacturer_name": "Intel", "inbound_connection": "Enabled", "outbound_connection": "Disabled"}}, {"handle": "0x0268", "type": 32, "bytes": 20, "description": "System Boot Information", "values": {"status": "No errors detected"}}, {"handle": "0x0269", "type": 33, "bytes": 31, "description": "64-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x026A", "type": 126, "bytes": 4, "description": "Inactive", "values": {}}, {"handle": "0x026B", "type": 127, "bytes": 4, "description": "End Of Table", "values": {}}] diff --git a/tests/fixtures/fedora32/dmidecode.json b/tests/fixtures/fedora32/dmidecode.json new file mode 100644 index 00000000..04b6456d --- /dev/null +++ b/tests/fixtures/fedora32/dmidecode.json @@ -0,0 +1 @@ +[{"handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": {"vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": ["ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported"], "bios_revision": "4.6", "firmware_revision": "0.0"}}, {"handle": "0x0001", "type": 1, "bytes": 27, "description": "System Information", "values": {"manufacturer": "VMware, Inc.", "product_name": "VMware Virtual Platform", "version": "None", "serial_number": "VMware-56 4d bf 23 01 aa 4e 9f-c3 92 24 bd 7b 66 16 68", "uuid": "23bf4d56-aa01-9f4e-c392-24bd7b661668", "wake-up_type": "Power Switch", "sku_number": "Not Specified", "family": "Not Specified"}}, {"handle": "0x0002", "type": 2, "bytes": 15, "description": "Base Board Information", "values": {"manufacturer": "Intel Corporation", "product_name": "440BX Desktop Reference Platform", "version": "None", "serial_number": "None", "asset_tag": "Not Specified", "features": "None", "location_in_chassis": "Not Specified", "chassis_handle": "0x0000", "type": "Unknown", "contained_object_handles": "0"}}, {"handle": "0x0003", "type": 3, "bytes": 21, "description": "Chassis Information", "values": {"manufacturer": "No Enclosure", "type": "Other", "lock": "Not Present", "version": "N/A", "serial_number": "None", "asset_tag": "No Asset Tag", "boot-up_state": "Safe", "power_supply_state": "Safe", "thermal_state": "Safe", "security_status": "None", "oem_information": "0x00001234", "height": "Unspecified", "number_of_power_cords": "Unspecified", "contained_elements": "0"}}, {"handle": "0x0004", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #000", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 08 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Enabled", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0094", "l2_cache_handle": "0x0114", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0005", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #001", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0095", "l2_cache_handle": "0x0115", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0006", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #002", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0096", "l2_cache_handle": "0x0116", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0007", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #003", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0097", "l2_cache_handle": "0x0117", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0008", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #004", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0098", "l2_cache_handle": "0x0118", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0009", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #005", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0099", "l2_cache_handle": "0x0119", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #006", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009A", "l2_cache_handle": "0x011A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #007", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009B", "l2_cache_handle": "0x011B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #008", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009C", "l2_cache_handle": "0x011C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #009", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009D", "l2_cache_handle": "0x011D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #010", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009E", "l2_cache_handle": "0x011E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #011", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009F", "l2_cache_handle": "0x011F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0010", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #012", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A0", "l2_cache_handle": "0x0120", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0011", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #013", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A1", "l2_cache_handle": "0x0121", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0012", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #014", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A2", "l2_cache_handle": "0x0122", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0013", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #015", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A3", "l2_cache_handle": "0x0123", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0014", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #016", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A4", "l2_cache_handle": "0x0124", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0015", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #017", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A5", "l2_cache_handle": "0x0125", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0016", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #018", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A6", "l2_cache_handle": "0x0126", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0017", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #019", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A7", "l2_cache_handle": "0x0127", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0018", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #020", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A8", "l2_cache_handle": "0x0128", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0019", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #021", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A9", "l2_cache_handle": "0x0129", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #022", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AA", "l2_cache_handle": "0x012A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #023", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AB", "l2_cache_handle": "0x012B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #024", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AC", "l2_cache_handle": "0x012C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #025", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AD", "l2_cache_handle": "0x012D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #026", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AE", "l2_cache_handle": "0x012E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #027", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AF", "l2_cache_handle": "0x012F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0020", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #028", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B0", "l2_cache_handle": "0x0130", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0021", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #029", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B1", "l2_cache_handle": "0x0131", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0022", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #030", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B2", "l2_cache_handle": "0x0132", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0023", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #031", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B3", "l2_cache_handle": "0x0133", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0024", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #032", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B4", "l2_cache_handle": "0x0134", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0025", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #033", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B5", "l2_cache_handle": "0x0135", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0026", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #034", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B6", "l2_cache_handle": "0x0136", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0027", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #035", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B7", "l2_cache_handle": "0x0137", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0028", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #036", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B8", "l2_cache_handle": "0x0138", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0029", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #037", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B9", "l2_cache_handle": "0x0139", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #038", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BA", "l2_cache_handle": "0x013A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #039", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BB", "l2_cache_handle": "0x013B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #040", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BC", "l2_cache_handle": "0x013C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #041", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BD", "l2_cache_handle": "0x013D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #042", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BE", "l2_cache_handle": "0x013E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #043", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BF", "l2_cache_handle": "0x013F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0030", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #044", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C0", "l2_cache_handle": "0x0140", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0031", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #045", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C1", "l2_cache_handle": "0x0141", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0032", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #046", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C2", "l2_cache_handle": "0x0142", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0033", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #047", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C3", "l2_cache_handle": "0x0143", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0034", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #048", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C4", "l2_cache_handle": "0x0144", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0035", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #049", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C5", "l2_cache_handle": "0x0145", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0036", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #050", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C6", "l2_cache_handle": "0x0146", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0037", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #051", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C7", "l2_cache_handle": "0x0147", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0038", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #052", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C8", "l2_cache_handle": "0x0148", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0039", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #053", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C9", "l2_cache_handle": "0x0149", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #054", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CA", "l2_cache_handle": "0x014A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #055", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CB", "l2_cache_handle": "0x014B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #056", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CC", "l2_cache_handle": "0x014C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #057", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CD", "l2_cache_handle": "0x014D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #058", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CE", "l2_cache_handle": "0x014E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #059", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CF", "l2_cache_handle": "0x014F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0040", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #060", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D0", "l2_cache_handle": "0x0150", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0041", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #061", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D1", "l2_cache_handle": "0x0151", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0042", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #062", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D2", "l2_cache_handle": "0x0152", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0043", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #063", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D3", "l2_cache_handle": "0x0153", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0044", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #064", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D4", "l2_cache_handle": "0x0154", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0045", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #065", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D5", "l2_cache_handle": "0x0155", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0046", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #066", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D6", "l2_cache_handle": "0x0156", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0047", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #067", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D7", "l2_cache_handle": "0x0157", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0048", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #068", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D8", "l2_cache_handle": "0x0158", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0049", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #069", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D9", "l2_cache_handle": "0x0159", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #070", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DA", "l2_cache_handle": "0x015A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #071", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DB", "l2_cache_handle": "0x015B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #072", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DC", "l2_cache_handle": "0x015C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #073", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DD", "l2_cache_handle": "0x015D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #074", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DE", "l2_cache_handle": "0x015E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #075", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DF", "l2_cache_handle": "0x015F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0050", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #076", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E0", "l2_cache_handle": "0x0160", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0051", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #077", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E1", "l2_cache_handle": "0x0161", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0052", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #078", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E2", "l2_cache_handle": "0x0162", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0053", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #079", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E3", "l2_cache_handle": "0x0163", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0054", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #080", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E4", "l2_cache_handle": "0x0164", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0055", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #081", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E5", "l2_cache_handle": "0x0165", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0056", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #082", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E6", "l2_cache_handle": "0x0166", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0057", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #083", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E7", "l2_cache_handle": "0x0167", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0058", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #084", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E8", "l2_cache_handle": "0x0168", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0059", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #085", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E9", "l2_cache_handle": "0x0169", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #086", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EA", "l2_cache_handle": "0x016A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #087", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EB", "l2_cache_handle": "0x016B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #088", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EC", "l2_cache_handle": "0x016C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #089", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00ED", "l2_cache_handle": "0x016D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #090", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EE", "l2_cache_handle": "0x016E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #091", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EF", "l2_cache_handle": "0x016F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0060", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #092", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F0", "l2_cache_handle": "0x0170", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0061", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #093", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F1", "l2_cache_handle": "0x0171", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0062", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #094", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F2", "l2_cache_handle": "0x0172", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0063", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #095", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F3", "l2_cache_handle": "0x0173", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0064", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #096", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F4", "l2_cache_handle": "0x0174", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0065", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #097", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F5", "l2_cache_handle": "0x0175", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0066", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #098", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F6", "l2_cache_handle": "0x0176", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0067", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #099", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F7", "l2_cache_handle": "0x0177", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0068", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #100", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F8", "l2_cache_handle": "0x0178", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0069", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #101", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F9", "l2_cache_handle": "0x0179", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #102", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FA", "l2_cache_handle": "0x017A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #103", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FB", "l2_cache_handle": "0x017B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #104", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FC", "l2_cache_handle": "0x017C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #105", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FD", "l2_cache_handle": "0x017D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #106", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FE", "l2_cache_handle": "0x017E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #107", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FF", "l2_cache_handle": "0x017F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0070", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #108", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0100", "l2_cache_handle": "0x0180", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0071", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #109", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0101", "l2_cache_handle": "0x0181", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0072", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #110", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0102", "l2_cache_handle": "0x0182", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0073", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #111", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0103", "l2_cache_handle": "0x0183", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0074", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #112", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0104", "l2_cache_handle": "0x0184", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0075", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #113", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0105", "l2_cache_handle": "0x0185", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0076", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #114", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0106", "l2_cache_handle": "0x0186", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0077", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #115", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0107", "l2_cache_handle": "0x0187", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0078", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #116", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0108", "l2_cache_handle": "0x0188", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0079", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #117", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0109", "l2_cache_handle": "0x0189", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #118", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010A", "l2_cache_handle": "0x018A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #119", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010B", "l2_cache_handle": "0x018B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #120", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010C", "l2_cache_handle": "0x018C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #121", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010D", "l2_cache_handle": "0x018D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #122", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010E", "l2_cache_handle": "0x018E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #123", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010F", "l2_cache_handle": "0x018F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0080", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #124", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0110", "l2_cache_handle": "0x0190", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0081", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #125", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0111", "l2_cache_handle": "0x0191", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0082", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #126", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0112", "l2_cache_handle": "0x0192", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0083", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #127", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0113", "l2_cache_handle": "0x0193", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0084", "type": 5, "bytes": 46, "description": "Memory Controller Information", "values": {"error_detecting_method": "None", "error_correcting_capabilities": ["None"], "supported_interleave": "One-way Interleave", "current_interleave": "One-way Interleave", "maximum_memory_module_size": "32768 MB", "maximum_total_memory_size": "491520 MB", "supported_speeds": ["70 ns", "60 ns"], "supported_memory_types": ["FPM", "EDO", "DIMM", "SDRAM"], "memory_module_voltage": "3.3 V", "associated_memory_slots": "15", "associated_memory_slots_data": ["0x0006", "0x0007", "0x0008", "0x0009", "0x000A", "0x000B", "0x000C", "0x000D", "0x000E", "0x000F", "0x0010", "0x0011", "0x0012", "0x0013", "0x0014"], "enabled_error_correcting_capabilities": ["None"]}}, {"handle": "0x0085", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #0", "bank_connections": "None", "current_speed": "Unknown", "type": "EDO DIMM", "installed_size": "4096 MB (Single-bank Connection)", "enabled_size": "4096 MB (Single-bank Connection)", "error_status": "OK"}}, {"handle": "0x0086", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #1", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0087", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #2", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0088", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #3", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0089", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #4", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008A", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #5", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008B", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #6", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008C", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #7", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008D", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #8", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008E", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #9", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008F", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #10", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0090", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #11", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0091", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #12", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0092", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #13", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0093", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #14", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0094", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0095", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0096", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0097", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0098", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0099", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00ED", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0100", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0101", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0102", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0103", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0104", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0105", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0106", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0107", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0108", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0109", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0110", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0111", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0112", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0113", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0114", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0115", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0116", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0117", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0118", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0119", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0120", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0121", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0122", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0123", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0124", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0125", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0126", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0127", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0128", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0129", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0130", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0131", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0132", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0133", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0134", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0135", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0136", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0137", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0138", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0139", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0140", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0141", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0142", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0143", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0144", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0145", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0146", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0147", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0148", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0149", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0150", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0151", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0152", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0153", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0154", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0155", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0156", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0157", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0158", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0159", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0160", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0161", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0162", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0163", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0164", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0165", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0166", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0167", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0168", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0169", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0170", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0171", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0172", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0173", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0174", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0175", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0176", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0177", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0178", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0179", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0180", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0181", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0182", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0183", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0184", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0185", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0186", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0187", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0188", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0189", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0190", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0191", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0192", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0193", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0194", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J19", "internal_connector_type": "9 Pin Dual Inline (pin 10 cut)", "external_reference_designator": "COM 1", "external_connector_type": "DB-9 male", "port_type": "Serial Port 16550A Compatible"}}, {"handle": "0x0195", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J23", "internal_connector_type": "25 Pin Dual Inline (pin 26 cut)", "external_reference_designator": "Parallel", "external_connector_type": "DB-25 female", "port_type": "Parallel Port ECP/EPP"}}, {"handle": "0x0196", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J11", "internal_connector_type": "None", "external_reference_designator": "Keyboard", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0197", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J12", "internal_connector_type": "None", "external_reference_designator": "PS/2 Mouse", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0198", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J8", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x0199", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J9", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019A", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J10", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019B", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J11", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "1", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:0f.0"}}, {"handle": "0x019C", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J12", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "2", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:10.0"}}, {"handle": "0x019D", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J13", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "3", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:11.0"}}, {"handle": "0x019E", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J14", "type": "32-bit PCI", "current_usage": "Available", "length": "Long", "id": "4", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:12.0"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 1 Information", "values": {"type": "Video", "status": "Disabled", "description": "VMware SVGA II"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 2 Information", "values": {"type": "Sound", "status": "Disabled", "description": "ES1371"}}, {"handle": "0x01A0", "type": 11, "bytes": 5, "description": "OEM Strings", "values": {"string_1": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]", "string_2": "Welcome to the Virtual Machine"}}, {"handle": "0x01A1", "type": 15, "bytes": 29, "description": "System Event Log", "values": {"area_length": "16 bytes", "header_start_offset": "0x0000", "header_length": "16 bytes", "data_start_offset": "0x0010", "access_method": "General-purpose non-volatile data functions", "access_address": "0x0000", "status": "Invalid, Full", "change_token": "0x00000036", "header_format": "Type 1", "supported_log_type_descriptors": "3", "descriptor_1": "POST error", "data_format_1": "POST results bitmap", "descriptor_2": "Single-bit ECC memory error", "data_format_2": "Multiple-event", "descriptor_3": "Multi-bit ECC memory error", "data_format_3": "Multiple-event"}}, {"handle": "0x01A2", "type": 16, "bytes": 23, "description": "Physical Memory Array", "values": {"location": "System Board Or Motherboard", "use": "System Memory", "error_correction_type": "None", "maximum_capacity": "65 GB", "error_information_handle": "Not Provided", "number_of_devices": "64"}}, {"handle": "0x01A3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "4 GB", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #0", "bank_locator": "RAM slot #0", "type": "DRAM", "type_detail": "EDO", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #1", "bank_locator": "RAM slot #1", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #2", "bank_locator": "RAM slot #2", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #3", "bank_locator": "RAM slot #3", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #4", "bank_locator": "RAM slot #4", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #5", "bank_locator": "RAM slot #5", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #6", "bank_locator": "RAM slot #6", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #7", "bank_locator": "RAM slot #7", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #8", "bank_locator": "RAM slot #8", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #9", "bank_locator": "RAM slot #9", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #10", "bank_locator": "RAM slot #10", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #11", "bank_locator": "RAM slot #11", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #12", "bank_locator": "RAM slot #12", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #13", "bank_locator": "RAM slot #13", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #14", "bank_locator": "RAM slot #14", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #15", "bank_locator": "RAM slot #15", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #16", "bank_locator": "RAM slot #16", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #17", "bank_locator": "RAM slot #17", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #18", "bank_locator": "RAM slot #18", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #19", "bank_locator": "RAM slot #19", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #20", "bank_locator": "RAM slot #20", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #21", "bank_locator": "RAM slot #21", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #22", "bank_locator": "RAM slot #22", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #23", "bank_locator": "RAM slot #23", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #24", "bank_locator": "RAM slot #24", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #25", "bank_locator": "RAM slot #25", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #26", "bank_locator": "RAM slot #26", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #27", "bank_locator": "RAM slot #27", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #28", "bank_locator": "RAM slot #28", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #29", "bank_locator": "RAM slot #29", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #30", "bank_locator": "RAM slot #30", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #31", "bank_locator": "RAM slot #31", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #32", "bank_locator": "RAM slot #32", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #33", "bank_locator": "RAM slot #33", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #34", "bank_locator": "RAM slot #34", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #35", "bank_locator": "RAM slot #35", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #36", "bank_locator": "RAM slot #36", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #37", "bank_locator": "RAM slot #37", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #38", "bank_locator": "RAM slot #38", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #39", "bank_locator": "RAM slot #39", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #40", "bank_locator": "RAM slot #40", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #41", "bank_locator": "RAM slot #41", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #42", "bank_locator": "RAM slot #42", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #43", "bank_locator": "RAM slot #43", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #44", "bank_locator": "RAM slot #44", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #45", "bank_locator": "RAM slot #45", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #46", "bank_locator": "RAM slot #46", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #47", "bank_locator": "RAM slot #47", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #48", "bank_locator": "RAM slot #48", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #49", "bank_locator": "RAM slot #49", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #50", "bank_locator": "RAM slot #50", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #51", "bank_locator": "RAM slot #51", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #52", "bank_locator": "RAM slot #52", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #53", "bank_locator": "RAM slot #53", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #54", "bank_locator": "RAM slot #54", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #55", "bank_locator": "RAM slot #55", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #56", "bank_locator": "RAM slot #56", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #57", "bank_locator": "RAM slot #57", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #58", "bank_locator": "RAM slot #58", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #59", "bank_locator": "RAM slot #59", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #60", "bank_locator": "RAM slot #60", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #61", "bank_locator": "RAM slot #61", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #62", "bank_locator": "RAM slot #62", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #63", "bank_locator": "RAM slot #63", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #0", "bank_locator": "NVD #0", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #1", "bank_locator": "NVD #1", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #2", "bank_locator": "NVD #2", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #3", "bank_locator": "NVD #3", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #4", "bank_locator": "NVD #4", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #5", "bank_locator": "NVD #5", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #6", "bank_locator": "NVD #6", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #7", "bank_locator": "NVD #7", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #8", "bank_locator": "NVD #8", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #9", "bank_locator": "NVD #9", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01ED", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #10", "bank_locator": "NVD #10", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #11", "bank_locator": "NVD #11", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #12", "bank_locator": "NVD #12", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #13", "bank_locator": "NVD #13", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #14", "bank_locator": "NVD #14", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #15", "bank_locator": "NVD #15", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #16", "bank_locator": "NVD #16", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #17", "bank_locator": "NVD #17", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #18", "bank_locator": "NVD #18", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #19", "bank_locator": "NVD #19", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #20", "bank_locator": "NVD #20", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #21", "bank_locator": "NVD #21", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #22", "bank_locator": "NVD #22", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #23", "bank_locator": "NVD #23", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #24", "bank_locator": "NVD #24", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #25", "bank_locator": "NVD #25", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #26", "bank_locator": "NVD #26", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #27", "bank_locator": "NVD #27", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #28", "bank_locator": "NVD #28", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0200", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #29", "bank_locator": "NVD #29", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0201", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #30", "bank_locator": "NVD #30", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0202", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #31", "bank_locator": "NVD #31", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0203", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #32", "bank_locator": "NVD #32", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0204", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #33", "bank_locator": "NVD #33", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0205", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #34", "bank_locator": "NVD #34", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0206", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #35", "bank_locator": "NVD #35", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0207", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #36", "bank_locator": "NVD #36", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0208", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #37", "bank_locator": "NVD #37", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0209", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #38", "bank_locator": "NVD #38", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #39", "bank_locator": "NVD #39", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #40", "bank_locator": "NVD #40", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #41", "bank_locator": "NVD #41", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #42", "bank_locator": "NVD #42", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #43", "bank_locator": "NVD #43", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #44", "bank_locator": "NVD #44", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0210", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #45", "bank_locator": "NVD #45", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0211", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #46", "bank_locator": "NVD #46", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0212", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #47", "bank_locator": "NVD #47", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0213", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #48", "bank_locator": "NVD #48", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0214", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #49", "bank_locator": "NVD #49", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0215", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #50", "bank_locator": "NVD #50", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0216", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #51", "bank_locator": "NVD #51", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0217", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #52", "bank_locator": "NVD #52", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0218", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #53", "bank_locator": "NVD #53", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0219", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #54", "bank_locator": "NVD #54", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #55", "bank_locator": "NVD #55", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #56", "bank_locator": "NVD #56", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #57", "bank_locator": "NVD #57", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #58", "bank_locator": "NVD #58", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #59", "bank_locator": "NVD #59", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #60", "bank_locator": "NVD #60", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0220", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #61", "bank_locator": "NVD #61", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0221", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #62", "bank_locator": "NVD #62", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0222", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #63", "bank_locator": "NVD #63", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0223", "type": 18, "bytes": 23, "description": "32-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x0224", "type": 19, "bytes": 31, "description": "Memory Array Mapped Address", "values": {"starting_address": "0x00000000000", "ending_address": "0x000FFFFFFFF", "range_size": "4 GB", "physical_array_handle": "0x0025", "partition_width": "64"}}, {"handle": "0x0225", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0026", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0226", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0027", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0227", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0028", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0228", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0029", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0229", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0030", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0230", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0031", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0231", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0032", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0232", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0033", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0233", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0034", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0234", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0035", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0235", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0036", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0236", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0037", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0237", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0038", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0238", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0039", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0239", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0040", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0240", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0041", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0241", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0042", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0242", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0043", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0243", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0044", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0244", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0045", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0245", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0046", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0246", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0047", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0247", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0048", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0248", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0049", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0249", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0050", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0250", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0051", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0251", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0052", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0252", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0053", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0253", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0054", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0254", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0055", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0255", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0056", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0256", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0057", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0257", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0058", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0258", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0059", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0259", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0060", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0260", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0061", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0261", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0062", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0262", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0063", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0263", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0064", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0264", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0065", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0265", "type": 23, "bytes": 13, "description": "System Reset", "values": {"status": "Enabled", "watchdog_timer": "Present", "boot_option": "Do Not Reboot", "boot_option_on_limit": "Do Not Reboot", "reset_count": "Unknown", "reset_limit": "Unknown", "timer_interval": "Unknown", "timeout": "Unknown"}}, {"handle": "0x0266", "type": 24, "bytes": 5, "description": "Hardware Security", "values": {"power-on_password_status": "Disabled", "keyboard_password_status": "Unknown", "administrator_password_status": "Enabled", "front_panel_reset_status": "Unknown"}}, {"handle": "0x0267", "type": 30, "bytes": 6, "description": "Out-of-band Remote Access", "values": {"manufacturer_name": "Intel", "inbound_connection": "Enabled", "outbound_connection": "Disabled"}}, {"handle": "0x0268", "type": 32, "bytes": 20, "description": "System Boot Information", "values": {"status": "No errors detected"}}, {"handle": "0x0269", "type": 33, "bytes": 31, "description": "64-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x026A", "type": 126, "bytes": 4, "description": "Inactive", "values": {}}, {"handle": "0x026B", "type": 127, "bytes": 4, "description": "End Of Table", "values": {}}] diff --git a/tests/fixtures/ubuntu-18.04/dmidecode.json b/tests/fixtures/ubuntu-18.04/dmidecode.json new file mode 100644 index 00000000..73488b56 --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/dmidecode.json @@ -0,0 +1 @@ +[{"handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": {"vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": ["ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported"], "bios_revision": "4.6", "firmware_revision": "0.0"}}, {"handle": "0x0001", "type": 1, "bytes": 27, "description": "System Information", "values": {"manufacturer": "VMware, Inc.", "product_name": "VMware Virtual Platform", "version": "None", "serial_number": "VMware-56 4d 0d 1a cc cf 45 fa-43 81 ac 1f 3b 99 45 17", "uuid": "1A0D4D56-CFCC-FA45-4381-AC1F3B994517", "wake-up_type": "Power Switch", "sku_number": "Not Specified", "family": "Not Specified"}}, {"handle": "0x0002", "type": 2, "bytes": 15, "description": "Base Board Information", "values": {"manufacturer": "Intel Corporation", "product_name": "440BX Desktop Reference Platform", "version": "None", "serial_number": "None", "asset_tag": "Not Specified", "features": "None", "location_in_chassis": "Not Specified", "chassis_handle": "0x0000", "type": "Unknown", "contained_object_handles": "0"}}, {"handle": "0x0003", "type": 3, "bytes": 21, "description": "Chassis Information", "values": {"manufacturer": "No Enclosure", "type": "Other", "lock": "Not Present", "version": "N/A", "serial_number": "None", "asset_tag": "No Asset Tag", "boot-up_state": "Safe", "power_supply_state": "Safe", "thermal_state": "Safe", "security_status": "None", "oem_information": "0x00001234", "height": "Unspecified", "number_of_power_cords": "Unspecified", "contained_elements": "0"}}, {"handle": "0x0004", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #000", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 08 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Enabled", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0094", "l2_cache_handle": "0x0114", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0005", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #001", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0095", "l2_cache_handle": "0x0115", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0006", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #002", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0096", "l2_cache_handle": "0x0116", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0007", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #003", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0097", "l2_cache_handle": "0x0117", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0008", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #004", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0098", "l2_cache_handle": "0x0118", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0009", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #005", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0099", "l2_cache_handle": "0x0119", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #006", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009A", "l2_cache_handle": "0x011A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #007", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009B", "l2_cache_handle": "0x011B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #008", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009C", "l2_cache_handle": "0x011C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #009", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009D", "l2_cache_handle": "0x011D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #010", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009E", "l2_cache_handle": "0x011E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #011", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009F", "l2_cache_handle": "0x011F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0010", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #012", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A0", "l2_cache_handle": "0x0120", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0011", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #013", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A1", "l2_cache_handle": "0x0121", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0012", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #014", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A2", "l2_cache_handle": "0x0122", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0013", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #015", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A3", "l2_cache_handle": "0x0123", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0014", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #016", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A4", "l2_cache_handle": "0x0124", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0015", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #017", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A5", "l2_cache_handle": "0x0125", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0016", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #018", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A6", "l2_cache_handle": "0x0126", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0017", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #019", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A7", "l2_cache_handle": "0x0127", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0018", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #020", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A8", "l2_cache_handle": "0x0128", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0019", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #021", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A9", "l2_cache_handle": "0x0129", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #022", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AA", "l2_cache_handle": "0x012A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #023", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AB", "l2_cache_handle": "0x012B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #024", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AC", "l2_cache_handle": "0x012C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #025", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AD", "l2_cache_handle": "0x012D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #026", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AE", "l2_cache_handle": "0x012E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #027", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AF", "l2_cache_handle": "0x012F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0020", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #028", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B0", "l2_cache_handle": "0x0130", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0021", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #029", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B1", "l2_cache_handle": "0x0131", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0022", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #030", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B2", "l2_cache_handle": "0x0132", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0023", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #031", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B3", "l2_cache_handle": "0x0133", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0024", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #032", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B4", "l2_cache_handle": "0x0134", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0025", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #033", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B5", "l2_cache_handle": "0x0135", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0026", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #034", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B6", "l2_cache_handle": "0x0136", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0027", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #035", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B7", "l2_cache_handle": "0x0137", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0028", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #036", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B8", "l2_cache_handle": "0x0138", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0029", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #037", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B9", "l2_cache_handle": "0x0139", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #038", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BA", "l2_cache_handle": "0x013A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #039", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BB", "l2_cache_handle": "0x013B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #040", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BC", "l2_cache_handle": "0x013C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #041", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BD", "l2_cache_handle": "0x013D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #042", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BE", "l2_cache_handle": "0x013E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #043", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BF", "l2_cache_handle": "0x013F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0030", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #044", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C0", "l2_cache_handle": "0x0140", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0031", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #045", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C1", "l2_cache_handle": "0x0141", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0032", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #046", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C2", "l2_cache_handle": "0x0142", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0033", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #047", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C3", "l2_cache_handle": "0x0143", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0034", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #048", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C4", "l2_cache_handle": "0x0144", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0035", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #049", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C5", "l2_cache_handle": "0x0145", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0036", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #050", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C6", "l2_cache_handle": "0x0146", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0037", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #051", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C7", "l2_cache_handle": "0x0147", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0038", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #052", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C8", "l2_cache_handle": "0x0148", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0039", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #053", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C9", "l2_cache_handle": "0x0149", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #054", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CA", "l2_cache_handle": "0x014A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #055", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CB", "l2_cache_handle": "0x014B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #056", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CC", "l2_cache_handle": "0x014C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #057", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CD", "l2_cache_handle": "0x014D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #058", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CE", "l2_cache_handle": "0x014E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #059", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CF", "l2_cache_handle": "0x014F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0040", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #060", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D0", "l2_cache_handle": "0x0150", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0041", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #061", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D1", "l2_cache_handle": "0x0151", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0042", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #062", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D2", "l2_cache_handle": "0x0152", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0043", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #063", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D3", "l2_cache_handle": "0x0153", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0044", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #064", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D4", "l2_cache_handle": "0x0154", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0045", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #065", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D5", "l2_cache_handle": "0x0155", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0046", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #066", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D6", "l2_cache_handle": "0x0156", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0047", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #067", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D7", "l2_cache_handle": "0x0157", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0048", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #068", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D8", "l2_cache_handle": "0x0158", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0049", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #069", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D9", "l2_cache_handle": "0x0159", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #070", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DA", "l2_cache_handle": "0x015A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #071", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DB", "l2_cache_handle": "0x015B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #072", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DC", "l2_cache_handle": "0x015C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #073", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DD", "l2_cache_handle": "0x015D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #074", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DE", "l2_cache_handle": "0x015E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #075", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DF", "l2_cache_handle": "0x015F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0050", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #076", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E0", "l2_cache_handle": "0x0160", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0051", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #077", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E1", "l2_cache_handle": "0x0161", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0052", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #078", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E2", "l2_cache_handle": "0x0162", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0053", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #079", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E3", "l2_cache_handle": "0x0163", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0054", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #080", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E4", "l2_cache_handle": "0x0164", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0055", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #081", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E5", "l2_cache_handle": "0x0165", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0056", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #082", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E6", "l2_cache_handle": "0x0166", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0057", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #083", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E7", "l2_cache_handle": "0x0167", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0058", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #084", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E8", "l2_cache_handle": "0x0168", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0059", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #085", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E9", "l2_cache_handle": "0x0169", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #086", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EA", "l2_cache_handle": "0x016A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #087", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EB", "l2_cache_handle": "0x016B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #088", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EC", "l2_cache_handle": "0x016C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #089", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00ED", "l2_cache_handle": "0x016D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #090", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EE", "l2_cache_handle": "0x016E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #091", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EF", "l2_cache_handle": "0x016F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0060", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #092", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F0", "l2_cache_handle": "0x0170", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0061", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #093", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F1", "l2_cache_handle": "0x0171", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0062", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #094", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F2", "l2_cache_handle": "0x0172", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0063", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #095", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F3", "l2_cache_handle": "0x0173", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0064", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #096", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F4", "l2_cache_handle": "0x0174", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0065", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #097", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F5", "l2_cache_handle": "0x0175", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0066", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #098", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F6", "l2_cache_handle": "0x0176", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0067", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #099", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F7", "l2_cache_handle": "0x0177", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0068", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #100", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F8", "l2_cache_handle": "0x0178", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0069", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #101", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F9", "l2_cache_handle": "0x0179", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #102", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FA", "l2_cache_handle": "0x017A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #103", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FB", "l2_cache_handle": "0x017B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #104", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FC", "l2_cache_handle": "0x017C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #105", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FD", "l2_cache_handle": "0x017D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #106", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FE", "l2_cache_handle": "0x017E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #107", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FF", "l2_cache_handle": "0x017F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0070", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #108", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0100", "l2_cache_handle": "0x0180", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0071", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #109", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0101", "l2_cache_handle": "0x0181", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0072", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #110", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0102", "l2_cache_handle": "0x0182", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0073", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #111", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0103", "l2_cache_handle": "0x0183", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0074", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #112", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0104", "l2_cache_handle": "0x0184", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0075", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #113", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0105", "l2_cache_handle": "0x0185", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0076", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #114", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0106", "l2_cache_handle": "0x0186", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0077", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #115", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0107", "l2_cache_handle": "0x0187", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0078", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #116", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0108", "l2_cache_handle": "0x0188", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0079", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #117", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0109", "l2_cache_handle": "0x0189", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #118", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010A", "l2_cache_handle": "0x018A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #119", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010B", "l2_cache_handle": "0x018B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #120", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010C", "l2_cache_handle": "0x018C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #121", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010D", "l2_cache_handle": "0x018D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #122", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010E", "l2_cache_handle": "0x018E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #123", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010F", "l2_cache_handle": "0x018F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0080", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #124", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0110", "l2_cache_handle": "0x0190", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0081", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #125", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0111", "l2_cache_handle": "0x0191", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0082", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #126", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0112", "l2_cache_handle": "0x0192", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0083", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #127", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0113", "l2_cache_handle": "0x0193", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0084", "type": 5, "bytes": 46, "description": "Memory Controller Information", "values": {"error_detecting_method": "None", "error_correcting_capabilities": ["None"], "supported_interleave": "One-way Interleave", "current_interleave": "One-way Interleave", "maximum_memory_module_size": "32768 MB", "maximum_total_memory_size": "491520 MB", "supported_speeds": ["70 ns", "60 ns"], "supported_memory_types": ["FPM", "EDO", "DIMM", "SDRAM"], "memory_module_voltage": "3.3 V", "associated_memory_slots": "15", "associated_memory_slots_data": ["0x0006", "0x0007", "0x0008", "0x0009", "0x000A", "0x000B", "0x000C", "0x000D", "0x000E", "0x000F", "0x0010", "0x0011", "0x0012", "0x0013", "0x0014"], "enabled_error_correcting_capabilities": ["None"]}}, {"handle": "0x0085", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #0", "bank_connections": "None", "current_speed": "Unknown", "type": "EDO DIMM", "installed_size": "2048 MB (Single-bank Connection)", "enabled_size": "2048 MB (Single-bank Connection)", "error_status": "OK"}}, {"handle": "0x0086", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #1", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0087", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #2", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0088", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #3", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0089", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #4", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008A", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #5", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008B", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #6", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008C", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #7", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008D", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #8", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008E", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #9", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008F", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #10", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0090", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #11", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0091", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #12", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0092", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #13", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0093", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #14", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0094", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0095", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0096", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0097", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0098", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0099", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00ED", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0100", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0101", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0102", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0103", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0104", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0105", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0106", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0107", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0108", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0109", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0110", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0111", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0112", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0113", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0114", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0115", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0116", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0117", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0118", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0119", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0120", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0121", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0122", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0123", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0124", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0125", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0126", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0127", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0128", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0129", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0130", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0131", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0132", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0133", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0134", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0135", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0136", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0137", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0138", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0139", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0140", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0141", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0142", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0143", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0144", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0145", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0146", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0147", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0148", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0149", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0150", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0151", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0152", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0153", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0154", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0155", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0156", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0157", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0158", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0159", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0160", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0161", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0162", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0163", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0164", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0165", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0166", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0167", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0168", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0169", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0170", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0171", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0172", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0173", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0174", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0175", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0176", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0177", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0178", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0179", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0180", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0181", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0182", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0183", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0184", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0185", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0186", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0187", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0188", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0189", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0190", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0191", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0192", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0193", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0194", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J19", "internal_connector_type": "9 Pin Dual Inline (pin 10 cut)", "external_reference_designator": "COM 1", "external_connector_type": "DB-9 male", "port_type": "Serial Port 16550A Compatible"}}, {"handle": "0x0195", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J23", "internal_connector_type": "25 Pin Dual Inline (pin 26 cut)", "external_reference_designator": "Parallel", "external_connector_type": "DB-25 female", "port_type": "Parallel Port ECP/EPP"}}, {"handle": "0x0196", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J11", "internal_connector_type": "None", "external_reference_designator": "Keyboard", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0197", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J12", "internal_connector_type": "None", "external_reference_designator": "PS/2 Mouse", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0198", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J8", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x0199", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J9", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019A", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J10", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019B", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J11", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "1", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:0f.0"}}, {"handle": "0x019C", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J12", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "2", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:10.0"}}, {"handle": "0x019D", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J13", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "3", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:11.0"}}, {"handle": "0x019E", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J14", "type": "32-bit PCI", "current_usage": "Available", "length": "Long", "id": "4", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:12.0"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 1 Information", "values": {"type": "Video", "status": "Disabled", "description": "VMware SVGA II"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 2 Information", "values": {"type": "Sound", "status": "Disabled", "description": "ES1371"}}, {"handle": "0x01A0", "type": 11, "bytes": 5, "description": "OEM Strings", "values": {"string_1": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]", "string_2": "Welcome to the Virtual Machine"}}, {"handle": "0x01A1", "type": 15, "bytes": 29, "description": "System Event Log", "values": {"area_length": "16 bytes", "header_start_offset": "0x0000", "header_length": "16 bytes", "data_start_offset": "0x0010", "access_method": "General-purpose non-volatile data functions", "access_address": "0x0000", "status": "Invalid, Full", "change_token": "0x00000036", "header_format": "Type 1", "supported_log_type_descriptors": "3", "descriptor_1": "POST error", "data_format_1": "POST results bitmap", "descriptor_2": "Single-bit ECC memory error", "data_format_2": "Multiple-event", "descriptor_3": "Multi-bit ECC memory error", "data_format_3": "Multiple-event"}}, {"handle": "0x01A2", "type": 16, "bytes": 23, "description": "Physical Memory Array", "values": {"location": "System Board Or Motherboard", "use": "System Memory", "error_correction_type": "None", "maximum_capacity": "3 GB", "error_information_handle": "Not Provided", "number_of_devices": "64"}}, {"handle": "0x01A3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "2048 MB", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #0", "bank_locator": "RAM slot #0", "type": "DRAM", "type_detail": "EDO", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #1", "bank_locator": "RAM slot #1", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #2", "bank_locator": "RAM slot #2", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #3", "bank_locator": "RAM slot #3", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #4", "bank_locator": "RAM slot #4", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #5", "bank_locator": "RAM slot #5", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #6", "bank_locator": "RAM slot #6", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #7", "bank_locator": "RAM slot #7", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #8", "bank_locator": "RAM slot #8", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #9", "bank_locator": "RAM slot #9", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #10", "bank_locator": "RAM slot #10", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #11", "bank_locator": "RAM slot #11", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #12", "bank_locator": "RAM slot #12", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #13", "bank_locator": "RAM slot #13", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #14", "bank_locator": "RAM slot #14", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #15", "bank_locator": "RAM slot #15", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #16", "bank_locator": "RAM slot #16", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #17", "bank_locator": "RAM slot #17", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #18", "bank_locator": "RAM slot #18", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #19", "bank_locator": "RAM slot #19", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #20", "bank_locator": "RAM slot #20", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #21", "bank_locator": "RAM slot #21", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #22", "bank_locator": "RAM slot #22", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #23", "bank_locator": "RAM slot #23", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #24", "bank_locator": "RAM slot #24", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #25", "bank_locator": "RAM slot #25", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #26", "bank_locator": "RAM slot #26", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #27", "bank_locator": "RAM slot #27", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #28", "bank_locator": "RAM slot #28", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #29", "bank_locator": "RAM slot #29", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #30", "bank_locator": "RAM slot #30", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #31", "bank_locator": "RAM slot #31", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #32", "bank_locator": "RAM slot #32", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #33", "bank_locator": "RAM slot #33", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #34", "bank_locator": "RAM slot #34", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #35", "bank_locator": "RAM slot #35", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #36", "bank_locator": "RAM slot #36", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #37", "bank_locator": "RAM slot #37", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #38", "bank_locator": "RAM slot #38", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #39", "bank_locator": "RAM slot #39", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #40", "bank_locator": "RAM slot #40", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #41", "bank_locator": "RAM slot #41", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #42", "bank_locator": "RAM slot #42", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #43", "bank_locator": "RAM slot #43", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #44", "bank_locator": "RAM slot #44", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #45", "bank_locator": "RAM slot #45", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #46", "bank_locator": "RAM slot #46", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #47", "bank_locator": "RAM slot #47", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #48", "bank_locator": "RAM slot #48", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #49", "bank_locator": "RAM slot #49", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #50", "bank_locator": "RAM slot #50", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #51", "bank_locator": "RAM slot #51", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #52", "bank_locator": "RAM slot #52", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #53", "bank_locator": "RAM slot #53", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #54", "bank_locator": "RAM slot #54", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #55", "bank_locator": "RAM slot #55", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #56", "bank_locator": "RAM slot #56", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #57", "bank_locator": "RAM slot #57", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #58", "bank_locator": "RAM slot #58", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #59", "bank_locator": "RAM slot #59", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #60", "bank_locator": "RAM slot #60", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #61", "bank_locator": "RAM slot #61", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #62", "bank_locator": "RAM slot #62", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #63", "bank_locator": "RAM slot #63", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #0", "bank_locator": "NVD #0", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #1", "bank_locator": "NVD #1", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #2", "bank_locator": "NVD #2", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #3", "bank_locator": "NVD #3", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #4", "bank_locator": "NVD #4", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #5", "bank_locator": "NVD #5", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #6", "bank_locator": "NVD #6", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #7", "bank_locator": "NVD #7", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #8", "bank_locator": "NVD #8", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #9", "bank_locator": "NVD #9", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01ED", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #10", "bank_locator": "NVD #10", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #11", "bank_locator": "NVD #11", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #12", "bank_locator": "NVD #12", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #13", "bank_locator": "NVD #13", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #14", "bank_locator": "NVD #14", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #15", "bank_locator": "NVD #15", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #16", "bank_locator": "NVD #16", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #17", "bank_locator": "NVD #17", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #18", "bank_locator": "NVD #18", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #19", "bank_locator": "NVD #19", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #20", "bank_locator": "NVD #20", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #21", "bank_locator": "NVD #21", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #22", "bank_locator": "NVD #22", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #23", "bank_locator": "NVD #23", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #24", "bank_locator": "NVD #24", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #25", "bank_locator": "NVD #25", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #26", "bank_locator": "NVD #26", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #27", "bank_locator": "NVD #27", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #28", "bank_locator": "NVD #28", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0200", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #29", "bank_locator": "NVD #29", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0201", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #30", "bank_locator": "NVD #30", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0202", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #31", "bank_locator": "NVD #31", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0203", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #32", "bank_locator": "NVD #32", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0204", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #33", "bank_locator": "NVD #33", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0205", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #34", "bank_locator": "NVD #34", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0206", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #35", "bank_locator": "NVD #35", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0207", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #36", "bank_locator": "NVD #36", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0208", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #37", "bank_locator": "NVD #37", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0209", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #38", "bank_locator": "NVD #38", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #39", "bank_locator": "NVD #39", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #40", "bank_locator": "NVD #40", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #41", "bank_locator": "NVD #41", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #42", "bank_locator": "NVD #42", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #43", "bank_locator": "NVD #43", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #44", "bank_locator": "NVD #44", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0210", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #45", "bank_locator": "NVD #45", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0211", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #46", "bank_locator": "NVD #46", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0212", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #47", "bank_locator": "NVD #47", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0213", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #48", "bank_locator": "NVD #48", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0214", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #49", "bank_locator": "NVD #49", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0215", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #50", "bank_locator": "NVD #50", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0216", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #51", "bank_locator": "NVD #51", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0217", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #52", "bank_locator": "NVD #52", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0218", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #53", "bank_locator": "NVD #53", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0219", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #54", "bank_locator": "NVD #54", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #55", "bank_locator": "NVD #55", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #56", "bank_locator": "NVD #56", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #57", "bank_locator": "NVD #57", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #58", "bank_locator": "NVD #58", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #59", "bank_locator": "NVD #59", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #60", "bank_locator": "NVD #60", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0220", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #61", "bank_locator": "NVD #61", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0221", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #62", "bank_locator": "NVD #62", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0222", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #63", "bank_locator": "NVD #63", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0223", "type": 18, "bytes": 23, "description": "32-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x0224", "type": 19, "bytes": 31, "description": "Memory Array Mapped Address", "values": {"starting_address": "0x00000000000", "ending_address": "0x0007FFFFFFF", "range_size": "2 GB", "physical_array_handle": "0x0025", "partition_width": "64"}}, {"handle": "0x0225", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0026", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0226", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0027", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0227", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0028", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0228", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0029", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0229", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0030", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0230", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0031", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0231", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0032", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0232", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0033", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0233", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0034", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0234", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0035", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0235", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0036", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0236", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0037", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0237", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0038", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0238", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0039", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0239", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0040", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0240", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0041", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0241", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0042", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0242", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0043", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0243", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0044", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0244", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0045", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0245", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0046", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0246", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0047", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0247", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0048", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0248", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0049", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0249", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0050", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0250", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0051", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0251", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0052", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0252", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0053", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0253", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0054", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0254", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0055", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0255", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0056", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0256", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0057", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0257", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0058", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0258", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0059", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0259", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0060", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0260", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0061", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0261", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0062", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0262", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0063", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0263", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0064", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0264", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0065", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0265", "type": 23, "bytes": 13, "description": "System Reset", "values": {"status": "Enabled", "watchdog_timer": "Present", "boot_option": "Do Not Reboot", "boot_option_on_limit": "Do Not Reboot", "reset_count": "Unknown", "reset_limit": "Unknown", "timer_interval": "Unknown", "timeout": "Unknown"}}, {"handle": "0x0266", "type": 24, "bytes": 5, "description": "Hardware Security", "values": {"power-on_password_status": "Disabled", "keyboard_password_status": "Unknown", "administrator_password_status": "Enabled", "front_panel_reset_status": "Unknown"}}, {"handle": "0x0267", "type": 30, "bytes": 6, "description": "Out-of-band Remote Access", "values": {"manufacturer_name": "Intel", "inbound_connection": "Enabled", "outbound_connection": "Disabled"}}, {"handle": "0x0268", "type": 32, "bytes": 20, "description": "System Boot Information", "values": {"status": "No errors detected"}}, {"handle": "0x0269", "type": 33, "bytes": 31, "description": "64-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x026A", "type": 126, "bytes": 4, "description": "Inactive", "values": {}}, {"handle": "0x026B", "type": 127, "bytes": 4, "description": "End Of Table", "values": {}}] diff --git a/tests/test_dmidecode.py b/tests/test_dmidecode.py new file mode 100644 index 00000000..77bf56fc --- /dev/null +++ b/tests/test_dmidecode.py @@ -0,0 +1,53 @@ +import os +import json +import unittest +import jc.parsers.dmidecode + +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + +class MyTests(unittest.TestCase): + + def setUp(self): + # input + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/dmidecode.out'), 'r', encoding='utf-8') as f: + self.centos_7_7_dmidecode = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dmidecode.out'), 'r', encoding='utf-8') as f: + self.ubuntu_18_4_dmidecode = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/dmidecode.out'), 'r', encoding='utf-8') as f: + self.fedora32_dmidecode = f.read() + + # output + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/dmidecode.json'), 'r', encoding='utf-8') as f: + self.centos_7_7_dmidecode_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dmidecode.json'), 'r', encoding='utf-8') as f: + self.ubuntu_18_4_dmidecode_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/dmidecode.json'), 'r', encoding='utf-8') as f: + self.fedora32_dmidecode_json = json.loads(f.read()) + + + def test_dmidecode_centos_7_7(self): + """ + Test 'dmidecode' on Centos 7.7 + """ + self.assertEqual(jc.parsers.dmidecode.parse(self.centos_7_7_dmidecode, quiet=True), self.centos_7_7_dmidecode_json) + + def test_dmidecode_ubuntu_18_4(self): + """ + Test 'dmidecode' on Ubuntu 18.4 + """ + self.assertEqual(jc.parsers.dmidecode.parse(self.ubuntu_18_4_dmidecode, quiet=True), self.ubuntu_18_4_dmidecode_json) + + def test_dmidecode_fedora32(self): + """ + Test 'dmidecode' on Fedora 32 + """ + self.assertEqual(jc.parsers.dmidecode.parse(self.fedora32_dmidecode, quiet=True), self.fedora32_dmidecode_json) + + +if __name__ == '__main__': + unittest.main() From 7138dd02b73073441a52c9b574bf0d6e02f0d7d9 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 14 May 2020 09:51:10 -0700 Subject: [PATCH 15/52] cleanup variables after adding to item --- jc/parsers/dmidecode.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index 31a6021d..6244f732 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -262,6 +262,12 @@ def parse(data, raw=False, quiet=False): 'description': line, 'values': {} } + + key = None + val = None + attribute = None + values = [] + key_data = [] continue # keys and values @@ -276,6 +282,9 @@ def parse(data, raw=False, quiet=False): if values: item['values'][attribute] = values values = [] + if key_data: + item['values'][f'{key}_data'] = key_data + key_data = [] key = line.split(':', maxsplit=1)[0].strip().lower().replace(' ', '_') val = line.split(':', maxsplit=1)[1].strip() @@ -292,8 +301,10 @@ def parse(data, raw=False, quiet=False): if values: item['values'][attribute] = values + values = [] if key_data: item['values'][f'{key}_data'] = key_data + key_data = [] attribute = line[:-1].strip().lower().replace(' ', '_') values = [] From 1cfcc2b592f682d2b50a0c4188fa3ae832a6c682 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 14 May 2020 09:58:16 -0700 Subject: [PATCH 16/52] tighten up line test logic when counting tabs --- jc/parsers/dmidecode.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index 6244f732..aa368bc7 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -274,6 +274,7 @@ def parse(data, raw=False, quiet=False): if item_values \ and len(line.split(':', maxsplit=1)) == 2 \ and line.startswith('\t') \ + and not line.startswith('\t\t') \ and not line.strip().endswith(':'): item_header = False item_values = True @@ -294,6 +295,7 @@ def parse(data, raw=False, quiet=False): # multi-line key if item_values \ and line.startswith('\t') \ + and not line.startswith('\t\t') \ and line.strip().endswith(':'): item_header = False item_values = True From b915eb97556ccc5fc60e8d23f7298ffec2d8e3b7 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 May 2020 15:15:08 -0700 Subject: [PATCH 17/52] initial osx parser --- jc/parsers/netstat.py | 98 +++++++++++---------- jc/parsers/netstat_osx.py | 174 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 227 insertions(+), 45 deletions(-) create mode 100644 jc/parsers/netstat_osx.py diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index db5c3194..d5155650 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -6,7 +6,7 @@ Usage: Compatibility: - 'linux' + 'linux', 'darwin' Examples: @@ -310,16 +310,17 @@ Examples: """ import string import jc.utils +import jc.parsers.netstat_osx class info(): - version = '1.4' + version = '1.5' description = 'netstat command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd - compatible = ['linux'] + compatible = ['linux', 'darwin'] magic_commands = ['netstat'] @@ -532,59 +533,66 @@ def parse(data, raw=False, quiet=False): cleandata = data.splitlines() cleandata = list(filter(None, cleandata)) - raw_output = [] - network = False - socket = False - bluetooth = False - headers = '' - network_list = [] - socket_list = [] - for line in cleandata: + # check for OSX vs Linux + # is this from OSX? + if cleandata[0] == 'Active Internet connections' or cleandata[0] == 'Active Internet connections (including servers)': + raw_output = jc.parsers.netstat_osx.parse(cleandata) - if line.startswith('Active Internet'): - network_list = [] - network = True - socket = False - bluetooth = False - continue + # use linux parser + else: + network = False + socket = False + bluetooth = False + headers = '' + network_list = [] + socket_list = [] - if line.startswith('Active UNIX'): - socket_list = [] - network = False - socket = True - bluetooth = False - continue + for line in cleandata: - if line.startswith('Active Bluetooth'): - network = False - socket = False - bluetooth = True - continue + if line.startswith('Active Internet'): + network_list = [] + network = True + socket = False + bluetooth = False + continue - if line.startswith('Proto'): - header_text = normalize_headers(line) - headers = header_text.split() - continue + if line.startswith('Active UNIX'): + socket_list = [] + network = False + socket = True + bluetooth = False + continue - if network: - network_list.append(parse_network(headers, line)) - continue + if line.startswith('Active Bluetooth'): + network = False + socket = False + bluetooth = True + continue - if socket: - socket_list.append(parse_socket(header_text, headers, line)) - continue + if line.startswith('Proto'): + header_text = normalize_headers(line) + headers = header_text.split() + continue - if bluetooth: - # maybe implement later if requested - continue + if network: + network_list.append(parse_network(headers, line)) + continue - for item in [network_list, socket_list]: - for entry in item: - raw_output.append(entry) + if socket: + socket_list.append(parse_socket(header_text, headers, line)) + continue - raw_output = parse_post(raw_output) + if bluetooth: + # maybe implement later if requested + continue + + for item in [network_list, socket_list]: + for entry in item: + raw_output.append(entry) + + raw_output = parse_post(raw_output) if raw: return raw_output diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py new file mode 100644 index 00000000..cb361830 --- /dev/null +++ b/jc/parsers/netstat_osx.py @@ -0,0 +1,174 @@ +"""jc - JSON CLI output utility OSX netstat Parser""" +import string +import jc.utils + + +def normalize_headers(header): + header = header.lower() + header = header.replace('local address', 'local_address') + header = header.replace('foreign address', 'foreign_address') + header = header.replace('(state)', 'state') + header = header.replace('-', '_') + + return header + + +def parse_network(headers, entry): + # Count words in header + # if len of line is one less than len of header, then insert None in field 5 + entry = entry.split(maxsplit=len(headers) - 1) + + if len(entry) == len(headers) - 1: + entry.insert(5, None) + + output_line = dict(zip(headers, entry)) + output_line['kind'] = 'network' + + return output_line + + +def parse_socket(headers, entry): + # Count words in header + # if len of line is one less than len of header, then insert None in field 5 + entry = entry.split(maxsplit=len(headers) - 1) + + if len(entry) == len(headers) - 1: + entry.insert(5, None) + + output_line = dict(zip(headers, entry)) + output_line['kind'] = 'socket' + + return output_line + + +def parse_post(raw_data): + # clean up trailing whitespace on each item in each entry + # flags --- = null + # program_name - = null + # split pid and program name and ip addresses and ports + # create network and transport protocol fields + + for entry in raw_data: + for item in entry: + try: + entry[item] = entry[item].rstrip() + except (AttributeError): + # skips trying to rstrip Null entries + pass + + if 'flags' in entry: + if entry['flags'] == '---': + entry['flags'] = None + + if 'program_name' in entry: + entry['program_name'] = entry['program_name'].strip() + if entry['program_name'] == '-': + entry['program_name'] = None + + if entry['program_name']: + pid = entry['program_name'].split('/', maxsplit=1)[0] + name = entry['program_name'].split('/', maxsplit=1)[1] + entry['pid'] = pid + entry['program_name'] = name + + if 'local_address' in entry: + if entry['local_address']: + ladd = entry['local_address'].rsplit(':', maxsplit=1)[0] + lport = entry['local_address'].rsplit(':', maxsplit=1)[1] + entry['local_address'] = ladd + entry['local_port'] = lport + + if 'foreign_address' in entry: + if entry['foreign_address']: + fadd = entry['foreign_address'].rsplit(':', maxsplit=1)[0] + fport = entry['foreign_address'].rsplit(':', maxsplit=1)[1] + entry['foreign_address'] = fadd + entry['foreign_port'] = fport + + if 'proto' in entry and 'kind' in entry: + if entry['kind'] == 'network': + if 'tcp' in entry['proto']: + entry['transport_protocol'] = 'tcp' + elif 'udp' in entry['proto']: + entry['transport_protocol'] = 'udp' + else: + entry['transport_protocol'] = None + + if '6' in entry['proto']: + entry['network_protocol'] = 'ipv6' + else: + entry['network_protocol'] = 'ipv4' + + return raw_data + + +def parse(cleandata): + """ + Main text parsing function + + Parameters: + + cleandata: (string) text data to parse + + Returns: + + List of dictionaries. Raw or processed structured data. + """ + raw_output = [] + network = False + socket = False + bluetooth = False + headers = '' + network_list = [] + socket_list = [] + + for line in cleandata: + + if line.startswith('Active Internet'): + network_list = [] + network = True + socket = False + bluetooth = False + continue + + if line.startswith('Active LOCAL (UNIX) domain sockets'): + socket_list = [] + network = False + socket = True + bluetooth = False + continue + + if line.startswith('Active Bluetooth'): + network = False + socket = False + bluetooth = True + continue + + if line.startswith('Socket ') or line.startswith('Proto '): + header_text = normalize_headers(line) + headers = header_text.split() + continue + + if line.startswith('Address '): + header_text = normalize_headers(line) + headers = header_text.split() + continue + + if network: + network_list.append(parse_network(headers, line)) + continue + + if socket: + socket_list.append(parse_socket(headers, line)) + continue + + if bluetooth: + # maybe implement later if requested + continue + + for item in [network_list, socket_list]: + for entry in item: + raw_output.append(entry) + + return raw_output + From 9192a0907364c772558380be1373b8dcea972a6d Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 May 2020 16:26:04 -0700 Subject: [PATCH 18/52] parse all sections --- jc/parsers/netstat_osx.py | 158 ++++++++++++++++++++++++++++++-------- 1 file changed, 124 insertions(+), 34 deletions(-) diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py index cb361830..03b9f0f8 100644 --- a/jc/parsers/netstat_osx.py +++ b/jc/parsers/netstat_osx.py @@ -41,6 +41,47 @@ def parse_socket(headers, entry): return output_line +def parse_reg_kernel_control(headers, entry): + # Count words in header + # if len of line is one less than len of header, then insert None in field 5 + entry = entry.split(maxsplit=len(headers) - 1) + + if len(entry) == len(headers) - 1: + entry.insert(5, None) + + output_line = dict(zip(headers, entry)) + output_line['kind'] = 'Registered kernel control module' + + return output_line + + +def parse_active_kernel_event(headers, entry): + # Count words in header + # if len of line is one less than len of header, then insert None in field 5 + entry = entry.split(maxsplit=len(headers) - 1) + + if len(entry) == len(headers) - 1: + entry.insert(5, None) + + output_line = dict(zip(headers, entry)) + output_line['kind'] = 'Active kernel event socket' + + return output_line + +def parse_active_kernel_control(headers, entry): + # Count words in header + # if len of line is one less than len of header, then insert None in field 5 + entry = entry.split(maxsplit=len(headers) - 1) + + if len(entry) == len(headers) - 1: + entry.insert(5, None) + + output_line = dict(zip(headers, entry)) + output_line['kind'] = 'Active kernel control socket' + + return output_line + + def parse_post(raw_data): # clean up trailing whitespace on each item in each entry # flags --- = null @@ -49,28 +90,6 @@ def parse_post(raw_data): # create network and transport protocol fields for entry in raw_data: - for item in entry: - try: - entry[item] = entry[item].rstrip() - except (AttributeError): - # skips trying to rstrip Null entries - pass - - if 'flags' in entry: - if entry['flags'] == '---': - entry['flags'] = None - - if 'program_name' in entry: - entry['program_name'] = entry['program_name'].strip() - if entry['program_name'] == '-': - entry['program_name'] = None - - if entry['program_name']: - pid = entry['program_name'].split('/', maxsplit=1)[0] - name = entry['program_name'].split('/', maxsplit=1)[1] - entry['pid'] = pid - entry['program_name'] = name - if 'local_address' in entry: if entry['local_address']: ladd = entry['local_address'].rsplit(':', maxsplit=1)[0] @@ -116,59 +135,130 @@ def parse(cleandata): """ raw_output = [] network = False + multipath = False + reg_kernel_control = False + active_kernel_event = False + active_kernel_control = False socket = False - bluetooth = False headers = '' network_list = [] socket_list = [] + reg_kernel_control_list = [] + active_kernel_event_list = [] + active_kernel_control_list = [] for line in cleandata: if line.startswith('Active Internet'): network_list = [] network = True + multipath = False socket = False - bluetooth = False + reg_kernel_control = False + active_kernel_event = False + active_kernel_control = False + continue + + if line.startswith('Active Multipath Internet connections'): + # skip for now + network = False + multipath = True + socket = False + reg_kernel_control = False + active_kernel_event = False + active_kernel_control = False continue if line.startswith('Active LOCAL (UNIX) domain sockets'): socket_list = [] network = False + multipath = False socket = True - bluetooth = False + reg_kernel_control = False + active_kernel_event = False + active_kernel_control = False continue - if line.startswith('Active Bluetooth'): + if line.startswith('Registered kernel control modules'): network = False + multipath = False socket = False - bluetooth = True + reg_kernel_control = True + active_kernel_event = False + active_kernel_control = False continue - if line.startswith('Socket ') or line.startswith('Proto '): + if line.startswith('Active kernel event sockets'): + network = False + multipath = False + socket = False + reg_kernel_control = False + active_kernel_event = True + active_kernel_control = False + continue + + if line.startswith('Active kernel control sockets'): + network = False + multipath = False + socket = False + reg_kernel_control = False + active_kernel_event = False + active_kernel_control = True + continue + + # get headers + if network and (line.startswith('Socket ') or line.startswith('Proto ')): header_text = normalize_headers(line) headers = header_text.split() continue - if line.startswith('Address '): + if socket and line.startswith('Address '): header_text = normalize_headers(line) headers = header_text.split() continue + if reg_kernel_control and line.startswith('id '): + header_text = normalize_headers(line) + headers = header_text.split() + continue + + if active_kernel_event and line.startswith('id '): + header_text = normalize_headers(line) + headers = header_text.split() + continue + + if active_kernel_control and line.startswith('Proto '): + header_text = normalize_headers(line) + headers = header_text.split() + continue + + # get items if network: network_list.append(parse_network(headers, line)) continue + if multipath: + # skip for now + continue + if socket: socket_list.append(parse_socket(headers, line)) continue - if bluetooth: - # maybe implement later if requested + if reg_kernel_control: + reg_kernel_control_list.append(parse_reg_kernel_control(headers, line)) continue - for item in [network_list, socket_list]: - for entry in item: - raw_output.append(entry) + if active_kernel_event: + active_kernel_event_list.append(parse_active_kernel_event(headers, line)) + continue + + if active_kernel_control: + active_kernel_control_list.append(parse_active_kernel_control(headers, line)) + continue + + for item in [network_list, socket_list, reg_kernel_control_list, active_kernel_event_list, active_kernel_control_list]: + raw_output.extend(item) return raw_output From 9363f430f20951e6fa739f06c85c5b6b3421b60d Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 May 2020 16:26:41 -0700 Subject: [PATCH 19/52] use list extend method to simplify code --- jc/parsers/netstat.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index d5155650..93c3b638 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -589,8 +589,7 @@ def parse(data, raw=False, quiet=False): continue for item in [network_list, socket_list]: - for entry in item: - raw_output.append(entry) + raw_output.extend(item) raw_output = parse_post(raw_output) From 1639dee1bb93f6f89e8bb7b37134dc1f561c479c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 May 2020 17:13:03 -0700 Subject: [PATCH 20/52] fix parse_post --- jc/parsers/netstat_osx.py | 45 +++++++++------------------------------ 1 file changed, 10 insertions(+), 35 deletions(-) diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py index 03b9f0f8..4993bfff 100644 --- a/jc/parsers/netstat_osx.py +++ b/jc/parsers/netstat_osx.py @@ -1,6 +1,4 @@ """jc - JSON CLI output utility OSX netstat Parser""" -import string -import jc.utils def normalize_headers(header): @@ -8,6 +6,7 @@ def normalize_headers(header): header = header.replace('local address', 'local_address') header = header.replace('foreign address', 'foreign_address') header = header.replace('(state)', 'state') + header = header.replace('inode', 'osx_inode') header = header.replace('-', '_') return header @@ -31,10 +30,6 @@ def parse_socket(headers, entry): # Count words in header # if len of line is one less than len of header, then insert None in field 5 entry = entry.split(maxsplit=len(headers) - 1) - - if len(entry) == len(headers) - 1: - entry.insert(5, None) - output_line = dict(zip(headers, entry)) output_line['kind'] = 'socket' @@ -45,10 +40,6 @@ def parse_reg_kernel_control(headers, entry): # Count words in header # if len of line is one less than len of header, then insert None in field 5 entry = entry.split(maxsplit=len(headers) - 1) - - if len(entry) == len(headers) - 1: - entry.insert(5, None) - output_line = dict(zip(headers, entry)) output_line['kind'] = 'Registered kernel control module' @@ -59,23 +50,16 @@ def parse_active_kernel_event(headers, entry): # Count words in header # if len of line is one less than len of header, then insert None in field 5 entry = entry.split(maxsplit=len(headers) - 1) - - if len(entry) == len(headers) - 1: - entry.insert(5, None) - output_line = dict(zip(headers, entry)) output_line['kind'] = 'Active kernel event socket' return output_line + def parse_active_kernel_control(headers, entry): # Count words in header # if len of line is one less than len of header, then insert None in field 5 entry = entry.split(maxsplit=len(headers) - 1) - - if len(entry) == len(headers) - 1: - entry.insert(5, None) - output_line = dict(zip(headers, entry)) output_line['kind'] = 'Active kernel control socket' @@ -83,41 +67,33 @@ def parse_active_kernel_control(headers, entry): def parse_post(raw_data): - # clean up trailing whitespace on each item in each entry - # flags --- = null - # program_name - = null - # split pid and program name and ip addresses and ports # create network and transport protocol fields - for entry in raw_data: if 'local_address' in entry: if entry['local_address']: - ladd = entry['local_address'].rsplit(':', maxsplit=1)[0] - lport = entry['local_address'].rsplit(':', maxsplit=1)[1] + ladd = entry['local_address'].rsplit('.', maxsplit=1)[0] + lport = entry['local_address'].rsplit('.', maxsplit=1)[1] entry['local_address'] = ladd entry['local_port'] = lport if 'foreign_address' in entry: if entry['foreign_address']: - fadd = entry['foreign_address'].rsplit(':', maxsplit=1)[0] - fport = entry['foreign_address'].rsplit(':', maxsplit=1)[1] + fadd = entry['foreign_address'].rsplit('.', maxsplit=1)[0] + fport = entry['foreign_address'].rsplit('.', maxsplit=1)[1] entry['foreign_address'] = fadd entry['foreign_port'] = fport if 'proto' in entry and 'kind' in entry: if entry['kind'] == 'network': - if 'tcp' in entry['proto']: - entry['transport_protocol'] = 'tcp' - elif 'udp' in entry['proto']: - entry['transport_protocol'] = 'udp' - else: - entry['transport_protocol'] = None + entry['transport_protocol'] = entry['proto'][:-1] if '6' in entry['proto']: entry['network_protocol'] = 'ipv6' else: entry['network_protocol'] = 'ipv4' + # + return raw_data @@ -260,5 +236,4 @@ def parse(cleandata): for item in [network_list, socket_list, reg_kernel_control_list, active_kernel_event_list, active_kernel_control_list]: raw_output.extend(item) - return raw_output - + return parse_post(raw_output) From 9d5ba4c83404e4fab5c0f40c30b4735685499a31 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 May 2020 17:14:04 -0700 Subject: [PATCH 21/52] formatting --- jc/parsers/netstat_osx.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py index 4993bfff..d274ea22 100644 --- a/jc/parsers/netstat_osx.py +++ b/jc/parsers/netstat_osx.py @@ -92,8 +92,6 @@ def parse_post(raw_data): else: entry['network_protocol'] = 'ipv4' - # - return raw_data From a4371cd187fe5077018edbfeee77eb17c6a90ad3 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 May 2020 17:36:16 -0700 Subject: [PATCH 22/52] support netstat -A --- jc/parsers/netstat_osx.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py index d274ea22..72f91db1 100644 --- a/jc/parsers/netstat_osx.py +++ b/jc/parsers/netstat_osx.py @@ -191,17 +191,17 @@ def parse(cleandata): headers = header_text.split() continue - if reg_kernel_control and line.startswith('id '): + if reg_kernel_control and (line.startswith('id ') or line.startswith('kctlref ')): header_text = normalize_headers(line) headers = header_text.split() continue - if active_kernel_event and line.startswith('id '): + if active_kernel_event and (line.startswith('Proto ') or line.startswith(' pcb ')): header_text = normalize_headers(line) headers = header_text.split() continue - if active_kernel_control and line.startswith('Proto '): + if active_kernel_control and (line.startswith('Proto ') or line.startswith(' pcb ')): header_text = normalize_headers(line) headers = header_text.split() continue From f5feedb90b39e5c3f4564615482d47ccd145844f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 May 2020 17:38:14 -0700 Subject: [PATCH 23/52] fix comments --- jc/parsers/netstat_osx.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py index 72f91db1..a3267d6c 100644 --- a/jc/parsers/netstat_osx.py +++ b/jc/parsers/netstat_osx.py @@ -13,10 +13,9 @@ def normalize_headers(header): def parse_network(headers, entry): - # Count words in header - # if len of line is one less than len of header, then insert None in field 5 entry = entry.split(maxsplit=len(headers) - 1) + # if len of line is one less than len of header, then insert None in field 5 if len(entry) == len(headers) - 1: entry.insert(5, None) @@ -27,8 +26,6 @@ def parse_network(headers, entry): def parse_socket(headers, entry): - # Count words in header - # if len of line is one less than len of header, then insert None in field 5 entry = entry.split(maxsplit=len(headers) - 1) output_line = dict(zip(headers, entry)) output_line['kind'] = 'socket' @@ -37,8 +34,6 @@ def parse_socket(headers, entry): def parse_reg_kernel_control(headers, entry): - # Count words in header - # if len of line is one less than len of header, then insert None in field 5 entry = entry.split(maxsplit=len(headers) - 1) output_line = dict(zip(headers, entry)) output_line['kind'] = 'Registered kernel control module' @@ -47,8 +42,6 @@ def parse_reg_kernel_control(headers, entry): def parse_active_kernel_event(headers, entry): - # Count words in header - # if len of line is one less than len of header, then insert None in field 5 entry = entry.split(maxsplit=len(headers) - 1) output_line = dict(zip(headers, entry)) output_line['kind'] = 'Active kernel event socket' @@ -57,8 +50,6 @@ def parse_active_kernel_event(headers, entry): def parse_active_kernel_control(headers, entry): - # Count words in header - # if len of line is one less than len of header, then insert None in field 5 entry = entry.split(maxsplit=len(headers) - 1) output_line = dict(zip(headers, entry)) output_line['kind'] = 'Active kernel control socket' From c8216850abd2d0b8cc6761453f853f296e8a28f3 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 20 May 2020 07:19:24 -0700 Subject: [PATCH 24/52] code cleanup --- jc/parsers/netstat_osx.py | 74 ++++++++++----------------------------- 1 file changed, 19 insertions(+), 55 deletions(-) diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py index a3267d6c..fa0be84e 100644 --- a/jc/parsers/netstat_osx.py +++ b/jc/parsers/netstat_osx.py @@ -12,47 +12,21 @@ def normalize_headers(header): return header -def parse_network(headers, entry): +def parse_item(headers, entry, kind): entry = entry.split(maxsplit=len(headers) - 1) - # if len of line is one less than len of header, then insert None in field 5 - if len(entry) == len(headers) - 1: - entry.insert(5, None) + # TODO: Fix this area + # fixup udp records with no state field entry + if entry[0].startswith('udp'): + entry.insert(-1, None) + # if len(entry) == len(headers) - 1: + # if len(headers) == 6: + # entry.insert(5, None) + # else: + # entry.insert(7, None) output_line = dict(zip(headers, entry)) - output_line['kind'] = 'network' - - return output_line - - -def parse_socket(headers, entry): - entry = entry.split(maxsplit=len(headers) - 1) - output_line = dict(zip(headers, entry)) - output_line['kind'] = 'socket' - - return output_line - - -def parse_reg_kernel_control(headers, entry): - entry = entry.split(maxsplit=len(headers) - 1) - output_line = dict(zip(headers, entry)) - output_line['kind'] = 'Registered kernel control module' - - return output_line - - -def parse_active_kernel_event(headers, entry): - entry = entry.split(maxsplit=len(headers) - 1) - output_line = dict(zip(headers, entry)) - output_line['kind'] = 'Active kernel event socket' - - return output_line - - -def parse_active_kernel_control(headers, entry): - entry = entry.split(maxsplit=len(headers) - 1) - output_line = dict(zip(headers, entry)) - output_line['kind'] = 'Active kernel control socket' + output_line['kind'] = kind return output_line @@ -88,7 +62,7 @@ def parse_post(raw_data): def parse(cleandata): """ - Main text parsing function + Main text parsing function for OSX netstat Parameters: @@ -96,7 +70,7 @@ def parse(cleandata): Returns: - List of dictionaries. Raw or processed structured data. + List of dictionaries. Raw structured data. """ raw_output = [] network = False @@ -105,17 +79,11 @@ def parse(cleandata): active_kernel_event = False active_kernel_control = False socket = False - headers = '' - network_list = [] - socket_list = [] - reg_kernel_control_list = [] - active_kernel_event_list = [] - active_kernel_control_list = [] + headers = None for line in cleandata: if line.startswith('Active Internet'): - network_list = [] network = True multipath = False socket = False @@ -135,7 +103,6 @@ def parse(cleandata): continue if line.startswith('Active LOCAL (UNIX) domain sockets'): - socket_list = [] network = False multipath = False socket = True @@ -199,7 +166,7 @@ def parse(cleandata): # get items if network: - network_list.append(parse_network(headers, line)) + raw_output.append(parse_item(headers, line, 'network')) continue if multipath: @@ -207,22 +174,19 @@ def parse(cleandata): continue if socket: - socket_list.append(parse_socket(headers, line)) + raw_output.append(parse_item(headers, line, 'socket')) continue if reg_kernel_control: - reg_kernel_control_list.append(parse_reg_kernel_control(headers, line)) + raw_output.append(parse_item(headers, line, 'Registered kernel control module')) continue if active_kernel_event: - active_kernel_event_list.append(parse_active_kernel_event(headers, line)) + raw_output.append(parse_item(headers, line, 'Active kernel event socket')) continue if active_kernel_control: - active_kernel_control_list.append(parse_active_kernel_control(headers, line)) + raw_output.append(parse_item(headers, line, 'Active kernel control socket')) continue - for item in [network_list, socket_list, reg_kernel_control_list, active_kernel_event_list, active_kernel_control_list]: - raw_output.extend(item) - return parse_post(raw_output) From bcd370a6a01a115d470776f5690f8571d68d3930 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 20 May 2020 08:19:45 -0700 Subject: [PATCH 25/52] code cleanup --- jc/parsers/netstat.py | 16 ++++------------ jc/parsers/netstat_osx.py | 4 +--- 2 files changed, 5 insertions(+), 15 deletions(-) diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index 93c3b638..f55b50b9 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -419,7 +419,6 @@ def parse_network(headers, entry): def parse_socket(header_text, headers, entry): - output_line = {} # get the column # of first letter of "state" state_col = header_text.find('state') # get the program name column area @@ -545,21 +544,17 @@ def parse(data, raw=False, quiet=False): network = False socket = False bluetooth = False - headers = '' - network_list = [] - socket_list = [] + headers = None for line in cleandata: if line.startswith('Active Internet'): - network_list = [] network = True socket = False bluetooth = False continue if line.startswith('Active UNIX'): - socket_list = [] network = False socket = True bluetooth = False @@ -577,20 +572,17 @@ def parse(data, raw=False, quiet=False): continue if network: - network_list.append(parse_network(headers, line)) + raw_output.append(parse_network(headers, line)) continue if socket: - socket_list.append(parse_socket(header_text, headers, line)) + raw_output.append(parse_socket(header_text, headers, line)) continue if bluetooth: - # maybe implement later if requested + # not implemented continue - for item in [network_list, socket_list]: - raw_output.extend(item) - raw_output = parse_post(raw_output) if raw: diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py index fa0be84e..8f435789 100644 --- a/jc/parsers/netstat_osx.py +++ b/jc/parsers/netstat_osx.py @@ -79,7 +79,6 @@ def parse(cleandata): active_kernel_event = False active_kernel_control = False socket = False - headers = None for line in cleandata: @@ -93,7 +92,6 @@ def parse(cleandata): continue if line.startswith('Active Multipath Internet connections'): - # skip for now network = False multipath = True socket = False @@ -170,7 +168,7 @@ def parse(cleandata): continue if multipath: - # skip for now + # not implemented continue if socket: From ce9b55059a28d363b8b0ae4f3ccbdbdc4bf4b58e Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 20 May 2020 11:24:38 -0700 Subject: [PATCH 26/52] organize files --- jc/parsers/netstat.py | 171 +--------------------------------- jc/parsers/netstat_linux.py | 181 ++++++++++++++++++++++++++++++++++++ 2 files changed, 185 insertions(+), 167 deletions(-) create mode 100644 jc/parsers/netstat_linux.py diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index f55b50b9..d56df974 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -308,9 +308,6 @@ Examples: ... ] """ -import string -import jc.utils -import jc.parsers.netstat_osx class info(): @@ -392,127 +389,6 @@ def process(proc_data): return proc_data -def normalize_headers(header): - header = header.lower() - header = header.replace('local address', 'local_address') - header = header.replace('foreign address', 'foreign_address') - header = header.replace('pid/program name', 'program_name') - header = header.replace('security context', 'security_context') - header = header.replace('i-node', 'inode') - header = header.replace('-', '_') - - return header - - -def parse_network(headers, entry): - # Count words in header - # if len of line is one less than len of header, then insert None in field 5 - entry = entry.split(maxsplit=len(headers) - 1) - - if len(entry) == len(headers) - 1: - entry.insert(5, None) - - output_line = dict(zip(headers, entry)) - output_line['kind'] = 'network' - - return output_line - - -def parse_socket(header_text, headers, entry): - # get the column # of first letter of "state" - state_col = header_text.find('state') - # get the program name column area - pn_start = header_text.find('program_name') - pn_end = header_text.find('path') - 1 - - # remove [ and ] from each line - entry = entry.replace('[ ]', '---') - entry = entry.replace('[', ' ').replace(']', ' ') - - # find program_name column area and substitute spaces with \u2063 there - old_pn = entry[pn_start:pn_end] - new_pn = old_pn.replace(' ', '\u2063') - entry = entry.replace(old_pn, new_pn) - - entry_list = entry.split(maxsplit=len(headers) - 1) - # check column # to see if state column is populated - if entry[state_col] in string.whitespace: - entry_list.insert(4, None) - - output_line = dict(zip(headers, entry_list)) - output_line['kind'] = 'socket' - - # fix program_name field to turn \u2063 back to spaces - if 'program_name' in output_line: - if output_line['program_name']: - old_d_pn = output_line['program_name'] - new_d_pn = old_d_pn.replace('\u2063', ' ') - output_line['program_name'] = new_d_pn - - return output_line - - -def parse_post(raw_data): - # clean up trailing whitespace on each item in each entry - # flags --- = null - # program_name - = null - # split pid and program name and ip addresses and ports - # create network and transport protocol fields - - for entry in raw_data: - for item in entry: - try: - entry[item] = entry[item].rstrip() - except (AttributeError): - # skips trying to rstrip Null entries - pass - - if 'flags' in entry: - if entry['flags'] == '---': - entry['flags'] = None - - if 'program_name' in entry: - entry['program_name'] = entry['program_name'].strip() - if entry['program_name'] == '-': - entry['program_name'] = None - - if entry['program_name']: - pid = entry['program_name'].split('/', maxsplit=1)[0] - name = entry['program_name'].split('/', maxsplit=1)[1] - entry['pid'] = pid - entry['program_name'] = name - - if 'local_address' in entry: - if entry['local_address']: - ladd = entry['local_address'].rsplit(':', maxsplit=1)[0] - lport = entry['local_address'].rsplit(':', maxsplit=1)[1] - entry['local_address'] = ladd - entry['local_port'] = lport - - if 'foreign_address' in entry: - if entry['foreign_address']: - fadd = entry['foreign_address'].rsplit(':', maxsplit=1)[0] - fport = entry['foreign_address'].rsplit(':', maxsplit=1)[1] - entry['foreign_address'] = fadd - entry['foreign_port'] = fport - - if 'proto' in entry and 'kind' in entry: - if entry['kind'] == 'network': - if 'tcp' in entry['proto']: - entry['transport_protocol'] = 'tcp' - elif 'udp' in entry['proto']: - entry['transport_protocol'] = 'udp' - else: - entry['transport_protocol'] = None - - if '6' in entry['proto']: - entry['network_protocol'] = 'ipv6' - else: - entry['network_protocol'] = 'ipv4' - - return raw_data - - def parse(data, raw=False, quiet=False): """ Main text parsing function @@ -527,6 +403,7 @@ def parse(data, raw=False, quiet=False): List of dictionaries. Raw or processed structured data. """ + import jc.utils if not quiet: jc.utils.compatibility(__name__, info.compatible) @@ -537,53 +414,13 @@ def parse(data, raw=False, quiet=False): # check for OSX vs Linux # is this from OSX? if cleandata[0] == 'Active Internet connections' or cleandata[0] == 'Active Internet connections (including servers)': + import jc.parsers.netstat_osx raw_output = jc.parsers.netstat_osx.parse(cleandata) # use linux parser else: - network = False - socket = False - bluetooth = False - headers = None - - for line in cleandata: - - if line.startswith('Active Internet'): - network = True - socket = False - bluetooth = False - continue - - if line.startswith('Active UNIX'): - network = False - socket = True - bluetooth = False - continue - - if line.startswith('Active Bluetooth'): - network = False - socket = False - bluetooth = True - continue - - if line.startswith('Proto'): - header_text = normalize_headers(line) - headers = header_text.split() - continue - - if network: - raw_output.append(parse_network(headers, line)) - continue - - if socket: - raw_output.append(parse_socket(header_text, headers, line)) - continue - - if bluetooth: - # not implemented - continue - - raw_output = parse_post(raw_output) + import jc.parsers.netstat_linux + raw_output = jc.parsers.netstat_linux.parse(cleandata) if raw: return raw_output diff --git a/jc/parsers/netstat_linux.py b/jc/parsers/netstat_linux.py new file mode 100644 index 00000000..2d55d42a --- /dev/null +++ b/jc/parsers/netstat_linux.py @@ -0,0 +1,181 @@ +"""jc - JSON CLI output utility Linux netstat Parser""" +import string + + +def normalize_headers(header): + header = header.lower() + header = header.replace('local address', 'local_address') + header = header.replace('foreign address', 'foreign_address') + header = header.replace('pid/program name', 'program_name') + header = header.replace('security context', 'security_context') + header = header.replace('i-node', 'inode') + header = header.replace('-', '_') + + return header + + +def parse_network(headers, entry): + # Count words in header + # if len of line is one less than len of header, then insert None in field 5 + entry = entry.split(maxsplit=len(headers) - 1) + + if len(entry) == len(headers) - 1: + entry.insert(5, None) + + output_line = dict(zip(headers, entry)) + output_line['kind'] = 'network' + + return output_line + + +def parse_socket(header_text, headers, entry): + # get the column # of first letter of "state" + state_col = header_text.find('state') + # get the program name column area + pn_start = header_text.find('program_name') + pn_end = header_text.find('path') - 1 + + # remove [ and ] from each line + entry = entry.replace('[ ]', '---') + entry = entry.replace('[', ' ').replace(']', ' ') + + # find program_name column area and substitute spaces with \u2063 there + old_pn = entry[pn_start:pn_end] + new_pn = old_pn.replace(' ', '\u2063') + entry = entry.replace(old_pn, new_pn) + + entry_list = entry.split(maxsplit=len(headers) - 1) + # check column # to see if state column is populated + if entry[state_col] in string.whitespace: + entry_list.insert(4, None) + + output_line = dict(zip(headers, entry_list)) + output_line['kind'] = 'socket' + + # fix program_name field to turn \u2063 back to spaces + if 'program_name' in output_line: + if output_line['program_name']: + old_d_pn = output_line['program_name'] + new_d_pn = old_d_pn.replace('\u2063', ' ') + output_line['program_name'] = new_d_pn + + return output_line + + +def parse_post(raw_data): + # clean up trailing whitespace on each item in each entry + # flags --- = null + # program_name - = null + # split pid and program name and ip addresses and ports + # create network and transport protocol fields + + for entry in raw_data: + for item in entry: + try: + entry[item] = entry[item].rstrip() + except (AttributeError): + # skips trying to rstrip Null entries + pass + + if 'flags' in entry: + if entry['flags'] == '---': + entry['flags'] = None + + if 'program_name' in entry: + entry['program_name'] = entry['program_name'].strip() + if entry['program_name'] == '-': + entry['program_name'] = None + + if entry['program_name']: + pid = entry['program_name'].split('/', maxsplit=1)[0] + name = entry['program_name'].split('/', maxsplit=1)[1] + entry['pid'] = pid + entry['program_name'] = name + + if 'local_address' in entry: + if entry['local_address']: + ladd = entry['local_address'].rsplit(':', maxsplit=1)[0] + lport = entry['local_address'].rsplit(':', maxsplit=1)[1] + entry['local_address'] = ladd + entry['local_port'] = lport + + if 'foreign_address' in entry: + if entry['foreign_address']: + fadd = entry['foreign_address'].rsplit(':', maxsplit=1)[0] + fport = entry['foreign_address'].rsplit(':', maxsplit=1)[1] + entry['foreign_address'] = fadd + entry['foreign_port'] = fport + + if 'proto' in entry and 'kind' in entry: + if entry['kind'] == 'network': + if 'tcp' in entry['proto']: + entry['transport_protocol'] = 'tcp' + elif 'udp' in entry['proto']: + entry['transport_protocol'] = 'udp' + else: + entry['transport_protocol'] = None + + if '6' in entry['proto']: + entry['network_protocol'] = 'ipv6' + else: + entry['network_protocol'] = 'ipv4' + + return raw_data + + +def parse(cleandata): + """ + Main text parsing function for OSX netstat + + Parameters: + + cleandata: (string) text data to parse + + Returns: + + List of dictionaries. Raw structured data. + """ + raw_output = [] + network = False + socket = False + bluetooth = False + headers = None + + for line in cleandata: + + if line.startswith('Active Internet'): + network = True + socket = False + bluetooth = False + continue + + if line.startswith('Active UNIX'): + network = False + socket = True + bluetooth = False + continue + + if line.startswith('Active Bluetooth'): + network = False + socket = False + bluetooth = True + continue + + if line.startswith('Proto'): + header_text = normalize_headers(line) + headers = header_text.split() + continue + + if network: + raw_output.append(parse_network(headers, line)) + continue + + if socket: + raw_output.append(parse_socket(header_text, headers, line)) + continue + + if bluetooth: + # not implemented + continue + + return parse_post(raw_output) From de52d84e82df6d8c5e2416c6bc44e59c41c685da Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 20 May 2020 12:02:32 -0700 Subject: [PATCH 27/52] fix udp state and udp46 entries --- jc/parsers/netstat_osx.py | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py index 8f435789..2cde8c21 100644 --- a/jc/parsers/netstat_osx.py +++ b/jc/parsers/netstat_osx.py @@ -15,15 +15,11 @@ def normalize_headers(header): def parse_item(headers, entry, kind): entry = entry.split(maxsplit=len(headers) - 1) - # TODO: Fix this area # fixup udp records with no state field entry - if entry[0].startswith('udp'): - entry.insert(-1, None) - # if len(entry) == len(headers) - 1: - # if len(headers) == 6: - # entry.insert(5, None) - # else: - # entry.insert(7, None) + if kind == 'network' and entry[0].startswith('udp'): + entry.insert(5, None) + if kind == 'network' and 'socket' in headers and 'udp' in str(entry): + entry.insert(7, None) output_line = dict(zip(headers, entry)) output_line['kind'] = kind @@ -50,7 +46,10 @@ def parse_post(raw_data): if 'proto' in entry and 'kind' in entry: if entry['kind'] == 'network': - entry['transport_protocol'] = entry['proto'][:-1] + if entry['proto'] == 'udp46': + entry['transport_protocol'] = entry['proto'][:-2] + else: + entry['transport_protocol'] = entry['proto'][:-1] if '6' in entry['proto']: entry['network_protocol'] = 'ipv6' From 9c4fa2ae2601ca4880c0b078fa917f01f1392e0e Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 20 May 2020 15:39:47 -0700 Subject: [PATCH 28/52] integer conversions and icmp fix --- jc/parsers/netstat.py | 21 +++++++++++++++++++-- jc/parsers/netstat_osx.py | 3 +++ 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index d56df974..b63db6e7 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -359,13 +359,30 @@ def process(proc_data): "type": string, "inode": integer, "path": string, - "kind": string + "kind": string, + "address": string, + "osx_inode": string, + "conn": string, + "refs": string, + "nextref": string, + "name": string, + "unit": integer, + "vendor": integer, + "class": integer, + "subcla": integer, + "osx_flags": integer, + "pcbcount": integer, + "rcvbuf": integer, + "sndbuf": integer, + "rxbytes": integer, + "txbytes": integer } ] """ for entry in proc_data: # integer changes - int_list = ['recv_q', 'send_q', 'pid', 'refcnt', 'inode'] + int_list = ['recv_q', 'send_q', 'pid', 'refcnt', 'inode', 'unit', 'vendor', 'class', + 'osx_flags', 'subcla', 'pcbcount', 'rcvbuf', 'sndbuf', 'rxbytes', 'txbytes'] for key in int_list: if key in entry: try: diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py index 2cde8c21..cbf070bd 100644 --- a/jc/parsers/netstat_osx.py +++ b/jc/parsers/netstat_osx.py @@ -7,6 +7,7 @@ def normalize_headers(header): header = header.replace('foreign address', 'foreign_address') header = header.replace('(state)', 'state') header = header.replace('inode', 'osx_inode') + header = header.replace('flags', 'osx_flags') header = header.replace('-', '_') return header @@ -48,6 +49,8 @@ def parse_post(raw_data): if entry['kind'] == 'network': if entry['proto'] == 'udp46': entry['transport_protocol'] = entry['proto'][:-2] + elif entry['proto'].startswith('icm'): + entry['transport_protocol'] = 'icmp' else: entry['transport_protocol'] = entry['proto'][:-1] From 2d39a58f902e6af77f8f96ffcd1d68b7cbadd56c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 20 May 2020 16:14:03 -0700 Subject: [PATCH 29/52] doc update --- README.md | 67 ++++++++++++++++++++++++++++++++++----- docs/parsers/dmidecode.md | 4 +-- docs/parsers/netstat.md | 20 ++++++++++-- jc/parsers/dmidecode.py | 4 +-- 4 files changed, 81 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 902a9111..8af6768d 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ # JC JSON CLI output utility -`jc` is used to JSONify the output of many standard linux cli tools and file types for easier parsing in scripts. See the [**Parsers**](#parsers) section for supported commands and file types. +`jc` JSONifies the output of many standard linux CLI tools and file-types for easier parsing in scripts. See the [**Parsers**](#parsers) section for supported commands and file-types. -This allows further command line processing of output with tools like `jq` simply by piping commands: +This allows further command-line processing of output with tools like `jq` by piping commands: ``` $ ls -l /usr/bin | jc --ls | jq '.[] | select(.size > 50000000)' { @@ -76,6 +76,11 @@ There are several ways to get `jc`. You can install via `pip`, `brew`, DEB or RP $ pip3 install --upgrade jc ``` +### Zypper (openSUSE linux) +``` +# zypper install jc +``` + ### Brew (macOS) ``` $ brew install jc @@ -105,6 +110,7 @@ The JSON output can be compact (default) or pretty formatted with the `-p` optio - `--csv` enables the `CSV` file parser - `--df` enables the `df` command parser - `--dig` enables the `dig` command parser +- `--dmidecode` enables the `dmidecode` command parser - `--du` enables the `du` command parser - `--env` enables the `env` command parser - `--file` enables the `file` command parser @@ -340,7 +346,7 @@ $ blkid | jc --blkid -p # or: jc -p blkid ] ``` ``` -$ sudo blkid -o udev -ip /dev/sda2 | jc --blkid -p # or: sudo jc -p blkid -o udev -ip /dev/sda2 +# blkid -o udev -ip /dev/sda2 | jc --blkid -p # or: jc -p blkid -o udev -ip /dev/sda2 [ { "id_fs_uuid": "3klkIj-w1kk-DkJi-0XBJ-y3i7-i2Ac-vHqWBM", @@ -735,6 +741,51 @@ $ dig -x 1.1.1.1 | jc --dig -p # or: jc -p dig -x 1.1.1.1 } ] ``` +### dmidecode +``` +# dmidecode | jc --dmidecode -p # or: jc -p dmidecode + { + "handle": "0x0000", + "type": 0, + "bytes": 24, + "description": "BIOS Information", + "values": { + "vendor": "Phoenix Technologies LTD", + "version": "6.00", + "release_date": "04/13/2018", + "address": "0xEA490", + "runtime_size": "88944 bytes", + "rom_size": "64 kB", + "characteristics": [ + "ISA is supported", + "PCI is supported", + "PC Card (PCMCIA) is supported", + "PNP is supported", + "APM is supported", + "BIOS is upgradeable", + "BIOS shadowing is allowed", + "ESCD support is available", + "Boot from CD is supported", + "Selectable boot is supported", + "EDD is supported", + "Print screen service is supported (int 5h)", + "8042 keyboard services are supported (int 9h)", + "Serial services are supported (int 14h)", + "Printer services are supported (int 17h)", + "CGA/mono video services are supported (int 10h)", + "ACPI is supported", + "Smart battery is supported", + "BIOS boot specification is supported", + "Function key-initiated network boot is supported", + "Targeted content distribution is supported" + ], + "bios_revision": "4.6", + "firmware_revision": "0.0" + } + }, + ... +] +``` ### du ``` $ du /usr | jc --du -p # or: jc -p du /usr @@ -1150,7 +1201,7 @@ $ cat example.ini | jc --ini -p ``` ### iptables ``` -$ sudo iptables --line-numbers -v -L -t nat | jc --iptables -p # or: sudo jc -p iptables --line-numbers -v -L -t nat +# iptables --line-numbers -v -L -t nat | jc --iptables -p # or: jc -p iptables --line-numbers -v -L -t nat [ { "chain": "PREROUTING", @@ -1380,7 +1431,7 @@ $ lsmod | jc --lsmod -p # or: jc -p lsmod ``` ### lsof ``` -$ sudo lsof | jc --lsof -p # or: sudo jc -p lsof +# lsof | jc --lsof -p # or: jc -p lsof [ { "command": "systemd", @@ -1467,7 +1518,7 @@ $ mount | jc --mount -p # or: jc -p mount ``` ### netstat ``` -$ sudo netstat -apee | jc --netstat -p # or: sudo jc -p netstat -apee +# netstat -apee | jc --netstat -p # or: jc -p netstat -apee [ { "proto": "tcp", @@ -1862,7 +1913,7 @@ $ route -ee | jc --route -p # or: jc -p route -ee ``` ### /etc/shadow file ``` -$ sudo cat /etc/shadow | jc --shadow -p +# cat /etc/shadow | jc --shadow -p [ { "username": "root", @@ -1899,7 +1950,7 @@ $ sudo cat /etc/shadow | jc --shadow -p ``` ### ss ``` -$ sudo ss -a | jc --ss -p # or: sudo jc -p ss -a +# ss -a | jc --ss -p # or: jc -p ss -a [ { "netid": "nl", diff --git a/docs/parsers/dmidecode.md b/docs/parsers/dmidecode.md index af933f33..934ffec0 100644 --- a/docs/parsers/dmidecode.md +++ b/docs/parsers/dmidecode.md @@ -11,7 +11,7 @@ Compatibility: Examples: - $ dmidecode | jc --dmidecode -p + # dmidecode | jc --dmidecode -p [ { "handle": "0x0000", @@ -55,7 +55,7 @@ Examples: ... ] - $ dmidecode | jc --dmidecode -p -r + # dmidecode | jc --dmidecode -p -r [ { "handle": "0x0000", diff --git a/docs/parsers/netstat.md b/docs/parsers/netstat.md index 56c461a9..42c94b5e 100644 --- a/docs/parsers/netstat.md +++ b/docs/parsers/netstat.md @@ -7,7 +7,7 @@ Usage: Compatibility: - 'linux' + 'linux', 'darwin' Examples: @@ -352,7 +352,23 @@ Returns: "type": string, "inode": integer, "path": string, - "kind": string + "kind": string, + "address": string, + "osx_inode": string, + "conn": string, + "refs": string, + "nextref": string, + "name": string, + "unit": integer, + "vendor": integer, + "class": integer, + "subcla": integer, + "osx_flags": integer, + "pcbcount": integer, + "rcvbuf": integer, + "sndbuf": integer, + "rxbytes": integer, + "txbytes": integer } ] diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index aa368bc7..c31e4665 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -10,7 +10,7 @@ Compatibility: Examples: - $ dmidecode | jc --dmidecode -p + # dmidecode | jc --dmidecode -p [ { "handle": "0x0000", @@ -54,7 +54,7 @@ Examples: ... ] - $ dmidecode | jc --dmidecode -p -r + # dmidecode | jc --dmidecode -p -r [ { "handle": "0x0000", From 8e1f8858273e671a882a07eae1c35b38f5298c94 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 20 May 2020 16:43:53 -0700 Subject: [PATCH 30/52] fix filtered netstat views --- jc/parsers/netstat.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index b63db6e7..b7f495e4 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -430,7 +430,12 @@ def parse(data, raw=False, quiet=False): # check for OSX vs Linux # is this from OSX? - if cleandata[0] == 'Active Internet connections' or cleandata[0] == 'Active Internet connections (including servers)': + if cleandata[0] == 'Active Internet connections' \ + or cleandata[0] == 'Active Internet connections (including servers)' \ + or cleandata[0] == 'Active LOCAL (UNIX) domain sockets' \ + or cleandata[0] == 'Registered kernel control modules' \ + or cleandata[0] == 'Active kernel event sockets' \ + or cleandata[0] == 'Active kernel control sockets': import jc.parsers.netstat_osx raw_output = jc.parsers.netstat_osx.parse(cleandata) From dd52fee5635c977d5c77046ab9fe78d2ed10deef Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 20 May 2020 17:25:25 -0700 Subject: [PATCH 31/52] osx netstat tests and fixtures --- tests/fixtures/osx-10.14.6/netstat-Abn.json | 1 + tests/fixtures/osx-10.14.6/netstat-Abn.out | 689 +++++++++++++++++++ tests/fixtures/osx-10.14.6/netstat-An.json | 1 + tests/fixtures/osx-10.14.6/netstat-An.out | 689 +++++++++++++++++++ tests/fixtures/osx-10.14.6/netstat.json | 1 + tests/fixtures/osx-10.14.6/netstat.out | 724 ++++++++++++++++++++ tests/test_netstat.py | 36 + 7 files changed, 2141 insertions(+) create mode 100644 tests/fixtures/osx-10.14.6/netstat-Abn.json create mode 100644 tests/fixtures/osx-10.14.6/netstat-Abn.out create mode 100644 tests/fixtures/osx-10.14.6/netstat-An.json create mode 100644 tests/fixtures/osx-10.14.6/netstat-An.out create mode 100644 tests/fixtures/osx-10.14.6/netstat.json create mode 100644 tests/fixtures/osx-10.14.6/netstat.out diff --git a/tests/fixtures/osx-10.14.6/netstat-Abn.json b/tests/fixtures/osx-10.14.6/netstat-Abn.json new file mode 100644 index 00000000..12e823ec --- /dev/null +++ b/tests/fixtures/osx-10.14.6/netstat-Abn.json @@ -0,0 +1 @@ +[{"socket": "7fb03cb94d505aed", "flowhash": "cedd0cbf", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.113.26", "state": "ESTABLISHED", "rxbytes": 4958, "txbytes": 3996, "kind": "network", "local_port": "5486", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5486, "foreign_port_num": 443}, {"socket": "7fb03cb94d692475", "flowhash": "1c9f9fcd", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "208.91.113.36", "state": "ESTABLISHED", "rxbytes": 39554, "txbytes": 9531, "kind": "network", "local_port": "5480", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5480, "foreign_port_num": 443}, {"socket": "7fb03cb94b25de55", "flowhash": "dbe59bf8", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.112.26", "state": "ESTABLISHED", "rxbytes": 6022, "txbytes": 6313, "kind": "network", "local_port": "5478", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5478, "foreign_port_num": 443}, {"socket": "7fb03cb95fad8165", "flowhash": "6a3d6e4", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.201", "state": "ESTABLISHED", "rxbytes": 1910, "txbytes": 2803, "kind": "network", "local_port": "5450", "foreign_port": "4923", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 4923}, {"socket": "7fb03cb946c1cbcd", "flowhash": "3c023c0", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "rxbytes": 167633, "txbytes": 41617, "kind": "network", "local_port": "5", "foreign_port": "9", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 9}, {"socket": "7fb03cb95fad77dd", "flowhash": "3f163cd2", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.64", "state": "ESTABLISHED", "rxbytes": 2592, "txbytes": 3096, "kind": "network", "local_port": "5450", "foreign_port": "53380", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 53380}, {"socket": "7fb03cb94221360d", "flowhash": "cc0e0c2a", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2603:1030:b00::e", "state": "ESTABLISHED", "rxbytes": 15646, "txbytes": 15752, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c20e4d", "flowhash": "8e998322", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2620:1ec:21::14", "state": "ESTABLISHED", "rxbytes": 46800, "txbytes": 45200, "kind": "network", "local_port": "5", "foreign_port": "44", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 44}, {"socket": "7fb03cb93c75d475", "flowhash": "d53fb648", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "ESTABLISHED", "rxbytes": 102916, "txbytes": 305797, "kind": "network", "local_port": "5452", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 8081}, {"socket": "7fb03cb937c2140d", "flowhash": "e013f438", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4000:8", "state": "ESTABLISHED", "rxbytes": 91675, "txbytes": 183353, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b718aed", "flowhash": "bcd5aa6f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.88", "state": "ESTABLISHED", "rxbytes": 1439, "txbytes": 2749, "kind": "network", "local_port": "5452", "foreign_port": "49153", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 49153}, {"socket": "7fb03cb94b716e55", "flowhash": "30944ff3", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.89", "state": "ESTABLISHED", "rxbytes": 1412, "txbytes": 2852, "kind": "network", "local_port": "5451", "foreign_port": "49152", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 49152}, {"socket": "7fb03cb93c75b7dd", "flowhash": "d54ab36f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.72", "state": "ESTABLISHED", "rxbytes": 1098, "txbytes": 3946, "kind": "network", "local_port": "5450", "foreign_port": "55617", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 55617}, {"socket": "7fb03cb93b2d6e55", "flowhash": "d11ddd76", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "52.114.148.56", "state": "ESTABLISHED", "rxbytes": 54904, "txbytes": 37123, "kind": "network", "local_port": "5451", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 443}, {"socket": "7fb03cb94a8f8d0d", "flowhash": "88c31bcb", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 929, "txbytes": 1397, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f988d", "flowhash": "a10400b8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 56095, "txbytes": 13875, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb948e8f88d", "flowhash": "cd67a7b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "rxbytes": 5331, "txbytes": 7172, "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb94bcb6475", "flowhash": "4ca24b6e", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT", "rxbytes": 1424, "txbytes": 2595, "kind": "network", "local_port": "5442", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5442, "foreign_port_num": 8081}, {"socket": "7fb03cb94b4f518d", "flowhash": "25c58fec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1326, "txbytes": 1023, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94bcb47dd", "flowhash": "b164479", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "rxbytes": 3182238, "txbytes": 0, "kind": "network", "local_port": "53755", "foreign_port": "53763", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53755, "foreign_port_num": 53763}, {"socket": "7fb03cb94b433e55", "flowhash": "f28b9248", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "rxbytes": 51430, "txbytes": 0, "kind": "network", "local_port": "53763", "foreign_port": "53755", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53763, "foreign_port_num": 53755}, {"socket": "7fb03cb94b719475", "flowhash": "316c063a", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "104.155.21.255", "state": "ESTABLISHED", "rxbytes": 73216, "txbytes": 1004723, "kind": "network", "local_port": "5359", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5359, "foreign_port_num": 555}, {"socket": "7fb03cb946c1ba8d", "flowhash": "d32bc928", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94c066aed", "flowhash": "fb73c2ca", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "17.57.144.20", "state": "ESTABLISHED", "rxbytes": 27110, "txbytes": 79402, "kind": "network", "local_port": "5263", "foreign_port": "5223", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5263, "foreign_port_num": 5223}, {"socket": "7fb03cb94d2ebaed", "flowhash": "22dc0e42", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.80", "state": "ESTABLISHED", "rxbytes": 8433051, "txbytes": 3259730, "kind": "network", "local_port": "5179", "foreign_port": "548", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5179, "foreign_port_num": 548}, {"socket": "7fb03cb94a8f818d", "flowhash": "5e12e220", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 3768, "txbytes": 1815, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f704d", "flowhash": "16ca6e94", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 684, "txbytes": 3761, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942212a8d", "flowhash": "da4b1f7d", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1470, "txbytes": 1167, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8dbcd", "flowhash": "4aeb1af1", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f92cd", "flowhash": "6859cfec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 765, "txbytes": 663, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1e2cd", "flowhash": "248b598b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942213bcd", "flowhash": "56762cbf", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8d60d", "flowhash": "d29e9efa", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 3668, "txbytes": 1997, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1d18d", "flowhash": "60f3fa15", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1053, "txbytes": 1167, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94b4347dd", "flowhash": "a1f7c428", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "rxbytes": 52, "txbytes": 1084, "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb948047aed", "flowhash": "ceac8539", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "rxbytes": 52, "txbytes": 1136, "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb963503e55", "flowhash": "d98dfd14", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "rxbytes": 52, "txbytes": 1200, "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb937c202cd", "flowhash": "2e36177f", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 893, "txbytes": 26581, "kind": "network", "local_port": "6", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 6, "foreign_port_num": 4}, {"socket": "7fb03cb946c1c60d", "flowhash": "aaabe009", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 985405, "txbytes": 1688994, "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb948536475", "flowhash": "dc1e01a0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "96.45.36.31", "state": "ESTABLISHED", "rxbytes": 3654, "txbytes": 3229, "kind": "network", "local_port": "5879", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5879, "foreign_port_num": 443}, {"socket": "7fb03cb94b38e7dd", "flowhash": "e3b8b675", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "CLOSE_WAIT", "rxbytes": 29513, "txbytes": 0, "kind": "network", "local_port": "9592", "foreign_port": "58704", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 9592, "foreign_port_num": 58704}, {"socket": "7fb03cb94d691165", "flowhash": "7eee3b1", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT", "rxbytes": 1218, "txbytes": 6437, "kind": "network", "local_port": "5346", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5346, "foreign_port_num": 8081}, {"socket": "7fb03cb948e8f2cd", "flowhash": "e7486da9", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 893, "txbytes": 111664, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94221304d", "flowhash": "3e982c00", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 965, "txbytes": 99241, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c2088d", "flowhash": "30000ae7", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 893, "txbytes": 125491, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b4f4bcd", "flowhash": "57e076f4", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 889, "txbytes": 128896, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94221474d", "flowhash": "6465b356", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 14206, "txbytes": 134302, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f6a8d", "flowhash": "bed25b95", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1909, "txbytes": 120628, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb937c1fd0d", "flowhash": "33613be8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 684, "txbytes": 259247, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb93c70600d", "flowhash": "777662f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 48, "txbytes": 76, "kind": "network", "local_port": "58043", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58043}, {"socket": "7fb03cb93c709f4d", "flowhash": "b64a4fe1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 98, "txbytes": 138, "kind": "network", "local_port": "63678", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63678}, {"socket": "7fb03cb93c708c0d", "flowhash": "48ba21c8", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 48, "txbytes": 76, "kind": "network", "local_port": "60774", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 60774}, {"socket": "7fb03cb93c70760d", "flowhash": "7f0afb2c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 98, "txbytes": 138, "kind": "network", "local_port": "51411", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51411}, {"socket": "7fb03cb93c707b8d", "flowhash": "7c49f0f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 48, "txbytes": 76, "kind": "network", "local_port": "57119", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57119}, {"socket": "7fb03cb93c70734d", "flowhash": "c750f7f0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 98, "txbytes": 138, "kind": "network", "local_port": "61217", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61217}, {"socket": "7fb03cb93c70810d", "flowhash": "2308a9b6", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 43700, "txbytes": 46473, "kind": "network", "local_port": "56091", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 56091}, {"socket": "7fb03cb93c707e4d", "flowhash": "4b2ff4b3", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 45885, "txbytes": 44260, "kind": "network", "local_port": "58807", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58807}, {"socket": "7fb03cb9371e2d4d", "flowhash": "8d16cd6b", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 6138, "kind": "network", "local_port": "54338", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54338}, {"socket": "7fb03cb93721310d", "flowhash": "f4140344", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 512, "kind": "network", "local_port": "3722", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 3722}, {"socket": "7fb03cb93d5b800d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 2554929, "txbytes": 0, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c7ba60d", "flowhash": "7fd9393b", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 38123, "txbytes": 35312, "kind": "network", "local_port": "61224", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61224}, {"socket": "7fb03cb93c7b8a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b0470d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c706dcd", "flowhash": "f725c38f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 1253564, "kind": "network", "local_port": "63995", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63995}, {"socket": "7fb03cb93c708ecd", "flowhash": "5ed0c674", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 1253656, "kind": "network", "local_port": "5063", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5063}, {"socket": "7fb03cb93c70868d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 496, "txbytes": 0, "kind": "network", "local_port": "33354", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33354}, {"socket": "7fb03cb93c70658d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 1253656, "txbytes": 0, "kind": "network", "local_port": "33355", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33355}, {"socket": "7fb03cb934b578cd", "flowhash": "530d4d40", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 29478, "txbytes": 27730, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61982}, {"socket": "7fb03cb934b59c8d", "flowhash": "91b8382", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 21216, "txbytes": 15688, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61982}, {"socket": "7fb03cb934b56dcd", "flowhash": "ca5be4ea", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 28968, "txbytes": 27260, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52378}, {"socket": "7fb03cb934b5760d", "flowhash": "3462e1b2", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 21726, "txbytes": 16058, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52378}, {"socket": "7fb03cb934b5944d", "flowhash": "58e06369", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 28684, "txbytes": 27063, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53910}, {"socket": "7fb03cb934b5a20d", "flowhash": "e03584", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 21513, "txbytes": 15841, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53910}, {"socket": "7fb03cb934b55d4d", "flowhash": "e91dd2ad", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 32262, "txbytes": 30952, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 57674}, {"socket": "7fb03cb934b5970d", "flowhash": "da8119f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 24510, "txbytes": 18834, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57674}, {"socket": "7fb03cb934b599cd", "flowhash": "3504cd68", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 30666, "txbytes": 29150, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62448}, {"socket": "7fb03cb934b557cd", "flowhash": "941a5612", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 25992, "txbytes": 19952, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62448}, {"socket": "7fb03cb934b58c0d", "flowhash": "c487a471", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 29380, "txbytes": 28035, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55681}, {"socket": "7fb03cb934b5600d", "flowhash": "c4b0913", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 26781, "txbytes": 20570, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55681}, {"socket": "7fb03cb93716444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b6df00d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8bbd4d", "flowhash": "47d61919", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 3818017, "txbytes": 26658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc00d", "flowhash": "8148de2d", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 3811093, "txbytes": 26658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc2cd", "flowhash": "41ad85a1", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 22458, "txbytes": 29658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bfc8d", "flowhash": "3d59980f", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 29658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bd34d", "flowhash": "73cc988e", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 55268610, "txbytes": 29658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bf44d", "flowhash": "dee9266c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 162940592, "txbytes": 26658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bdb8d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb937211dcd", "flowhash": "b4871709", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 1251903, "txbytes": 2351183, "kind": "network", "local_port": "51226", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51226}, {"socket": "7fb03cb9372154cd", "flowhash": "21b31d88", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "rxbytes": 733104, "txbytes": 1160292, "kind": "network", "local_port": "61491", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61491}, {"socket": "7fb03cb93b74a3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "6096", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 6096}, {"socket": "7fb03cb93c7bb10d", "flowhash": "f1ac8ec5", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 30600076, "txbytes": 18446784, "kind": "network", "local_port": "58997", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58997}, {"socket": "7fb03cb93b70ea8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b7129cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b71270d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b711c0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72d70d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72bb8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b747a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc90a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9520d", "flowhash": "97a44721", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 65984, "kind": "network", "local_port": "52551", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52551}, {"socket": "7fb03cb93bc90d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc94f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c7bcc8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8beecd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be10d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be68d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93d5b7a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70894d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70a20d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70944d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70684d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b049cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371654cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716520d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937164f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371628cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162b8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162e4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371e32cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb934b56b0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721394d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbcd4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbf10d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"socket": "7fb03cb93721184d", "flowhash": "b180dc9e", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 57357377, "txbytes": 15237561, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb9372149cd", "flowhash": "6fa9aaf7", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 174466390, "txbytes": 26656837, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb934b583cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "9595", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 9595}, {"socket": "7fb03cb934b5810d", "flowhash": "5b0b6f0f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 692460, "txbytes": 126560, "kind": "network", "local_port": "138", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 138}, {"socket": "7fb03cb934b57e4d", "flowhash": "dd966d84", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 3666438, "txbytes": 3028491, "kind": "network", "local_port": "137", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 137}, {"socket": "7fb03cb939ad73cd", "flowhash": "0", "proto": "icm4", "recv_q": 8136, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": "1325516", "rxbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "icmp", "network_protocol": "ipv4"}, {"address": "7fb03cb95130f135", "type": "stream", "recv_q": 1, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130efa5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130efa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e70d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130e70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130da8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f38d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130f38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130da8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130cd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130de75", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130de75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d9c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130cc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94d74825d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748965", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74825d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7471f5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7471f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74695d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74695d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747e75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747ce5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748bbd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d389c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d389c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d396a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d396a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ac85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ac85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b38d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3b38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cfa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b5dd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ae0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b44d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aa25", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d1f5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130d1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3aa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74906d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746e0d", "type": "stream", "recv_q": 8, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74906d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d385dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d385dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3876d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3876d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d386a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d386a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d390cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d390cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3895d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3895d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d392bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38e0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d392bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3976d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3912d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3912d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3976d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d391f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d391f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38c7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94b87f5d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS", "kind": "socket"}, {"address": "7fb03cb945d39c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ac7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63caf5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63caf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ac7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ce0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ce0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130caed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ca25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ca25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130caed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e7d5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ced5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f51d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ced5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130df3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c7cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130df3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ea2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ea2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb937de855d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Library/Application Support/LANDesk/tmp/socket/sys", "kind": "socket"}, {"address": "7fb03cb95130d065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ec85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ee15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ee15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ec85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ed4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ed4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3925d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39c85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3925d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d381f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b005e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afd895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935afd895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b005e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d5e5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ba8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63a895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cc85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7480cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d7480cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c7d5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e005", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb95130e005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b001fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdaed", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afdaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b001fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0038d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ead1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b002c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff0cd", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb935aff0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b002c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b00135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdbb5", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb935afdbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b00135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affd4d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935affd4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affe15", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affe15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affa2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0006d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afffa5", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afffa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b0006d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdc7d", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935afdc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affc85", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935affc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afde0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affbbd", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affbbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afde0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afded5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff965", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afded5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff7d5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdf9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff70d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdf9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff57d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff4b5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd2d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb935aff325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93609fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935aff25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94cddc36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock", "kind": "socket"}, {"address": "7fb03cb935afe12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe1f5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eac25", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe8fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afedad", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf", "kind": "socket"}, {"address": "7fb03cb935afedad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe8fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b763e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.000005f5", "kind": "socket"}, {"address": "7fb03cb935afef3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b761f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.00000948", "kind": "socket"}, {"address": "7fb03cb935afe5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b760fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afe6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe76d", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb935afe76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afee75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9360a12ed", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend.sock", "kind": "socket"}, {"address": "7fb03cb935afece5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd29bd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-export.sock", "kind": "socket"}, {"address": "7fb03cb935afec1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd43e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd40fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-volume.sock", "kind": "socket"}, {"address": "7fb03cb935afeb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eaa35", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker-api.sock", "kind": "socket"}, {"address": "7fb03cb935afea8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eab2d", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb93501b065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb937d37bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea465", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.port.sock", "kind": "socket"}, {"address": "7fb03cb937d3a5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a0dca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker.sock", "kind": "socket"}, {"address": "7fb03cb937d3a51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab1005", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.pcap.sock", "kind": "socket"}, {"address": "7fb03cb94d7495e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0f0d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.diag.sock", "kind": "socket"}, {"address": "7fb03cb94d746895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950aafd9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb94d7467cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0085", "conn": "0", "refs": "0", "nextref": "0", "addr": "osxfs.sock", "kind": "socket"}, {"address": "7fb03cb94d746bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb94d7496ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a1dab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock", "kind": "socket"}, {"address": "7fb03cb94d7492c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d746aed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7492c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7472bd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7472bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748a2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74776d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74776d", "type": "stream", "recv_q": 145, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748a2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74889d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7478fd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7478fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74889d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74870d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7487d5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7487d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74870d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7479c5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7479c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747a8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74857d", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb94d74857d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747a8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7484b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747b55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747b55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7484b5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748325", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7483ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94db01655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock_501", "kind": "socket"}, {"address": "7fb03cb94a63bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c57d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bdad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63be75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c325", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bf3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c005", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ad4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ae15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d377cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501b835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ad4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d377cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ae15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a6ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a06d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d387cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94d0e4a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock", "kind": "socket"}, {"address": "7fb03cb937d3812d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3812d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d395dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39515", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d395dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39dad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39dad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9418d26cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket", "kind": "socket"}, {"address": "7fb03cb93ceaeaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb151d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb151d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceae95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb138d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb138d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceae95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb12c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaed45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaed45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb12c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaee0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeed5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaeed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaee0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb106d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaef9d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaef9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb106d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0fa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb0fa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0bbd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafa8d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceafa8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb057d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb070d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb070d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb057d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf9c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaf9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb025d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea4fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock", "kind": "socket"}, {"address": "7fb03cb93ceb0325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea5074d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/tmp/filesystemui.socket", "kind": "socket"}, {"address": "7fb03cb93ceafb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea1cd1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WbUfpjQ9cD/Render", "kind": "socket"}, {"address": "7fb03cb93ceb00cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea42275", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners", "kind": "socket"}, {"address": "7fb03cb937d394b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938289085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb93501a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aaed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501aaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aa25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d1fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ae0d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501cedd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b44d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93763e7cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/displaypolicyd/state", "kind": "socket"}, {"address": "7fb03cb93501b76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb936ea7d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/pppconfd", "kind": "socket"}, {"address": "7fb03cb93501c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec3e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/epctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec1f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctvpnctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec0fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb93501c70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec005", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/com.docker.vmnetd.sock", "kind": "socket"}, {"address": "7fb03cb93501c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e845", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e55d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/usbmuxd", "kind": "socket"}, {"address": "7fb03cb93501c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e74d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355617cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/mdssvc", "kind": "socket"}, {"address": "7fb03cb93501c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355636cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355618c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501bb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355635d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355634dd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/systemkeychaincheck.socket", "kind": "socket"}, {"address": "7fb03cb93501bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561ab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/.sim_diagnosticd_socket", "kind": "socket"}, {"address": "7fb03cb93501bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561bad", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/portmap.socket", "kind": "socket"}, {"address": "7fb03cb93501be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935511d1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/vpncontrol.sock", "kind": "socket"}, {"address": "7fb03cb93501bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354fd085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/NETLOGON", "kind": "socket"}, {"address": "7fb03cb93501c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354e58c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/cupsd", "kind": "socket"}, {"address": "7fb03cb95130ddad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3afa5", "kind": "socket"}, {"address": "7fb03cb94a63b065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b9c5", "refs": "7fb03cb94a63b9c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b9c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b065", "refs": "7fb03cb94a63b065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3afa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63ad45", "kind": "socket"}, {"address": "7fb03cb94a63ad45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63af9d", "kind": "socket"}, {"address": "7fb03cb94a63af9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae7cd", "kind": "socket"}, {"address": "7fb03cb93ceae7cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3b51d", "kind": "socket"}, {"address": "7fb03cb945d3b51d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3a3ed", "kind": "socket"}, {"address": "7fb03cb945d3a3ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3989d", "kind": "socket"}, {"address": "7fb03cb937d3989d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b76d", "kind": "socket"}, {"address": "7fb03cb94a63b76d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d44d", "kind": "socket"}, {"address": "7fb03cb95130d44d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130cf9d", "kind": "socket"}, {"address": "7fb03cb95130cf9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d6ad", "kind": "socket"}, {"address": "7fb03cb94d7491fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7476a5", "refs": "7fb03cb94d7476a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7476a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7491fd", "refs": "7fb03cb94d7491fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63d6ad", "kind": "socket"}, {"address": "7fb03cb94d748005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d749455", "refs": "7fb03cb94d749455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d749455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748005", "refs": "7fb03cb94d748005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7475dd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747065", "refs": "7fb03cb94d747065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7475dd", "refs": "7fb03cb94d7475dd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a95d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d455", "refs": "7fb03cb93501d455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a95d", "refs": "7fb03cb93501a95d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130db55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ebbd", "refs": "7fb03cb95130ebbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ebbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130db55", "refs": "7fb03cb95130db55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74938d", "kind": "socket"}, {"address": "7fb03cb94d74938d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38a8d", "kind": "socket"}, {"address": "7fb03cb937d38a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d835", "kind": "socket"}, {"address": "7fb03cb95130d835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d746c7d", "kind": "socket"}, {"address": "7fb03cb945d3aedd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b6ad", "refs": "7fb03cb945d3b6ad", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3aedd", "refs": "7fb03cb945d3aedd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74712d", "kind": "socket"}, {"address": "7fb03cb94d74712d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39edd", "kind": "socket"}, {"address": "7fb03cb937d39edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38dad", "kind": "socket"}, {"address": "7fb03cb937d38dad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b12d", "kind": "socket"}, {"address": "7fb03cb94a63b12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e57d", "kind": "socket"}, {"address": "7fb03cb95130e57d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74951d", "kind": "socket"}, {"address": "7fb03cb94d74951d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d749135", "kind": "socket"}, {"address": "7fb03cb94d749135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb15e5", "kind": "socket"}, {"address": "7fb03cb93ceb15e5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae895", "kind": "socket"}, {"address": "7fb03cb93ceae895", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb16ad", "kind": "socket"}, {"address": "7fb03cb93ceb16ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3a1fd", "kind": "socket"}, {"address": "7fb03cb937d3a1fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39065", "kind": "socket"}, {"address": "7fb03cb945d39065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d38f9d", "kind": "socket"}, {"address": "7fb03cb945d38f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39a8d", "kind": "socket"}, {"address": "7fb03cb945d399c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a005", "refs": "7fb03cb945d3a005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d399c5", "refs": "7fb03cb945d399c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39b55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39f3d", "refs": "7fb03cb945d39f3d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39f3d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39b55", "refs": "7fb03cb945d39b55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d397d5", "kind": "socket"}, {"address": "7fb03cb937d37d45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37e0d", "refs": "7fb03cb937d37e0d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37e0d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37d45", "refs": "7fb03cb937d37d45", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d397d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb11fd", "kind": "socket"}, {"address": "7fb03cb93ceb11fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf065", "kind": "socket"}, {"address": "7fb03cb93ceaf065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0edd", "kind": "socket"}, {"address": "7fb03cb93ceb0edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf385", "kind": "socket"}, {"address": "7fb03cb93ceaf12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf1f5", "refs": "7fb03cb93ceaf1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf12d", "refs": "7fb03cb93ceaf12d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf385", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0965", "kind": "socket"}, {"address": "7fb03cb93ceb0965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0a2d", "kind": "socket"}, {"address": "7fb03cb93ceb0a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf835", "kind": "socket"}, {"address": "7fb03cb93ceaf835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf8fd", "kind": "socket"}, {"address": "7fb03cb93ceaf8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafdad", "kind": "socket"}, {"address": "7fb03cb93ceafdad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb07d5", "kind": "socket"}, {"address": "7fb03cb93ceb07d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb089d", "kind": "socket"}, {"address": "7fb03cb93ceb0645", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafe75", "refs": "7fb03cb93ceafe75", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafe75", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0645", "refs": "7fb03cb93ceb0645", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb089d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafc1d", "kind": "socket"}, {"address": "7fb03cb93ceb0195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0005", "refs": "7fb03cb93ceb0005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0195", "refs": "7fb03cb93ceb0195", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafc1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb03ed", "kind": "socket"}, {"address": "7fb03cb93ceb03ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39fa5", "kind": "socket"}, {"address": "7fb03cb937d39a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39bbd", "refs": "7fb03cb937d39bbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39bbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39a2d", "refs": "7fb03cb937d39a2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39fa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39965", "kind": "socket"}, {"address": "7fb03cb937d38065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37c7d", "refs": "7fb03cb937d37c7d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38065", "refs": "7fb03cb937d38065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d37f9d", "kind": "socket"}, {"address": "7fb03cb937d37f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d393ed", "kind": "socket"}, {"address": "7fb03cb937d393ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3970d", "kind": "socket"}, {"address": "7fb03cb937d3970d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d135", "kind": "socket"}, {"address": "7fb03cb937d382bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3957d", "refs": "7fb03cb937d3957d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3957d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d382bd", "refs": "7fb03cb937d382bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38c1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38ce5", "refs": "7fb03cb937d38ce5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38ce5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38c1d", "refs": "7fb03cb937d38c1d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cd4d", "kind": "socket"}, {"address": "7fb03cb93501cd4d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cc85", "kind": "socket"}, {"address": "7fb03cb93501b1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b2bd", "refs": "7fb03cb93501b2bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b2bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b1f5", "refs": "7fb03cb93501b1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b515", "refs": "7fb03cb93501b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b515", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ce15", "refs": "7fb03cb93501ce15", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501caf5", "refs": "7fb03cb93501caf5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501caf5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b6a5", "refs": "7fb03cb93501b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cc85", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cbbd", "kind": "socket"}, {"address": "7fb03cb93501cbbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501c0cd", "kind": "socket"}, {"address": "7fb03cb93501b8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ca2d", "refs": "7fb03cb93501ca2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ca2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b8fd", "refs": "7fb03cb93501b8fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c0cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb934ff43e5", "conn": "0", "refs": "7fb03cb95130ddad", "nextref": "0", "addr": "/private//var/run/syslog", "kind": "socket"}, {"kctlref": "10001", "id": "1", "unit": -1, "osx_flags": 9, "pcbcount": 0, "rcvbuf": 131072, "sndbuf": 131072, "name": "com.apple.flow-divert ", "kind": "Registered kernel control module"}, {"kctlref": "20002", "id": "2", "unit": -1, "osx_flags": 1, "pcbcount": 1, "rcvbuf": 16384, "sndbuf": 2048, "name": "com.apple.nke.sockwall ", "kind": "Registered kernel control module"}, {"kctlref": "30003", "id": "3", "unit": -1, "osx_flags": 9, "pcbcount": 0, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.content-filter ", "kind": "Registered kernel control module"}, {"kctlref": "40004", "id": "4", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.necp_control ", "kind": "Registered kernel control module"}, {"kctlref": "50005", "id": "5", "unit": -1, "osx_flags": 1, "pcbcount": 12, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.netagent ", "kind": "Registered kernel control module"}, {"kctlref": "60006", "id": "6", "unit": -1, "osx_flags": 9, "pcbcount": 4, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.net.utun_control ", "kind": "Registered kernel control module"}, {"kctlref": "70007", "id": "7", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.ipsec_control ", "kind": "Registered kernel control module"}, {"kctlref": "80008", "id": "8", "unit": -1, "osx_flags": 0, "pcbcount": 74, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.netsrc ", "kind": "Registered kernel control module"}, {"kctlref": "90009", "id": "9", "unit": -1, "osx_flags": 18, "pcbcount": 4, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.statistics ", "kind": "Registered kernel control module"}, {"kctlref": "a000a", "id": "a", "unit": -1, "osx_flags": 5, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.tcp_ccdebug ", "kind": "Registered kernel control module"}, {"kctlref": "b000b", "id": "b", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.advisory ", "kind": "Registered kernel control module"}, {"kctlref": "c000c", "id": "c", "unit": -1, "osx_flags": 4, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 2048, "name": "com.apple.uart.BLTH ", "kind": "Registered kernel control module"}, {"kctlref": "d000d", "id": "d", "unit": -1, "osx_flags": 4, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.uart.sk.BLTH ", "kind": "Registered kernel control module"}, {"kctlref": "e000e", "id": "e", "unit": -1, "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 8192, "name": "com.apple.fileutil.kext.stateful.ctl ", "kind": "Registered kernel control module"}, {"kctlref": "f000f", "id": "f", "unit": -1, "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.fileutil.kext.stateless.ctl ", "kind": "Registered kernel control module"}, {"kctlref": "170017", "id": "17", "unit": -1, "osx_flags": 5, "pcbcount": 1, "rcvbuf": 32768, "sndbuf": 2048, "name": "com.fortinet.fct.kext.fwnke ", "kind": "Registered kernel control module"}, {"kctlref": "ea0010", "id": "18", "unit": -1, "osx_flags": 5, "pcbcount": 1, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.fortinet.kext.avkern2 ", "kind": "Registered kernel control module"}, {"pcb": "7fb03cb936ead2bd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead2f5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 4, "subcla": 0, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd0d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "rxbytes": 1414844, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd45", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead24d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead215", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1dd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 11, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd7d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacdb5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacded", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716744, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace25", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716744, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace5d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716744, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1a5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27718800, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace95", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719296, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacecd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719296, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf05", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719296, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead16d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 6, "rxbytes": 823488, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf3d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "rxbytes": 836, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf75", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719456, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfad", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "rxbytes": 444256, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead135", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 10, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfe5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1000, "class": 5, "subcla": 11, "rxbytes": 144855, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead01d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 7, "rxbytes": 151680, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead055", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "rxbytes": 836, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead08d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "rxbytes": 444256, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0fd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 3, "subcla": 3, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0c5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "rxbytes": 1422896, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb937d0314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 791268, "txbytes": 657340, "unit": 1, "id": "2", "name": "com.apple.nke.sockwall", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4f4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 1, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d5ded", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 2, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 3, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d656d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 4, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4c4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 5, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d662d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 6, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a1a6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 7, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c7488ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 8, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e7299ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 9, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b5cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 10, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b6ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 11, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60182d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 12, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f6020cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 30618, "txbytes": 0, "unit": 1, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f9cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 2, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8fded", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 3, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f48d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 4, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d644d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 224, "txbytes": 144, "unit": 1, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c237d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 224, "txbytes": 144, "unit": 2, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c23682d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 9352, "txbytes": 6012, "unit": 3, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9503efa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 4144, "txbytes": 2664, "unit": 4, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93cc9038d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 376544, "txbytes": 242064, "unit": 5, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93d3a7d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 3192, "txbytes": 2052, "unit": 6, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 630280, "txbytes": 405180, "unit": 7, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93eefef0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 8, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d2e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 9, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60260d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 32368, "txbytes": 20808, "unit": 10, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f601d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 120568, "txbytes": 77508, "unit": 11, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8e30d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6272, "txbytes": 4032, "unit": 12, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8d8ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 896, "txbytes": 576, "unit": 13, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d384d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1344, "txbytes": 864, "unit": 14, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940438bad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 81816, "txbytes": 52596, "unit": 15, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb949ba84ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6328, "txbytes": 4068, "unit": 16, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94043968d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 17, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940c3594d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 74760, "txbytes": 48060, "unit": 18, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941b872cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 19, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb943aa506d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 309064, "txbytes": 198684, "unit": 20, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941451a8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 31864, "txbytes": 20484, "unit": 21, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94510508d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2632, "txbytes": 1692, "unit": 22, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9459058ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 133392, "txbytes": 85752, "unit": 23, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb945c5bf0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2016, "txbytes": 1296, "unit": 24, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94766e96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 14280, "txbytes": 9180, "unit": 25, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946464c6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1568, "txbytes": 1008, "unit": 26, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946463fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 203224, "txbytes": 130644, "unit": 27, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94646394d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 338184, "txbytes": 217404, "unit": 28, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95002e5ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 616, "txbytes": 396, "unit": 29, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fe5d12d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 14280, "txbytes": 9180, "unit": 30, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fb8feed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 31, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9471823cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 438592, "txbytes": 281952, "unit": 32, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96085390d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 166040, "txbytes": 106740, "unit": 33, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a3cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 34, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f18d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 57792, "txbytes": 37152, "unit": 35, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f42d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 36, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804fead", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1568, "txbytes": 1008, "unit": 37, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fefcd2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 8512, "txbytes": 5472, "unit": 38, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9330ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 9520, "txbytes": 6120, "unit": 39, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffb8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 4816, "txbytes": 3096, "unit": 40, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e70872d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 203448, "txbytes": 130788, "unit": 41, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c8769ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 280616, "txbytes": 180396, "unit": 42, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9508e426d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 43, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f702d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 44, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94d86f2cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 103040, "txbytes": 66240, "unit": 45, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94e49c2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 56, "txbytes": 36, "unit": 46, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95eff106d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 327936, "txbytes": 210816, "unit": 47, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93aa79fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 8064, "txbytes": 5184, "unit": 48, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f65e74d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 3136, "txbytes": 2016, "unit": 49, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f8944ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6888, "txbytes": 4428, "unit": 50, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f931d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 51, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9d11ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6720, "txbytes": 4320, "unit": 52, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fbb0aed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 28448, "txbytes": 18288, "unit": 53, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f88ec4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 63000, "txbytes": 40500, "unit": 54, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffa0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2576, "txbytes": 1656, "unit": 55, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c736fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 56, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95477236d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 57, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a588d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 7336, "txbytes": 4716, "unit": 58, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a726d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 12544, "txbytes": 8064, "unit": 59, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ed4f24d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 60, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f46cc6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 11872, "txbytes": 7632, "unit": 61, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fb5ad2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 168, "txbytes": 108, "unit": 62, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95cb8b9ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1456, "txbytes": 936, "unit": 63, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb954772d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 64, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb950171fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 672, "txbytes": 432, "unit": 65, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d590d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 66, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a1ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 168, "txbytes": 108, "unit": 67, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ffdd1ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 129808, "txbytes": 83448, "unit": 68, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 168, "txbytes": 108, "unit": 69, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e6c8e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 18648, "txbytes": 11988, "unit": 70, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94b5af2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 224, "txbytes": 144, "unit": 71, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96074aa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 72, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95bff57cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 56, "txbytes": 36, "unit": 74, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fc8056d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 77, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb937d02e4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 216428, "txbytes": 44, "unit": 1, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e09b08d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 144713152, "txbytes": 30152, "unit": 2, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099a0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 3, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099bed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6100, "txbytes": 2148, "unit": 4, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d82cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 1, "id": "23", "name": "com.fortinet.fct.kext.fwnke", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d67cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 20960, "txbytes": 240, "unit": 1, "id": "24", "name": "com.fortinet.kext.avkern2", "kind": "Active kernel control socket"}] diff --git a/tests/fixtures/osx-10.14.6/netstat-Abn.out b/tests/fixtures/osx-10.14.6/netstat-Abn.out new file mode 100644 index 00000000..5bf7e767 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/netstat-Abn.out @@ -0,0 +1,689 @@ +Active Internet connections +Socket Flowhash Proto Recv-Q Send-Q Local Address Foreign Address (state) rxbytes txbytes +7fb03cb94d505aed cedd0cbf tcp4 0 0 192.168.1.221.5486 140.82.113.26.443 ESTABLISHED 4958 3996 +7fb03cb94d692475 1c9f9fcd tcp4 0 0 192.168.1.221.5480 208.91.113.36.443 ESTABLISHED 39554 9531 +7fb03cb94b25de55 dbe59bf8 tcp4 0 0 192.168.1.221.5478 140.82.112.26.443 ESTABLISHED 6022 6313 +7fb03cb95fad8165 6a3d6e4 tcp4 0 0 192.168.1.221.5450 192.168.1.201.4923 ESTABLISHED 1910 2803 +7fb03cb946c1cbcd 3c023c0 tcp6 0 0 2600:1700:bab0:d.5 2607:f8b0:4003:c.9 ESTABLISHED 167633 41617 +7fb03cb95fad77dd 3f163cd2 tcp4 0 0 192.168.1.221.5450 192.168.1.64.53380 ESTABLISHED 2592 3096 +7fb03cb94221360d cc0e0c2a tcp6 0 0 2600:1700:bab0:d.5 2603:1030:b00::e.4 ESTABLISHED 15646 15752 +7fb03cb937c20e4d 8e998322 tcp6 0 0 2600:1700:bab0:d.5 2620:1ec:21::14.44 ESTABLISHED 46800 45200 +7fb03cb93c75d475 d53fb648 tcp4 0 0 192.168.1.221.5452 35.236.87.93.8081 ESTABLISHED 102916 305797 +7fb03cb937c2140d e013f438 tcp6 0 0 2600:1700:bab0:d.5 2607:f8b0:4000:8.4 ESTABLISHED 91675 183353 +7fb03cb94b718aed bcd5aa6f tcp4 0 0 192.168.1.221.5452 192.168.1.88.49153 ESTABLISHED 1439 2749 +7fb03cb94b716e55 30944ff3 tcp4 0 0 192.168.1.221.5451 192.168.1.89.49152 ESTABLISHED 1412 2852 +7fb03cb93c75b7dd d54ab36f tcp4 0 0 192.168.1.221.5450 192.168.1.72.55617 ESTABLISHED 1098 3946 +7fb03cb93b2d6e55 d11ddd76 tcp4 0 0 192.168.1.221.5451 52.114.148.56.443 ESTABLISHED 54904 37123 +7fb03cb94a8f8d0d 88c31bcb tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 929 1397 +7fb03cb94a8f988d a10400b8 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 56095 13875 +7fb03cb948e8f88d cd67a7b tcp6 0 0 2600:1700:bab0:d.5 2607:f8b0:4003:c.5 ESTABLISHED 5331 7172 +7fb03cb94bcb6475 4ca24b6e tcp4 31 0 192.168.1.221.5442 35.236.87.93.8081 CLOSE_WAIT 1424 2595 +7fb03cb94b4f518d 25c58fec tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 1326 1023 +7fb03cb94bcb47dd b164479 tcp4 0 0 127.0.0.1.53755 127.0.0.1.53763 ESTABLISHED 3182238 0 +7fb03cb94b433e55 f28b9248 tcp4 0 0 127.0.0.1.53763 127.0.0.1.53755 ESTABLISHED 51430 0 +7fb03cb94b719475 316c063a tcp4 0 0 192.168.1.221.5359 104.155.21.255.555 ESTABLISHED 73216 1004723 +7fb03cb946c1ba8d d32bc928 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 693 807 +7fb03cb94c066aed fb73c2ca tcp4 0 0 192.168.1.221.5263 17.57.144.20.5223 ESTABLISHED 27110 79402 +7fb03cb94d2ebaed 22dc0e42 tcp4 0 0 192.168.1.221.5179 192.168.1.80.548 ESTABLISHED 8433051 3259730 +7fb03cb94a8f818d 5e12e220 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 3768 1815 +7fb03cb94a8f704d 16ca6e94 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 684 3761 +7fb03cb942212a8d da4b1f7d tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 1470 1167 +7fb03cb948e8dbcd 4aeb1af1 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 693 807 +7fb03cb94a8f92cd 6859cfec tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 765 663 +7fb03cb946c1e2cd 248b598b tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 693 807 +7fb03cb942213bcd 56762cbf tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 693 807 +7fb03cb948e8d60d d29e9efa tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 3668 1997 +7fb03cb946c1d18d 60f3fa15 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 1053 1167 +7fb03cb94b4347dd a1f7c428 tcp4 0 0 192.168.1.221.5164 35.235.123.194.555 CLOSE_WAIT 52 1084 +7fb03cb948047aed ceac8539 tcp4 0 0 192.168.1.221.5164 35.235.123.194.555 CLOSE_WAIT 52 1136 +7fb03cb963503e55 d98dfd14 tcp4 0 0 192.168.1.221.5164 35.235.123.194.555 CLOSE_WAIT 52 1200 +7fb03cb937c202cd 2e36177f tcp6 0 0 fe80::aede:48ff:.6 fe80::aede:48ff:.4 ESTABLISHED 893 26581 +7fb03cb946c1c60d aaabe009 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.5 ESTABLISHED 985405 1688994 +7fb03cb948536475 dc1e01a0 tcp4 0 0 192.168.1.221.5879 96.45.36.31.443 ESTABLISHED 3654 3229 +7fb03cb94b38e7dd e3b8b675 tcp4 0 0 127.0.0.1.9592 127.0.0.1.58704 CLOSE_WAIT 29513 0 +7fb03cb94d691165 7eee3b1 tcp4 31 0 192.168.1.221.5346 35.236.87.93.8081 CLOSE_WAIT 1218 6437 +7fb03cb948e8f2cd e7486da9 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 893 111664 +7fb03cb94221304d 3e982c00 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 965 99241 +7fb03cb937c2088d 30000ae7 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 893 125491 +7fb03cb94b4f4bcd 57e076f4 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 889 128896 +7fb03cb94221474d 6465b356 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 14206 134302 +7fb03cb94a8f6a8d bed25b95 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 1909 120628 +7fb03cb937c1fd0d 33613be8 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 684 259247 +7fb03cb93c70600d 777662f1 udp4 0 0 *.58043 *.* 48 76 +7fb03cb93c709f4d b64a4fe1 udp4 0 0 *.63678 *.* 98 138 +7fb03cb93c708c0d 48ba21c8 udp4 0 0 *.60774 *.* 48 76 +7fb03cb93c70760d 7f0afb2c udp4 0 0 *.51411 *.* 98 138 +7fb03cb93c707b8d 7c49f0f1 udp4 0 0 *.57119 *.* 48 76 +7fb03cb93c70734d c750f7f0 udp4 0 0 *.61217 *.* 98 138 +7fb03cb93c70810d 2308a9b6 udp4 0 0 *.56091 *.* 43700 46473 +7fb03cb93c707e4d 4b2ff4b3 udp4 0 0 *.58807 *.* 45885 44260 +7fb03cb9371e2d4d 8d16cd6b udp4 0 0 *.54338 *.* 0 6138 +7fb03cb93721310d f4140344 udp4 0 0 *.3722 *.* 0 512 +7fb03cb93d5b800d 0 udp4 0 0 *.5353 *.* 2554929 0 +7fb03cb93c7ba60d 7fd9393b udp46 0 0 *.61224 *.* 38123 35312 +7fb03cb93c7b8a8d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb939b0470d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93c706dcd f725c38f udp4 0 0 127.0.0.1.63995 *.* 0 1253564 +7fb03cb93c708ecd 5ed0c674 udp4 0 0 192.168.1.221.5063 *.* 0 1253656 +7fb03cb93c70868d 0 udp4 0 0 *.33354 *.* 496 0 +7fb03cb93c70658d 0 udp4 0 0 *.33355 *.* 1253656 0 +7fb03cb934b578cd 530d4d40 udp6 0 0 *.61982 *.* 29478 27730 +7fb03cb934b59c8d 91b8382 udp4 0 0 *.61982 *.* 21216 15688 +7fb03cb934b56dcd ca5be4ea udp6 0 0 *.52378 *.* 28968 27260 +7fb03cb934b5760d 3462e1b2 udp4 0 0 *.52378 *.* 21726 16058 +7fb03cb934b5944d 58e06369 udp6 0 0 *.53910 *.* 28684 27063 +7fb03cb934b5a20d e03584 udp4 0 0 *.53910 *.* 21513 15841 +7fb03cb934b55d4d e91dd2ad udp6 0 0 *.57674 *.* 32262 30952 +7fb03cb934b5970d da8119f1 udp4 0 0 *.57674 *.* 24510 18834 +7fb03cb934b599cd 3504cd68 udp6 0 0 *.62448 *.* 30666 29150 +7fb03cb934b557cd 941a5612 udp4 0 0 *.62448 *.* 25992 19952 +7fb03cb934b58c0d c487a471 udp6 0 0 *.55681 *.* 29380 28035 +7fb03cb934b5600d c4b0913 udp4 0 0 *.55681 *.* 26781 20570 +7fb03cb93716444d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93b6df00d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93c8bbd4d 47d61919 udp4 0 0 *.5353 *.* 3818017 26658 +7fb03cb93c8bc00d 8148de2d udp4 0 0 *.5353 *.* 3811093 26658 +7fb03cb93c8bc2cd 41ad85a1 udp46 0 0 *.5353 *.* 22458 29658 +7fb03cb93c8bfc8d 3d59980f udp46 0 0 *.5353 *.* 0 29658 +7fb03cb93c8bd34d 73cc988e udp46 0 0 *.5353 *.* 55268610 29658 +7fb03cb93c8bf44d dee9266c udp4 0 0 *.5353 *.* 162940592 26658 +7fb03cb93c8bdb8d 0 udp46 0 0 *.5353 *.* 0 0 +7fb03cb937211dcd b4871709 udp4 0 0 *.51226 *.* 1251903 2351183 +7fb03cb9372154cd 21b31d88 udp4 0 0 127.0.0.1.61491 *.* 733104 1160292 +7fb03cb93b74a3cd 0 udp4 0 0 *.6096 *.* 0 0 +7fb03cb93c7bb10d f1ac8ec5 udp4 0 0 *.58997 *.* 30600076 18446784 +7fb03cb93b70ea8d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93b7129cd 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93b71270d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93b711c0d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93b72d70d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93b72bb8d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93b747a8d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93bc90a8d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93bc9520d 97a44721 udp4 0 0 *.52551 *.* 0 65984 +7fb03cb93bc90d4d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93bc9100d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93bc94f4d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93bc9208d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93c7bcc8d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93c8beecd 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93c8be10d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93c8be3cd 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93c8be68d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93d5b7a8d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93c70894d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93721444d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb937160a8d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb937160d4d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93716208d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93c70a20d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93c70944d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93c70684d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb939b049cd 0 udp4 0 0 *.* *.* 0 0 +7fb03cb9371654cd 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93716100d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93716520d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb937164f4d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb9371628cd 0 udp4 0 0 *.* *.* 0 0 +7fb03cb937162b8d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb937162e4d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb9371e32cd 0 udp4 0 0 *.* *.* 0 0 +7fb03cb934b56b0d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb93721394d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb937cbcd4d 0 udp4 0 0 *.* *.* 0 0 +7fb03cb937cbf10d 0 udp46 0 0 *.* *.* 0 0 +7fb03cb93721184d b180dc9e udp6 0 0 *.5353 *.* 57357377 15237561 +7fb03cb9372149cd 6fa9aaf7 udp4 0 0 *.5353 *.* 174466390 26656837 +7fb03cb934b583cd 0 udp4 0 0 *.9595 *.* 0 0 +7fb03cb934b5810d 5b0b6f0f udp4 0 0 *.138 *.* 692460 126560 +7fb03cb934b57e4d dd966d84 udp4 0 0 *.137 *.* 3666438 3028491 +7fb03cb939ad73cd 0 icm4 8136 0 *.* *.* 1325516 0 +Active LOCAL (UNIX) domain sockets +Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr +7fb03cb95130f135 stream 1 0 0 7fb03cb95130efa5 0 0 +7fb03cb95130efa5 stream 0 0 0 7fb03cb95130f135 0 0 +7fb03cb95130eaf5 stream 0 0 0 7fb03cb95130e70d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb95130e70d stream 0 0 0 7fb03cb95130eaf5 0 0 +7fb03cb95130da8d stream 0 0 0 7fb03cb95130f38d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb95130f38d stream 0 0 0 7fb03cb95130da8d 0 0 +7fb03cb95130e89d stream 0 0 0 7fb03cb95130cd45 0 0 +7fb03cb95130cd45 stream 0 0 0 7fb03cb95130e89d 0 0 +7fb03cb95130d9c5 stream 0 0 0 7fb03cb95130de75 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb95130de75 stream 0 0 0 7fb03cb95130d9c5 0 0 +7fb03cb95130e0cd stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb95130cc7d stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb94d74825d stream 0 0 0 7fb03cb94d748965 0 0 /var/run/mDNSResponder +7fb03cb94d748965 stream 0 0 0 7fb03cb94d74825d 0 0 +7fb03cb94d746a25 stream 0 0 0 7fb03cb94d7471f5 0 0 /var/run/fctservctl.sock +7fb03cb94d7471f5 stream 0 0 0 7fb03cb94d746a25 0 0 +7fb03cb94d747e75 stream 0 0 0 7fb03cb94d74695d 0 0 /var/run/fctservctl.sock +7fb03cb94d74695d stream 0 0 0 7fb03cb94d747e75 0 0 +7fb03cb94d747515 stream 0 0 0 7fb03cb94d747ce5 0 0 /var/run/fctservctl.sock +7fb03cb94d747ce5 stream 0 0 0 7fb03cb94d747515 0 0 +7fb03cb94d748e15 stream 0 0 0 7fb03cb94d748bbd 0 0 /var/run/fctservctl.sock +7fb03cb94d748bbd stream 0 0 0 7fb03cb94d748e15 0 0 +7fb03cb937d38835 stream 0 0 0 7fb03cb937d389c5 0 0 /var/run/mDNSResponder +7fb03cb937d389c5 stream 0 0 0 7fb03cb937d38835 0 0 +7fb03cb945d3b2c5 stream 0 0 0 7fb03cb945d396a5 0 0 /var/run/mDNSResponder +7fb03cb945d396a5 stream 0 0 0 7fb03cb945d3b2c5 0 0 +7fb03cb945d3b5e5 stream 0 0 0 7fb03cb945d3a645 0 0 /var/run/mDNSResponder +7fb03cb945d3a645 stream 0 0 0 7fb03cb945d3b5e5 0 0 +7fb03cb945d39835 stream 0 0 0 7fb03cb945d3ac85 0 0 /var/run/mDNSResponder +7fb03cb945d3ac85 stream 0 0 0 7fb03cb945d39835 0 0 +7fb03cb945d3a89d stream 0 0 0 7fb03cb945d3b38d 0 0 /var/run/mDNSResponder +7fb03cb945d3b38d stream 0 0 0 7fb03cb945d3a89d 0 0 +7fb03cb94a63aed5 stream 0 0 0 7fb03cb94a63cfa5 0 0 /var/run/mDNSResponder +7fb03cb94a63cfa5 stream 0 0 0 7fb03cb94a63aed5 0 0 +7fb03cb94a63ae0d stream 0 0 0 7fb03cb94a63b5dd 0 0 /var/run/mDNSResponder +7fb03cb94a63b5dd stream 0 0 0 7fb03cb94a63ae0d 0 0 +7fb03cb94a63cedd stream 0 0 0 7fb03cb94a63b44d 0 0 /var/run/mDNSResponder +7fb03cb94a63b44d stream 0 0 0 7fb03cb94a63cedd 0 0 +7fb03cb94a63d38d stream 0 0 0 7fb03cb94a63aa25 0 0 /var/run/mDNSResponder +7fb03cb94a63aa25 stream 0 0 0 7fb03cb94a63d38d 0 0 +7fb03cb95130c95d stream 0 0 0 7fb03cb95130d1f5 0 0 /var/run/mDNSResponder +7fb03cb95130d1f5 stream 0 0 0 7fb03cb95130c95d 0 0 +7fb03cb945d38a25 stream 0 0 0 7fb03cb945d3a195 0 0 /var/run/mDNSResponder +7fb03cb945d3a195 stream 0 0 0 7fb03cb945d38a25 0 0 +7fb03cb945d3aa2d stream 0 0 0 0 0 0 +7fb03cb95130f5e5 stream 0 0 0 7fb03cb95130e4b5 0 0 /var/run/mDNSResponder +7fb03cb95130e4b5 stream 0 0 0 7fb03cb95130f5e5 0 0 +7fb03cb94d74906d stream 0 0 0 7fb03cb94d746e0d 0 0 +7fb03cb94d746e0d stream 8 0 0 7fb03cb94d74906d 0 0 +7fb03cb937d39325 stream 0 0 0 7fb03cb937d385dd 0 0 +7fb03cb937d385dd stream 0 0 0 7fb03cb937d39325 0 0 +7fb03cb937d3876d stream 0 0 0 7fb03cb937d3a455 0 0 +7fb03cb937d3a455 stream 0 0 0 7fb03cb937d3876d 0 0 +7fb03cb937d37a25 stream 0 0 0 7fb03cb937d386a5 0 0 /var/run/mDNSResponder +7fb03cb937d386a5 stream 0 0 0 7fb03cb937d37a25 0 0 +7fb03cb937d39195 stream 0 0 0 7fb03cb937d38f3d 0 0 +7fb03cb937d38f3d stream 0 0 0 7fb03cb937d39195 0 0 +7fb03cb937d37895 stream 0 0 0 7fb03cb937d37ed5 0 0 +7fb03cb937d37ed5 stream 0 0 0 7fb03cb937d37895 0 0 +7fb03cb937d390cd stream 0 0 0 7fb03cb937d3a38d 0 0 +7fb03cb937d3a38d stream 0 0 0 7fb03cb937d390cd 0 0 +7fb03cb945d3b455 stream 0 0 0 7fb03cb945d3895d 0 0 +7fb03cb945d3895d stream 0 0 0 7fb03cb945d3b455 0 0 +7fb03cb945d392bd stream 0 0 0 7fb03cb945d38e0d 0 0 +7fb03cb945d38e0d stream 0 0 0 7fb03cb945d392bd 0 0 +7fb03cb945d3b135 stream 0 0 0 7fb03cb945d38ed5 0 0 +7fb03cb945d38ed5 stream 0 0 0 7fb03cb945d3b135 0 0 +7fb03cb945d3976d stream 0 0 0 7fb03cb945d3912d 0 0 /var/run/mDNSResponder +7fb03cb945d3912d stream 0 0 0 7fb03cb945d3976d 0 0 +7fb03cb945d391f5 stream 0 0 0 7fb03cb945d39385 0 0 +7fb03cb945d39385 stream 0 0 0 7fb03cb945d391f5 0 0 +7fb03cb945d38c7d stream 0 0 7fb03cb94b87f5d5 0 0 0 /var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS +7fb03cb945d39c1d stream 0 0 0 7fb03cb945d39e75 0 0 /var/run/mDNSResponder +7fb03cb945d39e75 stream 0 0 0 7fb03cb945d39c1d 0 0 +7fb03cb94a63ac7d stream 0 0 0 7fb03cb94a63caf5 0 0 /var/run/mDNSResponder +7fb03cb94a63caf5 stream 0 0 0 7fb03cb94a63ac7d 0 0 +7fb03cb95130d515 stream 0 0 0 7fb03cb95130ce0d 0 0 +7fb03cb95130ce0d stream 0 0 0 7fb03cb95130d515 0 0 +7fb03cb95130caed stream 0 0 0 7fb03cb95130ca25 0 0 +7fb03cb95130ca25 stream 0 0 0 7fb03cb95130caed 0 0 +7fb03cb95130d385 stream 0 0 0 7fb03cb95130f06d 0 0 +7fb03cb95130f06d stream 0 0 0 7fb03cb95130d385 0 0 +7fb03cb95130dc1d stream 0 0 0 7fb03cb95130e7d5 0 0 +7fb03cb95130e7d5 stream 0 0 0 7fb03cb95130dc1d 0 0 +7fb03cb95130ced5 stream 0 0 0 7fb03cb95130f51d 0 0 +7fb03cb95130f51d stream 0 0 0 7fb03cb95130ced5 0 0 +7fb03cb95130df3d stream 0 0 0 7fb03cb95130c7cd 0 0 +7fb03cb95130c7cd stream 0 0 0 7fb03cb95130df3d 0 0 +7fb03cb95130e195 stream 0 0 0 7fb03cb95130e325 0 0 +7fb03cb95130e325 stream 0 0 0 7fb03cb95130e195 0 0 +7fb03cb95130f1fd stream 0 0 0 7fb03cb95130ea2d 0 0 +7fb03cb95130ea2d stream 0 0 0 7fb03cb95130f1fd 0 0 +7fb03cb95130d2bd stream 0 0 0 7fb03cb95130c895 0 0 +7fb03cb95130c895 stream 0 0 0 7fb03cb95130d2bd 0 0 +7fb03cb95130cbb5 stream 0 0 7fb03cb937de855d 0 0 0 /Library/Application Support/LANDesk/tmp/socket/sys +7fb03cb95130d065 stream 0 0 0 7fb03cb95130d5dd 0 0 +7fb03cb95130d5dd stream 0 0 0 7fb03cb95130d065 0 0 +7fb03cb95130ec85 stream 0 0 0 7fb03cb95130ee15 0 0 +7fb03cb95130ee15 stream 0 0 0 7fb03cb95130ec85 0 0 +7fb03cb95130d76d stream 0 0 0 7fb03cb95130d12d 0 0 +7fb03cb95130d12d stream 0 0 0 7fb03cb95130d76d 0 0 +7fb03cb95130ed4d stream 0 0 0 7fb03cb95130eedd 0 0 +7fb03cb95130eedd stream 0 0 0 7fb03cb95130ed4d 0 0 +7fb03cb95130e965 stream 0 0 0 7fb03cb95130e3ed 0 0 /var/run/mDNSResponder +7fb03cb95130e3ed stream 0 0 0 7fb03cb95130e965 0 0 +7fb03cb937d3925d stream 0 0 0 7fb03cb937d39c85 0 0 /var/run/mDNSResponder +7fb03cb937d39c85 stream 0 0 0 7fb03cb937d3925d 0 0 +7fb03cb937d381f5 stream 0 0 0 0 0 0 +7fb03cb935b005e5 stream 0 0 0 7fb03cb935afd895 0 0 /var/run/mDNSResponder +7fb03cb935afd895 stream 0 0 0 7fb03cb935b005e5 0 0 +7fb03cb94d746ed5 stream 0 0 0 7fb03cb94d748195 0 0 /var/run/mDNSResponder +7fb03cb94d748195 stream 0 0 0 7fb03cb94d746ed5 0 0 +7fb03cb94a63ba8d stream 0 0 0 7fb03cb94a63d5e5 0 0 /var/run/mDNSResponder +7fb03cb94a63d5e5 stream 0 0 0 7fb03cb94a63ba8d 0 0 +7fb03cb94a63cc85 stream 0 0 0 7fb03cb94a63a895 0 0 /var/run/mDNSResponder +7fb03cb94a63a895 stream 0 0 0 7fb03cb94a63cc85 0 0 +7fb03cb94a63c965 stream 0 0 0 7fb03cb94a63d51d 0 0 /var/run/mDNSResponder +7fb03cb94a63d51d stream 0 0 0 7fb03cb94a63c965 0 0 +7fb03cb94d747f3d stream 0 0 0 7fb03cb94d7480cd 0 0 /var/run/mDNSResponder +7fb03cb94d7480cd stream 0 0 0 7fb03cb94d747f3d 0 0 +7fb03cb94a63abb5 stream 0 0 0 7fb03cb94a63c7d5 0 0 /var/run/mDNSResponder +7fb03cb94a63c7d5 stream 0 0 0 7fb03cb94a63abb5 0 0 +7fb03cb95130dce5 stream 0 0 0 7fb03cb95130e005 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock +7fb03cb95130e005 stream 0 0 0 7fb03cb95130dce5 0 0 +7fb03cb935b001fd stream 0 0 0 7fb03cb935afdaed 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb935afdaed stream 0 0 0 7fb03cb935b001fd 0 0 +7fb03cb935b0038d stream 0 0 7fb03cb9350ead1d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb935b002c5 stream 0 0 0 7fb03cb935aff0cd 0 0 vpnkit.data.sock +7fb03cb935aff0cd stream 0 0 0 7fb03cb935b002c5 0 0 +7fb03cb935b00135 stream 0 0 0 7fb03cb935afdbb5 0 0 backend-for-guest.sock +7fb03cb935afdbb5 stream 0 0 0 7fb03cb935b00135 0 0 +7fb03cb935affaf5 stream 0 0 0 7fb03cb935affd4d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock +7fb03cb935affd4d stream 0 0 0 7fb03cb935affaf5 0 0 +7fb03cb935affa2d stream 0 0 0 7fb03cb935affe15 0 0 vms/0/00000002.000005f4 +7fb03cb935affe15 stream 0 0 0 7fb03cb935affa2d 0 0 +7fb03cb935b0006d stream 0 0 0 7fb03cb935afffa5 0 0 vms/0/connect +7fb03cb935afffa5 stream 0 0 0 7fb03cb935b0006d 0 0 +7fb03cb935affedd stream 0 0 0 7fb03cb935afdc7d 0 0 vms/0/00000002.000005f4 +7fb03cb935afdc7d stream 0 0 0 7fb03cb935affedd 0 0 +7fb03cb935afdd45 stream 0 0 0 7fb03cb935affc85 0 0 vms/0/connect +7fb03cb935affc85 stream 0 0 0 7fb03cb935afdd45 0 0 +7fb03cb935afde0d stream 0 0 0 7fb03cb935affbbd 0 0 vms/0/00000002.000005f4 +7fb03cb935affbbd stream 0 0 0 7fb03cb935afde0d 0 0 +7fb03cb935afded5 stream 0 0 0 7fb03cb935aff965 0 0 vms/0/connect +7fb03cb935aff965 stream 0 0 0 7fb03cb935afded5 0 0 +7fb03cb935aff89d stream 0 0 0 7fb03cb935aff7d5 0 0 vms/0/00000002.000005f4 +7fb03cb935aff7d5 stream 0 0 0 7fb03cb935aff89d 0 0 +7fb03cb935afdf9d stream 0 0 0 7fb03cb935aff70d 0 0 vms/0/connect +7fb03cb935aff70d stream 0 0 0 7fb03cb935afdf9d 0 0 +7fb03cb935aff645 stream 0 0 0 7fb03cb935aff57d 0 0 vms/0/connect +7fb03cb935aff57d stream 0 0 0 7fb03cb935aff645 0 0 +7fb03cb935afe065 stream 0 0 0 7fb03cb935aff4b5 0 0 vms/0/00000002.000005f4 +7fb03cb935aff4b5 stream 0 0 0 7fb03cb935afe065 0 0 +7fb03cb935aff3ed stream 0 0 7fb03cb935cd2d9d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock +7fb03cb935aff325 stream 0 0 7fb03cb93609fca5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock +7fb03cb935aff25d stream 0 0 7fb03cb94cddc36d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock +7fb03cb935afe12d stream 0 0 0 7fb03cb935afe1f5 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003 +7fb03cb935afe1f5 stream 0 0 0 7fb03cb935afe12d 0 0 +7fb03cb935aff195 stream 0 0 0 7fb03cb935afe515 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock +7fb03cb935afe515 stream 0 0 0 7fb03cb935aff195 0 0 +7fb03cb935afe44d stream 0 0 7fb03cb9350eac25 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock +7fb03cb935afe8fd stream 0 0 0 7fb03cb935afedad 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf +7fb03cb935afedad stream 0 0 0 7fb03cb935afe8fd 0 0 +7fb03cb935aff005 stream 0 0 7fb03cb938b763e5 0 0 0 vms/0/00000003.000005f5 +7fb03cb935afef3d stream 0 0 7fb03cb938b761f5 0 0 0 vms/0/00000003.00000948 +7fb03cb935afe5dd stream 0 0 7fb03cb938b760fd 0 0 0 vms/0/connect +7fb03cb935afe6a5 stream 0 0 0 7fb03cb935afe76d 0 0 vpnkit.eth.sock +7fb03cb935afe76d stream 0 0 0 7fb03cb935afe6a5 0 0 +7fb03cb935afee75 stream 0 0 7fb03cb9360a12ed 0 0 0 backend.sock +7fb03cb935afece5 stream 0 0 7fb03cb935cd29bd 0 0 0 filesystem-export.sock +7fb03cb935afec1d stream 0 0 7fb03cb935cd43e5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003 +7fb03cb935afe9c5 stream 0 0 7fb03cb935cd40fd 0 0 0 filesystem-volume.sock +7fb03cb935afeb55 stream 0 0 7fb03cb9350eaa35 0 0 0 docker-api.sock +7fb03cb935afea8d stream 0 0 7fb03cb9350eab2d 0 0 0 backend-for-guest.sock +7fb03cb93501b065 stream 0 0 7fb03cb9350ea36d 0 0 0 vpnkit.data.sock +7fb03cb937d37bb5 stream 0 0 7fb03cb9350ea465 0 0 0 vpnkit.port.sock +7fb03cb937d3a5e5 stream 0 0 7fb03cb950a0dca5 0 0 0 docker.sock +7fb03cb937d3a51d stream 0 0 7fb03cb950ab1005 0 0 0 vpnkit.pcap.sock +7fb03cb94d7495e5 stream 0 0 7fb03cb950ab0f0d 0 0 0 vpnkit.diag.sock +7fb03cb94d746895 stream 0 0 7fb03cb950aafd9d 0 0 0 vpnkit.eth.sock +7fb03cb94d7467cd stream 0 0 7fb03cb950ab0085 0 0 0 osxfs.sock +7fb03cb94d746bb5 stream 0 0 7fb03cb950ab0a35 0 0 0 vms/0/00000002.000005f4 +7fb03cb94d7496ad stream 0 0 7fb03cb950a1dab5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock +7fb03cb94d7492c5 stream 0 0 0 7fb03cb94d746aed 0 0 /var/run/mDNSResponder +7fb03cb94d746aed stream 0 0 0 7fb03cb94d7492c5 0 0 +7fb03cb94d748d4d stream 0 0 0 7fb03cb94d7472bd 0 0 /var/run/fctservctl.sock +7fb03cb94d7472bd stream 0 0 0 7fb03cb94d748d4d 0 0 +7fb03cb94d748c85 stream 0 0 0 7fb03cb94d747385 0 0 /var/run/fctservctl.sock +7fb03cb94d747385 stream 0 0 0 7fb03cb94d748c85 0 0 +7fb03cb94d748af5 stream 0 0 0 7fb03cb94d747835 0 0 /var/run/mDNSResponder +7fb03cb94d747835 stream 0 0 0 7fb03cb94d748af5 0 0 +7fb03cb94d748a2d stream 0 0 0 7fb03cb94d74776d 0 0 /var/run/fctservctl.sock +7fb03cb94d74776d stream 145 0 0 7fb03cb94d748a2d 0 0 +7fb03cb94d74889d stream 0 0 0 7fb03cb94d7478fd 0 0 /var/run/fctservctl.sock +7fb03cb94d7478fd stream 0 0 0 7fb03cb94d74889d 0 0 +7fb03cb94d74870d stream 0 0 0 7fb03cb94d7487d5 0 0 /var/run/fctservctl.sock +7fb03cb94d7487d5 stream 0 0 0 7fb03cb94d74870d 0 0 +7fb03cb94d748645 stream 0 0 0 7fb03cb94d7479c5 0 0 /var/run/fctservctl.sock +7fb03cb94d7479c5 stream 0 0 0 7fb03cb94d748645 0 0 +7fb03cb94d747a8d stream 0 0 0 7fb03cb94d74857d 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe +7fb03cb94d74857d stream 0 0 0 7fb03cb94d747a8d 0 0 +7fb03cb94d7484b5 stream 0 0 0 7fb03cb94d747b55 0 0 /var/run/fctservctl.sock +7fb03cb94d747b55 stream 0 0 0 7fb03cb94d7484b5 0 0 +7fb03cb94d747c1d stream 0 0 0 7fb03cb94d748325 0 0 /var/run/fctservctl.sock +7fb03cb94d748325 stream 0 0 0 7fb03cb94d747c1d 0 0 +7fb03cb94d7483ed stream 0 0 7fb03cb94db01655 0 0 0 /tmp/fctvpnctl.sock_501 +7fb03cb94a63bc1d stream 0 0 0 7fb03cb94a63c645 0 0 /var/run/mDNSResponder +7fb03cb94a63c645 stream 0 0 0 7fb03cb94a63bc1d 0 0 +7fb03cb94a63bce5 stream 0 0 0 7fb03cb94a63c57d 0 0 /var/run/mDNSResponder +7fb03cb94a63c57d stream 0 0 0 7fb03cb94a63bce5 0 0 +7fb03cb94a63bdad stream 0 0 0 7fb03cb94a63c4b5 0 0 /var/run/mDNSResponder +7fb03cb94a63c4b5 stream 0 0 0 7fb03cb94a63bdad 0 0 +7fb03cb94a63be75 stream 0 0 0 7fb03cb94a63c3ed 0 0 /var/run/mDNSResponder +7fb03cb94a63c3ed stream 0 0 0 7fb03cb94a63be75 0 0 +7fb03cb94a63bf3d stream 0 0 0 7fb03cb94a63c325 0 0 /var/run/mDNSResponder +7fb03cb94a63c325 stream 0 0 0 7fb03cb94a63bf3d 0 0 +7fb03cb94a63c195 stream 0 0 0 7fb03cb94a63c005 0 0 /var/run/mDNSResponder +7fb03cb94a63c005 stream 0 0 0 7fb03cb94a63c195 0 0 +7fb03cb94a63c0cd stream 0 0 0 7fb03cb94a63c25d 0 0 /var/run/mDNSResponder +7fb03cb94a63c25d stream 0 0 0 7fb03cb94a63c0cd 0 0 +7fb03cb945d3ad4d stream 0 0 0 7fb03cb93501b835 0 0 /var/run/mDNSResponder +7fb03cb945d3ae15 stream 0 0 0 7fb03cb937d377cd 0 0 /var/run/mDNSResponder +7fb03cb93501b835 stream 0 0 0 7fb03cb945d3ad4d 0 0 +7fb03cb937d377cd stream 0 0 0 7fb03cb945d3ae15 0 0 +7fb03cb937d3a6ad stream 0 0 0 7fb03cb937d3a06d 0 0 /var/run/mDNSResponder +7fb03cb937d3a06d stream 0 0 0 7fb03cb937d3a6ad 0 0 +7fb03cb945d387cd stream 0 0 7fb03cb94d0e4a35 0 0 0 /Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock +7fb03cb937d3812d stream 0 0 0 7fb03cb937d3a2c5 0 0 /var/run/mDNSResponder +7fb03cb937d3a2c5 stream 0 0 0 7fb03cb937d3812d 0 0 +7fb03cb945d395dd stream 0 0 0 7fb03cb945d39515 0 0 /var/run/mDNSResponder +7fb03cb945d39515 stream 0 0 0 7fb03cb945d395dd 0 0 +7fb03cb945d39ce5 stream 0 0 0 7fb03cb945d39dad 0 0 /var/run/mDNSResponder +7fb03cb945d39dad stream 0 0 0 7fb03cb945d39ce5 0 0 +7fb03cb937d39e15 stream 0 0 0 7fb03cb937d39645 0 0 /var/run/mDNSResponder +7fb03cb937d39645 stream 0 0 0 7fb03cb937d39e15 0 0 +7fb03cb937d39af5 stream 0 0 7fb03cb9418d26cd 0 0 0 /var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket +7fb03cb93ceaeaed stream 0 0 0 7fb03cb93ceb151d 0 0 /var/run/mDNSResponder +7fb03cb93ceb151d stream 0 0 0 7fb03cb93ceaeaed 0 0 +7fb03cb93ceae95d stream 0 0 0 7fb03cb93ceb138d 0 0 /var/run/mDNSResponder +7fb03cb93ceb138d stream 0 0 0 7fb03cb93ceae95d 0 0 +7fb03cb93ceb12c5 stream 0 0 0 7fb03cb93ceaed45 0 0 /var/run/mDNSResponder +7fb03cb93ceaed45 stream 0 0 0 7fb03cb93ceb12c5 0 0 +7fb03cb93ceaee0d stream 0 0 0 7fb03cb93ceaeed5 0 0 /var/run/mDNSResponder +7fb03cb93ceaeed5 stream 0 0 0 7fb03cb93ceaee0d 0 0 +7fb03cb93ceb106d stream 0 0 0 7fb03cb93ceaef9d 0 0 /var/run/mDNSResponder +7fb03cb93ceaef9d stream 0 0 0 7fb03cb93ceb106d 0 0 +7fb03cb93ceaf2bd stream 0 0 0 7fb03cb93ceb0fa5 0 0 /var/run/mDNSResponder +7fb03cb93ceb0fa5 stream 0 0 0 7fb03cb93ceaf2bd 0 0 +7fb03cb93ceaf515 stream 0 0 0 7fb03cb93ceb0e15 0 0 +7fb03cb93ceb0e15 stream 0 0 0 7fb03cb93ceaf515 0 0 +7fb03cb93ceaf5dd stream 0 0 0 7fb03cb93ceb0d4d 0 0 +7fb03cb93ceb0d4d stream 0 0 0 7fb03cb93ceaf5dd 0 0 +7fb03cb93ceb0c85 stream 0 0 0 7fb03cb93ceaf6a5 0 0 +7fb03cb93ceaf6a5 stream 0 0 0 7fb03cb93ceb0c85 0 0 +7fb03cb93ceaf76d stream 0 0 0 7fb03cb93ceb0bbd 0 0 +7fb03cb93ceb0bbd stream 0 0 0 7fb03cb93ceaf76d 0 0 +7fb03cb93ceb0af5 stream 0 0 0 7fb03cb93ceafa8d 0 0 /var/run/mDNSResponder +7fb03cb93ceafa8d stream 0 0 0 7fb03cb93ceb0af5 0 0 +7fb03cb93ceb057d stream 0 0 0 7fb03cb93ceb070d 0 0 /var/run/mDNSResponder +7fb03cb93ceb070d stream 0 0 0 7fb03cb93ceb057d 0 0 +7fb03cb93ceafce5 stream 0 0 0 7fb03cb93ceaf9c5 0 0 /var/run/mDNSResponder +7fb03cb93ceaf9c5 stream 0 0 0 7fb03cb93ceafce5 0 0 +7fb03cb93ceb025d stream 0 0 7fb03cb93ea4fca5 0 0 0 /tmp/fctvpnctl.sock +7fb03cb93ceb0325 stream 0 0 7fb03cb93ea5074d 0 0 0 /var/tmp/filesystemui.socket +7fb03cb93ceafb55 stream 0 0 7fb03cb93ea1cd1d 0 0 0 /private/tmp/com.apple.launchd.WbUfpjQ9cD/Render +7fb03cb93ceb00cd stream 0 0 7fb03cb93ea42275 0 0 0 /private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners +7fb03cb937d394b5 stream 0 0 7fb03cb938289085 0 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe +7fb03cb93501a895 stream 0 0 0 7fb03cb93501d51d 0 0 /var/run/mDNSResponder +7fb03cb93501d51d stream 0 0 0 7fb03cb93501a895 0 0 +7fb03cb93501aa25 stream 0 0 0 7fb03cb93501aaed 0 0 /var/run/mDNSResponder +7fb03cb93501aaed stream 0 0 0 7fb03cb93501aa25 0 0 +7fb03cb93501d38d stream 0 0 0 7fb03cb93501d2c5 0 0 /var/run/mDNSResponder +7fb03cb93501d2c5 stream 0 0 0 7fb03cb93501d38d 0 0 +7fb03cb93501abb5 stream 0 0 0 7fb03cb93501d1fd 0 0 /var/run/mDNSResponder +7fb03cb93501d1fd stream 0 0 0 7fb03cb93501abb5 0 0 +7fb03cb93501aed5 stream 0 0 0 7fb03cb93501ae0d 0 0 /var/run/mDNSResponder +7fb03cb93501ae0d stream 0 0 0 7fb03cb93501aed5 0 0 +7fb03cb93501b44d stream 0 0 0 7fb03cb93501cedd 0 0 /var/run/mDNSResponder +7fb03cb93501cedd stream 0 0 0 7fb03cb93501b44d 0 0 +7fb03cb93501d06d stream 0 0 0 7fb03cb93501b385 0 0 +7fb03cb93501b385 stream 0 0 0 7fb03cb93501d06d 0 0 +7fb03cb93501cfa5 stream 0 0 7fb03cb93763e7cd 0 0 0 /var/run/displaypolicyd/state +7fb03cb93501b76d stream 0 0 7fb03cb936ea7d9d 0 0 0 /var/run/pppconfd +7fb03cb93501c965 stream 0 0 7fb03cb9355ec3e5 0 0 0 /var/run/epctrl.sock +7fb03cb93501c89d stream 0 0 7fb03cb9355ec1f5 0 0 0 /var/run/fctvpnctrl.sock +7fb03cb93501c7d5 stream 0 0 7fb03cb9355ec0fd 0 0 0 /var/run/fctservctl.sock +7fb03cb93501c70d stream 0 0 7fb03cb9355ec005 0 0 0 /var/run/com.docker.vmnetd.sock +7fb03cb93501c645 stream 0 0 7fb03cb93557e845 0 0 0 /var/rpc/ncalrpc/srvsvc +7fb03cb93501b9c5 stream 0 0 7fb03cb93557e36d 0 0 0 /var/rpc/ncacn_np/srvsvc +7fb03cb93501c57d stream 0 0 7fb03cb93557e55d 0 0 0 /var/run/usbmuxd +7fb03cb93501c4b5 stream 0 0 7fb03cb93557e655 0 0 0 /var/rpc/ncalrpc/wkssvc +7fb03cb93501ba8d stream 0 0 7fb03cb93557e74d 0 0 0 /var/rpc/ncacn_np/wkssvc +7fb03cb93501c3ed stream 0 0 7fb03cb9355617cd 0 0 0 /var/rpc/ncacn_np/mdssvc +7fb03cb93501c325 stream 0 0 7fb03cb9355636cd 0 0 0 /var/rpc/ncalrpc/lsarpc +7fb03cb93501c25d stream 0 0 7fb03cb9355618c5 0 0 0 /var/rpc/ncacn_np/lsarpc +7fb03cb93501bb55 stream 0 0 7fb03cb9355635d5 0 0 0 /var/run/mDNSResponder +7fb03cb93501bc1d stream 0 0 7fb03cb9355634dd 0 0 0 /var/run/systemkeychaincheck.socket +7fb03cb93501bce5 stream 0 0 7fb03cb935561ab5 0 0 0 /private/var/run/.sim_diagnosticd_socket +7fb03cb93501bdad stream 0 0 7fb03cb935561bad 0 0 0 /var/run/portmap.socket +7fb03cb93501be75 stream 0 0 7fb03cb935511d1d 0 0 0 /var/run/vpncontrol.sock +7fb03cb93501bf3d stream 0 0 7fb03cb9354fd085 0 0 0 /var/rpc/ncalrpc/NETLOGON +7fb03cb93501c005 stream 0 0 7fb03cb9354e58c5 0 0 0 /private/var/run/cupsd +7fb03cb95130ddad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3afa5 +7fb03cb94a63b065 dgram 0 0 0 7fb03cb94a63b9c5 7fb03cb94a63b9c5 0 +7fb03cb94a63b9c5 dgram 0 0 0 7fb03cb94a63b065 7fb03cb94a63b065 0 +7fb03cb945d3afa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63ad45 +7fb03cb94a63ad45 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63af9d +7fb03cb94a63af9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceae7cd +7fb03cb93ceae7cd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3b51d +7fb03cb945d3b51d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3a3ed +7fb03cb945d3a3ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3989d +7fb03cb937d3989d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63b76d +7fb03cb94a63b76d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130d44d +7fb03cb95130d44d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130cf9d +7fb03cb95130cf9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501d6ad +7fb03cb94d7491fd dgram 0 0 0 7fb03cb94d7476a5 7fb03cb94d7476a5 0 +7fb03cb94d7476a5 dgram 0 0 0 7fb03cb94d7491fd 7fb03cb94d7491fd 0 +7fb03cb93501d6ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63d6ad +7fb03cb94d748005 dgram 0 0 0 7fb03cb94d749455 7fb03cb94d749455 0 +7fb03cb94d749455 dgram 0 0 0 7fb03cb94d748005 7fb03cb94d748005 0 +7fb03cb94d7475dd dgram 0 0 0 7fb03cb94d747065 7fb03cb94d747065 0 +7fb03cb94d747065 dgram 0 0 0 7fb03cb94d7475dd 7fb03cb94d7475dd 0 +7fb03cb93501a95d dgram 0 0 0 7fb03cb93501d455 7fb03cb93501d455 0 +7fb03cb93501d455 dgram 0 0 0 7fb03cb93501a95d 7fb03cb93501a95d 0 +7fb03cb95130db55 dgram 0 0 0 7fb03cb95130ebbd 7fb03cb95130ebbd 0 +7fb03cb95130ebbd dgram 0 0 0 7fb03cb95130db55 7fb03cb95130db55 0 +7fb03cb94a63d6ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74938d +7fb03cb94d74938d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d38a8d +7fb03cb937d38a8d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130d835 +7fb03cb95130d835 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d746c7d +7fb03cb945d3aedd dgram 0 0 0 7fb03cb945d3b6ad 7fb03cb945d3b6ad 0 +7fb03cb945d3b6ad dgram 0 0 0 7fb03cb945d3aedd 7fb03cb945d3aedd 0 +7fb03cb94d746c7d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74712d +7fb03cb94d74712d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39edd +7fb03cb937d39edd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d38dad +7fb03cb937d38dad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63b12d +7fb03cb94a63b12d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130e57d +7fb03cb95130e57d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74951d +7fb03cb94d74951d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d749135 +7fb03cb94d749135 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb15e5 +7fb03cb93ceb15e5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceae895 +7fb03cb93ceae895 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb16ad +7fb03cb93ceb16ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3a1fd +7fb03cb937d3a1fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d39065 +7fb03cb945d39065 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d38f9d +7fb03cb945d38f9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d39a8d +7fb03cb945d399c5 dgram 0 0 0 7fb03cb945d3a005 7fb03cb945d3a005 0 +7fb03cb945d3a005 dgram 0 0 0 7fb03cb945d399c5 7fb03cb945d399c5 0 +7fb03cb945d39b55 dgram 0 0 0 7fb03cb945d39f3d 7fb03cb945d39f3d 0 +7fb03cb945d39f3d dgram 0 0 0 7fb03cb945d39b55 7fb03cb945d39b55 0 +7fb03cb945d39a8d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d397d5 +7fb03cb937d37d45 dgram 0 0 0 7fb03cb937d37e0d 7fb03cb937d37e0d 0 +7fb03cb937d37e0d dgram 0 0 0 7fb03cb937d37d45 7fb03cb937d37d45 0 +7fb03cb937d397d5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb11fd +7fb03cb93ceb11fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf065 +7fb03cb93ceaf065 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0edd +7fb03cb93ceb0edd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf385 +7fb03cb93ceaf12d dgram 0 0 0 7fb03cb93ceaf1f5 7fb03cb93ceaf1f5 0 +7fb03cb93ceaf1f5 dgram 0 0 0 7fb03cb93ceaf12d 7fb03cb93ceaf12d 0 +7fb03cb93ceaf385 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0965 +7fb03cb93ceb0965 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0a2d +7fb03cb93ceb0a2d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf835 +7fb03cb93ceaf835 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf8fd +7fb03cb93ceaf8fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceafdad +7fb03cb93ceafdad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb07d5 +7fb03cb93ceb07d5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb089d +7fb03cb93ceb0645 dgram 0 0 0 7fb03cb93ceafe75 7fb03cb93ceafe75 0 +7fb03cb93ceafe75 dgram 0 0 0 7fb03cb93ceb0645 7fb03cb93ceb0645 0 +7fb03cb93ceb089d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceafc1d +7fb03cb93ceb0195 dgram 0 0 0 7fb03cb93ceb0005 7fb03cb93ceb0005 0 +7fb03cb93ceb0005 dgram 0 0 0 7fb03cb93ceb0195 7fb03cb93ceb0195 0 +7fb03cb93ceafc1d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb03ed +7fb03cb93ceb03ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39fa5 +7fb03cb937d39a2d dgram 0 0 0 7fb03cb937d39bbd 7fb03cb937d39bbd 0 +7fb03cb937d39bbd dgram 0 0 0 7fb03cb937d39a2d 7fb03cb937d39a2d 0 +7fb03cb937d39fa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39965 +7fb03cb937d38065 dgram 0 0 0 7fb03cb937d37c7d 7fb03cb937d37c7d 0 +7fb03cb937d37c7d dgram 0 0 0 7fb03cb937d38065 7fb03cb937d38065 0 +7fb03cb937d39965 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d37f9d +7fb03cb937d37f9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d393ed +7fb03cb937d393ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3970d +7fb03cb937d3970d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501d135 +7fb03cb937d382bd dgram 0 0 0 7fb03cb937d3957d 7fb03cb937d3957d 0 +7fb03cb937d3957d dgram 0 0 0 7fb03cb937d382bd 7fb03cb937d382bd 0 +7fb03cb937d38c1d dgram 0 0 0 7fb03cb937d38ce5 7fb03cb937d38ce5 0 +7fb03cb937d38ce5 dgram 0 0 0 7fb03cb937d38c1d 7fb03cb937d38c1d 0 +7fb03cb93501d135 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cd4d +7fb03cb93501cd4d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cc85 +7fb03cb93501b1f5 dgram 0 0 0 7fb03cb93501b2bd 7fb03cb93501b2bd 0 +7fb03cb93501b2bd dgram 0 0 0 7fb03cb93501b1f5 7fb03cb93501b1f5 0 +7fb03cb93501ce15 dgram 0 0 0 7fb03cb93501b515 7fb03cb93501b515 0 +7fb03cb93501b515 dgram 0 0 0 7fb03cb93501ce15 7fb03cb93501ce15 0 +7fb03cb93501b6a5 dgram 0 0 0 7fb03cb93501caf5 7fb03cb93501caf5 0 +7fb03cb93501caf5 dgram 0 0 0 7fb03cb93501b6a5 7fb03cb93501b6a5 0 +7fb03cb93501cc85 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cbbd +7fb03cb93501cbbd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501c0cd +7fb03cb93501b8fd dgram 0 0 0 7fb03cb93501ca2d 7fb03cb93501ca2d 0 +7fb03cb93501ca2d dgram 0 0 0 7fb03cb93501b8fd 7fb03cb93501b8fd 0 +7fb03cb93501c0cd dgram 0 0 0 7fb03cb93501c195 0 0 +7fb03cb93501c195 dgram 0 0 7fb03cb934ff43e5 0 7fb03cb95130ddad 0 /private//var/run/syslog +Registered kernel control modules +kctlref id unit flags pcbcount rcvbuf sndbuf name + 10001 1 -1 9 0 131072 131072 com.apple.flow-divert + 20002 2 -1 1 1 16384 2048 com.apple.nke.sockwall + 30003 3 -1 9 0 524288 524288 com.apple.content-filter + 40004 4 -1 1 0 65536 65536 com.apple.net.necp_control + 50005 5 -1 1 12 65536 65536 com.apple.net.netagent + 60006 6 -1 9 4 524288 524288 com.apple.net.utun_control + 70007 7 -1 1 0 65536 65536 com.apple.net.ipsec_control + 80008 8 -1 0 74 8192 2048 com.apple.netsrc + 90009 9 -1 18 4 8192 2048 com.apple.network.statistics + a000a a -1 5 0 8192 2048 com.apple.network.tcp_ccdebug + b000b b -1 1 0 8192 2048 com.apple.network.advisory + c000c c -1 4 0 65536 2048 com.apple.uart.BLTH + d000d d -1 4 0 8192 2048 com.apple.uart.sk.BLTH + e000e e -1 0 0 8192 8192 com.apple.fileutil.kext.stateful.ctl + f000f f -1 0 0 8192 2048 com.apple.fileutil.kext.stateless.ctl + 170017 17 -1 5 1 32768 2048 com.fortinet.fct.kext.fwnke + ea0010 18 -1 5 1 8192 2048 com.fortinet.kext.avkern2 +Active kernel event sockets + pcb Proto Recv-Q Send-Q vendor class subcla rxbytes txbytes +7fb03cb936ead2bd kevt 0 0 1 1 0 0 0 +7fb03cb936ead2f5 kevt 0 0 1 4 0 0 0 +7fb03cb936eacd0d kevt 0 0 1 1 0 1414844 0 +7fb03cb936eacd45 kevt 0 0 1 6 1 27716540 0 +7fb03cb936ead24d kevt 0 0 1 6 1 27716540 0 +7fb03cb936ead215 kevt 0 0 1 6 1 27716540 0 +7fb03cb936ead1dd kevt 0 0 1 1 11 0 0 +7fb03cb936eacd7d kevt 0 0 1 6 1 27716540 0 +7fb03cb936eacdb5 kevt 0 0 1 6 1 27716540 0 +7fb03cb936eacded kevt 0 0 1 6 1 27716744 0 +7fb03cb936eace25 kevt 0 0 1 6 1 27716744 0 +7fb03cb936eace5d kevt 0 0 1 6 1 27716744 0 +7fb03cb936ead1a5 kevt 0 0 1 6 1 27718800 0 +7fb03cb936eace95 kevt 0 0 1 6 1 27719296 0 +7fb03cb936eacecd kevt 0 0 1 6 1 27719296 0 +7fb03cb936eacf05 kevt 0 0 1 6 1 27719296 0 +7fb03cb936ead16d kevt 0 0 1 1 6 823488 0 +7fb03cb936eacf3d kevt 0 0 1 1 1 836 0 +7fb03cb936eacf75 kevt 0 0 1 6 1 27719456 0 +7fb03cb936eacfad kevt 0 0 1 1 2 444256 0 +7fb03cb936ead135 kevt 0 0 1 1 10 0 0 +7fb03cb936eacfe5 kevt 0 0 1000 5 11 144855 0 +7fb03cb936ead01d kevt 0 0 1 1 7 151680 0 +7fb03cb936ead055 kevt 0 0 1 1 1 836 0 +7fb03cb936ead08d kevt 0 0 1 1 2 444256 0 +7fb03cb936ead0fd kevt 0 0 1 3 3 0 0 +7fb03cb936ead0c5 kevt 0 0 1 1 0 1422896 0 +Active kernel control sockets + pcb Proto Recv-Q Send-Q rxbytes txbytes unit id name +7fb03cb937d0314d kctl 0 0 791268 657340 1 2 com.apple.nke.sockwall +7fb03cb9375d4f4d kctl 0 0 0 0 1 5 com.apple.net.netagent +7fb03cb9375d5ded kctl 0 0 0 0 2 5 com.apple.net.netagent +7fb03cb9375d4d6d kctl 0 0 0 0 3 5 com.apple.net.netagent +7fb03cb9375d656d kctl 0 0 0 0 4 5 com.apple.net.netagent +7fb03cb9375d4c4d kctl 0 0 0 0 5 5 com.apple.net.netagent +7fb03cb9375d662d kctl 0 0 0 0 6 5 com.apple.net.netagent +7fb03cb9608a1a6d kctl 0 0 0 0 7 5 com.apple.net.netagent +7fb03cb94c7488ed kctl 0 0 0 0 8 5 com.apple.net.netagent +7fb03cb93e7299ad kctl 0 0 0 0 9 5 com.apple.net.netagent +7fb03cb93e72b5cd kctl 0 0 0 0 10 5 com.apple.net.netagent +7fb03cb93e72b6ed kctl 0 0 0 0 11 5 com.apple.net.netagent +7fb03cb93f60182d kctl 0 0 0 0 12 5 com.apple.net.netagent +7fb03cb93f6020cd kctl 0 0 30618 0 1 6 com.apple.net.utun_control +7fb03cb94ff8f9cd kctl 0 0 0 0 2 6 com.apple.net.utun_control +7fb03cb94ff8fded kctl 0 0 0 0 3 6 com.apple.net.utun_control +7fb03cb94ff8f48d kctl 0 0 0 0 4 6 com.apple.net.utun_control +7fb03cb9375d644d kctl 0 0 224 144 1 8 com.apple.netsrc +7fb03cb93c237d8d kctl 0 0 224 144 2 8 com.apple.netsrc +7fb03cb93c23682d kctl 0 0 9352 6012 3 8 com.apple.netsrc +7fb03cb9503efa6d kctl 0 0 4144 2664 4 8 com.apple.netsrc +7fb03cb93cc9038d kctl 0 0 376544 242064 5 8 com.apple.netsrc +7fb03cb93d3a7d6d kctl 0 0 3192 2052 6 8 com.apple.netsrc +7fb03cb9608a314d kctl 0 0 630280 405180 7 8 com.apple.netsrc +7fb03cb93eefef0d kctl 0 0 2520 1620 8 8 com.apple.netsrc +7fb03cb93f3d2e8d kctl 0 0 2520 1620 9 8 com.apple.netsrc +7fb03cb93f60260d kctl 0 0 32368 20808 10 8 com.apple.netsrc +7fb03cb93f601d6d kctl 0 0 120568 77508 11 8 com.apple.netsrc +7fb03cb93fb8e30d kctl 0 0 6272 4032 12 8 com.apple.netsrc +7fb03cb93fb8d8ed kctl 0 0 896 576 13 8 com.apple.netsrc +7fb03cb93f3d384d kctl 0 0 1344 864 14 8 com.apple.netsrc +7fb03cb940438bad kctl 0 0 81816 52596 15 8 com.apple.netsrc +7fb03cb949ba84ed kctl 0 0 6328 4068 16 8 com.apple.netsrc +7fb03cb94043968d kctl 0 0 2520 1620 17 8 com.apple.netsrc +7fb03cb940c3594d kctl 0 0 74760 48060 18 8 com.apple.netsrc +7fb03cb941b872cd kctl 0 0 2520 1620 19 8 com.apple.netsrc +7fb03cb943aa506d kctl 0 0 309064 198684 20 8 com.apple.netsrc +7fb03cb941451a8d kctl 0 0 31864 20484 21 8 com.apple.netsrc +7fb03cb94510508d kctl 0 0 2632 1692 22 8 com.apple.netsrc +7fb03cb9459058ed kctl 0 0 133392 85752 23 8 com.apple.netsrc +7fb03cb945c5bf0d kctl 0 0 2016 1296 24 8 com.apple.netsrc +7fb03cb94766e96d kctl 0 0 14280 9180 25 8 com.apple.netsrc +7fb03cb946464c6d kctl 0 0 1568 1008 26 8 com.apple.netsrc +7fb03cb946463fad kctl 0 0 203224 130644 27 8 com.apple.netsrc +7fb03cb94646394d kctl 0 0 338184 217404 28 8 com.apple.netsrc +7fb03cb95002e5ad kctl 0 0 616 396 29 8 com.apple.netsrc +7fb03cb94fe5d12d kctl 0 0 14280 9180 30 8 com.apple.netsrc +7fb03cb95fb8feed kctl 0 0 112 72 31 8 com.apple.netsrc +7fb03cb9471823cd kctl 0 0 438592 281952 32 8 com.apple.netsrc +7fb03cb96085390d kctl 0 0 166040 106740 33 8 com.apple.netsrc +7fb03cb94686a3cd kctl 0 0 336 216 34 8 com.apple.netsrc +7fb03cb94804f18d kctl 0 0 57792 37152 35 8 com.apple.netsrc +7fb03cb94804f42d kctl 0 0 336 216 36 8 com.apple.netsrc +7fb03cb94804fead kctl 0 0 1568 1008 37 8 com.apple.netsrc +7fb03cb94fefcd2d kctl 0 0 8512 5472 38 8 com.apple.netsrc +7fb03cb94f9330ed kctl 0 0 9520 6120 39 8 com.apple.netsrc +7fb03cb9496ffb8d kctl 0 0 4816 3096 40 8 com.apple.netsrc +7fb03cb95e70872d kctl 0 0 203448 130788 41 8 com.apple.netsrc +7fb03cb94c8769ad kctl 0 0 280616 180396 42 8 com.apple.netsrc +7fb03cb9508e426d kctl 0 0 112 72 43 8 com.apple.netsrc +7fb03cb95f702d8d kctl 0 0 112 72 44 8 com.apple.netsrc +7fb03cb94d86f2cd kctl 0 0 103040 66240 45 8 com.apple.netsrc +7fb03cb94e49c2ad kctl 0 0 56 36 46 8 com.apple.netsrc +7fb03cb95eff106d kctl 0 0 327936 210816 47 8 com.apple.netsrc +7fb03cb93aa79fcd kctl 0 0 8064 5184 48 8 com.apple.netsrc +7fb03cb94f65e74d kctl 0 0 3136 2016 49 8 com.apple.netsrc +7fb03cb94f8944ad kctl 0 0 6888 4428 50 8 com.apple.netsrc +7fb03cb94f931d6d kctl 0 0 336 216 51 8 com.apple.netsrc +7fb03cb94f9d11ad kctl 0 0 6720 4320 52 8 com.apple.netsrc +7fb03cb95fbb0aed kctl 0 0 28448 18288 53 8 com.apple.netsrc +7fb03cb95f88ec4d kctl 0 0 63000 40500 54 8 com.apple.netsrc +7fb03cb9496ffa0d kctl 0 0 2576 1656 55 8 com.apple.netsrc +7fb03cb94c736fcd kctl 0 0 336 216 56 8 com.apple.netsrc +7fb03cb95477236d kctl 0 0 336 216 57 8 com.apple.netsrc +7fb03cb95e1a588d kctl 0 0 7336 4716 58 8 com.apple.netsrc +7fb03cb95e1a726d kctl 0 0 12544 8064 59 8 com.apple.netsrc +7fb03cb94ed4f24d kctl 0 0 112 72 60 8 com.apple.netsrc +7fb03cb95f46cc6d kctl 0 0 11872 7632 61 8 com.apple.netsrc +7fb03cb94fb5ad2d kctl 0 0 168 108 62 8 com.apple.netsrc +7fb03cb95cb8b9ad kctl 0 0 1456 936 63 8 com.apple.netsrc +7fb03cb954772d8d kctl 0 0 336 216 64 8 com.apple.netsrc +7fb03cb950171fad kctl 0 0 672 432 65 8 com.apple.netsrc +7fb03cb9375d590d kctl 0 0 336 216 66 8 com.apple.netsrc +7fb03cb94686a1ed kctl 0 0 168 108 67 8 com.apple.netsrc +7fb03cb94ffdd1ad kctl 0 0 129808 83448 68 8 com.apple.netsrc +7fb03cb94ff8f96d kctl 0 0 168 108 69 8 com.apple.netsrc +7fb03cb95e6c8e8d kctl 0 0 18648 11988 70 8 com.apple.netsrc +7fb03cb94b5af2ad kctl 0 0 224 144 71 8 com.apple.netsrc +7fb03cb96074aa6d kctl 0 0 112 72 72 8 com.apple.netsrc +7fb03cb95bff57cd kctl 0 0 56 36 74 8 com.apple.netsrc +7fb03cb95fc8056d kctl 0 0 112 72 77 8 com.apple.netsrc +7fb03cb937d02e4d kctl 0 0 216428 44 1 9 com.apple.network.statistics +7fb03cb93e09b08d kctl 0 0 144713152 30152 2 9 com.apple.network.statistics +7fb03cb93e099a0d kctl 0 0 0 0 3 9 com.apple.network.statistics +7fb03cb93e099bed kctl 0 0 6100 2148 4 9 com.apple.network.statistics +7fb03cb9603d82cd kctl 0 0 0 0 1 23 com.fortinet.fct.kext.fwnke +7fb03cb9603d67cd kctl 0 0 20960 240 1 24 com.fortinet.kext.avkern2 diff --git a/tests/fixtures/osx-10.14.6/netstat-An.json b/tests/fixtures/osx-10.14.6/netstat-An.json new file mode 100644 index 00000000..dca31a97 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/netstat-An.json @@ -0,0 +1 @@ +[{"socket": "7fb03cb94d505aed", "flowhash": "cedd0cbf", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.113.26", "state": "ESTABLISHED", "kind": "network", "local_port": "5486", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5486, "foreign_port_num": 443}, {"socket": "7fb03cb94d692475", "flowhash": "1c9f9fcd", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "208.91.113.36", "state": "ESTABLISHED", "kind": "network", "local_port": "5480", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5480, "foreign_port_num": 443}, {"socket": "7fb03cb94b25de55", "flowhash": "dbe59bf8", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.112.26", "state": "ESTABLISHED", "kind": "network", "local_port": "5478", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5478, "foreign_port_num": 443}, {"socket": "7fb03cb95fad8165", "flowhash": "6a3d6e4", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.201", "state": "ESTABLISHED", "kind": "network", "local_port": "5450", "foreign_port": "4923", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 4923}, {"socket": "7fb03cb946c1cbcd", "flowhash": "3c023c0", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "9", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 9}, {"socket": "7fb03cb95fad77dd", "flowhash": "3f163cd2", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.64", "state": "ESTABLISHED", "kind": "network", "local_port": "5450", "foreign_port": "53380", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 53380}, {"socket": "7fb03cb94221360d", "flowhash": "cc0e0c2a", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2603:1030:b00::e", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c20e4d", "flowhash": "8e998322", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2620:1ec:21::14", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "44", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 44}, {"socket": "7fb03cb93c75d475", "flowhash": "d53fb648", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "ESTABLISHED", "kind": "network", "local_port": "5452", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 8081}, {"socket": "7fb03cb937c2140d", "flowhash": "e013f438", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4000:8", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b718aed", "flowhash": "bcd5aa6f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.88", "state": "ESTABLISHED", "kind": "network", "local_port": "5452", "foreign_port": "49153", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 49153}, {"socket": "7fb03cb94b716e55", "flowhash": "30944ff3", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.89", "state": "ESTABLISHED", "kind": "network", "local_port": "5451", "foreign_port": "49152", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 49152}, {"socket": "7fb03cb93c75b7dd", "flowhash": "d54ab36f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.72", "state": "ESTABLISHED", "kind": "network", "local_port": "5450", "foreign_port": "55617", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 55617}, {"socket": "7fb03cb93b2d6e55", "flowhash": "d11ddd76", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "52.114.148.56", "state": "ESTABLISHED", "kind": "network", "local_port": "5451", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 443}, {"socket": "7fb03cb94a8f8d0d", "flowhash": "88c31bcb", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f988d", "flowhash": "a10400b8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb948e8f88d", "flowhash": "cd67a7b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb94bcb6475", "flowhash": "4ca24b6e", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5442", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5442, "foreign_port_num": 8081}, {"socket": "7fb03cb94b4f518d", "flowhash": "25c58fec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94bcb47dd", "flowhash": "b164479", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "kind": "network", "local_port": "53755", "foreign_port": "53763", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53755, "foreign_port_num": 53763}, {"socket": "7fb03cb94b433e55", "flowhash": "f28b9248", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "kind": "network", "local_port": "53763", "foreign_port": "53755", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53763, "foreign_port_num": 53755}, {"socket": "7fb03cb94b719475", "flowhash": "316c063a", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "104.155.21.255", "state": "ESTABLISHED", "kind": "network", "local_port": "5359", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5359, "foreign_port_num": 555}, {"socket": "7fb03cb946c1ba8d", "flowhash": "d32bc928", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94c066aed", "flowhash": "fb73c2ca", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "17.57.144.20", "state": "ESTABLISHED", "kind": "network", "local_port": "5263", "foreign_port": "5223", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5263, "foreign_port_num": 5223}, {"socket": "7fb03cb94d2ebaed", "flowhash": "22dc0e42", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.80", "state": "ESTABLISHED", "kind": "network", "local_port": "5179", "foreign_port": "548", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5179, "foreign_port_num": 548}, {"socket": "7fb03cb94a8f818d", "flowhash": "5e12e220", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f704d", "flowhash": "16ca6e94", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942212a8d", "flowhash": "da4b1f7d", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8dbcd", "flowhash": "4aeb1af1", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f92cd", "flowhash": "6859cfec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1e2cd", "flowhash": "248b598b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942213bcd", "flowhash": "56762cbf", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8d60d", "flowhash": "d29e9efa", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1d18d", "flowhash": "60f3fa15", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94b4347dd", "flowhash": "a1f7c428", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb948047aed", "flowhash": "ceac8539", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb963503e55", "flowhash": "d98dfd14", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb937c202cd", "flowhash": "2e36177f", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "6", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 6, "foreign_port_num": 4}, {"socket": "7fb03cb946c1c60d", "flowhash": "aaabe009", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb948536475", "flowhash": "dc1e01a0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "96.45.36.31", "state": "ESTABLISHED", "kind": "network", "local_port": "5879", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5879, "foreign_port_num": 443}, {"socket": "7fb03cb94b38e7dd", "flowhash": "e3b8b675", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "9592", "foreign_port": "58704", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 9592, "foreign_port_num": 58704}, {"socket": "7fb03cb94d691165", "flowhash": "7eee3b1", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5346", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5346, "foreign_port_num": 8081}, {"socket": "7fb03cb948e8f2cd", "flowhash": "e7486da9", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94221304d", "flowhash": "3e982c00", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c2088d", "flowhash": "30000ae7", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b4f4bcd", "flowhash": "57e076f4", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94221474d", "flowhash": "6465b356", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f6a8d", "flowhash": "bed25b95", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb937c1fd0d", "flowhash": "33613be8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb93c70600d", "flowhash": "777662f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58043", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58043}, {"socket": "7fb03cb93c709f4d", "flowhash": "b64a4fe1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63678", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63678}, {"socket": "7fb03cb93c708c0d", "flowhash": "48ba21c8", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "60774", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 60774}, {"socket": "7fb03cb93c70760d", "flowhash": "7f0afb2c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51411", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51411}, {"socket": "7fb03cb93c707b8d", "flowhash": "7c49f0f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57119", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57119}, {"socket": "7fb03cb93c70734d", "flowhash": "c750f7f0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61217", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61217}, {"socket": "7fb03cb93c70810d", "flowhash": "2308a9b6", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "56091", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 56091}, {"socket": "7fb03cb93c707e4d", "flowhash": "4b2ff4b3", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58807", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58807}, {"socket": "7fb03cb9371e2d4d", "flowhash": "8d16cd6b", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "54338", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54338}, {"socket": "7fb03cb93721310d", "flowhash": "f4140344", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "3722", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 3722}, {"socket": "7fb03cb93d5b800d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c7ba60d", "flowhash": "7fd9393b", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61224", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61224}, {"socket": "7fb03cb93c7b8a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b0470d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c706dcd", "flowhash": "f725c38f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63995", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63995}, {"socket": "7fb03cb93c708ecd", "flowhash": "5ed0c674", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5063", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5063}, {"socket": "7fb03cb93c70868d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33354", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33354}, {"socket": "7fb03cb93c70658d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33355", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33355}, {"socket": "7fb03cb934b578cd", "flowhash": "530d4d40", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61982}, {"socket": "7fb03cb934b59c8d", "flowhash": "91b8382", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61982}, {"socket": "7fb03cb934b56dcd", "flowhash": "ca5be4ea", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52378}, {"socket": "7fb03cb934b5760d", "flowhash": "3462e1b2", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52378}, {"socket": "7fb03cb934b5944d", "flowhash": "58e06369", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53910}, {"socket": "7fb03cb934b5a20d", "flowhash": "e03584", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53910}, {"socket": "7fb03cb934b55d4d", "flowhash": "e91dd2ad", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 57674}, {"socket": "7fb03cb934b5970d", "flowhash": "da8119f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57674}, {"socket": "7fb03cb934b599cd", "flowhash": "3504cd68", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62448}, {"socket": "7fb03cb934b557cd", "flowhash": "941a5612", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62448}, {"socket": "7fb03cb934b58c0d", "flowhash": "c487a471", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55681}, {"socket": "7fb03cb934b5600d", "flowhash": "c4b0913", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55681}, {"socket": "7fb03cb93716444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b6df00d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8bbd4d", "flowhash": "47d61919", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc00d", "flowhash": "8148de2d", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc2cd", "flowhash": "41ad85a1", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bfc8d", "flowhash": "3d59980f", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bd34d", "flowhash": "73cc988e", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bf44d", "flowhash": "dee9266c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bdb8d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb937211dcd", "flowhash": "b4871709", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51226", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51226}, {"socket": "7fb03cb9372154cd", "flowhash": "21b31d88", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61491", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61491}, {"socket": "7fb03cb93b74a3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "6096", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 6096}, {"socket": "7fb03cb93c7bb10d", "flowhash": "f1ac8ec5", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58997", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58997}, {"socket": "7fb03cb93b70ea8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b7129cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b71270d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b711c0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72d70d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72bb8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b747a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc90a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9520d", "flowhash": "97a44721", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52551", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52551}, {"socket": "7fb03cb93bc90d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc94f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c7bcc8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8beecd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be10d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be68d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93d5b7a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70894d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70a20d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70944d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70684d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b049cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371654cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716520d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937164f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371628cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162b8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162e4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371e32cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb934b56b0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721394d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbcd4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbf10d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"socket": "7fb03cb93721184d", "flowhash": "b180dc9e", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb9372149cd", "flowhash": "6fa9aaf7", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb934b583cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "9595", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 9595}, {"socket": "7fb03cb934b5810d", "flowhash": "5b0b6f0f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "138", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 138}, {"socket": "7fb03cb934b57e4d", "flowhash": "dd966d84", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "137", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 137}, {"socket": "7fb03cb939ad73cd", "flowhash": "0", "proto": "icm4", "recv_q": 8136, "send_q": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "icmp", "network_protocol": "ipv4"}, {"address": "7fb03cb95130f2c5", "type": "stream", "recv_q": 1, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e70d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130e70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130da8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f38d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130f38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130da8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130cd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130de75", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130de75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d9c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130cc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94d74825d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748965", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74825d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7471f5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7471f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74695d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74695d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747e75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747ce5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748bbd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d389c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d389c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d396a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d396a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ac85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ac85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b38d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3b38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cfa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b5dd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ae0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b44d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aa25", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d1f5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130d1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3aa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74906d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746e0d", "type": "stream", "recv_q": 8, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74906d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d385dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d385dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3876d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3876d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d386a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d386a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d390cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d390cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3895d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3895d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d392bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38e0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d392bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3976d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3912d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3912d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3976d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d391f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d391f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38c7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94b87f5d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS", "kind": "socket"}, {"address": "7fb03cb945d39c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ac7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63caf5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63caf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ac7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ce0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ce0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130caed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ca25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ca25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130caed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e7d5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ced5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f51d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ced5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130df3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c7cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130df3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ea2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ea2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb937de855d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Library/Application Support/LANDesk/tmp/socket/sys", "kind": "socket"}, {"address": "7fb03cb95130d065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ec85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ee15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ee15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ec85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ed4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ed4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3925d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39c85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3925d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d381f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b005e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afd895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935afd895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b005e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d5e5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ba8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63a895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cc85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7480cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d7480cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c7d5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e005", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb95130e005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b001fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdaed", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afdaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b001fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0038d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ead1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b002c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff0cd", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb935aff0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b002c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b00135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdbb5", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb935afdbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b00135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affd4d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935affd4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affe15", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affe15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affa2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0006d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afffa5", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afffa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b0006d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdc7d", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935afdc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affc85", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935affc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afde0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affbbd", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affbbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afde0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afded5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff965", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afded5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff7d5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdf9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff70d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdf9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff57d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff4b5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd2d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb935aff325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93609fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935aff25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94cddc36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock", "kind": "socket"}, {"address": "7fb03cb935afe12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe1f5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eac25", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe8fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afedad", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf", "kind": "socket"}, {"address": "7fb03cb935afedad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe8fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b763e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.000005f5", "kind": "socket"}, {"address": "7fb03cb935afef3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b761f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.00000948", "kind": "socket"}, {"address": "7fb03cb935afe5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b760fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afe6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe76d", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb935afe76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afee75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9360a12ed", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend.sock", "kind": "socket"}, {"address": "7fb03cb935afece5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd29bd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-export.sock", "kind": "socket"}, {"address": "7fb03cb935afec1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd43e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd40fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-volume.sock", "kind": "socket"}, {"address": "7fb03cb935afeb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eaa35", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker-api.sock", "kind": "socket"}, {"address": "7fb03cb935afea8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eab2d", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb93501b065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb937d37bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea465", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.port.sock", "kind": "socket"}, {"address": "7fb03cb937d3a5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a0dca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker.sock", "kind": "socket"}, {"address": "7fb03cb937d3a51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab1005", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.pcap.sock", "kind": "socket"}, {"address": "7fb03cb94d7495e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0f0d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.diag.sock", "kind": "socket"}, {"address": "7fb03cb94d746895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950aafd9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb94d7467cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0085", "conn": "0", "refs": "0", "nextref": "0", "addr": "osxfs.sock", "kind": "socket"}, {"address": "7fb03cb94d746bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb94d7496ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a1dab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock", "kind": "socket"}, {"address": "7fb03cb94d7492c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d746aed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7492c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7472bd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7472bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748a2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74776d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74776d", "type": "stream", "recv_q": 145, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748a2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74889d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7478fd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7478fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74889d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74870d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7487d5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7487d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74870d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7479c5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7479c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747a8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74857d", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb94d74857d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747a8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7484b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747b55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747b55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7484b5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748325", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7483ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94db01655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock_501", "kind": "socket"}, {"address": "7fb03cb94a63bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c57d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bdad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63be75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c325", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bf3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c005", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ad4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ae15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d377cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501b835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ad4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d377cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ae15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a6ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a06d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d387cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94d0e4a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock", "kind": "socket"}, {"address": "7fb03cb937d3812d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3812d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d395dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39515", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d395dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39dad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39dad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9418d26cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket", "kind": "socket"}, {"address": "7fb03cb93ceaeaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb151d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb151d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceae95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb138d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb138d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceae95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb12c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaed45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaed45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb12c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaee0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeed5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaeed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaee0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb106d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaef9d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaef9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb106d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0fa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb0fa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0bbd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafa8d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceafa8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb057d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb070d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb070d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb057d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf9c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaf9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb025d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea4fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock", "kind": "socket"}, {"address": "7fb03cb93ceb0325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea5074d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/tmp/filesystemui.socket", "kind": "socket"}, {"address": "7fb03cb93ceafb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea1cd1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WbUfpjQ9cD/Render", "kind": "socket"}, {"address": "7fb03cb93ceb00cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea42275", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners", "kind": "socket"}, {"address": "7fb03cb937d394b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938289085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb93501a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aaed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501aaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aa25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d1fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ae0d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501cedd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b44d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93763e7cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/displaypolicyd/state", "kind": "socket"}, {"address": "7fb03cb93501b76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb936ea7d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/pppconfd", "kind": "socket"}, {"address": "7fb03cb93501c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec3e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/epctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec1f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctvpnctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec0fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb93501c70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec005", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/com.docker.vmnetd.sock", "kind": "socket"}, {"address": "7fb03cb93501c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e845", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e55d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/usbmuxd", "kind": "socket"}, {"address": "7fb03cb93501c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e74d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355617cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/mdssvc", "kind": "socket"}, {"address": "7fb03cb93501c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355636cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355618c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501bb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355635d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355634dd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/systemkeychaincheck.socket", "kind": "socket"}, {"address": "7fb03cb93501bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561ab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/.sim_diagnosticd_socket", "kind": "socket"}, {"address": "7fb03cb93501bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561bad", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/portmap.socket", "kind": "socket"}, {"address": "7fb03cb93501be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935511d1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/vpncontrol.sock", "kind": "socket"}, {"address": "7fb03cb93501bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354fd085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/NETLOGON", "kind": "socket"}, {"address": "7fb03cb93501c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354e58c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/cupsd", "kind": "socket"}, {"address": "7fb03cb95130ddad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3afa5", "kind": "socket"}, {"address": "7fb03cb94a63b065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b9c5", "refs": "7fb03cb94a63b9c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b9c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b065", "refs": "7fb03cb94a63b065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3afa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63ad45", "kind": "socket"}, {"address": "7fb03cb94a63ad45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63af9d", "kind": "socket"}, {"address": "7fb03cb94a63af9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae7cd", "kind": "socket"}, {"address": "7fb03cb93ceae7cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3b51d", "kind": "socket"}, {"address": "7fb03cb945d3b51d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3a3ed", "kind": "socket"}, {"address": "7fb03cb945d3a3ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3989d", "kind": "socket"}, {"address": "7fb03cb937d3989d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b76d", "kind": "socket"}, {"address": "7fb03cb94a63b76d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d44d", "kind": "socket"}, {"address": "7fb03cb95130d44d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130cf9d", "kind": "socket"}, {"address": "7fb03cb95130cf9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d6ad", "kind": "socket"}, {"address": "7fb03cb94d7491fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7476a5", "refs": "7fb03cb94d7476a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7476a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7491fd", "refs": "7fb03cb94d7491fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63d6ad", "kind": "socket"}, {"address": "7fb03cb94d748005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d749455", "refs": "7fb03cb94d749455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d749455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748005", "refs": "7fb03cb94d748005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7475dd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747065", "refs": "7fb03cb94d747065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7475dd", "refs": "7fb03cb94d7475dd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a95d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d455", "refs": "7fb03cb93501d455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a95d", "refs": "7fb03cb93501a95d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130db55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ebbd", "refs": "7fb03cb95130ebbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ebbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130db55", "refs": "7fb03cb95130db55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74938d", "kind": "socket"}, {"address": "7fb03cb94d74938d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38a8d", "kind": "socket"}, {"address": "7fb03cb937d38a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d835", "kind": "socket"}, {"address": "7fb03cb95130d835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d746c7d", "kind": "socket"}, {"address": "7fb03cb945d3aedd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b6ad", "refs": "7fb03cb945d3b6ad", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3aedd", "refs": "7fb03cb945d3aedd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74712d", "kind": "socket"}, {"address": "7fb03cb94d74712d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39edd", "kind": "socket"}, {"address": "7fb03cb937d39edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38dad", "kind": "socket"}, {"address": "7fb03cb937d38dad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b12d", "kind": "socket"}, {"address": "7fb03cb94a63b12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e57d", "kind": "socket"}, {"address": "7fb03cb95130e57d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74951d", "kind": "socket"}, {"address": "7fb03cb94d74951d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d749135", "kind": "socket"}, {"address": "7fb03cb94d749135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb15e5", "kind": "socket"}, {"address": "7fb03cb93ceb15e5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae895", "kind": "socket"}, {"address": "7fb03cb93ceae895", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb16ad", "kind": "socket"}, {"address": "7fb03cb93ceb16ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3a1fd", "kind": "socket"}, {"address": "7fb03cb937d3a1fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39065", "kind": "socket"}, {"address": "7fb03cb945d39065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d38f9d", "kind": "socket"}, {"address": "7fb03cb945d38f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39a8d", "kind": "socket"}, {"address": "7fb03cb945d399c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a005", "refs": "7fb03cb945d3a005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d399c5", "refs": "7fb03cb945d399c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39b55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39f3d", "refs": "7fb03cb945d39f3d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39f3d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39b55", "refs": "7fb03cb945d39b55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d397d5", "kind": "socket"}, {"address": "7fb03cb937d37d45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37e0d", "refs": "7fb03cb937d37e0d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37e0d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37d45", "refs": "7fb03cb937d37d45", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d397d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb11fd", "kind": "socket"}, {"address": "7fb03cb93ceb11fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf065", "kind": "socket"}, {"address": "7fb03cb93ceaf065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0edd", "kind": "socket"}, {"address": "7fb03cb93ceb0edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf385", "kind": "socket"}, {"address": "7fb03cb93ceaf12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf1f5", "refs": "7fb03cb93ceaf1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf12d", "refs": "7fb03cb93ceaf12d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf385", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0965", "kind": "socket"}, {"address": "7fb03cb93ceb0965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0a2d", "kind": "socket"}, {"address": "7fb03cb93ceb0a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf835", "kind": "socket"}, {"address": "7fb03cb93ceaf835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf8fd", "kind": "socket"}, {"address": "7fb03cb93ceaf8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafdad", "kind": "socket"}, {"address": "7fb03cb93ceafdad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb07d5", "kind": "socket"}, {"address": "7fb03cb93ceb07d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb089d", "kind": "socket"}, {"address": "7fb03cb93ceb0645", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafe75", "refs": "7fb03cb93ceafe75", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafe75", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0645", "refs": "7fb03cb93ceb0645", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb089d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafc1d", "kind": "socket"}, {"address": "7fb03cb93ceb0195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0005", "refs": "7fb03cb93ceb0005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0195", "refs": "7fb03cb93ceb0195", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafc1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb03ed", "kind": "socket"}, {"address": "7fb03cb93ceb03ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39fa5", "kind": "socket"}, {"address": "7fb03cb937d39a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39bbd", "refs": "7fb03cb937d39bbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39bbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39a2d", "refs": "7fb03cb937d39a2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39fa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39965", "kind": "socket"}, {"address": "7fb03cb937d38065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37c7d", "refs": "7fb03cb937d37c7d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38065", "refs": "7fb03cb937d38065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d37f9d", "kind": "socket"}, {"address": "7fb03cb937d37f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d393ed", "kind": "socket"}, {"address": "7fb03cb937d393ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3970d", "kind": "socket"}, {"address": "7fb03cb937d3970d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d135", "kind": "socket"}, {"address": "7fb03cb937d382bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3957d", "refs": "7fb03cb937d3957d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3957d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d382bd", "refs": "7fb03cb937d382bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38c1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38ce5", "refs": "7fb03cb937d38ce5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38ce5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38c1d", "refs": "7fb03cb937d38c1d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cd4d", "kind": "socket"}, {"address": "7fb03cb93501cd4d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cc85", "kind": "socket"}, {"address": "7fb03cb93501b1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b2bd", "refs": "7fb03cb93501b2bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b2bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b1f5", "refs": "7fb03cb93501b1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b515", "refs": "7fb03cb93501b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b515", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ce15", "refs": "7fb03cb93501ce15", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501caf5", "refs": "7fb03cb93501caf5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501caf5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b6a5", "refs": "7fb03cb93501b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cc85", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cbbd", "kind": "socket"}, {"address": "7fb03cb93501cbbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501c0cd", "kind": "socket"}, {"address": "7fb03cb93501b8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ca2d", "refs": "7fb03cb93501ca2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ca2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b8fd", "refs": "7fb03cb93501b8fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c0cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb934ff43e5", "conn": "0", "refs": "7fb03cb95130ddad", "nextref": "0", "addr": "/private//var/run/syslog", "kind": "socket"}, {"kctlref": "10001", "id": "1", "unit": -1, "osx_flags": 9, "pcbcount": 0, "rcvbuf": 131072, "sndbuf": 131072, "name": "com.apple.flow-divert ", "kind": "Registered kernel control module"}, {"kctlref": "20002", "id": "2", "unit": -1, "osx_flags": 1, "pcbcount": 1, "rcvbuf": 16384, "sndbuf": 2048, "name": "com.apple.nke.sockwall ", "kind": "Registered kernel control module"}, {"kctlref": "30003", "id": "3", "unit": -1, "osx_flags": 9, "pcbcount": 0, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.content-filter ", "kind": "Registered kernel control module"}, {"kctlref": "40004", "id": "4", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.necp_control ", "kind": "Registered kernel control module"}, {"kctlref": "50005", "id": "5", "unit": -1, "osx_flags": 1, "pcbcount": 12, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.netagent ", "kind": "Registered kernel control module"}, {"kctlref": "60006", "id": "6", "unit": -1, "osx_flags": 9, "pcbcount": 4, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.net.utun_control ", "kind": "Registered kernel control module"}, {"kctlref": "70007", "id": "7", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.ipsec_control ", "kind": "Registered kernel control module"}, {"kctlref": "80008", "id": "8", "unit": -1, "osx_flags": 0, "pcbcount": 74, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.netsrc ", "kind": "Registered kernel control module"}, {"kctlref": "90009", "id": "9", "unit": -1, "osx_flags": 18, "pcbcount": 4, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.statistics ", "kind": "Registered kernel control module"}, {"kctlref": "a000a", "id": "a", "unit": -1, "osx_flags": 5, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.tcp_ccdebug ", "kind": "Registered kernel control module"}, {"kctlref": "b000b", "id": "b", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.advisory ", "kind": "Registered kernel control module"}, {"kctlref": "c000c", "id": "c", "unit": -1, "osx_flags": 4, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 2048, "name": "com.apple.uart.BLTH ", "kind": "Registered kernel control module"}, {"kctlref": "d000d", "id": "d", "unit": -1, "osx_flags": 4, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.uart.sk.BLTH ", "kind": "Registered kernel control module"}, {"kctlref": "e000e", "id": "e", "unit": -1, "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 8192, "name": "com.apple.fileutil.kext.stateful.ctl ", "kind": "Registered kernel control module"}, {"kctlref": "f000f", "id": "f", "unit": -1, "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.fileutil.kext.stateless.ctl ", "kind": "Registered kernel control module"}, {"kctlref": "170017", "id": "17", "unit": -1, "osx_flags": 5, "pcbcount": 1, "rcvbuf": 32768, "sndbuf": 2048, "name": "com.fortinet.fct.kext.fwnke ", "kind": "Registered kernel control module"}, {"kctlref": "ea0010", "id": "18", "unit": -1, "osx_flags": 5, "pcbcount": 1, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.fortinet.kext.avkern2 ", "kind": "Registered kernel control module"}, {"pcb": "7fb03cb936ead2bd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead2f5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 4, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd0d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd45", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead24d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead215", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1dd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 11, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd7d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacdb5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacded", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace25", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace5d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1a5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace95", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacecd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf05", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead16d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 6, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf3d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf75", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfad", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead135", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 10, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfe5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1000, "class": 5, "subcla": 11, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead01d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 7, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead055", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead08d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0fd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 3, "subcla": 3, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0c5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb937d0314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "2", "name": "com.apple.nke.sockwall", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4f4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d5ded", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d656d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4c4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d662d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a1a6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c7488ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e7299ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b5cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b6ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60182d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f6020cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f9cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8fded", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f48d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d644d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c237d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c23682d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9503efa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93cc9038d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93d3a7d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93eefef0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d2e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60260d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f601d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8e30d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8d8ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 13, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d384d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 14, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940438bad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 15, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb949ba84ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 16, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94043968d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 17, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940c3594d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 18, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941b872cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 19, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb943aa506d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 20, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941451a8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 21, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94510508d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 22, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9459058ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 23, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb945c5bf0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 24, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94766e96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 25, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946464c6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 26, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946463fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 27, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94646394d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 28, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95002e5ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 29, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fe5d12d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 30, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fb8feed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 31, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9471823cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 32, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96085390d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 33, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a3cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 34, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f18d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 35, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f42d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 36, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804fead", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 37, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fefcd2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 38, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9330ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 39, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffb8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 40, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e70872d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 41, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c8769ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 42, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9508e426d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 43, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f702d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 44, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94d86f2cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 45, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94e49c2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 46, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95eff106d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 47, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93aa79fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 48, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f65e74d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 49, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f8944ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 50, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f931d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 51, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9d11ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 52, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fbb0aed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 53, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f88ec4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 54, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffa0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 55, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c736fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 56, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95477236d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 57, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a588d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 58, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a726d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 59, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ed4f24d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 60, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f46cc6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 61, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fb5ad2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 62, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95cb8b9ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 63, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb954772d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 64, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb950171fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 65, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d590d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 66, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a1ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 67, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ffdd1ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 68, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 69, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e6c8e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 70, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94b5af2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 71, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96074aa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 72, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95bff57cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 74, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fc8056d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 77, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb937d02e4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e09b08d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099a0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099bed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d82cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "23", "name": "com.fortinet.fct.kext.fwnke", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d67cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "24", "name": "com.fortinet.kext.avkern2", "kind": "Active kernel control socket"}] diff --git a/tests/fixtures/osx-10.14.6/netstat-An.out b/tests/fixtures/osx-10.14.6/netstat-An.out new file mode 100644 index 00000000..b114165e --- /dev/null +++ b/tests/fixtures/osx-10.14.6/netstat-An.out @@ -0,0 +1,689 @@ +Active Internet connections +Socket Flowhash Proto Recv-Q Send-Q Local Address Foreign Address (state) +7fb03cb94d505aed cedd0cbf tcp4 0 0 192.168.1.221.5486 140.82.113.26.443 ESTABLISHED +7fb03cb94d692475 1c9f9fcd tcp4 0 0 192.168.1.221.5480 208.91.113.36.443 ESTABLISHED +7fb03cb94b25de55 dbe59bf8 tcp4 0 0 192.168.1.221.5478 140.82.112.26.443 ESTABLISHED +7fb03cb95fad8165 6a3d6e4 tcp4 0 0 192.168.1.221.5450 192.168.1.201.4923 ESTABLISHED +7fb03cb946c1cbcd 3c023c0 tcp6 0 0 2600:1700:bab0:d.5 2607:f8b0:4003:c.9 ESTABLISHED +7fb03cb95fad77dd 3f163cd2 tcp4 0 0 192.168.1.221.5450 192.168.1.64.53380 ESTABLISHED +7fb03cb94221360d cc0e0c2a tcp6 0 0 2600:1700:bab0:d.5 2603:1030:b00::e.4 ESTABLISHED +7fb03cb937c20e4d 8e998322 tcp6 0 0 2600:1700:bab0:d.5 2620:1ec:21::14.44 ESTABLISHED +7fb03cb93c75d475 d53fb648 tcp4 0 0 192.168.1.221.5452 35.236.87.93.8081 ESTABLISHED +7fb03cb937c2140d e013f438 tcp6 0 0 2600:1700:bab0:d.5 2607:f8b0:4000:8.4 ESTABLISHED +7fb03cb94b718aed bcd5aa6f tcp4 0 0 192.168.1.221.5452 192.168.1.88.49153 ESTABLISHED +7fb03cb94b716e55 30944ff3 tcp4 0 0 192.168.1.221.5451 192.168.1.89.49152 ESTABLISHED +7fb03cb93c75b7dd d54ab36f tcp4 0 0 192.168.1.221.5450 192.168.1.72.55617 ESTABLISHED +7fb03cb93b2d6e55 d11ddd76 tcp4 0 0 192.168.1.221.5451 52.114.148.56.443 ESTABLISHED +7fb03cb94a8f8d0d 88c31bcb tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb94a8f988d a10400b8 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb948e8f88d cd67a7b tcp6 0 0 2600:1700:bab0:d.5 2607:f8b0:4003:c.5 ESTABLISHED +7fb03cb94bcb6475 4ca24b6e tcp4 31 0 192.168.1.221.5442 35.236.87.93.8081 CLOSE_WAIT +7fb03cb94b4f518d 25c58fec tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb94bcb47dd b164479 tcp4 0 0 127.0.0.1.53755 127.0.0.1.53763 ESTABLISHED +7fb03cb94b433e55 f28b9248 tcp4 0 0 127.0.0.1.53763 127.0.0.1.53755 ESTABLISHED +7fb03cb94b719475 316c063a tcp4 0 0 192.168.1.221.5359 104.155.21.255.555 ESTABLISHED +7fb03cb946c1ba8d d32bc928 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb94c066aed fb73c2ca tcp4 0 0 192.168.1.221.5263 17.57.144.20.5223 ESTABLISHED +7fb03cb94d2ebaed 22dc0e42 tcp4 0 0 192.168.1.221.5179 192.168.1.80.548 ESTABLISHED +7fb03cb94a8f818d 5e12e220 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb94a8f704d 16ca6e94 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb942212a8d da4b1f7d tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb948e8dbcd 4aeb1af1 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb94a8f92cd 6859cfec tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb946c1e2cd 248b598b tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb942213bcd 56762cbf tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb948e8d60d d29e9efa tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb946c1d18d 60f3fa15 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb94b4347dd a1f7c428 tcp4 0 0 192.168.1.221.5164 35.235.123.194.555 CLOSE_WAIT +7fb03cb948047aed ceac8539 tcp4 0 0 192.168.1.221.5164 35.235.123.194.555 CLOSE_WAIT +7fb03cb963503e55 d98dfd14 tcp4 0 0 192.168.1.221.5164 35.235.123.194.555 CLOSE_WAIT +7fb03cb937c202cd 2e36177f tcp6 0 0 fe80::aede:48ff:.6 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb946c1c60d aaabe009 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.5 ESTABLISHED +7fb03cb948536475 dc1e01a0 tcp4 0 0 192.168.1.221.5879 96.45.36.31.443 ESTABLISHED +7fb03cb94b38e7dd e3b8b675 tcp4 0 0 127.0.0.1.9592 127.0.0.1.58704 CLOSE_WAIT +7fb03cb94d691165 7eee3b1 tcp4 31 0 192.168.1.221.5346 35.236.87.93.8081 CLOSE_WAIT +7fb03cb948e8f2cd e7486da9 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb94221304d 3e982c00 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb937c2088d 30000ae7 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb94b4f4bcd 57e076f4 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb94221474d 6465b356 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb94a8f6a8d bed25b95 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb937c1fd0d 33613be8 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED +7fb03cb93c70600d 777662f1 udp4 0 0 *.58043 *.* +7fb03cb93c709f4d b64a4fe1 udp4 0 0 *.63678 *.* +7fb03cb93c708c0d 48ba21c8 udp4 0 0 *.60774 *.* +7fb03cb93c70760d 7f0afb2c udp4 0 0 *.51411 *.* +7fb03cb93c707b8d 7c49f0f1 udp4 0 0 *.57119 *.* +7fb03cb93c70734d c750f7f0 udp4 0 0 *.61217 *.* +7fb03cb93c70810d 2308a9b6 udp4 0 0 *.56091 *.* +7fb03cb93c707e4d 4b2ff4b3 udp4 0 0 *.58807 *.* +7fb03cb9371e2d4d 8d16cd6b udp4 0 0 *.54338 *.* +7fb03cb93721310d f4140344 udp4 0 0 *.3722 *.* +7fb03cb93d5b800d 0 udp4 0 0 *.5353 *.* +7fb03cb93c7ba60d 7fd9393b udp46 0 0 *.61224 *.* +7fb03cb93c7b8a8d 0 udp4 0 0 *.* *.* +7fb03cb939b0470d 0 udp4 0 0 *.* *.* +7fb03cb93c706dcd f725c38f udp4 0 0 127.0.0.1.63995 *.* +7fb03cb93c708ecd 5ed0c674 udp4 0 0 192.168.1.221.5063 *.* +7fb03cb93c70868d 0 udp4 0 0 *.33354 *.* +7fb03cb93c70658d 0 udp4 0 0 *.33355 *.* +7fb03cb934b578cd 530d4d40 udp6 0 0 *.61982 *.* +7fb03cb934b59c8d 91b8382 udp4 0 0 *.61982 *.* +7fb03cb934b56dcd ca5be4ea udp6 0 0 *.52378 *.* +7fb03cb934b5760d 3462e1b2 udp4 0 0 *.52378 *.* +7fb03cb934b5944d 58e06369 udp6 0 0 *.53910 *.* +7fb03cb934b5a20d e03584 udp4 0 0 *.53910 *.* +7fb03cb934b55d4d e91dd2ad udp6 0 0 *.57674 *.* +7fb03cb934b5970d da8119f1 udp4 0 0 *.57674 *.* +7fb03cb934b599cd 3504cd68 udp6 0 0 *.62448 *.* +7fb03cb934b557cd 941a5612 udp4 0 0 *.62448 *.* +7fb03cb934b58c0d c487a471 udp6 0 0 *.55681 *.* +7fb03cb934b5600d c4b0913 udp4 0 0 *.55681 *.* +7fb03cb93716444d 0 udp4 0 0 *.* *.* +7fb03cb93b6df00d 0 udp4 0 0 *.* *.* +7fb03cb93c8bbd4d 47d61919 udp4 0 0 *.5353 *.* +7fb03cb93c8bc00d 8148de2d udp4 0 0 *.5353 *.* +7fb03cb93c8bc2cd 41ad85a1 udp46 0 0 *.5353 *.* +7fb03cb93c8bfc8d 3d59980f udp46 0 0 *.5353 *.* +7fb03cb93c8bd34d 73cc988e udp46 0 0 *.5353 *.* +7fb03cb93c8bf44d dee9266c udp4 0 0 *.5353 *.* +7fb03cb93c8bdb8d 0 udp46 0 0 *.5353 *.* +7fb03cb937211dcd b4871709 udp4 0 0 *.51226 *.* +7fb03cb9372154cd 21b31d88 udp4 0 0 127.0.0.1.61491 *.* +7fb03cb93b74a3cd 0 udp4 0 0 *.6096 *.* +7fb03cb93c7bb10d f1ac8ec5 udp4 0 0 *.58997 *.* +7fb03cb93b70ea8d 0 udp4 0 0 *.* *.* +7fb03cb93b7129cd 0 udp4 0 0 *.* *.* +7fb03cb93b71270d 0 udp4 0 0 *.* *.* +7fb03cb93b711c0d 0 udp4 0 0 *.* *.* +7fb03cb93b72d70d 0 udp4 0 0 *.* *.* +7fb03cb93b72bb8d 0 udp4 0 0 *.* *.* +7fb03cb93b747a8d 0 udp4 0 0 *.* *.* +7fb03cb93bc90a8d 0 udp4 0 0 *.* *.* +7fb03cb93bc9520d 97a44721 udp4 0 0 *.52551 *.* +7fb03cb93bc90d4d 0 udp4 0 0 *.* *.* +7fb03cb93bc9100d 0 udp4 0 0 *.* *.* +7fb03cb93bc94f4d 0 udp4 0 0 *.* *.* +7fb03cb93bc9208d 0 udp4 0 0 *.* *.* +7fb03cb93c7bcc8d 0 udp4 0 0 *.* *.* +7fb03cb93c8beecd 0 udp4 0 0 *.* *.* +7fb03cb93c8be10d 0 udp4 0 0 *.* *.* +7fb03cb93c8be3cd 0 udp4 0 0 *.* *.* +7fb03cb93c8be68d 0 udp4 0 0 *.* *.* +7fb03cb93d5b7a8d 0 udp4 0 0 *.* *.* +7fb03cb93c70894d 0 udp4 0 0 *.* *.* +7fb03cb93721444d 0 udp4 0 0 *.* *.* +7fb03cb937160a8d 0 udp4 0 0 *.* *.* +7fb03cb937160d4d 0 udp4 0 0 *.* *.* +7fb03cb93716208d 0 udp4 0 0 *.* *.* +7fb03cb93c70a20d 0 udp4 0 0 *.* *.* +7fb03cb93c70944d 0 udp4 0 0 *.* *.* +7fb03cb93c70684d 0 udp4 0 0 *.* *.* +7fb03cb939b049cd 0 udp4 0 0 *.* *.* +7fb03cb9371654cd 0 udp4 0 0 *.* *.* +7fb03cb93716100d 0 udp4 0 0 *.* *.* +7fb03cb93716520d 0 udp4 0 0 *.* *.* +7fb03cb937164f4d 0 udp4 0 0 *.* *.* +7fb03cb9371628cd 0 udp4 0 0 *.* *.* +7fb03cb937162b8d 0 udp4 0 0 *.* *.* +7fb03cb937162e4d 0 udp4 0 0 *.* *.* +7fb03cb9371e32cd 0 udp4 0 0 *.* *.* +7fb03cb934b56b0d 0 udp4 0 0 *.* *.* +7fb03cb93721394d 0 udp4 0 0 *.* *.* +7fb03cb937cbcd4d 0 udp4 0 0 *.* *.* +7fb03cb937cbf10d 0 udp46 0 0 *.* *.* +7fb03cb93721184d b180dc9e udp6 0 0 *.5353 *.* +7fb03cb9372149cd 6fa9aaf7 udp4 0 0 *.5353 *.* +7fb03cb934b583cd 0 udp4 0 0 *.9595 *.* +7fb03cb934b5810d 5b0b6f0f udp4 0 0 *.138 *.* +7fb03cb934b57e4d dd966d84 udp4 0 0 *.137 *.* +7fb03cb939ad73cd 0 icm4 8136 0 *.* *.* +Active LOCAL (UNIX) domain sockets +Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr +7fb03cb95130f2c5 stream 1 0 0 7fb03cb95130d6a5 0 0 +7fb03cb95130d6a5 stream 0 0 0 7fb03cb95130f2c5 0 0 +7fb03cb95130eaf5 stream 0 0 0 7fb03cb95130e70d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb95130e70d stream 0 0 0 7fb03cb95130eaf5 0 0 +7fb03cb95130da8d stream 0 0 0 7fb03cb95130f38d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb95130f38d stream 0 0 0 7fb03cb95130da8d 0 0 +7fb03cb95130e89d stream 0 0 0 7fb03cb95130cd45 0 0 +7fb03cb95130cd45 stream 0 0 0 7fb03cb95130e89d 0 0 +7fb03cb95130d9c5 stream 0 0 0 7fb03cb95130de75 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb95130de75 stream 0 0 0 7fb03cb95130d9c5 0 0 +7fb03cb95130e0cd stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb95130cc7d stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb94d74825d stream 0 0 0 7fb03cb94d748965 0 0 /var/run/mDNSResponder +7fb03cb94d748965 stream 0 0 0 7fb03cb94d74825d 0 0 +7fb03cb94d746a25 stream 0 0 0 7fb03cb94d7471f5 0 0 /var/run/fctservctl.sock +7fb03cb94d7471f5 stream 0 0 0 7fb03cb94d746a25 0 0 +7fb03cb94d747e75 stream 0 0 0 7fb03cb94d74695d 0 0 /var/run/fctservctl.sock +7fb03cb94d74695d stream 0 0 0 7fb03cb94d747e75 0 0 +7fb03cb94d747515 stream 0 0 0 7fb03cb94d747ce5 0 0 /var/run/fctservctl.sock +7fb03cb94d747ce5 stream 0 0 0 7fb03cb94d747515 0 0 +7fb03cb94d748e15 stream 0 0 0 7fb03cb94d748bbd 0 0 /var/run/fctservctl.sock +7fb03cb94d748bbd stream 0 0 0 7fb03cb94d748e15 0 0 +7fb03cb937d38835 stream 0 0 0 7fb03cb937d389c5 0 0 /var/run/mDNSResponder +7fb03cb937d389c5 stream 0 0 0 7fb03cb937d38835 0 0 +7fb03cb945d3b2c5 stream 0 0 0 7fb03cb945d396a5 0 0 /var/run/mDNSResponder +7fb03cb945d396a5 stream 0 0 0 7fb03cb945d3b2c5 0 0 +7fb03cb945d3b5e5 stream 0 0 0 7fb03cb945d3a645 0 0 /var/run/mDNSResponder +7fb03cb945d3a645 stream 0 0 0 7fb03cb945d3b5e5 0 0 +7fb03cb945d39835 stream 0 0 0 7fb03cb945d3ac85 0 0 /var/run/mDNSResponder +7fb03cb945d3ac85 stream 0 0 0 7fb03cb945d39835 0 0 +7fb03cb945d3a89d stream 0 0 0 7fb03cb945d3b38d 0 0 /var/run/mDNSResponder +7fb03cb945d3b38d stream 0 0 0 7fb03cb945d3a89d 0 0 +7fb03cb94a63aed5 stream 0 0 0 7fb03cb94a63cfa5 0 0 /var/run/mDNSResponder +7fb03cb94a63cfa5 stream 0 0 0 7fb03cb94a63aed5 0 0 +7fb03cb94a63ae0d stream 0 0 0 7fb03cb94a63b5dd 0 0 /var/run/mDNSResponder +7fb03cb94a63b5dd stream 0 0 0 7fb03cb94a63ae0d 0 0 +7fb03cb94a63cedd stream 0 0 0 7fb03cb94a63b44d 0 0 /var/run/mDNSResponder +7fb03cb94a63b44d stream 0 0 0 7fb03cb94a63cedd 0 0 +7fb03cb94a63d38d stream 0 0 0 7fb03cb94a63aa25 0 0 /var/run/mDNSResponder +7fb03cb94a63aa25 stream 0 0 0 7fb03cb94a63d38d 0 0 +7fb03cb95130c95d stream 0 0 0 7fb03cb95130d1f5 0 0 /var/run/mDNSResponder +7fb03cb95130d1f5 stream 0 0 0 7fb03cb95130c95d 0 0 +7fb03cb945d38a25 stream 0 0 0 7fb03cb945d3a195 0 0 /var/run/mDNSResponder +7fb03cb945d3a195 stream 0 0 0 7fb03cb945d38a25 0 0 +7fb03cb945d3aa2d stream 0 0 0 0 0 0 +7fb03cb95130f5e5 stream 0 0 0 7fb03cb95130e4b5 0 0 /var/run/mDNSResponder +7fb03cb95130e4b5 stream 0 0 0 7fb03cb95130f5e5 0 0 +7fb03cb94d74906d stream 0 0 0 7fb03cb94d746e0d 0 0 +7fb03cb94d746e0d stream 8 0 0 7fb03cb94d74906d 0 0 +7fb03cb937d39325 stream 0 0 0 7fb03cb937d385dd 0 0 +7fb03cb937d385dd stream 0 0 0 7fb03cb937d39325 0 0 +7fb03cb937d3876d stream 0 0 0 7fb03cb937d3a455 0 0 +7fb03cb937d3a455 stream 0 0 0 7fb03cb937d3876d 0 0 +7fb03cb937d37a25 stream 0 0 0 7fb03cb937d386a5 0 0 /var/run/mDNSResponder +7fb03cb937d386a5 stream 0 0 0 7fb03cb937d37a25 0 0 +7fb03cb937d39195 stream 0 0 0 7fb03cb937d38f3d 0 0 +7fb03cb937d38f3d stream 0 0 0 7fb03cb937d39195 0 0 +7fb03cb937d37895 stream 0 0 0 7fb03cb937d37ed5 0 0 +7fb03cb937d37ed5 stream 0 0 0 7fb03cb937d37895 0 0 +7fb03cb937d390cd stream 0 0 0 7fb03cb937d3a38d 0 0 +7fb03cb937d3a38d stream 0 0 0 7fb03cb937d390cd 0 0 +7fb03cb945d3b455 stream 0 0 0 7fb03cb945d3895d 0 0 +7fb03cb945d3895d stream 0 0 0 7fb03cb945d3b455 0 0 +7fb03cb945d392bd stream 0 0 0 7fb03cb945d38e0d 0 0 +7fb03cb945d38e0d stream 0 0 0 7fb03cb945d392bd 0 0 +7fb03cb945d3b135 stream 0 0 0 7fb03cb945d38ed5 0 0 +7fb03cb945d38ed5 stream 0 0 0 7fb03cb945d3b135 0 0 +7fb03cb945d3976d stream 0 0 0 7fb03cb945d3912d 0 0 /var/run/mDNSResponder +7fb03cb945d3912d stream 0 0 0 7fb03cb945d3976d 0 0 +7fb03cb945d391f5 stream 0 0 0 7fb03cb945d39385 0 0 +7fb03cb945d39385 stream 0 0 0 7fb03cb945d391f5 0 0 +7fb03cb945d38c7d stream 0 0 7fb03cb94b87f5d5 0 0 0 /var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS +7fb03cb945d39c1d stream 0 0 0 7fb03cb945d39e75 0 0 /var/run/mDNSResponder +7fb03cb945d39e75 stream 0 0 0 7fb03cb945d39c1d 0 0 +7fb03cb94a63ac7d stream 0 0 0 7fb03cb94a63caf5 0 0 /var/run/mDNSResponder +7fb03cb94a63caf5 stream 0 0 0 7fb03cb94a63ac7d 0 0 +7fb03cb95130d515 stream 0 0 0 7fb03cb95130ce0d 0 0 +7fb03cb95130ce0d stream 0 0 0 7fb03cb95130d515 0 0 +7fb03cb95130caed stream 0 0 0 7fb03cb95130ca25 0 0 +7fb03cb95130ca25 stream 0 0 0 7fb03cb95130caed 0 0 +7fb03cb95130d385 stream 0 0 0 7fb03cb95130f06d 0 0 +7fb03cb95130f06d stream 0 0 0 7fb03cb95130d385 0 0 +7fb03cb95130dc1d stream 0 0 0 7fb03cb95130e7d5 0 0 +7fb03cb95130e7d5 stream 0 0 0 7fb03cb95130dc1d 0 0 +7fb03cb95130ced5 stream 0 0 0 7fb03cb95130f51d 0 0 +7fb03cb95130f51d stream 0 0 0 7fb03cb95130ced5 0 0 +7fb03cb95130df3d stream 0 0 0 7fb03cb95130c7cd 0 0 +7fb03cb95130c7cd stream 0 0 0 7fb03cb95130df3d 0 0 +7fb03cb95130e195 stream 0 0 0 7fb03cb95130e325 0 0 +7fb03cb95130e325 stream 0 0 0 7fb03cb95130e195 0 0 +7fb03cb95130f1fd stream 0 0 0 7fb03cb95130ea2d 0 0 +7fb03cb95130ea2d stream 0 0 0 7fb03cb95130f1fd 0 0 +7fb03cb95130d2bd stream 0 0 0 7fb03cb95130c895 0 0 +7fb03cb95130c895 stream 0 0 0 7fb03cb95130d2bd 0 0 +7fb03cb95130cbb5 stream 0 0 7fb03cb937de855d 0 0 0 /Library/Application Support/LANDesk/tmp/socket/sys +7fb03cb95130d065 stream 0 0 0 7fb03cb95130d5dd 0 0 +7fb03cb95130d5dd stream 0 0 0 7fb03cb95130d065 0 0 +7fb03cb95130ec85 stream 0 0 0 7fb03cb95130ee15 0 0 +7fb03cb95130ee15 stream 0 0 0 7fb03cb95130ec85 0 0 +7fb03cb95130d76d stream 0 0 0 7fb03cb95130d12d 0 0 +7fb03cb95130d12d stream 0 0 0 7fb03cb95130d76d 0 0 +7fb03cb95130ed4d stream 0 0 0 7fb03cb95130eedd 0 0 +7fb03cb95130eedd stream 0 0 0 7fb03cb95130ed4d 0 0 +7fb03cb95130e965 stream 0 0 0 7fb03cb95130e3ed 0 0 /var/run/mDNSResponder +7fb03cb95130e3ed stream 0 0 0 7fb03cb95130e965 0 0 +7fb03cb937d3925d stream 0 0 0 7fb03cb937d39c85 0 0 /var/run/mDNSResponder +7fb03cb937d39c85 stream 0 0 0 7fb03cb937d3925d 0 0 +7fb03cb937d381f5 stream 0 0 0 0 0 0 +7fb03cb935b005e5 stream 0 0 0 7fb03cb935afd895 0 0 /var/run/mDNSResponder +7fb03cb935afd895 stream 0 0 0 7fb03cb935b005e5 0 0 +7fb03cb94d746ed5 stream 0 0 0 7fb03cb94d748195 0 0 /var/run/mDNSResponder +7fb03cb94d748195 stream 0 0 0 7fb03cb94d746ed5 0 0 +7fb03cb94a63ba8d stream 0 0 0 7fb03cb94a63d5e5 0 0 /var/run/mDNSResponder +7fb03cb94a63d5e5 stream 0 0 0 7fb03cb94a63ba8d 0 0 +7fb03cb94a63cc85 stream 0 0 0 7fb03cb94a63a895 0 0 /var/run/mDNSResponder +7fb03cb94a63a895 stream 0 0 0 7fb03cb94a63cc85 0 0 +7fb03cb94a63c965 stream 0 0 0 7fb03cb94a63d51d 0 0 /var/run/mDNSResponder +7fb03cb94a63d51d stream 0 0 0 7fb03cb94a63c965 0 0 +7fb03cb94d747f3d stream 0 0 0 7fb03cb94d7480cd 0 0 /var/run/mDNSResponder +7fb03cb94d7480cd stream 0 0 0 7fb03cb94d747f3d 0 0 +7fb03cb94a63abb5 stream 0 0 0 7fb03cb94a63c7d5 0 0 /var/run/mDNSResponder +7fb03cb94a63c7d5 stream 0 0 0 7fb03cb94a63abb5 0 0 +7fb03cb95130dce5 stream 0 0 0 7fb03cb95130e005 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock +7fb03cb95130e005 stream 0 0 0 7fb03cb95130dce5 0 0 +7fb03cb935b001fd stream 0 0 0 7fb03cb935afdaed 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb935afdaed stream 0 0 0 7fb03cb935b001fd 0 0 +7fb03cb935b0038d stream 0 0 7fb03cb9350ead1d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb935b002c5 stream 0 0 0 7fb03cb935aff0cd 0 0 vpnkit.data.sock +7fb03cb935aff0cd stream 0 0 0 7fb03cb935b002c5 0 0 +7fb03cb935b00135 stream 0 0 0 7fb03cb935afdbb5 0 0 backend-for-guest.sock +7fb03cb935afdbb5 stream 0 0 0 7fb03cb935b00135 0 0 +7fb03cb935affaf5 stream 0 0 0 7fb03cb935affd4d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock +7fb03cb935affd4d stream 0 0 0 7fb03cb935affaf5 0 0 +7fb03cb935affa2d stream 0 0 0 7fb03cb935affe15 0 0 vms/0/00000002.000005f4 +7fb03cb935affe15 stream 0 0 0 7fb03cb935affa2d 0 0 +7fb03cb935b0006d stream 0 0 0 7fb03cb935afffa5 0 0 vms/0/connect +7fb03cb935afffa5 stream 0 0 0 7fb03cb935b0006d 0 0 +7fb03cb935affedd stream 0 0 0 7fb03cb935afdc7d 0 0 vms/0/00000002.000005f4 +7fb03cb935afdc7d stream 0 0 0 7fb03cb935affedd 0 0 +7fb03cb935afdd45 stream 0 0 0 7fb03cb935affc85 0 0 vms/0/connect +7fb03cb935affc85 stream 0 0 0 7fb03cb935afdd45 0 0 +7fb03cb935afde0d stream 0 0 0 7fb03cb935affbbd 0 0 vms/0/00000002.000005f4 +7fb03cb935affbbd stream 0 0 0 7fb03cb935afde0d 0 0 +7fb03cb935afded5 stream 0 0 0 7fb03cb935aff965 0 0 vms/0/connect +7fb03cb935aff965 stream 0 0 0 7fb03cb935afded5 0 0 +7fb03cb935aff89d stream 0 0 0 7fb03cb935aff7d5 0 0 vms/0/00000002.000005f4 +7fb03cb935aff7d5 stream 0 0 0 7fb03cb935aff89d 0 0 +7fb03cb935afdf9d stream 0 0 0 7fb03cb935aff70d 0 0 vms/0/connect +7fb03cb935aff70d stream 0 0 0 7fb03cb935afdf9d 0 0 +7fb03cb935aff645 stream 0 0 0 7fb03cb935aff57d 0 0 vms/0/connect +7fb03cb935aff57d stream 0 0 0 7fb03cb935aff645 0 0 +7fb03cb935afe065 stream 0 0 0 7fb03cb935aff4b5 0 0 vms/0/00000002.000005f4 +7fb03cb935aff4b5 stream 0 0 0 7fb03cb935afe065 0 0 +7fb03cb935aff3ed stream 0 0 7fb03cb935cd2d9d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock +7fb03cb935aff325 stream 0 0 7fb03cb93609fca5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock +7fb03cb935aff25d stream 0 0 7fb03cb94cddc36d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock +7fb03cb935afe12d stream 0 0 0 7fb03cb935afe1f5 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003 +7fb03cb935afe1f5 stream 0 0 0 7fb03cb935afe12d 0 0 +7fb03cb935aff195 stream 0 0 0 7fb03cb935afe515 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock +7fb03cb935afe515 stream 0 0 0 7fb03cb935aff195 0 0 +7fb03cb935afe44d stream 0 0 7fb03cb9350eac25 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock +7fb03cb935afe8fd stream 0 0 0 7fb03cb935afedad 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf +7fb03cb935afedad stream 0 0 0 7fb03cb935afe8fd 0 0 +7fb03cb935aff005 stream 0 0 7fb03cb938b763e5 0 0 0 vms/0/00000003.000005f5 +7fb03cb935afef3d stream 0 0 7fb03cb938b761f5 0 0 0 vms/0/00000003.00000948 +7fb03cb935afe5dd stream 0 0 7fb03cb938b760fd 0 0 0 vms/0/connect +7fb03cb935afe6a5 stream 0 0 0 7fb03cb935afe76d 0 0 vpnkit.eth.sock +7fb03cb935afe76d stream 0 0 0 7fb03cb935afe6a5 0 0 +7fb03cb935afee75 stream 0 0 7fb03cb9360a12ed 0 0 0 backend.sock +7fb03cb935afece5 stream 0 0 7fb03cb935cd29bd 0 0 0 filesystem-export.sock +7fb03cb935afec1d stream 0 0 7fb03cb935cd43e5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003 +7fb03cb935afe9c5 stream 0 0 7fb03cb935cd40fd 0 0 0 filesystem-volume.sock +7fb03cb935afeb55 stream 0 0 7fb03cb9350eaa35 0 0 0 docker-api.sock +7fb03cb935afea8d stream 0 0 7fb03cb9350eab2d 0 0 0 backend-for-guest.sock +7fb03cb93501b065 stream 0 0 7fb03cb9350ea36d 0 0 0 vpnkit.data.sock +7fb03cb937d37bb5 stream 0 0 7fb03cb9350ea465 0 0 0 vpnkit.port.sock +7fb03cb937d3a5e5 stream 0 0 7fb03cb950a0dca5 0 0 0 docker.sock +7fb03cb937d3a51d stream 0 0 7fb03cb950ab1005 0 0 0 vpnkit.pcap.sock +7fb03cb94d7495e5 stream 0 0 7fb03cb950ab0f0d 0 0 0 vpnkit.diag.sock +7fb03cb94d746895 stream 0 0 7fb03cb950aafd9d 0 0 0 vpnkit.eth.sock +7fb03cb94d7467cd stream 0 0 7fb03cb950ab0085 0 0 0 osxfs.sock +7fb03cb94d746bb5 stream 0 0 7fb03cb950ab0a35 0 0 0 vms/0/00000002.000005f4 +7fb03cb94d7496ad stream 0 0 7fb03cb950a1dab5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock +7fb03cb94d7492c5 stream 0 0 0 7fb03cb94d746aed 0 0 /var/run/mDNSResponder +7fb03cb94d746aed stream 0 0 0 7fb03cb94d7492c5 0 0 +7fb03cb94d748d4d stream 0 0 0 7fb03cb94d7472bd 0 0 /var/run/fctservctl.sock +7fb03cb94d7472bd stream 0 0 0 7fb03cb94d748d4d 0 0 +7fb03cb94d748c85 stream 0 0 0 7fb03cb94d747385 0 0 /var/run/fctservctl.sock +7fb03cb94d747385 stream 0 0 0 7fb03cb94d748c85 0 0 +7fb03cb94d748af5 stream 0 0 0 7fb03cb94d747835 0 0 /var/run/mDNSResponder +7fb03cb94d747835 stream 0 0 0 7fb03cb94d748af5 0 0 +7fb03cb94d748a2d stream 0 0 0 7fb03cb94d74776d 0 0 /var/run/fctservctl.sock +7fb03cb94d74776d stream 145 0 0 7fb03cb94d748a2d 0 0 +7fb03cb94d74889d stream 0 0 0 7fb03cb94d7478fd 0 0 /var/run/fctservctl.sock +7fb03cb94d7478fd stream 0 0 0 7fb03cb94d74889d 0 0 +7fb03cb94d74870d stream 0 0 0 7fb03cb94d7487d5 0 0 /var/run/fctservctl.sock +7fb03cb94d7487d5 stream 0 0 0 7fb03cb94d74870d 0 0 +7fb03cb94d748645 stream 0 0 0 7fb03cb94d7479c5 0 0 /var/run/fctservctl.sock +7fb03cb94d7479c5 stream 0 0 0 7fb03cb94d748645 0 0 +7fb03cb94d747a8d stream 0 0 0 7fb03cb94d74857d 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe +7fb03cb94d74857d stream 0 0 0 7fb03cb94d747a8d 0 0 +7fb03cb94d7484b5 stream 0 0 0 7fb03cb94d747b55 0 0 /var/run/fctservctl.sock +7fb03cb94d747b55 stream 0 0 0 7fb03cb94d7484b5 0 0 +7fb03cb94d747c1d stream 0 0 0 7fb03cb94d748325 0 0 /var/run/fctservctl.sock +7fb03cb94d748325 stream 0 0 0 7fb03cb94d747c1d 0 0 +7fb03cb94d7483ed stream 0 0 7fb03cb94db01655 0 0 0 /tmp/fctvpnctl.sock_501 +7fb03cb94a63bc1d stream 0 0 0 7fb03cb94a63c645 0 0 /var/run/mDNSResponder +7fb03cb94a63c645 stream 0 0 0 7fb03cb94a63bc1d 0 0 +7fb03cb94a63bce5 stream 0 0 0 7fb03cb94a63c57d 0 0 /var/run/mDNSResponder +7fb03cb94a63c57d stream 0 0 0 7fb03cb94a63bce5 0 0 +7fb03cb94a63bdad stream 0 0 0 7fb03cb94a63c4b5 0 0 /var/run/mDNSResponder +7fb03cb94a63c4b5 stream 0 0 0 7fb03cb94a63bdad 0 0 +7fb03cb94a63be75 stream 0 0 0 7fb03cb94a63c3ed 0 0 /var/run/mDNSResponder +7fb03cb94a63c3ed stream 0 0 0 7fb03cb94a63be75 0 0 +7fb03cb94a63bf3d stream 0 0 0 7fb03cb94a63c325 0 0 /var/run/mDNSResponder +7fb03cb94a63c325 stream 0 0 0 7fb03cb94a63bf3d 0 0 +7fb03cb94a63c195 stream 0 0 0 7fb03cb94a63c005 0 0 /var/run/mDNSResponder +7fb03cb94a63c005 stream 0 0 0 7fb03cb94a63c195 0 0 +7fb03cb94a63c0cd stream 0 0 0 7fb03cb94a63c25d 0 0 /var/run/mDNSResponder +7fb03cb94a63c25d stream 0 0 0 7fb03cb94a63c0cd 0 0 +7fb03cb945d3ad4d stream 0 0 0 7fb03cb93501b835 0 0 /var/run/mDNSResponder +7fb03cb945d3ae15 stream 0 0 0 7fb03cb937d377cd 0 0 /var/run/mDNSResponder +7fb03cb93501b835 stream 0 0 0 7fb03cb945d3ad4d 0 0 +7fb03cb937d377cd stream 0 0 0 7fb03cb945d3ae15 0 0 +7fb03cb937d3a6ad stream 0 0 0 7fb03cb937d3a06d 0 0 /var/run/mDNSResponder +7fb03cb937d3a06d stream 0 0 0 7fb03cb937d3a6ad 0 0 +7fb03cb945d387cd stream 0 0 7fb03cb94d0e4a35 0 0 0 /Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock +7fb03cb937d3812d stream 0 0 0 7fb03cb937d3a2c5 0 0 /var/run/mDNSResponder +7fb03cb937d3a2c5 stream 0 0 0 7fb03cb937d3812d 0 0 +7fb03cb945d395dd stream 0 0 0 7fb03cb945d39515 0 0 /var/run/mDNSResponder +7fb03cb945d39515 stream 0 0 0 7fb03cb945d395dd 0 0 +7fb03cb945d39ce5 stream 0 0 0 7fb03cb945d39dad 0 0 /var/run/mDNSResponder +7fb03cb945d39dad stream 0 0 0 7fb03cb945d39ce5 0 0 +7fb03cb937d39e15 stream 0 0 0 7fb03cb937d39645 0 0 /var/run/mDNSResponder +7fb03cb937d39645 stream 0 0 0 7fb03cb937d39e15 0 0 +7fb03cb937d39af5 stream 0 0 7fb03cb9418d26cd 0 0 0 /var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket +7fb03cb93ceaeaed stream 0 0 0 7fb03cb93ceb151d 0 0 /var/run/mDNSResponder +7fb03cb93ceb151d stream 0 0 0 7fb03cb93ceaeaed 0 0 +7fb03cb93ceae95d stream 0 0 0 7fb03cb93ceb138d 0 0 /var/run/mDNSResponder +7fb03cb93ceb138d stream 0 0 0 7fb03cb93ceae95d 0 0 +7fb03cb93ceb12c5 stream 0 0 0 7fb03cb93ceaed45 0 0 /var/run/mDNSResponder +7fb03cb93ceaed45 stream 0 0 0 7fb03cb93ceb12c5 0 0 +7fb03cb93ceaee0d stream 0 0 0 7fb03cb93ceaeed5 0 0 /var/run/mDNSResponder +7fb03cb93ceaeed5 stream 0 0 0 7fb03cb93ceaee0d 0 0 +7fb03cb93ceb106d stream 0 0 0 7fb03cb93ceaef9d 0 0 /var/run/mDNSResponder +7fb03cb93ceaef9d stream 0 0 0 7fb03cb93ceb106d 0 0 +7fb03cb93ceaf2bd stream 0 0 0 7fb03cb93ceb0fa5 0 0 /var/run/mDNSResponder +7fb03cb93ceb0fa5 stream 0 0 0 7fb03cb93ceaf2bd 0 0 +7fb03cb93ceaf515 stream 0 0 0 7fb03cb93ceb0e15 0 0 +7fb03cb93ceb0e15 stream 0 0 0 7fb03cb93ceaf515 0 0 +7fb03cb93ceaf5dd stream 0 0 0 7fb03cb93ceb0d4d 0 0 +7fb03cb93ceb0d4d stream 0 0 0 7fb03cb93ceaf5dd 0 0 +7fb03cb93ceb0c85 stream 0 0 0 7fb03cb93ceaf6a5 0 0 +7fb03cb93ceaf6a5 stream 0 0 0 7fb03cb93ceb0c85 0 0 +7fb03cb93ceaf76d stream 0 0 0 7fb03cb93ceb0bbd 0 0 +7fb03cb93ceb0bbd stream 0 0 0 7fb03cb93ceaf76d 0 0 +7fb03cb93ceb0af5 stream 0 0 0 7fb03cb93ceafa8d 0 0 /var/run/mDNSResponder +7fb03cb93ceafa8d stream 0 0 0 7fb03cb93ceb0af5 0 0 +7fb03cb93ceb057d stream 0 0 0 7fb03cb93ceb070d 0 0 /var/run/mDNSResponder +7fb03cb93ceb070d stream 0 0 0 7fb03cb93ceb057d 0 0 +7fb03cb93ceafce5 stream 0 0 0 7fb03cb93ceaf9c5 0 0 /var/run/mDNSResponder +7fb03cb93ceaf9c5 stream 0 0 0 7fb03cb93ceafce5 0 0 +7fb03cb93ceb025d stream 0 0 7fb03cb93ea4fca5 0 0 0 /tmp/fctvpnctl.sock +7fb03cb93ceb0325 stream 0 0 7fb03cb93ea5074d 0 0 0 /var/tmp/filesystemui.socket +7fb03cb93ceafb55 stream 0 0 7fb03cb93ea1cd1d 0 0 0 /private/tmp/com.apple.launchd.WbUfpjQ9cD/Render +7fb03cb93ceb00cd stream 0 0 7fb03cb93ea42275 0 0 0 /private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners +7fb03cb937d394b5 stream 0 0 7fb03cb938289085 0 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe +7fb03cb93501a895 stream 0 0 0 7fb03cb93501d51d 0 0 /var/run/mDNSResponder +7fb03cb93501d51d stream 0 0 0 7fb03cb93501a895 0 0 +7fb03cb93501aa25 stream 0 0 0 7fb03cb93501aaed 0 0 /var/run/mDNSResponder +7fb03cb93501aaed stream 0 0 0 7fb03cb93501aa25 0 0 +7fb03cb93501d38d stream 0 0 0 7fb03cb93501d2c5 0 0 /var/run/mDNSResponder +7fb03cb93501d2c5 stream 0 0 0 7fb03cb93501d38d 0 0 +7fb03cb93501abb5 stream 0 0 0 7fb03cb93501d1fd 0 0 /var/run/mDNSResponder +7fb03cb93501d1fd stream 0 0 0 7fb03cb93501abb5 0 0 +7fb03cb93501aed5 stream 0 0 0 7fb03cb93501ae0d 0 0 /var/run/mDNSResponder +7fb03cb93501ae0d stream 0 0 0 7fb03cb93501aed5 0 0 +7fb03cb93501b44d stream 0 0 0 7fb03cb93501cedd 0 0 /var/run/mDNSResponder +7fb03cb93501cedd stream 0 0 0 7fb03cb93501b44d 0 0 +7fb03cb93501d06d stream 0 0 0 7fb03cb93501b385 0 0 +7fb03cb93501b385 stream 0 0 0 7fb03cb93501d06d 0 0 +7fb03cb93501cfa5 stream 0 0 7fb03cb93763e7cd 0 0 0 /var/run/displaypolicyd/state +7fb03cb93501b76d stream 0 0 7fb03cb936ea7d9d 0 0 0 /var/run/pppconfd +7fb03cb93501c965 stream 0 0 7fb03cb9355ec3e5 0 0 0 /var/run/epctrl.sock +7fb03cb93501c89d stream 0 0 7fb03cb9355ec1f5 0 0 0 /var/run/fctvpnctrl.sock +7fb03cb93501c7d5 stream 0 0 7fb03cb9355ec0fd 0 0 0 /var/run/fctservctl.sock +7fb03cb93501c70d stream 0 0 7fb03cb9355ec005 0 0 0 /var/run/com.docker.vmnetd.sock +7fb03cb93501c645 stream 0 0 7fb03cb93557e845 0 0 0 /var/rpc/ncalrpc/srvsvc +7fb03cb93501b9c5 stream 0 0 7fb03cb93557e36d 0 0 0 /var/rpc/ncacn_np/srvsvc +7fb03cb93501c57d stream 0 0 7fb03cb93557e55d 0 0 0 /var/run/usbmuxd +7fb03cb93501c4b5 stream 0 0 7fb03cb93557e655 0 0 0 /var/rpc/ncalrpc/wkssvc +7fb03cb93501ba8d stream 0 0 7fb03cb93557e74d 0 0 0 /var/rpc/ncacn_np/wkssvc +7fb03cb93501c3ed stream 0 0 7fb03cb9355617cd 0 0 0 /var/rpc/ncacn_np/mdssvc +7fb03cb93501c325 stream 0 0 7fb03cb9355636cd 0 0 0 /var/rpc/ncalrpc/lsarpc +7fb03cb93501c25d stream 0 0 7fb03cb9355618c5 0 0 0 /var/rpc/ncacn_np/lsarpc +7fb03cb93501bb55 stream 0 0 7fb03cb9355635d5 0 0 0 /var/run/mDNSResponder +7fb03cb93501bc1d stream 0 0 7fb03cb9355634dd 0 0 0 /var/run/systemkeychaincheck.socket +7fb03cb93501bce5 stream 0 0 7fb03cb935561ab5 0 0 0 /private/var/run/.sim_diagnosticd_socket +7fb03cb93501bdad stream 0 0 7fb03cb935561bad 0 0 0 /var/run/portmap.socket +7fb03cb93501be75 stream 0 0 7fb03cb935511d1d 0 0 0 /var/run/vpncontrol.sock +7fb03cb93501bf3d stream 0 0 7fb03cb9354fd085 0 0 0 /var/rpc/ncalrpc/NETLOGON +7fb03cb93501c005 stream 0 0 7fb03cb9354e58c5 0 0 0 /private/var/run/cupsd +7fb03cb95130ddad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3afa5 +7fb03cb94a63b065 dgram 0 0 0 7fb03cb94a63b9c5 7fb03cb94a63b9c5 0 +7fb03cb94a63b9c5 dgram 0 0 0 7fb03cb94a63b065 7fb03cb94a63b065 0 +7fb03cb945d3afa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63ad45 +7fb03cb94a63ad45 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63af9d +7fb03cb94a63af9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceae7cd +7fb03cb93ceae7cd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3b51d +7fb03cb945d3b51d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3a3ed +7fb03cb945d3a3ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3989d +7fb03cb937d3989d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63b76d +7fb03cb94a63b76d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130d44d +7fb03cb95130d44d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130cf9d +7fb03cb95130cf9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501d6ad +7fb03cb94d7491fd dgram 0 0 0 7fb03cb94d7476a5 7fb03cb94d7476a5 0 +7fb03cb94d7476a5 dgram 0 0 0 7fb03cb94d7491fd 7fb03cb94d7491fd 0 +7fb03cb93501d6ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63d6ad +7fb03cb94d748005 dgram 0 0 0 7fb03cb94d749455 7fb03cb94d749455 0 +7fb03cb94d749455 dgram 0 0 0 7fb03cb94d748005 7fb03cb94d748005 0 +7fb03cb94d7475dd dgram 0 0 0 7fb03cb94d747065 7fb03cb94d747065 0 +7fb03cb94d747065 dgram 0 0 0 7fb03cb94d7475dd 7fb03cb94d7475dd 0 +7fb03cb93501a95d dgram 0 0 0 7fb03cb93501d455 7fb03cb93501d455 0 +7fb03cb93501d455 dgram 0 0 0 7fb03cb93501a95d 7fb03cb93501a95d 0 +7fb03cb95130db55 dgram 0 0 0 7fb03cb95130ebbd 7fb03cb95130ebbd 0 +7fb03cb95130ebbd dgram 0 0 0 7fb03cb95130db55 7fb03cb95130db55 0 +7fb03cb94a63d6ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74938d +7fb03cb94d74938d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d38a8d +7fb03cb937d38a8d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130d835 +7fb03cb95130d835 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d746c7d +7fb03cb945d3aedd dgram 0 0 0 7fb03cb945d3b6ad 7fb03cb945d3b6ad 0 +7fb03cb945d3b6ad dgram 0 0 0 7fb03cb945d3aedd 7fb03cb945d3aedd 0 +7fb03cb94d746c7d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74712d +7fb03cb94d74712d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39edd +7fb03cb937d39edd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d38dad +7fb03cb937d38dad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63b12d +7fb03cb94a63b12d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130e57d +7fb03cb95130e57d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74951d +7fb03cb94d74951d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d749135 +7fb03cb94d749135 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb15e5 +7fb03cb93ceb15e5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceae895 +7fb03cb93ceae895 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb16ad +7fb03cb93ceb16ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3a1fd +7fb03cb937d3a1fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d39065 +7fb03cb945d39065 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d38f9d +7fb03cb945d38f9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d39a8d +7fb03cb945d399c5 dgram 0 0 0 7fb03cb945d3a005 7fb03cb945d3a005 0 +7fb03cb945d3a005 dgram 0 0 0 7fb03cb945d399c5 7fb03cb945d399c5 0 +7fb03cb945d39b55 dgram 0 0 0 7fb03cb945d39f3d 7fb03cb945d39f3d 0 +7fb03cb945d39f3d dgram 0 0 0 7fb03cb945d39b55 7fb03cb945d39b55 0 +7fb03cb945d39a8d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d397d5 +7fb03cb937d37d45 dgram 0 0 0 7fb03cb937d37e0d 7fb03cb937d37e0d 0 +7fb03cb937d37e0d dgram 0 0 0 7fb03cb937d37d45 7fb03cb937d37d45 0 +7fb03cb937d397d5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb11fd +7fb03cb93ceb11fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf065 +7fb03cb93ceaf065 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0edd +7fb03cb93ceb0edd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf385 +7fb03cb93ceaf12d dgram 0 0 0 7fb03cb93ceaf1f5 7fb03cb93ceaf1f5 0 +7fb03cb93ceaf1f5 dgram 0 0 0 7fb03cb93ceaf12d 7fb03cb93ceaf12d 0 +7fb03cb93ceaf385 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0965 +7fb03cb93ceb0965 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0a2d +7fb03cb93ceb0a2d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf835 +7fb03cb93ceaf835 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf8fd +7fb03cb93ceaf8fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceafdad +7fb03cb93ceafdad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb07d5 +7fb03cb93ceb07d5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb089d +7fb03cb93ceb0645 dgram 0 0 0 7fb03cb93ceafe75 7fb03cb93ceafe75 0 +7fb03cb93ceafe75 dgram 0 0 0 7fb03cb93ceb0645 7fb03cb93ceb0645 0 +7fb03cb93ceb089d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceafc1d +7fb03cb93ceb0195 dgram 0 0 0 7fb03cb93ceb0005 7fb03cb93ceb0005 0 +7fb03cb93ceb0005 dgram 0 0 0 7fb03cb93ceb0195 7fb03cb93ceb0195 0 +7fb03cb93ceafc1d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb03ed +7fb03cb93ceb03ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39fa5 +7fb03cb937d39a2d dgram 0 0 0 7fb03cb937d39bbd 7fb03cb937d39bbd 0 +7fb03cb937d39bbd dgram 0 0 0 7fb03cb937d39a2d 7fb03cb937d39a2d 0 +7fb03cb937d39fa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39965 +7fb03cb937d38065 dgram 0 0 0 7fb03cb937d37c7d 7fb03cb937d37c7d 0 +7fb03cb937d37c7d dgram 0 0 0 7fb03cb937d38065 7fb03cb937d38065 0 +7fb03cb937d39965 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d37f9d +7fb03cb937d37f9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d393ed +7fb03cb937d393ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3970d +7fb03cb937d3970d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501d135 +7fb03cb937d382bd dgram 0 0 0 7fb03cb937d3957d 7fb03cb937d3957d 0 +7fb03cb937d3957d dgram 0 0 0 7fb03cb937d382bd 7fb03cb937d382bd 0 +7fb03cb937d38c1d dgram 0 0 0 7fb03cb937d38ce5 7fb03cb937d38ce5 0 +7fb03cb937d38ce5 dgram 0 0 0 7fb03cb937d38c1d 7fb03cb937d38c1d 0 +7fb03cb93501d135 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cd4d +7fb03cb93501cd4d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cc85 +7fb03cb93501b1f5 dgram 0 0 0 7fb03cb93501b2bd 7fb03cb93501b2bd 0 +7fb03cb93501b2bd dgram 0 0 0 7fb03cb93501b1f5 7fb03cb93501b1f5 0 +7fb03cb93501ce15 dgram 0 0 0 7fb03cb93501b515 7fb03cb93501b515 0 +7fb03cb93501b515 dgram 0 0 0 7fb03cb93501ce15 7fb03cb93501ce15 0 +7fb03cb93501b6a5 dgram 0 0 0 7fb03cb93501caf5 7fb03cb93501caf5 0 +7fb03cb93501caf5 dgram 0 0 0 7fb03cb93501b6a5 7fb03cb93501b6a5 0 +7fb03cb93501cc85 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cbbd +7fb03cb93501cbbd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501c0cd +7fb03cb93501b8fd dgram 0 0 0 7fb03cb93501ca2d 7fb03cb93501ca2d 0 +7fb03cb93501ca2d dgram 0 0 0 7fb03cb93501b8fd 7fb03cb93501b8fd 0 +7fb03cb93501c0cd dgram 0 0 0 7fb03cb93501c195 0 0 +7fb03cb93501c195 dgram 0 0 7fb03cb934ff43e5 0 7fb03cb95130ddad 0 /private//var/run/syslog +Registered kernel control modules +kctlref id unit flags pcbcount rcvbuf sndbuf name + 10001 1 -1 9 0 131072 131072 com.apple.flow-divert + 20002 2 -1 1 1 16384 2048 com.apple.nke.sockwall + 30003 3 -1 9 0 524288 524288 com.apple.content-filter + 40004 4 -1 1 0 65536 65536 com.apple.net.necp_control + 50005 5 -1 1 12 65536 65536 com.apple.net.netagent + 60006 6 -1 9 4 524288 524288 com.apple.net.utun_control + 70007 7 -1 1 0 65536 65536 com.apple.net.ipsec_control + 80008 8 -1 0 74 8192 2048 com.apple.netsrc + 90009 9 -1 18 4 8192 2048 com.apple.network.statistics + a000a a -1 5 0 8192 2048 com.apple.network.tcp_ccdebug + b000b b -1 1 0 8192 2048 com.apple.network.advisory + c000c c -1 4 0 65536 2048 com.apple.uart.BLTH + d000d d -1 4 0 8192 2048 com.apple.uart.sk.BLTH + e000e e -1 0 0 8192 8192 com.apple.fileutil.kext.stateful.ctl + f000f f -1 0 0 8192 2048 com.apple.fileutil.kext.stateless.ctl + 170017 17 -1 5 1 32768 2048 com.fortinet.fct.kext.fwnke + ea0010 18 -1 5 1 8192 2048 com.fortinet.kext.avkern2 +Active kernel event sockets + pcb Proto Recv-Q Send-Q vendor class subcla +7fb03cb936ead2bd kevt 0 0 1 1 0 +7fb03cb936ead2f5 kevt 0 0 1 4 0 +7fb03cb936eacd0d kevt 0 0 1 1 0 +7fb03cb936eacd45 kevt 0 0 1 6 1 +7fb03cb936ead24d kevt 0 0 1 6 1 +7fb03cb936ead215 kevt 0 0 1 6 1 +7fb03cb936ead1dd kevt 0 0 1 1 11 +7fb03cb936eacd7d kevt 0 0 1 6 1 +7fb03cb936eacdb5 kevt 0 0 1 6 1 +7fb03cb936eacded kevt 0 0 1 6 1 +7fb03cb936eace25 kevt 0 0 1 6 1 +7fb03cb936eace5d kevt 0 0 1 6 1 +7fb03cb936ead1a5 kevt 0 0 1 6 1 +7fb03cb936eace95 kevt 0 0 1 6 1 +7fb03cb936eacecd kevt 0 0 1 6 1 +7fb03cb936eacf05 kevt 0 0 1 6 1 +7fb03cb936ead16d kevt 0 0 1 1 6 +7fb03cb936eacf3d kevt 0 0 1 1 1 +7fb03cb936eacf75 kevt 0 0 1 6 1 +7fb03cb936eacfad kevt 0 0 1 1 2 +7fb03cb936ead135 kevt 0 0 1 1 10 +7fb03cb936eacfe5 kevt 0 0 1000 5 11 +7fb03cb936ead01d kevt 0 0 1 1 7 +7fb03cb936ead055 kevt 0 0 1 1 1 +7fb03cb936ead08d kevt 0 0 1 1 2 +7fb03cb936ead0fd kevt 0 0 1 3 3 +7fb03cb936ead0c5 kevt 0 0 1 1 0 +Active kernel control sockets + pcb Proto Recv-Q Send-Q unit id name +7fb03cb937d0314d kctl 0 0 1 2 com.apple.nke.sockwall +7fb03cb9375d4f4d kctl 0 0 1 5 com.apple.net.netagent +7fb03cb9375d5ded kctl 0 0 2 5 com.apple.net.netagent +7fb03cb9375d4d6d kctl 0 0 3 5 com.apple.net.netagent +7fb03cb9375d656d kctl 0 0 4 5 com.apple.net.netagent +7fb03cb9375d4c4d kctl 0 0 5 5 com.apple.net.netagent +7fb03cb9375d662d kctl 0 0 6 5 com.apple.net.netagent +7fb03cb9608a1a6d kctl 0 0 7 5 com.apple.net.netagent +7fb03cb94c7488ed kctl 0 0 8 5 com.apple.net.netagent +7fb03cb93e7299ad kctl 0 0 9 5 com.apple.net.netagent +7fb03cb93e72b5cd kctl 0 0 10 5 com.apple.net.netagent +7fb03cb93e72b6ed kctl 0 0 11 5 com.apple.net.netagent +7fb03cb93f60182d kctl 0 0 12 5 com.apple.net.netagent +7fb03cb93f6020cd kctl 0 0 1 6 com.apple.net.utun_control +7fb03cb94ff8f9cd kctl 0 0 2 6 com.apple.net.utun_control +7fb03cb94ff8fded kctl 0 0 3 6 com.apple.net.utun_control +7fb03cb94ff8f48d kctl 0 0 4 6 com.apple.net.utun_control +7fb03cb9375d644d kctl 0 0 1 8 com.apple.netsrc +7fb03cb93c237d8d kctl 0 0 2 8 com.apple.netsrc +7fb03cb93c23682d kctl 0 0 3 8 com.apple.netsrc +7fb03cb9503efa6d kctl 0 0 4 8 com.apple.netsrc +7fb03cb93cc9038d kctl 0 0 5 8 com.apple.netsrc +7fb03cb93d3a7d6d kctl 0 0 6 8 com.apple.netsrc +7fb03cb9608a314d kctl 0 0 7 8 com.apple.netsrc +7fb03cb93eefef0d kctl 0 0 8 8 com.apple.netsrc +7fb03cb93f3d2e8d kctl 0 0 9 8 com.apple.netsrc +7fb03cb93f60260d kctl 0 0 10 8 com.apple.netsrc +7fb03cb93f601d6d kctl 0 0 11 8 com.apple.netsrc +7fb03cb93fb8e30d kctl 0 0 12 8 com.apple.netsrc +7fb03cb93fb8d8ed kctl 0 0 13 8 com.apple.netsrc +7fb03cb93f3d384d kctl 0 0 14 8 com.apple.netsrc +7fb03cb940438bad kctl 0 0 15 8 com.apple.netsrc +7fb03cb949ba84ed kctl 0 0 16 8 com.apple.netsrc +7fb03cb94043968d kctl 0 0 17 8 com.apple.netsrc +7fb03cb940c3594d kctl 0 0 18 8 com.apple.netsrc +7fb03cb941b872cd kctl 0 0 19 8 com.apple.netsrc +7fb03cb943aa506d kctl 0 0 20 8 com.apple.netsrc +7fb03cb941451a8d kctl 0 0 21 8 com.apple.netsrc +7fb03cb94510508d kctl 0 0 22 8 com.apple.netsrc +7fb03cb9459058ed kctl 0 0 23 8 com.apple.netsrc +7fb03cb945c5bf0d kctl 0 0 24 8 com.apple.netsrc +7fb03cb94766e96d kctl 0 0 25 8 com.apple.netsrc +7fb03cb946464c6d kctl 0 0 26 8 com.apple.netsrc +7fb03cb946463fad kctl 0 0 27 8 com.apple.netsrc +7fb03cb94646394d kctl 0 0 28 8 com.apple.netsrc +7fb03cb95002e5ad kctl 0 0 29 8 com.apple.netsrc +7fb03cb94fe5d12d kctl 0 0 30 8 com.apple.netsrc +7fb03cb95fb8feed kctl 0 0 31 8 com.apple.netsrc +7fb03cb9471823cd kctl 0 0 32 8 com.apple.netsrc +7fb03cb96085390d kctl 0 0 33 8 com.apple.netsrc +7fb03cb94686a3cd kctl 0 0 34 8 com.apple.netsrc +7fb03cb94804f18d kctl 0 0 35 8 com.apple.netsrc +7fb03cb94804f42d kctl 0 0 36 8 com.apple.netsrc +7fb03cb94804fead kctl 0 0 37 8 com.apple.netsrc +7fb03cb94fefcd2d kctl 0 0 38 8 com.apple.netsrc +7fb03cb94f9330ed kctl 0 0 39 8 com.apple.netsrc +7fb03cb9496ffb8d kctl 0 0 40 8 com.apple.netsrc +7fb03cb95e70872d kctl 0 0 41 8 com.apple.netsrc +7fb03cb94c8769ad kctl 0 0 42 8 com.apple.netsrc +7fb03cb9508e426d kctl 0 0 43 8 com.apple.netsrc +7fb03cb95f702d8d kctl 0 0 44 8 com.apple.netsrc +7fb03cb94d86f2cd kctl 0 0 45 8 com.apple.netsrc +7fb03cb94e49c2ad kctl 0 0 46 8 com.apple.netsrc +7fb03cb95eff106d kctl 0 0 47 8 com.apple.netsrc +7fb03cb93aa79fcd kctl 0 0 48 8 com.apple.netsrc +7fb03cb94f65e74d kctl 0 0 49 8 com.apple.netsrc +7fb03cb94f8944ad kctl 0 0 50 8 com.apple.netsrc +7fb03cb94f931d6d kctl 0 0 51 8 com.apple.netsrc +7fb03cb94f9d11ad kctl 0 0 52 8 com.apple.netsrc +7fb03cb95fbb0aed kctl 0 0 53 8 com.apple.netsrc +7fb03cb95f88ec4d kctl 0 0 54 8 com.apple.netsrc +7fb03cb9496ffa0d kctl 0 0 55 8 com.apple.netsrc +7fb03cb94c736fcd kctl 0 0 56 8 com.apple.netsrc +7fb03cb95477236d kctl 0 0 57 8 com.apple.netsrc +7fb03cb95e1a588d kctl 0 0 58 8 com.apple.netsrc +7fb03cb95e1a726d kctl 0 0 59 8 com.apple.netsrc +7fb03cb94ed4f24d kctl 0 0 60 8 com.apple.netsrc +7fb03cb95f46cc6d kctl 0 0 61 8 com.apple.netsrc +7fb03cb94fb5ad2d kctl 0 0 62 8 com.apple.netsrc +7fb03cb95cb8b9ad kctl 0 0 63 8 com.apple.netsrc +7fb03cb954772d8d kctl 0 0 64 8 com.apple.netsrc +7fb03cb950171fad kctl 0 0 65 8 com.apple.netsrc +7fb03cb9375d590d kctl 0 0 66 8 com.apple.netsrc +7fb03cb94686a1ed kctl 0 0 67 8 com.apple.netsrc +7fb03cb94ffdd1ad kctl 0 0 68 8 com.apple.netsrc +7fb03cb94ff8f96d kctl 0 0 69 8 com.apple.netsrc +7fb03cb95e6c8e8d kctl 0 0 70 8 com.apple.netsrc +7fb03cb94b5af2ad kctl 0 0 71 8 com.apple.netsrc +7fb03cb96074aa6d kctl 0 0 72 8 com.apple.netsrc +7fb03cb95bff57cd kctl 0 0 74 8 com.apple.netsrc +7fb03cb95fc8056d kctl 0 0 77 8 com.apple.netsrc +7fb03cb937d02e4d kctl 0 0 1 9 com.apple.network.statistics +7fb03cb93e09b08d kctl 0 0 2 9 com.apple.network.statistics +7fb03cb93e099a0d kctl 0 0 3 9 com.apple.network.statistics +7fb03cb93e099bed kctl 0 0 4 9 com.apple.network.statistics +7fb03cb9603d82cd kctl 0 0 1 23 com.fortinet.fct.kext.fwnke +7fb03cb9603d67cd kctl 0 0 1 24 com.fortinet.kext.avkern2 diff --git a/tests/fixtures/osx-10.14.6/netstat.json b/tests/fixtures/osx-10.14.6/netstat.json new file mode 100644 index 00000000..9eac82d4 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/netstat.json @@ -0,0 +1 @@ +[{"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "g2600-1406-1400-", "state": "ESTABLISHED", "kind": "network", "local_port": "54901", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54901}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "142.192.227.35.b", "state": "ESTABLISHED", "kind": "network", "local_port": "54897", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54897}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "2620:1ec:21::14", "state": "ESTABLISHED", "kind": "network", "local_port": "54880", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54880}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54864", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54864}, {"proto": "tcp4", "recv_q": 24, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-192-30-255-11", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "54863", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54863}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ec2-3-81-154-197", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "54862", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54862}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-140-82-113-26", "state": "ESTABLISHED", "kind": "network", "local_port": "54861", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54861}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54860", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54860}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54859", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54859}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54858", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54858}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54857", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54857}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54856", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54856}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54855", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54855}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54854", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54854}, {"proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ec2-3-81-154-197", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "54853", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54853}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54852", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54852}, {"proto": "tcp4", "recv_q": 24, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-192-30-255-11", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "54851", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54851}, {"proto": "tcp4", "recv_q": 24, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-192-30-255-11", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "54850", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54850}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "52.114.128.7", "state": "ESTABLISHED", "kind": "network", "local_port": "54837", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54837}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "on-in-x6c.1e100.", "state": "ESTABLISHED", "kind": "network", "local_port": "54825", "foreign_port": "imaps", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54825}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "208.91.113.36", "state": "ESTABLISHED", "kind": "network", "local_port": "54800", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54800}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-140-82-112-26", "state": "ESTABLISHED", "kind": "network", "local_port": "54782", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54782}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "kellysblackipad.", "state": "ESTABLISHED", "kind": "network", "local_port": "54506", "foreign_port": "49231", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54506, "foreign_port_num": 49231}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "oc-in-x6d.1e100.", "state": "ESTABLISHED", "kind": "network", "local_port": "54631", "foreign_port": "imaps", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54631}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "kellys-iphone.at", "state": "ESTABLISHED", "kind": "network", "local_port": "54506", "foreign_port": "53380", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54506, "foreign_port_num": 53380}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "2603:1030:b00::e", "state": "ESTABLISHED", "kind": "network", "local_port": "54542", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54542}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "2620:1ec:21::14", "state": "ESTABLISHED", "kind": "network", "local_port": "54538", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54538}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "93.87.236.35.bc.", "state": "ESTABLISHED", "kind": "network", "local_port": "54522", "foreign_port": "sunpr", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54522}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "dfw25s34-in-x0e.", "state": "ESTABLISHED", "kind": "network", "local_port": "54521", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54521}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "family-room-5.at", "state": "ESTABLISHED", "kind": "network", "local_port": "54520", "foreign_port": "49153", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54520, "foreign_port_num": 49153}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "bedroom.attlocal", "state": "ESTABLISHED", "kind": "network", "local_port": "54519", "foreign_port": "49152", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54519, "foreign_port_num": 49152}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "kellys-mbp.attlo", "state": "ESTABLISHED", "kind": "network", "local_port": "54506", "foreign_port": "55617", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54506, "foreign_port_num": 55617}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "52.114.148.56", "state": "ESTABLISHED", "kind": "network", "local_port": "54517", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54517}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "54511", "foreign_port": "49621", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54511, "foreign_port_num": 49621}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "54508", "foreign_port": "49607", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54508, "foreign_port_num": 49607}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ok-in-xbc.1e100.", "state": "ESTABLISHED", "kind": "network", "local_port": "54471", "foreign_port": "5228", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54471, "foreign_port_num": 5228}, {"proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "93.87.236.35.bc.", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "54426", "foreign_port": "sunpr", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54426}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49795", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49795}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "kind": "network", "local_port": "53755", "foreign_port": "53763", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53755, "foreign_port_num": 53763}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "kind": "network", "local_port": "53763", "foreign_port": "53755", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53763, "foreign_port_num": 53755}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "255.21.155.104.b", "state": "ESTABLISHED", "kind": "network", "local_port": "53599", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53599}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49794", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49794}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "17.57.144.20", "state": "ESTABLISHED", "kind": "network", "local_port": "52630", "foreign_port": "5223", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 52630, "foreign_port_num": 5223}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "mycloudex2ultra.", "state": "ESTABLISHED", "kind": "network", "local_port": "51797", "foreign_port": "afpov", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51797}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49793", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49793}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49604", "foreign_port": "49617", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49604, "foreign_port_num": 49617}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49792", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49792}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49791", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49791}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49790", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49790}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49789", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49789}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49788", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49788}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49787", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49787}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49786", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49786}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "51642", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51642}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "51641", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51641}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "51640", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51640}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "63836", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 63836, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "59388", "foreign_port": "59602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 59388, "foreign_port_num": 59602}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "96.45.36.31", "state": "ESTABLISHED", "kind": "network", "local_port": "58795", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 58795}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "ldgateway", "foreign_port": "58704", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 58704}, {"proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "93.87.236.35.bc.", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "53461", "foreign_port": "sunpr", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53461}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "59281", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 59281, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "57652", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 57652, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "51989", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 51989, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49892", "foreign_port": "49620", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49892, "foreign_port_num": 49620}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49798", "foreign_port": "49608", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49798, "foreign_port_num": 49608}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49390", "foreign_port": "49613", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49390, "foreign_port_num": 49613}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49157", "foreign_port": "49615", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49157, "foreign_port_num": 49615}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ussjc2-vip-bx-00", "state": "TIME_WAIT ", "kind": "network", "local_port": "54877", "foreign_port": "http", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54877}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ec2-52-9-68-189.", "state": "TIME_WAIT ", "kind": "network", "local_port": "54888", "foreign_port": "http", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54888}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ec2-54-68-181-40", "state": "TIME_WAIT ", "kind": "network", "local_port": "54890", "foreign_port": "http", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54890}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "199.119.186.166", "state": "TIME_WAIT ", "kind": "network", "local_port": "54871", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54871}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "199.119.186.166", "state": "TIME_WAIT ", "kind": "network", "local_port": "54870", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54870}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "56497", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 56497}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "64718", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 64718}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "dfw25s34-in-x0e.", "state": null, "kind": "network", "local_port": "52658", "foreign_port": "https", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52658}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51955", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51955}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57333", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57333}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "dfw28s05-in-x0a.", "state": null, "kind": "network", "local_port": "56587", "foreign_port": "https", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 56587}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58579", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58579}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53717", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53717}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53463", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53463}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "65477", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 65477}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "54338", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54338}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "xserveraid", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57390", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57390}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53677", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53677}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61224", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61224}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63995", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63995}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "50636", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 50636}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33354", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33354}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33355", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33355}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61982}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61982}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52378}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52378}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53910}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53910}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 57674}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57674}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62448}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62448}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55681}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55681}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51226", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51226}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61491", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61491}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "6096", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 6096}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58997", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58997}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52551", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52551}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "pds", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "netbios-dgm", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "netbios-ns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "icm4", "recv_q": 8136, "send_q": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "icmp", "network_protocol": "ipv4"}, {"address": "7fb03cb94a63d2c5", "type": "stream", "recv_q": 1, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ce15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ce15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cd4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94a63b515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cd4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaec7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb04b5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb93ceb04b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaec7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130da8d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130da8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130cc7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130cd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e89d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130cd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e70d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130de75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130de75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130f135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b0051d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb937d38835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d389c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d389c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d396a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d396a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ac85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ac85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b38d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3b38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cfa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b5dd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ae0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b44d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b835", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94a63b835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bb55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94a63bb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b8fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b8fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63a7cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c70d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94a63c70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63a7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94a63b385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aa25", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d1f5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130d1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3aa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74906d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746e0d", "type": "stream", "recv_q": 8, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74906d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d385dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d385dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3876d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3876d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d386a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d386a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d390cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d390cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3895d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3895d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d392bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38e0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d392bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3976d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3912d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3912d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3976d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d391f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d391f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38c7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94b87f5d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS", "kind": "socket"}, {"address": "7fb03cb945d39c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ac7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63caf5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63caf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ac7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ce0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ce0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130caed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ca25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ca25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130caed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e7d5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ced5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f51d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ced5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130df3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c7cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130df3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ea2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ea2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb937de855d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Library/Application Support/LANDesk/tmp/socket/sys", "kind": "socket"}, {"address": "7fb03cb95130d065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ec85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ee15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ee15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ec85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ed4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ed4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3925d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39c85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3925d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d381f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b005e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afd895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935afd895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b005e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d5e5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ba8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63a895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cc85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7480cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d7480cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c7d5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e005", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb95130e005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b001fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdaed", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afdaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b001fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0038d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ead1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b002c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff0cd", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb935aff0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b002c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b00135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdbb5", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb935afdbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b00135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affd4d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935affd4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affe15", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affe15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affa2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0006d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afffa5", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afffa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b0006d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdc7d", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935afdc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affc85", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935affc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afde0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affbbd", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affbbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afde0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afded5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff965", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afded5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff7d5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdf9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff70d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdf9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff57d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff4b5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd2d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb935aff325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93609fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935aff25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94cddc36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock", "kind": "socket"}, {"address": "7fb03cb935afe12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe1f5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eac25", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe8fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afedad", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf", "kind": "socket"}, {"address": "7fb03cb935afedad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe8fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b763e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.000005f5", "kind": "socket"}, {"address": "7fb03cb935afef3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b761f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.00000948", "kind": "socket"}, {"address": "7fb03cb935afe5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b760fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afe6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe76d", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb935afe76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afee75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9360a12ed", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend.sock", "kind": "socket"}, {"address": "7fb03cb935afece5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd29bd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-export.sock", "kind": "socket"}, {"address": "7fb03cb935afec1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd43e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd40fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-volume.sock", "kind": "socket"}, {"address": "7fb03cb935afeb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eaa35", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker-api.sock", "kind": "socket"}, {"address": "7fb03cb935afea8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eab2d", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb93501b065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb937d37bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea465", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.port.sock", "kind": "socket"}, {"address": "7fb03cb937d3a5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a0dca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker.sock", "kind": "socket"}, {"address": "7fb03cb937d3a51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab1005", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.pcap.sock", "kind": "socket"}, {"address": "7fb03cb94d7495e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0f0d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.diag.sock", "kind": "socket"}, {"address": "7fb03cb94d746895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950aafd9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb94d7467cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0085", "conn": "0", "refs": "0", "nextref": "0", "addr": "osxfs.sock", "kind": "socket"}, {"address": "7fb03cb94d746bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb94d7496ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a1dab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock", "kind": "socket"}, {"address": "7fb03cb94d7492c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d746aed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7492c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7472bd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7472bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748a2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74776d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74776d", "type": "stream", "recv_q": 145, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748a2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74889d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7478fd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7478fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74889d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74870d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7487d5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7487d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74870d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7479c5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7479c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747a8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74857d", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb94d74857d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747a8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7484b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747b55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747b55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7484b5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748325", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7483ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94db01655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock_501", "kind": "socket"}, {"address": "7fb03cb94a63bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c57d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bdad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63be75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c325", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bf3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c005", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ad4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ae15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d377cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501b835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ad4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d377cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ae15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a6ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a06d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d387cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94d0e4a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock", "kind": "socket"}, {"address": "7fb03cb937d3812d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3812d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d395dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39515", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d395dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39dad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39dad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9418d26cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket", "kind": "socket"}, {"address": "7fb03cb93ceaeaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb151d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb151d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceae95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb138d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb138d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceae95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb12c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaed45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaed45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb12c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaee0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeed5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaeed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaee0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb106d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaef9d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaef9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb106d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0fa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb0fa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0bbd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafa8d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceafa8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb057d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb070d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb070d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb057d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf9c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaf9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb025d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea4fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock", "kind": "socket"}, {"address": "7fb03cb93ceb0325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea5074d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/tmp/filesystemui.socket", "kind": "socket"}, {"address": "7fb03cb93ceafb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea1cd1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WbUfpjQ9cD/Render", "kind": "socket"}, {"address": "7fb03cb93ceb00cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea42275", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners", "kind": "socket"}, {"address": "7fb03cb937d394b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938289085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb93501a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aaed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501aaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aa25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d1fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ae0d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501cedd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b44d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93763e7cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/displaypolicyd/state", "kind": "socket"}, {"address": "7fb03cb93501b76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb936ea7d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/pppconfd", "kind": "socket"}, {"address": "7fb03cb93501c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec3e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/epctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec1f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctvpnctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec0fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb93501c70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec005", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/com.docker.vmnetd.sock", "kind": "socket"}, {"address": "7fb03cb93501c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e845", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e55d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/usbmuxd", "kind": "socket"}, {"address": "7fb03cb93501c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e74d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355617cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/mdssvc", "kind": "socket"}, {"address": "7fb03cb93501c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355636cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355618c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501bb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355635d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355634dd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/systemkeychaincheck.socket", "kind": "socket"}, {"address": "7fb03cb93501bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561ab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/.sim_diagnosticd_socket", "kind": "socket"}, {"address": "7fb03cb93501bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561bad", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/portmap.socket", "kind": "socket"}, {"address": "7fb03cb93501be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935511d1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/vpncontrol.sock", "kind": "socket"}, {"address": "7fb03cb93501bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354fd085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/NETLOGON", "kind": "socket"}, {"address": "7fb03cb93501c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354e58c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/cupsd", "kind": "socket"}, {"address": "7fb03cb94a63b065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b9c5", "refs": "7fb03cb94a63b9c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b9c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b065", "refs": "7fb03cb94a63b065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3afa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63ad45", "kind": "socket"}, {"address": "7fb03cb94a63ad45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63af9d", "kind": "socket"}, {"address": "7fb03cb94a63af9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae7cd", "kind": "socket"}, {"address": "7fb03cb93ceae7cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3b51d", "kind": "socket"}, {"address": "7fb03cb945d3b51d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3a3ed", "kind": "socket"}, {"address": "7fb03cb945d3a3ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3989d", "kind": "socket"}, {"address": "7fb03cb937d3989d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b76d", "kind": "socket"}, {"address": "7fb03cb94a63b76d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d44d", "kind": "socket"}, {"address": "7fb03cb95130d44d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130cf9d", "kind": "socket"}, {"address": "7fb03cb95130cf9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d6ad", "kind": "socket"}, {"address": "7fb03cb94d7491fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7476a5", "refs": "7fb03cb94d7476a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7476a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7491fd", "refs": "7fb03cb94d7491fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63d6ad", "kind": "socket"}, {"address": "7fb03cb94d748005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d749455", "refs": "7fb03cb94d749455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d749455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748005", "refs": "7fb03cb94d748005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7475dd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747065", "refs": "7fb03cb94d747065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7475dd", "refs": "7fb03cb94d7475dd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a95d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d455", "refs": "7fb03cb93501d455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a95d", "refs": "7fb03cb93501a95d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130db55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ebbd", "refs": "7fb03cb95130ebbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ebbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130db55", "refs": "7fb03cb95130db55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74938d", "kind": "socket"}, {"address": "7fb03cb94d74938d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38a8d", "kind": "socket"}, {"address": "7fb03cb937d38a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d835", "kind": "socket"}, {"address": "7fb03cb95130d835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d746c7d", "kind": "socket"}, {"address": "7fb03cb945d3aedd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b6ad", "refs": "7fb03cb945d3b6ad", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3aedd", "refs": "7fb03cb945d3aedd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74712d", "kind": "socket"}, {"address": "7fb03cb94d74712d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39edd", "kind": "socket"}, {"address": "7fb03cb937d39edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38dad", "kind": "socket"}, {"address": "7fb03cb937d38dad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b12d", "kind": "socket"}, {"address": "7fb03cb94a63b12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e57d", "kind": "socket"}, {"address": "7fb03cb95130e57d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74951d", "kind": "socket"}, {"address": "7fb03cb94d74951d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d749135", "kind": "socket"}, {"address": "7fb03cb94d749135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb15e5", "kind": "socket"}, {"address": "7fb03cb93ceb15e5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae895", "kind": "socket"}, {"address": "7fb03cb93ceae895", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb16ad", "kind": "socket"}, {"address": "7fb03cb93ceb16ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3a1fd", "kind": "socket"}, {"address": "7fb03cb937d3a1fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39065", "kind": "socket"}, {"address": "7fb03cb945d39065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d38f9d", "kind": "socket"}, {"address": "7fb03cb945d38f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39a8d", "kind": "socket"}, {"address": "7fb03cb945d399c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a005", "refs": "7fb03cb945d3a005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d399c5", "refs": "7fb03cb945d399c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39b55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39f3d", "refs": "7fb03cb945d39f3d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39f3d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39b55", "refs": "7fb03cb945d39b55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d397d5", "kind": "socket"}, {"address": "7fb03cb937d37d45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37e0d", "refs": "7fb03cb937d37e0d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37e0d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37d45", "refs": "7fb03cb937d37d45", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d397d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb11fd", "kind": "socket"}, {"address": "7fb03cb93ceb11fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf065", "kind": "socket"}, {"address": "7fb03cb93ceaf065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0edd", "kind": "socket"}, {"address": "7fb03cb93ceb0edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf385", "kind": "socket"}, {"address": "7fb03cb93ceaf12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf1f5", "refs": "7fb03cb93ceaf1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf12d", "refs": "7fb03cb93ceaf12d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf385", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0965", "kind": "socket"}, {"address": "7fb03cb93ceb0965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0a2d", "kind": "socket"}, {"address": "7fb03cb93ceb0a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf835", "kind": "socket"}, {"address": "7fb03cb93ceaf835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf8fd", "kind": "socket"}, {"address": "7fb03cb93ceaf8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafdad", "kind": "socket"}, {"address": "7fb03cb93ceafdad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb07d5", "kind": "socket"}, {"address": "7fb03cb93ceb07d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb089d", "kind": "socket"}, {"address": "7fb03cb93ceb0645", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafe75", "refs": "7fb03cb93ceafe75", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafe75", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0645", "refs": "7fb03cb93ceb0645", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb089d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafc1d", "kind": "socket"}, {"address": "7fb03cb93ceb0195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0005", "refs": "7fb03cb93ceb0005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0195", "refs": "7fb03cb93ceb0195", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafc1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb03ed", "kind": "socket"}, {"address": "7fb03cb93ceb03ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39fa5", "kind": "socket"}, {"address": "7fb03cb937d39a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39bbd", "refs": "7fb03cb937d39bbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39bbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39a2d", "refs": "7fb03cb937d39a2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39fa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39965", "kind": "socket"}, {"address": "7fb03cb937d38065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37c7d", "refs": "7fb03cb937d37c7d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38065", "refs": "7fb03cb937d38065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d37f9d", "kind": "socket"}, {"address": "7fb03cb937d37f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d393ed", "kind": "socket"}, {"address": "7fb03cb937d393ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3970d", "kind": "socket"}, {"address": "7fb03cb937d3970d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d135", "kind": "socket"}, {"address": "7fb03cb937d382bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3957d", "refs": "7fb03cb937d3957d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3957d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d382bd", "refs": "7fb03cb937d382bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38c1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38ce5", "refs": "7fb03cb937d38ce5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38ce5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38c1d", "refs": "7fb03cb937d38c1d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cd4d", "kind": "socket"}, {"address": "7fb03cb93501cd4d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cc85", "kind": "socket"}, {"address": "7fb03cb93501b1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b2bd", "refs": "7fb03cb93501b2bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b2bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b1f5", "refs": "7fb03cb93501b1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b515", "refs": "7fb03cb93501b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b515", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ce15", "refs": "7fb03cb93501ce15", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501caf5", "refs": "7fb03cb93501caf5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501caf5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b6a5", "refs": "7fb03cb93501b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cc85", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cbbd", "kind": "socket"}, {"address": "7fb03cb93501cbbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501c0cd", "kind": "socket"}, {"address": "7fb03cb93501b8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ca2d", "refs": "7fb03cb93501ca2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ca2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b8fd", "refs": "7fb03cb93501b8fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c0cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb934ff43e5", "conn": "0", "refs": "7fb03cb945d3afa5", "nextref": "0", "addr": "/private//var/run/syslog", "kind": "socket"}, {"id": "1", "osx_flags": 9, "pcbcount": 0, "rcvbuf": 131072, "sndbuf": 131072, "name": "com.apple.flow-divert ", "kind": "Registered kernel control module"}, {"id": "2", "osx_flags": 1, "pcbcount": 1, "rcvbuf": 16384, "sndbuf": 2048, "name": "com.apple.nke.sockwall ", "kind": "Registered kernel control module"}, {"id": "3", "osx_flags": 9, "pcbcount": 0, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.content-filter ", "kind": "Registered kernel control module"}, {"id": "4", "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.necp_control ", "kind": "Registered kernel control module"}, {"id": "5", "osx_flags": 1, "pcbcount": 12, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.netagent ", "kind": "Registered kernel control module"}, {"id": "6", "osx_flags": 9, "pcbcount": 4, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.net.utun_control ", "kind": "Registered kernel control module"}, {"id": "7", "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.ipsec_control ", "kind": "Registered kernel control module"}, {"id": "8", "osx_flags": 0, "pcbcount": 74, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.netsrc ", "kind": "Registered kernel control module"}, {"id": "9", "osx_flags": 18, "pcbcount": 4, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.statistics ", "kind": "Registered kernel control module"}, {"id": "a", "osx_flags": 5, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.tcp_ccdebug ", "kind": "Registered kernel control module"}, {"id": "b", "osx_flags": 1, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.advisory ", "kind": "Registered kernel control module"}, {"id": "c", "osx_flags": 4, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 2048, "name": "com.apple.uart.BLTH ", "kind": "Registered kernel control module"}, {"id": "d", "osx_flags": 4, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.uart.sk.BLTH ", "kind": "Registered kernel control module"}, {"id": "e", "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 8192, "name": "com.apple.fileutil.kext.stateful.ctl ", "kind": "Registered kernel control module"}, {"id": "f", "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.fileutil.kext.stateless.ctl ", "kind": "Registered kernel control module"}, {"id": "17", "osx_flags": 5, "pcbcount": 1, "rcvbuf": 32768, "sndbuf": 2048, "name": "com.fortinet.fct.kext.fwnke ", "kind": "Registered kernel control module"}, {"id": "18", "osx_flags": 5, "pcbcount": 1, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.fortinet.kext.avkern2 ", "kind": "Registered kernel control module"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 4, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 11, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 6, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 10, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1000, "class": 5, "subcla": 11, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 7, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 3, "subcla": 3, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "2", "name": "com.apple.nke.sockwall", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 13, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 14, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 15, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 16, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 17, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 18, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 19, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 20, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 21, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 22, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 23, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 24, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 25, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 26, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 27, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 28, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 29, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 30, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 31, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 32, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 33, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 34, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 35, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 36, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 37, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 38, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 39, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 40, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 41, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 42, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 43, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 44, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 45, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 46, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 47, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 48, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 49, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 50, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 51, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 52, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 53, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 54, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 55, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 56, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 57, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 58, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 59, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 60, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 61, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 62, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 63, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 64, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 65, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 66, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 67, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 68, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 69, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 70, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 71, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 72, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 74, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 77, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "23", "name": "com.fortinet.fct.kext.fwnke", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "24", "name": "com.fortinet.kext.avkern2", "kind": "Active kernel control socket"}] diff --git a/tests/fixtures/osx-10.14.6/netstat.out b/tests/fixtures/osx-10.14.6/netstat.out new file mode 100644 index 00000000..f9697fe6 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/netstat.out @@ -0,0 +1,724 @@ +Active Internet connections +Proto Recv-Q Send-Q Local Address Foreign Address (state) +tcp6 0 0 kbrazil-mac.attl.54901 g2600-1406-1400-.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54897 142.192.227.35.b.https ESTABLISHED +tcp6 0 0 kbrazil-mac.attl.54880 2620:1ec:21::14.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54864 151.101.188.133.https ESTABLISHED +tcp4 24 0 kbrazil-mac.attl.54863 lb-192-30-255-11.https CLOSE_WAIT +tcp4 0 0 kbrazil-mac.attl.54862 ec2-3-81-154-197.https CLOSE_WAIT +tcp4 0 0 kbrazil-mac.attl.54861 lb-140-82-113-26.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54860 151.101.188.133.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54859 151.101.188.133.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54858 151.101.188.133.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54857 151.101.188.133.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54856 151.101.188.133.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54855 151.101.188.133.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54854 151.101.188.133.https ESTABLISHED +tcp4 31 0 kbrazil-mac.attl.54853 ec2-3-81-154-197.https CLOSE_WAIT +tcp4 0 0 kbrazil-mac.attl.54852 151.101.188.133.https ESTABLISHED +tcp4 24 0 kbrazil-mac.attl.54851 lb-192-30-255-11.https CLOSE_WAIT +tcp4 24 0 kbrazil-mac.attl.54850 lb-192-30-255-11.https CLOSE_WAIT +tcp4 0 0 kbrazil-mac.attl.54837 52.114.128.7.https ESTABLISHED +tcp6 0 0 kbrazil-mac.attl.54825 on-in-x6c.1e100..imaps ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54800 208.91.113.36.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54782 lb-140-82-112-26.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54506 kellysblackipad..49231 ESTABLISHED +tcp6 0 0 kbrazil-mac.attl.54631 oc-in-x6d.1e100..imaps ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54506 kellys-iphone.at.53380 ESTABLISHED +tcp6 0 0 kbrazil-mac.attl.54542 2603:1030:b00::e.https ESTABLISHED +tcp6 0 0 kbrazil-mac.attl.54538 2620:1ec:21::14.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54522 93.87.236.35.bc..sunpr ESTABLISHED +tcp6 0 0 kbrazil-mac.attl.54521 dfw25s34-in-x0e..https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54520 family-room-5.at.49153 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54519 bedroom.attlocal.49152 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54506 kellys-mbp.attlo.55617 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54517 52.114.148.56.https ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.54511 fe80::aede:48ff:.49621 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.54508 fe80::aede:48ff:.49607 ESTABLISHED +tcp6 0 0 kbrazil-mac.attl.54471 ok-in-xbc.1e100..5228 ESTABLISHED +tcp4 31 0 kbrazil-mac.attl.54426 93.87.236.35.bc..sunpr CLOSE_WAIT +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49795 ESTABLISHED +tcp4 0 0 localhost.53755 localhost.53763 ESTABLISHED +tcp4 0 0 localhost.53763 localhost.53755 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.53599 255.21.155.104.b.dsf ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49794 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.52630 17.57.144.20.5223 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.51797 mycloudex2ultra..afpov ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49793 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49604 fe80::aede:48ff:.49617 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49792 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49791 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49790 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49789 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49788 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49787 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49786 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.51642 194.123.235.35.b.dsf CLOSE_WAIT +tcp4 0 0 kbrazil-mac.attl.51641 194.123.235.35.b.dsf CLOSE_WAIT +tcp4 0 0 kbrazil-mac.attl.51640 194.123.235.35.b.dsf CLOSE_WAIT +tcp6 0 0 fe80::aede:48ff:.63836 fe80::aede:48ff:.49602 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.59388 fe80::aede:48ff:.59602 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.58795 96.45.36.31.https ESTABLISHED +tcp4 0 0 localhost.ldgateway localhost.58704 CLOSE_WAIT +tcp4 31 0 kbrazil-mac.attl.53461 93.87.236.35.bc..sunpr CLOSE_WAIT +tcp6 0 0 fe80::aede:48ff:.59281 fe80::aede:48ff:.49602 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.57652 fe80::aede:48ff:.49602 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.51989 fe80::aede:48ff:.49602 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49892 fe80::aede:48ff:.49620 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49798 fe80::aede:48ff:.49608 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49390 fe80::aede:48ff:.49613 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49157 fe80::aede:48ff:.49615 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.54877 ussjc2-vip-bx-00.http TIME_WAIT +tcp4 0 0 kbrazil-mac.attl.54888 ec2-52-9-68-189..http TIME_WAIT +tcp4 0 0 kbrazil-mac.attl.54890 ec2-54-68-181-40.http TIME_WAIT +tcp4 0 0 kbrazil-mac.attl.54871 199.119.186.166.https TIME_WAIT +tcp4 0 0 kbrazil-mac.attl.54870 199.119.186.166.https TIME_WAIT +udp4 0 0 *.56497 *.* +udp4 0 0 *.64718 *.* +udp6 0 0 kbrazil-mac.attl.52658 dfw25s34-in-x0e..https +udp4 0 0 *.51955 *.* +udp4 0 0 *.57333 *.* +udp6 0 0 kbrazil-mac.attl.56587 dfw28s05-in-x0a..https +udp4 0 0 *.58579 *.* +udp4 0 0 *.53717 *.* +udp4 0 0 *.53463 *.* +udp4 0 0 *.65477 *.* +udp4 0 0 *.54338 *.* +udp4 0 0 *.xserveraid *.* +udp4 0 0 *.57390 *.* +udp4 0 0 *.53677 *.* +udp4 0 0 *.mdns *.* +udp46 0 0 *.61224 *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 localhost.63995 *.* +udp4 0 0 kbrazil-mac.attl.50636 *.* +udp4 0 0 *.33354 *.* +udp4 0 0 *.33355 *.* +udp6 0 0 *.61982 *.* +udp4 0 0 *.61982 *.* +udp6 0 0 *.52378 *.* +udp4 0 0 *.52378 *.* +udp6 0 0 *.53910 *.* +udp4 0 0 *.53910 *.* +udp6 0 0 *.57674 *.* +udp4 0 0 *.57674 *.* +udp6 0 0 *.62448 *.* +udp4 0 0 *.62448 *.* +udp6 0 0 *.55681 *.* +udp4 0 0 *.55681 *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.mdns *.* +udp4 0 0 *.mdns *.* +udp46 0 0 *.mdns *.* +udp46 0 0 *.mdns *.* +udp46 0 0 *.mdns *.* +udp4 0 0 *.mdns *.* +udp46 0 0 *.mdns *.* +udp4 0 0 *.51226 *.* +udp4 0 0 localhost.61491 *.* +udp4 0 0 *.6096 *.* +udp4 0 0 *.58997 *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.52551 *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp4 0 0 *.* *.* +udp46 0 0 *.* *.* +udp6 0 0 *.mdns *.* +udp4 0 0 *.mdns *.* +udp4 0 0 *.pds *.* +udp4 0 0 *.netbios-dgm *.* +udp4 0 0 *.netbios-ns *.* +icm4 8136 0 *.* *.* +Active Multipath Internet connections +Proto/ID Flags Local Address Foreign Address (state) +Active LOCAL (UNIX) domain sockets +Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr +7fb03cb94a63d2c5 stream 1 0 0 7fb03cb94a63ce15 0 0 +7fb03cb94a63ce15 stream 0 0 0 7fb03cb94a63d2c5 0 0 +7fb03cb94a63cd4d stream 0 0 0 7fb03cb94a63b515 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb94a63b515 stream 0 0 0 7fb03cb94a63cd4d 0 0 +7fb03cb93ceaec7d stream 0 0 0 7fb03cb93ceb04b5 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb93ceb04b5 stream 0 0 0 7fb03cb93ceaec7d 0 0 +7fb03cb95130cc7d stream 0 0 0 7fb03cb95130da8d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb95130da8d stream 0 0 0 7fb03cb95130cc7d 0 0 +7fb03cb95130eaf5 stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb95130cd45 stream 0 0 0 7fb03cb95130e89d 0 0 /var/run/mDNSResponder +7fb03cb95130e89d stream 0 0 0 7fb03cb95130cd45 0 0 +7fb03cb95130e70d stream 0 0 0 7fb03cb95130e0cd 0 0 +7fb03cb95130e0cd stream 0 0 0 7fb03cb95130e70d 0 0 +7fb03cb95130de75 stream 0 0 0 7fb03cb95130f38d 0 0 +7fb03cb95130f38d stream 0 0 0 7fb03cb95130de75 0 0 +7fb03cb95130d9c5 stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb95130f135 stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb935b0051d stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb937d38835 stream 0 0 0 7fb03cb937d389c5 0 0 /var/run/mDNSResponder +7fb03cb937d389c5 stream 0 0 0 7fb03cb937d38835 0 0 +7fb03cb945d3b2c5 stream 0 0 0 7fb03cb945d396a5 0 0 /var/run/mDNSResponder +7fb03cb945d396a5 stream 0 0 0 7fb03cb945d3b2c5 0 0 +7fb03cb945d3b5e5 stream 0 0 0 7fb03cb945d3a645 0 0 /var/run/mDNSResponder +7fb03cb945d3a645 stream 0 0 0 7fb03cb945d3b5e5 0 0 +7fb03cb945d39835 stream 0 0 0 7fb03cb945d3ac85 0 0 /var/run/mDNSResponder +7fb03cb945d3ac85 stream 0 0 0 7fb03cb945d39835 0 0 +7fb03cb945d3a89d stream 0 0 0 7fb03cb945d3b38d 0 0 /var/run/mDNSResponder +7fb03cb945d3b38d stream 0 0 0 7fb03cb945d3a89d 0 0 +7fb03cb94a63aed5 stream 0 0 0 7fb03cb94a63cfa5 0 0 /var/run/mDNSResponder +7fb03cb94a63cfa5 stream 0 0 0 7fb03cb94a63aed5 0 0 +7fb03cb94a63ae0d stream 0 0 0 7fb03cb94a63b5dd 0 0 /var/run/mDNSResponder +7fb03cb94a63b5dd stream 0 0 0 7fb03cb94a63ae0d 0 0 +7fb03cb94a63cedd stream 0 0 0 7fb03cb94a63b44d 0 0 /var/run/mDNSResponder +7fb03cb94a63b44d stream 0 0 0 7fb03cb94a63cedd 0 0 +7fb03cb94a63d06d stream 0 0 0 7fb03cb94a63b835 0 0 /var/run/fctservctl.sock +7fb03cb94a63b835 stream 0 0 0 7fb03cb94a63d06d 0 0 +7fb03cb94a63d455 stream 0 0 0 7fb03cb94a63bb55 0 0 /var/run/fctservctl.sock +7fb03cb94a63bb55 stream 0 0 0 7fb03cb94a63d455 0 0 +7fb03cb94a63d1fd stream 0 0 0 7fb03cb94a63b8fd 0 0 /var/run/mDNSResponder +7fb03cb94a63b8fd stream 0 0 0 7fb03cb94a63d1fd 0 0 +7fb03cb94a63a7cd stream 0 0 0 7fb03cb94a63c70d 0 0 /var/run/fctservctl.sock +7fb03cb94a63c70d stream 0 0 0 7fb03cb94a63a7cd 0 0 +7fb03cb94a63b2bd stream 0 0 0 7fb03cb94a63b385 0 0 /var/run/fctservctl.sock +7fb03cb94a63b385 stream 0 0 0 7fb03cb94a63b2bd 0 0 +7fb03cb94a63d38d stream 0 0 0 7fb03cb94a63aa25 0 0 /var/run/mDNSResponder +7fb03cb94a63aa25 stream 0 0 0 7fb03cb94a63d38d 0 0 +7fb03cb95130c95d stream 0 0 0 7fb03cb95130d1f5 0 0 /var/run/mDNSResponder +7fb03cb95130d1f5 stream 0 0 0 7fb03cb95130c95d 0 0 +7fb03cb945d38a25 stream 0 0 0 7fb03cb945d3a195 0 0 /var/run/mDNSResponder +7fb03cb945d3a195 stream 0 0 0 7fb03cb945d38a25 0 0 +7fb03cb945d3aa2d stream 0 0 0 0 0 0 +7fb03cb95130f5e5 stream 0 0 0 7fb03cb95130e4b5 0 0 /var/run/mDNSResponder +7fb03cb95130e4b5 stream 0 0 0 7fb03cb95130f5e5 0 0 +7fb03cb94d74906d stream 0 0 0 7fb03cb94d746e0d 0 0 +7fb03cb94d746e0d stream 8 0 0 7fb03cb94d74906d 0 0 +7fb03cb937d39325 stream 0 0 0 7fb03cb937d385dd 0 0 +7fb03cb937d385dd stream 0 0 0 7fb03cb937d39325 0 0 +7fb03cb937d3876d stream 0 0 0 7fb03cb937d3a455 0 0 +7fb03cb937d3a455 stream 0 0 0 7fb03cb937d3876d 0 0 +7fb03cb937d37a25 stream 0 0 0 7fb03cb937d386a5 0 0 /var/run/mDNSResponder +7fb03cb937d386a5 stream 0 0 0 7fb03cb937d37a25 0 0 +7fb03cb937d39195 stream 0 0 0 7fb03cb937d38f3d 0 0 +7fb03cb937d38f3d stream 0 0 0 7fb03cb937d39195 0 0 +7fb03cb937d37895 stream 0 0 0 7fb03cb937d37ed5 0 0 +7fb03cb937d37ed5 stream 0 0 0 7fb03cb937d37895 0 0 +7fb03cb937d390cd stream 0 0 0 7fb03cb937d3a38d 0 0 +7fb03cb937d3a38d stream 0 0 0 7fb03cb937d390cd 0 0 +7fb03cb945d3b455 stream 0 0 0 7fb03cb945d3895d 0 0 +7fb03cb945d3895d stream 0 0 0 7fb03cb945d3b455 0 0 +7fb03cb945d392bd stream 0 0 0 7fb03cb945d38e0d 0 0 +7fb03cb945d38e0d stream 0 0 0 7fb03cb945d392bd 0 0 +7fb03cb945d3b135 stream 0 0 0 7fb03cb945d38ed5 0 0 +7fb03cb945d38ed5 stream 0 0 0 7fb03cb945d3b135 0 0 +7fb03cb945d3976d stream 0 0 0 7fb03cb945d3912d 0 0 /var/run/mDNSResponder +7fb03cb945d3912d stream 0 0 0 7fb03cb945d3976d 0 0 +7fb03cb945d391f5 stream 0 0 0 7fb03cb945d39385 0 0 +7fb03cb945d39385 stream 0 0 0 7fb03cb945d391f5 0 0 +7fb03cb945d38c7d stream 0 0 7fb03cb94b87f5d5 0 0 0 /var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS +7fb03cb945d39c1d stream 0 0 0 7fb03cb945d39e75 0 0 /var/run/mDNSResponder +7fb03cb945d39e75 stream 0 0 0 7fb03cb945d39c1d 0 0 +7fb03cb94a63ac7d stream 0 0 0 7fb03cb94a63caf5 0 0 /var/run/mDNSResponder +7fb03cb94a63caf5 stream 0 0 0 7fb03cb94a63ac7d 0 0 +7fb03cb95130d515 stream 0 0 0 7fb03cb95130ce0d 0 0 +7fb03cb95130ce0d stream 0 0 0 7fb03cb95130d515 0 0 +7fb03cb95130caed stream 0 0 0 7fb03cb95130ca25 0 0 +7fb03cb95130ca25 stream 0 0 0 7fb03cb95130caed 0 0 +7fb03cb95130d385 stream 0 0 0 7fb03cb95130f06d 0 0 +7fb03cb95130f06d stream 0 0 0 7fb03cb95130d385 0 0 +7fb03cb95130dc1d stream 0 0 0 7fb03cb95130e7d5 0 0 +7fb03cb95130e7d5 stream 0 0 0 7fb03cb95130dc1d 0 0 +7fb03cb95130ced5 stream 0 0 0 7fb03cb95130f51d 0 0 +7fb03cb95130f51d stream 0 0 0 7fb03cb95130ced5 0 0 +7fb03cb95130df3d stream 0 0 0 7fb03cb95130c7cd 0 0 +7fb03cb95130c7cd stream 0 0 0 7fb03cb95130df3d 0 0 +7fb03cb95130e195 stream 0 0 0 7fb03cb95130e325 0 0 +7fb03cb95130e325 stream 0 0 0 7fb03cb95130e195 0 0 +7fb03cb95130f1fd stream 0 0 0 7fb03cb95130ea2d 0 0 +7fb03cb95130ea2d stream 0 0 0 7fb03cb95130f1fd 0 0 +7fb03cb95130d2bd stream 0 0 0 7fb03cb95130c895 0 0 +7fb03cb95130c895 stream 0 0 0 7fb03cb95130d2bd 0 0 +7fb03cb95130cbb5 stream 0 0 7fb03cb937de855d 0 0 0 /Library/Application Support/LANDesk/tmp/socket/sys +7fb03cb95130d065 stream 0 0 0 7fb03cb95130d5dd 0 0 +7fb03cb95130d5dd stream 0 0 0 7fb03cb95130d065 0 0 +7fb03cb95130ec85 stream 0 0 0 7fb03cb95130ee15 0 0 +7fb03cb95130ee15 stream 0 0 0 7fb03cb95130ec85 0 0 +7fb03cb95130d76d stream 0 0 0 7fb03cb95130d12d 0 0 +7fb03cb95130d12d stream 0 0 0 7fb03cb95130d76d 0 0 +7fb03cb95130ed4d stream 0 0 0 7fb03cb95130eedd 0 0 +7fb03cb95130eedd stream 0 0 0 7fb03cb95130ed4d 0 0 +7fb03cb95130e965 stream 0 0 0 7fb03cb95130e3ed 0 0 /var/run/mDNSResponder +7fb03cb95130e3ed stream 0 0 0 7fb03cb95130e965 0 0 +7fb03cb937d3925d stream 0 0 0 7fb03cb937d39c85 0 0 /var/run/mDNSResponder +7fb03cb937d39c85 stream 0 0 0 7fb03cb937d3925d 0 0 +7fb03cb937d381f5 stream 0 0 0 0 0 0 +7fb03cb935b005e5 stream 0 0 0 7fb03cb935afd895 0 0 /var/run/mDNSResponder +7fb03cb935afd895 stream 0 0 0 7fb03cb935b005e5 0 0 +7fb03cb94d746ed5 stream 0 0 0 7fb03cb94d748195 0 0 /var/run/mDNSResponder +7fb03cb94d748195 stream 0 0 0 7fb03cb94d746ed5 0 0 +7fb03cb94a63ba8d stream 0 0 0 7fb03cb94a63d5e5 0 0 /var/run/mDNSResponder +7fb03cb94a63d5e5 stream 0 0 0 7fb03cb94a63ba8d 0 0 +7fb03cb94a63cc85 stream 0 0 0 7fb03cb94a63a895 0 0 /var/run/mDNSResponder +7fb03cb94a63a895 stream 0 0 0 7fb03cb94a63cc85 0 0 +7fb03cb94a63c965 stream 0 0 0 7fb03cb94a63d51d 0 0 /var/run/mDNSResponder +7fb03cb94a63d51d stream 0 0 0 7fb03cb94a63c965 0 0 +7fb03cb94d747f3d stream 0 0 0 7fb03cb94d7480cd 0 0 /var/run/mDNSResponder +7fb03cb94d7480cd stream 0 0 0 7fb03cb94d747f3d 0 0 +7fb03cb94a63abb5 stream 0 0 0 7fb03cb94a63c7d5 0 0 /var/run/mDNSResponder +7fb03cb94a63c7d5 stream 0 0 0 7fb03cb94a63abb5 0 0 +7fb03cb95130dce5 stream 0 0 0 7fb03cb95130e005 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock +7fb03cb95130e005 stream 0 0 0 7fb03cb95130dce5 0 0 +7fb03cb935b001fd stream 0 0 0 7fb03cb935afdaed 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb935afdaed stream 0 0 0 7fb03cb935b001fd 0 0 +7fb03cb935b0038d stream 0 0 7fb03cb9350ead1d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb935b002c5 stream 0 0 0 7fb03cb935aff0cd 0 0 vpnkit.data.sock +7fb03cb935aff0cd stream 0 0 0 7fb03cb935b002c5 0 0 +7fb03cb935b00135 stream 0 0 0 7fb03cb935afdbb5 0 0 backend-for-guest.sock +7fb03cb935afdbb5 stream 0 0 0 7fb03cb935b00135 0 0 +7fb03cb935affaf5 stream 0 0 0 7fb03cb935affd4d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock +7fb03cb935affd4d stream 0 0 0 7fb03cb935affaf5 0 0 +7fb03cb935affa2d stream 0 0 0 7fb03cb935affe15 0 0 vms/0/00000002.000005f4 +7fb03cb935affe15 stream 0 0 0 7fb03cb935affa2d 0 0 +7fb03cb935b0006d stream 0 0 0 7fb03cb935afffa5 0 0 vms/0/connect +7fb03cb935afffa5 stream 0 0 0 7fb03cb935b0006d 0 0 +7fb03cb935affedd stream 0 0 0 7fb03cb935afdc7d 0 0 vms/0/00000002.000005f4 +7fb03cb935afdc7d stream 0 0 0 7fb03cb935affedd 0 0 +7fb03cb935afdd45 stream 0 0 0 7fb03cb935affc85 0 0 vms/0/connect +7fb03cb935affc85 stream 0 0 0 7fb03cb935afdd45 0 0 +7fb03cb935afde0d stream 0 0 0 7fb03cb935affbbd 0 0 vms/0/00000002.000005f4 +7fb03cb935affbbd stream 0 0 0 7fb03cb935afde0d 0 0 +7fb03cb935afded5 stream 0 0 0 7fb03cb935aff965 0 0 vms/0/connect +7fb03cb935aff965 stream 0 0 0 7fb03cb935afded5 0 0 +7fb03cb935aff89d stream 0 0 0 7fb03cb935aff7d5 0 0 vms/0/00000002.000005f4 +7fb03cb935aff7d5 stream 0 0 0 7fb03cb935aff89d 0 0 +7fb03cb935afdf9d stream 0 0 0 7fb03cb935aff70d 0 0 vms/0/connect +7fb03cb935aff70d stream 0 0 0 7fb03cb935afdf9d 0 0 +7fb03cb935aff645 stream 0 0 0 7fb03cb935aff57d 0 0 vms/0/connect +7fb03cb935aff57d stream 0 0 0 7fb03cb935aff645 0 0 +7fb03cb935afe065 stream 0 0 0 7fb03cb935aff4b5 0 0 vms/0/00000002.000005f4 +7fb03cb935aff4b5 stream 0 0 0 7fb03cb935afe065 0 0 +7fb03cb935aff3ed stream 0 0 7fb03cb935cd2d9d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock +7fb03cb935aff325 stream 0 0 7fb03cb93609fca5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock +7fb03cb935aff25d stream 0 0 7fb03cb94cddc36d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock +7fb03cb935afe12d stream 0 0 0 7fb03cb935afe1f5 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003 +7fb03cb935afe1f5 stream 0 0 0 7fb03cb935afe12d 0 0 +7fb03cb935aff195 stream 0 0 0 7fb03cb935afe515 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock +7fb03cb935afe515 stream 0 0 0 7fb03cb935aff195 0 0 +7fb03cb935afe44d stream 0 0 7fb03cb9350eac25 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock +7fb03cb935afe8fd stream 0 0 0 7fb03cb935afedad 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf +7fb03cb935afedad stream 0 0 0 7fb03cb935afe8fd 0 0 +7fb03cb935aff005 stream 0 0 7fb03cb938b763e5 0 0 0 vms/0/00000003.000005f5 +7fb03cb935afef3d stream 0 0 7fb03cb938b761f5 0 0 0 vms/0/00000003.00000948 +7fb03cb935afe5dd stream 0 0 7fb03cb938b760fd 0 0 0 vms/0/connect +7fb03cb935afe6a5 stream 0 0 0 7fb03cb935afe76d 0 0 vpnkit.eth.sock +7fb03cb935afe76d stream 0 0 0 7fb03cb935afe6a5 0 0 +7fb03cb935afee75 stream 0 0 7fb03cb9360a12ed 0 0 0 backend.sock +7fb03cb935afece5 stream 0 0 7fb03cb935cd29bd 0 0 0 filesystem-export.sock +7fb03cb935afec1d stream 0 0 7fb03cb935cd43e5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003 +7fb03cb935afe9c5 stream 0 0 7fb03cb935cd40fd 0 0 0 filesystem-volume.sock +7fb03cb935afeb55 stream 0 0 7fb03cb9350eaa35 0 0 0 docker-api.sock +7fb03cb935afea8d stream 0 0 7fb03cb9350eab2d 0 0 0 backend-for-guest.sock +7fb03cb93501b065 stream 0 0 7fb03cb9350ea36d 0 0 0 vpnkit.data.sock +7fb03cb937d37bb5 stream 0 0 7fb03cb9350ea465 0 0 0 vpnkit.port.sock +7fb03cb937d3a5e5 stream 0 0 7fb03cb950a0dca5 0 0 0 docker.sock +7fb03cb937d3a51d stream 0 0 7fb03cb950ab1005 0 0 0 vpnkit.pcap.sock +7fb03cb94d7495e5 stream 0 0 7fb03cb950ab0f0d 0 0 0 vpnkit.diag.sock +7fb03cb94d746895 stream 0 0 7fb03cb950aafd9d 0 0 0 vpnkit.eth.sock +7fb03cb94d7467cd stream 0 0 7fb03cb950ab0085 0 0 0 osxfs.sock +7fb03cb94d746bb5 stream 0 0 7fb03cb950ab0a35 0 0 0 vms/0/00000002.000005f4 +7fb03cb94d7496ad stream 0 0 7fb03cb950a1dab5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock +7fb03cb94d7492c5 stream 0 0 0 7fb03cb94d746aed 0 0 /var/run/mDNSResponder +7fb03cb94d746aed stream 0 0 0 7fb03cb94d7492c5 0 0 +7fb03cb94d748d4d stream 0 0 0 7fb03cb94d7472bd 0 0 /var/run/fctservctl.sock +7fb03cb94d7472bd stream 0 0 0 7fb03cb94d748d4d 0 0 +7fb03cb94d748c85 stream 0 0 0 7fb03cb94d747385 0 0 /var/run/fctservctl.sock +7fb03cb94d747385 stream 0 0 0 7fb03cb94d748c85 0 0 +7fb03cb94d748af5 stream 0 0 0 7fb03cb94d747835 0 0 /var/run/mDNSResponder +7fb03cb94d747835 stream 0 0 0 7fb03cb94d748af5 0 0 +7fb03cb94d748a2d stream 0 0 0 7fb03cb94d74776d 0 0 /var/run/fctservctl.sock +7fb03cb94d74776d stream 145 0 0 7fb03cb94d748a2d 0 0 +7fb03cb94d74889d stream 0 0 0 7fb03cb94d7478fd 0 0 /var/run/fctservctl.sock +7fb03cb94d7478fd stream 0 0 0 7fb03cb94d74889d 0 0 +7fb03cb94d74870d stream 0 0 0 7fb03cb94d7487d5 0 0 /var/run/fctservctl.sock +7fb03cb94d7487d5 stream 0 0 0 7fb03cb94d74870d 0 0 +7fb03cb94d748645 stream 0 0 0 7fb03cb94d7479c5 0 0 /var/run/fctservctl.sock +7fb03cb94d7479c5 stream 0 0 0 7fb03cb94d748645 0 0 +7fb03cb94d747a8d stream 0 0 0 7fb03cb94d74857d 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe +7fb03cb94d74857d stream 0 0 0 7fb03cb94d747a8d 0 0 +7fb03cb94d7484b5 stream 0 0 0 7fb03cb94d747b55 0 0 /var/run/fctservctl.sock +7fb03cb94d747b55 stream 0 0 0 7fb03cb94d7484b5 0 0 +7fb03cb94d747c1d stream 0 0 0 7fb03cb94d748325 0 0 /var/run/fctservctl.sock +7fb03cb94d748325 stream 0 0 0 7fb03cb94d747c1d 0 0 +7fb03cb94d7483ed stream 0 0 7fb03cb94db01655 0 0 0 /tmp/fctvpnctl.sock_501 +7fb03cb94a63bc1d stream 0 0 0 7fb03cb94a63c645 0 0 /var/run/mDNSResponder +7fb03cb94a63c645 stream 0 0 0 7fb03cb94a63bc1d 0 0 +7fb03cb94a63bce5 stream 0 0 0 7fb03cb94a63c57d 0 0 /var/run/mDNSResponder +7fb03cb94a63c57d stream 0 0 0 7fb03cb94a63bce5 0 0 +7fb03cb94a63bdad stream 0 0 0 7fb03cb94a63c4b5 0 0 /var/run/mDNSResponder +7fb03cb94a63c4b5 stream 0 0 0 7fb03cb94a63bdad 0 0 +7fb03cb94a63be75 stream 0 0 0 7fb03cb94a63c3ed 0 0 /var/run/mDNSResponder +7fb03cb94a63c3ed stream 0 0 0 7fb03cb94a63be75 0 0 +7fb03cb94a63bf3d stream 0 0 0 7fb03cb94a63c325 0 0 /var/run/mDNSResponder +7fb03cb94a63c325 stream 0 0 0 7fb03cb94a63bf3d 0 0 +7fb03cb94a63c195 stream 0 0 0 7fb03cb94a63c005 0 0 /var/run/mDNSResponder +7fb03cb94a63c005 stream 0 0 0 7fb03cb94a63c195 0 0 +7fb03cb94a63c0cd stream 0 0 0 7fb03cb94a63c25d 0 0 /var/run/mDNSResponder +7fb03cb94a63c25d stream 0 0 0 7fb03cb94a63c0cd 0 0 +7fb03cb945d3ad4d stream 0 0 0 7fb03cb93501b835 0 0 /var/run/mDNSResponder +7fb03cb945d3ae15 stream 0 0 0 7fb03cb937d377cd 0 0 /var/run/mDNSResponder +7fb03cb93501b835 stream 0 0 0 7fb03cb945d3ad4d 0 0 +7fb03cb937d377cd stream 0 0 0 7fb03cb945d3ae15 0 0 +7fb03cb937d3a6ad stream 0 0 0 7fb03cb937d3a06d 0 0 /var/run/mDNSResponder +7fb03cb937d3a06d stream 0 0 0 7fb03cb937d3a6ad 0 0 +7fb03cb945d387cd stream 0 0 7fb03cb94d0e4a35 0 0 0 /Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock +7fb03cb937d3812d stream 0 0 0 7fb03cb937d3a2c5 0 0 /var/run/mDNSResponder +7fb03cb937d3a2c5 stream 0 0 0 7fb03cb937d3812d 0 0 +7fb03cb945d395dd stream 0 0 0 7fb03cb945d39515 0 0 /var/run/mDNSResponder +7fb03cb945d39515 stream 0 0 0 7fb03cb945d395dd 0 0 +7fb03cb945d39ce5 stream 0 0 0 7fb03cb945d39dad 0 0 /var/run/mDNSResponder +7fb03cb945d39dad stream 0 0 0 7fb03cb945d39ce5 0 0 +7fb03cb937d39e15 stream 0 0 0 7fb03cb937d39645 0 0 /var/run/mDNSResponder +7fb03cb937d39645 stream 0 0 0 7fb03cb937d39e15 0 0 +7fb03cb937d39af5 stream 0 0 7fb03cb9418d26cd 0 0 0 /var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket +7fb03cb93ceaeaed stream 0 0 0 7fb03cb93ceb151d 0 0 /var/run/mDNSResponder +7fb03cb93ceb151d stream 0 0 0 7fb03cb93ceaeaed 0 0 +7fb03cb93ceae95d stream 0 0 0 7fb03cb93ceb138d 0 0 /var/run/mDNSResponder +7fb03cb93ceb138d stream 0 0 0 7fb03cb93ceae95d 0 0 +7fb03cb93ceb12c5 stream 0 0 0 7fb03cb93ceaed45 0 0 /var/run/mDNSResponder +7fb03cb93ceaed45 stream 0 0 0 7fb03cb93ceb12c5 0 0 +7fb03cb93ceaee0d stream 0 0 0 7fb03cb93ceaeed5 0 0 /var/run/mDNSResponder +7fb03cb93ceaeed5 stream 0 0 0 7fb03cb93ceaee0d 0 0 +7fb03cb93ceb106d stream 0 0 0 7fb03cb93ceaef9d 0 0 /var/run/mDNSResponder +7fb03cb93ceaef9d stream 0 0 0 7fb03cb93ceb106d 0 0 +7fb03cb93ceaf2bd stream 0 0 0 7fb03cb93ceb0fa5 0 0 /var/run/mDNSResponder +7fb03cb93ceb0fa5 stream 0 0 0 7fb03cb93ceaf2bd 0 0 +7fb03cb93ceaf515 stream 0 0 0 7fb03cb93ceb0e15 0 0 +7fb03cb93ceb0e15 stream 0 0 0 7fb03cb93ceaf515 0 0 +7fb03cb93ceaf5dd stream 0 0 0 7fb03cb93ceb0d4d 0 0 +7fb03cb93ceb0d4d stream 0 0 0 7fb03cb93ceaf5dd 0 0 +7fb03cb93ceb0c85 stream 0 0 0 7fb03cb93ceaf6a5 0 0 +7fb03cb93ceaf6a5 stream 0 0 0 7fb03cb93ceb0c85 0 0 +7fb03cb93ceaf76d stream 0 0 0 7fb03cb93ceb0bbd 0 0 +7fb03cb93ceb0bbd stream 0 0 0 7fb03cb93ceaf76d 0 0 +7fb03cb93ceb0af5 stream 0 0 0 7fb03cb93ceafa8d 0 0 /var/run/mDNSResponder +7fb03cb93ceafa8d stream 0 0 0 7fb03cb93ceb0af5 0 0 +7fb03cb93ceb057d stream 0 0 0 7fb03cb93ceb070d 0 0 /var/run/mDNSResponder +7fb03cb93ceb070d stream 0 0 0 7fb03cb93ceb057d 0 0 +7fb03cb93ceafce5 stream 0 0 0 7fb03cb93ceaf9c5 0 0 /var/run/mDNSResponder +7fb03cb93ceaf9c5 stream 0 0 0 7fb03cb93ceafce5 0 0 +7fb03cb93ceb025d stream 0 0 7fb03cb93ea4fca5 0 0 0 /tmp/fctvpnctl.sock +7fb03cb93ceb0325 stream 0 0 7fb03cb93ea5074d 0 0 0 /var/tmp/filesystemui.socket +7fb03cb93ceafb55 stream 0 0 7fb03cb93ea1cd1d 0 0 0 /private/tmp/com.apple.launchd.WbUfpjQ9cD/Render +7fb03cb93ceb00cd stream 0 0 7fb03cb93ea42275 0 0 0 /private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners +7fb03cb937d394b5 stream 0 0 7fb03cb938289085 0 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe +7fb03cb93501a895 stream 0 0 0 7fb03cb93501d51d 0 0 /var/run/mDNSResponder +7fb03cb93501d51d stream 0 0 0 7fb03cb93501a895 0 0 +7fb03cb93501aa25 stream 0 0 0 7fb03cb93501aaed 0 0 /var/run/mDNSResponder +7fb03cb93501aaed stream 0 0 0 7fb03cb93501aa25 0 0 +7fb03cb93501d38d stream 0 0 0 7fb03cb93501d2c5 0 0 /var/run/mDNSResponder +7fb03cb93501d2c5 stream 0 0 0 7fb03cb93501d38d 0 0 +7fb03cb93501abb5 stream 0 0 0 7fb03cb93501d1fd 0 0 /var/run/mDNSResponder +7fb03cb93501d1fd stream 0 0 0 7fb03cb93501abb5 0 0 +7fb03cb93501aed5 stream 0 0 0 7fb03cb93501ae0d 0 0 /var/run/mDNSResponder +7fb03cb93501ae0d stream 0 0 0 7fb03cb93501aed5 0 0 +7fb03cb93501b44d stream 0 0 0 7fb03cb93501cedd 0 0 /var/run/mDNSResponder +7fb03cb93501cedd stream 0 0 0 7fb03cb93501b44d 0 0 +7fb03cb93501d06d stream 0 0 0 7fb03cb93501b385 0 0 +7fb03cb93501b385 stream 0 0 0 7fb03cb93501d06d 0 0 +7fb03cb93501cfa5 stream 0 0 7fb03cb93763e7cd 0 0 0 /var/run/displaypolicyd/state +7fb03cb93501b76d stream 0 0 7fb03cb936ea7d9d 0 0 0 /var/run/pppconfd +7fb03cb93501c965 stream 0 0 7fb03cb9355ec3e5 0 0 0 /var/run/epctrl.sock +7fb03cb93501c89d stream 0 0 7fb03cb9355ec1f5 0 0 0 /var/run/fctvpnctrl.sock +7fb03cb93501c7d5 stream 0 0 7fb03cb9355ec0fd 0 0 0 /var/run/fctservctl.sock +7fb03cb93501c70d stream 0 0 7fb03cb9355ec005 0 0 0 /var/run/com.docker.vmnetd.sock +7fb03cb93501c645 stream 0 0 7fb03cb93557e845 0 0 0 /var/rpc/ncalrpc/srvsvc +7fb03cb93501b9c5 stream 0 0 7fb03cb93557e36d 0 0 0 /var/rpc/ncacn_np/srvsvc +7fb03cb93501c57d stream 0 0 7fb03cb93557e55d 0 0 0 /var/run/usbmuxd +7fb03cb93501c4b5 stream 0 0 7fb03cb93557e655 0 0 0 /var/rpc/ncalrpc/wkssvc +7fb03cb93501ba8d stream 0 0 7fb03cb93557e74d 0 0 0 /var/rpc/ncacn_np/wkssvc +7fb03cb93501c3ed stream 0 0 7fb03cb9355617cd 0 0 0 /var/rpc/ncacn_np/mdssvc +7fb03cb93501c325 stream 0 0 7fb03cb9355636cd 0 0 0 /var/rpc/ncalrpc/lsarpc +7fb03cb93501c25d stream 0 0 7fb03cb9355618c5 0 0 0 /var/rpc/ncacn_np/lsarpc +7fb03cb93501bb55 stream 0 0 7fb03cb9355635d5 0 0 0 /var/run/mDNSResponder +7fb03cb93501bc1d stream 0 0 7fb03cb9355634dd 0 0 0 /var/run/systemkeychaincheck.socket +7fb03cb93501bce5 stream 0 0 7fb03cb935561ab5 0 0 0 /private/var/run/.sim_diagnosticd_socket +7fb03cb93501bdad stream 0 0 7fb03cb935561bad 0 0 0 /var/run/portmap.socket +7fb03cb93501be75 stream 0 0 7fb03cb935511d1d 0 0 0 /var/run/vpncontrol.sock +7fb03cb93501bf3d stream 0 0 7fb03cb9354fd085 0 0 0 /var/rpc/ncalrpc/NETLOGON +7fb03cb93501c005 stream 0 0 7fb03cb9354e58c5 0 0 0 /private/var/run/cupsd +7fb03cb94a63b065 dgram 0 0 0 7fb03cb94a63b9c5 7fb03cb94a63b9c5 0 +7fb03cb94a63b9c5 dgram 0 0 0 7fb03cb94a63b065 7fb03cb94a63b065 0 +7fb03cb945d3afa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63ad45 +7fb03cb94a63ad45 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63af9d +7fb03cb94a63af9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceae7cd +7fb03cb93ceae7cd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3b51d +7fb03cb945d3b51d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3a3ed +7fb03cb945d3a3ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3989d +7fb03cb937d3989d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63b76d +7fb03cb94a63b76d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130d44d +7fb03cb95130d44d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130cf9d +7fb03cb95130cf9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501d6ad +7fb03cb94d7491fd dgram 0 0 0 7fb03cb94d7476a5 7fb03cb94d7476a5 0 +7fb03cb94d7476a5 dgram 0 0 0 7fb03cb94d7491fd 7fb03cb94d7491fd 0 +7fb03cb93501d6ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63d6ad +7fb03cb94d748005 dgram 0 0 0 7fb03cb94d749455 7fb03cb94d749455 0 +7fb03cb94d749455 dgram 0 0 0 7fb03cb94d748005 7fb03cb94d748005 0 +7fb03cb94d7475dd dgram 0 0 0 7fb03cb94d747065 7fb03cb94d747065 0 +7fb03cb94d747065 dgram 0 0 0 7fb03cb94d7475dd 7fb03cb94d7475dd 0 +7fb03cb93501a95d dgram 0 0 0 7fb03cb93501d455 7fb03cb93501d455 0 +7fb03cb93501d455 dgram 0 0 0 7fb03cb93501a95d 7fb03cb93501a95d 0 +7fb03cb95130db55 dgram 0 0 0 7fb03cb95130ebbd 7fb03cb95130ebbd 0 +7fb03cb95130ebbd dgram 0 0 0 7fb03cb95130db55 7fb03cb95130db55 0 +7fb03cb94a63d6ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74938d +7fb03cb94d74938d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d38a8d +7fb03cb937d38a8d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130d835 +7fb03cb95130d835 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d746c7d +7fb03cb945d3aedd dgram 0 0 0 7fb03cb945d3b6ad 7fb03cb945d3b6ad 0 +7fb03cb945d3b6ad dgram 0 0 0 7fb03cb945d3aedd 7fb03cb945d3aedd 0 +7fb03cb94d746c7d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74712d +7fb03cb94d74712d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39edd +7fb03cb937d39edd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d38dad +7fb03cb937d38dad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63b12d +7fb03cb94a63b12d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130e57d +7fb03cb95130e57d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74951d +7fb03cb94d74951d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d749135 +7fb03cb94d749135 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb15e5 +7fb03cb93ceb15e5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceae895 +7fb03cb93ceae895 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb16ad +7fb03cb93ceb16ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3a1fd +7fb03cb937d3a1fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d39065 +7fb03cb945d39065 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d38f9d +7fb03cb945d38f9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d39a8d +7fb03cb945d399c5 dgram 0 0 0 7fb03cb945d3a005 7fb03cb945d3a005 0 +7fb03cb945d3a005 dgram 0 0 0 7fb03cb945d399c5 7fb03cb945d399c5 0 +7fb03cb945d39b55 dgram 0 0 0 7fb03cb945d39f3d 7fb03cb945d39f3d 0 +7fb03cb945d39f3d dgram 0 0 0 7fb03cb945d39b55 7fb03cb945d39b55 0 +7fb03cb945d39a8d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d397d5 +7fb03cb937d37d45 dgram 0 0 0 7fb03cb937d37e0d 7fb03cb937d37e0d 0 +7fb03cb937d37e0d dgram 0 0 0 7fb03cb937d37d45 7fb03cb937d37d45 0 +7fb03cb937d397d5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb11fd +7fb03cb93ceb11fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf065 +7fb03cb93ceaf065 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0edd +7fb03cb93ceb0edd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf385 +7fb03cb93ceaf12d dgram 0 0 0 7fb03cb93ceaf1f5 7fb03cb93ceaf1f5 0 +7fb03cb93ceaf1f5 dgram 0 0 0 7fb03cb93ceaf12d 7fb03cb93ceaf12d 0 +7fb03cb93ceaf385 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0965 +7fb03cb93ceb0965 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0a2d +7fb03cb93ceb0a2d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf835 +7fb03cb93ceaf835 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf8fd +7fb03cb93ceaf8fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceafdad +7fb03cb93ceafdad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb07d5 +7fb03cb93ceb07d5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb089d +7fb03cb93ceb0645 dgram 0 0 0 7fb03cb93ceafe75 7fb03cb93ceafe75 0 +7fb03cb93ceafe75 dgram 0 0 0 7fb03cb93ceb0645 7fb03cb93ceb0645 0 +7fb03cb93ceb089d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceafc1d +7fb03cb93ceb0195 dgram 0 0 0 7fb03cb93ceb0005 7fb03cb93ceb0005 0 +7fb03cb93ceb0005 dgram 0 0 0 7fb03cb93ceb0195 7fb03cb93ceb0195 0 +7fb03cb93ceafc1d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb03ed +7fb03cb93ceb03ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39fa5 +7fb03cb937d39a2d dgram 0 0 0 7fb03cb937d39bbd 7fb03cb937d39bbd 0 +7fb03cb937d39bbd dgram 0 0 0 7fb03cb937d39a2d 7fb03cb937d39a2d 0 +7fb03cb937d39fa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39965 +7fb03cb937d38065 dgram 0 0 0 7fb03cb937d37c7d 7fb03cb937d37c7d 0 +7fb03cb937d37c7d dgram 0 0 0 7fb03cb937d38065 7fb03cb937d38065 0 +7fb03cb937d39965 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d37f9d +7fb03cb937d37f9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d393ed +7fb03cb937d393ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3970d +7fb03cb937d3970d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501d135 +7fb03cb937d382bd dgram 0 0 0 7fb03cb937d3957d 7fb03cb937d3957d 0 +7fb03cb937d3957d dgram 0 0 0 7fb03cb937d382bd 7fb03cb937d382bd 0 +7fb03cb937d38c1d dgram 0 0 0 7fb03cb937d38ce5 7fb03cb937d38ce5 0 +7fb03cb937d38ce5 dgram 0 0 0 7fb03cb937d38c1d 7fb03cb937d38c1d 0 +7fb03cb93501d135 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cd4d +7fb03cb93501cd4d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cc85 +7fb03cb93501b1f5 dgram 0 0 0 7fb03cb93501b2bd 7fb03cb93501b2bd 0 +7fb03cb93501b2bd dgram 0 0 0 7fb03cb93501b1f5 7fb03cb93501b1f5 0 +7fb03cb93501ce15 dgram 0 0 0 7fb03cb93501b515 7fb03cb93501b515 0 +7fb03cb93501b515 dgram 0 0 0 7fb03cb93501ce15 7fb03cb93501ce15 0 +7fb03cb93501b6a5 dgram 0 0 0 7fb03cb93501caf5 7fb03cb93501caf5 0 +7fb03cb93501caf5 dgram 0 0 0 7fb03cb93501b6a5 7fb03cb93501b6a5 0 +7fb03cb93501cc85 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cbbd +7fb03cb93501cbbd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501c0cd +7fb03cb93501b8fd dgram 0 0 0 7fb03cb93501ca2d 7fb03cb93501ca2d 0 +7fb03cb93501ca2d dgram 0 0 0 7fb03cb93501b8fd 7fb03cb93501b8fd 0 +7fb03cb93501c0cd dgram 0 0 0 7fb03cb93501c195 0 0 +7fb03cb93501c195 dgram 0 0 7fb03cb934ff43e5 0 7fb03cb945d3afa5 0 /private//var/run/syslog +Registered kernel control modules +id flags pcbcount rcvbuf sndbuf name + 1 9 0 131072 131072 com.apple.flow-divert + 2 1 1 16384 2048 com.apple.nke.sockwall + 3 9 0 524288 524288 com.apple.content-filter + 4 1 0 65536 65536 com.apple.net.necp_control + 5 1 12 65536 65536 com.apple.net.netagent + 6 9 4 524288 524288 com.apple.net.utun_control + 7 1 0 65536 65536 com.apple.net.ipsec_control + 8 0 74 8192 2048 com.apple.netsrc + 9 18 4 8192 2048 com.apple.network.statistics + a 5 0 8192 2048 com.apple.network.tcp_ccdebug + b 1 0 8192 2048 com.apple.network.advisory + c 4 0 65536 2048 com.apple.uart.BLTH + d 4 0 8192 2048 com.apple.uart.sk.BLTH + e 0 0 8192 8192 com.apple.fileutil.kext.stateful.ctl + f 0 0 8192 2048 com.apple.fileutil.kext.stateless.ctl + 17 5 1 32768 2048 com.fortinet.fct.kext.fwnke + 18 5 1 8192 2048 com.fortinet.kext.avkern2 +Active kernel event sockets +Proto Recv-Q Send-Q vendor class subcla +kevt 0 0 1 1 0 +kevt 0 0 1 4 0 +kevt 0 0 1 1 0 +kevt 0 0 1 6 1 +kevt 0 0 1 6 1 +kevt 0 0 1 6 1 +kevt 0 0 1 1 11 +kevt 0 0 1 6 1 +kevt 0 0 1 6 1 +kevt 0 0 1 6 1 +kevt 0 0 1 6 1 +kevt 0 0 1 6 1 +kevt 0 0 1 6 1 +kevt 0 0 1 6 1 +kevt 0 0 1 6 1 +kevt 0 0 1 6 1 +kevt 0 0 1 1 6 +kevt 0 0 1 1 1 +kevt 0 0 1 6 1 +kevt 0 0 1 1 2 +kevt 0 0 1 1 10 +kevt 0 0 1000 5 11 +kevt 0 0 1 1 7 +kevt 0 0 1 1 1 +kevt 0 0 1 1 2 +kevt 0 0 1 3 3 +kevt 0 0 1 1 0 +Active kernel control sockets +Proto Recv-Q Send-Q unit id name +kctl 0 0 1 2 com.apple.nke.sockwall +kctl 0 0 1 5 com.apple.net.netagent +kctl 0 0 2 5 com.apple.net.netagent +kctl 0 0 3 5 com.apple.net.netagent +kctl 0 0 4 5 com.apple.net.netagent +kctl 0 0 5 5 com.apple.net.netagent +kctl 0 0 6 5 com.apple.net.netagent +kctl 0 0 7 5 com.apple.net.netagent +kctl 0 0 8 5 com.apple.net.netagent +kctl 0 0 9 5 com.apple.net.netagent +kctl 0 0 10 5 com.apple.net.netagent +kctl 0 0 11 5 com.apple.net.netagent +kctl 0 0 12 5 com.apple.net.netagent +kctl 0 0 1 6 com.apple.net.utun_control +kctl 0 0 2 6 com.apple.net.utun_control +kctl 0 0 3 6 com.apple.net.utun_control +kctl 0 0 4 6 com.apple.net.utun_control +kctl 0 0 1 8 com.apple.netsrc +kctl 0 0 2 8 com.apple.netsrc +kctl 0 0 3 8 com.apple.netsrc +kctl 0 0 4 8 com.apple.netsrc +kctl 0 0 5 8 com.apple.netsrc +kctl 0 0 6 8 com.apple.netsrc +kctl 0 0 7 8 com.apple.netsrc +kctl 0 0 8 8 com.apple.netsrc +kctl 0 0 9 8 com.apple.netsrc +kctl 0 0 10 8 com.apple.netsrc +kctl 0 0 11 8 com.apple.netsrc +kctl 0 0 12 8 com.apple.netsrc +kctl 0 0 13 8 com.apple.netsrc +kctl 0 0 14 8 com.apple.netsrc +kctl 0 0 15 8 com.apple.netsrc +kctl 0 0 16 8 com.apple.netsrc +kctl 0 0 17 8 com.apple.netsrc +kctl 0 0 18 8 com.apple.netsrc +kctl 0 0 19 8 com.apple.netsrc +kctl 0 0 20 8 com.apple.netsrc +kctl 0 0 21 8 com.apple.netsrc +kctl 0 0 22 8 com.apple.netsrc +kctl 0 0 23 8 com.apple.netsrc +kctl 0 0 24 8 com.apple.netsrc +kctl 0 0 25 8 com.apple.netsrc +kctl 0 0 26 8 com.apple.netsrc +kctl 0 0 27 8 com.apple.netsrc +kctl 0 0 28 8 com.apple.netsrc +kctl 0 0 29 8 com.apple.netsrc +kctl 0 0 30 8 com.apple.netsrc +kctl 0 0 31 8 com.apple.netsrc +kctl 0 0 32 8 com.apple.netsrc +kctl 0 0 33 8 com.apple.netsrc +kctl 0 0 34 8 com.apple.netsrc +kctl 0 0 35 8 com.apple.netsrc +kctl 0 0 36 8 com.apple.netsrc +kctl 0 0 37 8 com.apple.netsrc +kctl 0 0 38 8 com.apple.netsrc +kctl 0 0 39 8 com.apple.netsrc +kctl 0 0 40 8 com.apple.netsrc +kctl 0 0 41 8 com.apple.netsrc +kctl 0 0 42 8 com.apple.netsrc +kctl 0 0 43 8 com.apple.netsrc +kctl 0 0 44 8 com.apple.netsrc +kctl 0 0 45 8 com.apple.netsrc +kctl 0 0 46 8 com.apple.netsrc +kctl 0 0 47 8 com.apple.netsrc +kctl 0 0 48 8 com.apple.netsrc +kctl 0 0 49 8 com.apple.netsrc +kctl 0 0 50 8 com.apple.netsrc +kctl 0 0 51 8 com.apple.netsrc +kctl 0 0 52 8 com.apple.netsrc +kctl 0 0 53 8 com.apple.netsrc +kctl 0 0 54 8 com.apple.netsrc +kctl 0 0 55 8 com.apple.netsrc +kctl 0 0 56 8 com.apple.netsrc +kctl 0 0 57 8 com.apple.netsrc +kctl 0 0 58 8 com.apple.netsrc +kctl 0 0 59 8 com.apple.netsrc +kctl 0 0 60 8 com.apple.netsrc +kctl 0 0 61 8 com.apple.netsrc +kctl 0 0 62 8 com.apple.netsrc +kctl 0 0 63 8 com.apple.netsrc +kctl 0 0 64 8 com.apple.netsrc +kctl 0 0 65 8 com.apple.netsrc +kctl 0 0 66 8 com.apple.netsrc +kctl 0 0 67 8 com.apple.netsrc +kctl 0 0 68 8 com.apple.netsrc +kctl 0 0 69 8 com.apple.netsrc +kctl 0 0 70 8 com.apple.netsrc +kctl 0 0 71 8 com.apple.netsrc +kctl 0 0 72 8 com.apple.netsrc +kctl 0 0 74 8 com.apple.netsrc +kctl 0 0 77 8 com.apple.netsrc +kctl 0 0 1 9 com.apple.network.statistics +kctl 0 0 2 9 com.apple.network.statistics +kctl 0 0 3 9 com.apple.network.statistics +kctl 0 0 4 9 com.apple.network.statistics +kctl 0 0 1 23 com.fortinet.fct.kext.fwnke +kctl 0 0 2 24 com.fortinet.kext.avkern2 diff --git a/tests/test_netstat.py b/tests/test_netstat.py index fce4042f..3bbe8bf7 100644 --- a/tests/test_netstat.py +++ b/tests/test_netstat.py @@ -43,6 +43,15 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/netstat.out'), 'r', encoding='utf-8') as f: self.fedora32_netstat = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat.out'), 'r', encoding='utf-8') as f: + self.osx_14_6_netstat = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-An.out'), 'r', encoding='utf-8') as f: + self.osx_14_6_netstat_An = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-Abn.out'), 'r', encoding='utf-8') as f: + self.osx_14_6_netstat_Abn = f.read() + # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat.json'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_json = json.loads(f.read()) @@ -77,6 +86,15 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/netstat.json'), 'r', encoding='utf-8') as f: self.fedora32_netstat_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat.json'), 'r', encoding='utf-8') as f: + self.osx_14_6_netstat_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-An.json'), 'r', encoding='utf-8') as f: + self.osx_14_6_netstat_An_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-Abn.json'), 'r', encoding='utf-8') as f: + self.osx_14_6_netstat_Abn_json = json.loads(f.read()) + def test_netstat_centos_7_7(self): """ Test 'netstat' on Centos 7.7 @@ -143,6 +161,24 @@ class MyTests(unittest.TestCase): """ self.assertEqual(jc.parsers.netstat.parse(self.fedora32_netstat, quiet=True), self.fedora32_netstat_json) + def test_netstat_osx_16_4(self): + """ + Test 'netstat' on OSX 16.4 + """ + self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat, quiet=True), self.osx_14_6_netstat_json) + + def test_netstat_An_osx_16_4(self): + """ + Test 'netstat -An' on OSX 16.4 + """ + self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat_An, quiet=True), self.osx_14_6_netstat_An_json) + + def test_netstat_Abn_osx_16_4(self): + """ + Test 'netstat -Abn' on OSX 16.4 + """ + self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat_Abn, quiet=True), self.osx_14_6_netstat_Abn_json) + if __name__ == '__main__': unittest.main() From 2867593e7aa12299686e2c6aa0f2a79a9b550b53 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 20 May 2020 17:28:44 -0700 Subject: [PATCH 32/52] changelog update --- changelog.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/changelog.txt b/changelog.txt index a5e35372..5b71e925 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,11 @@ jc changelog +202005xx v1.11.0 +- Add dmidecode command parser +- Update netstat command parser to add OSX support +- Add netstat -r command parser +- Add netstat -i command parser + 20200511 v1.10.12 - Remove shebang from jc/cli.py for Fedora packaging From e5d561baeecf1fd83a884b3cd9d322762f750dfb Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 20 May 2020 17:31:51 -0700 Subject: [PATCH 33/52] add multipath condition for osx detection --- jc/parsers/netstat.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index b7f495e4..96a0cd88 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -432,6 +432,7 @@ def parse(data, raw=False, quiet=False): # is this from OSX? if cleandata[0] == 'Active Internet connections' \ or cleandata[0] == 'Active Internet connections (including servers)' \ + or cleandata[0] == 'Active Multipath Internet connections' \ or cleandata[0] == 'Active LOCAL (UNIX) domain sockets' \ or cleandata[0] == 'Registered kernel control modules' \ or cleandata[0] == 'Active kernel event sockets' \ From 931b3d2b836b251590497f4cfa65f106762086c1 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 20 May 2020 19:56:28 -0700 Subject: [PATCH 34/52] formatting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8af6768d..6201c691 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ # JC JSON CLI output utility -`jc` JSONifies the output of many standard linux CLI tools and file-types for easier parsing in scripts. See the [**Parsers**](#parsers) section for supported commands and file-types. +`jc` JSONifies the output of many linux CLI tools and file-types for easier parsing in scripts. See the [**Parsers**](#parsers) section for supported commands and file-types. This allows further command-line processing of output with tools like `jq` by piping commands: ``` From e0c1c87f549eee000b93b5f5a3e8d0b052eb7d32 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 21 May 2020 09:07:01 -0700 Subject: [PATCH 35/52] formatting --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6201c691..c81b05c9 100644 --- a/README.md +++ b/README.md @@ -177,13 +177,9 @@ or JC_COLORS=default,default,default,default ``` -## Contributions -Feel free to add/improve code or parsers! You can use the [`jc/parsers/foo.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/foo.py) parser as a template and submit your parser with a pull request. - ## Compatibility Some parsers like `ls`, `ps`, `dig`, etc. will work on any platform. Other parsers that are platform-specific will generate a warning message if they are used on an unsupported platform. To see all parser information, including compatibility, run `jc -ap`. - You may still use a parser on an unsupported platform - for example, you may want to parse a file with linux `lsof` output on an OSX laptop. In that case you can suppress the warning message with the `-q` cli option or the `quiet=True` function parameter in `parse()`: ``` @@ -193,9 +189,13 @@ $ cat lsof.out | jc --lsof -q Tested on: - Centos 7.7 - Ubuntu 18.4 +- Fedora32 - OSX 10.11.6 - OSX 10.14.6 +## Contributions +Feel free to add/improve code or parsers! You can use the [`jc/parsers/foo.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/foo.py) parser as a template and submit your parser with a pull request. + ## Acknowledgments - CI automation and code optimizations from https://github.com/philippeitis - `ifconfig-parser` module from https://github.com/KnightWhoSayNi/ifconfig-parser From 9730f62e4970b5a4490f8dc24b6cfb9cacd0cbf2 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 21 May 2020 09:44:28 -0700 Subject: [PATCH 36/52] fixup name field and update test fixtures --- jc/parsers/netstat_osx.py | 7 +- tests/fixtures/osx-10.14.6/netstat-Abn.json | 2 +- tests/fixtures/osx-10.14.6/netstat-An.json | 2 +- tests/fixtures/osx-10.14.6/netstat.json | 2 +- tests/fixtures/osx-10.14.6/netstat.out | 271 ++++++++++---------- 5 files changed, 151 insertions(+), 133 deletions(-) diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py index cbf070bd..9386932d 100644 --- a/jc/parsers/netstat_osx.py +++ b/jc/parsers/netstat_osx.py @@ -29,8 +29,13 @@ def parse_item(headers, entry, kind): def parse_post(raw_data): - # create network and transport protocol fields for entry in raw_data: + # fixup name field in Registered kernel control module + if 'name' in entry: + if entry['name']: + entry['name'] = entry['name'].strip() + + # create network and transport protocol fields if 'local_address' in entry: if entry['local_address']: ladd = entry['local_address'].rsplit('.', maxsplit=1)[0] diff --git a/tests/fixtures/osx-10.14.6/netstat-Abn.json b/tests/fixtures/osx-10.14.6/netstat-Abn.json index 12e823ec..718c9a49 100644 --- a/tests/fixtures/osx-10.14.6/netstat-Abn.json +++ b/tests/fixtures/osx-10.14.6/netstat-Abn.json @@ -1 +1 @@ -[{"socket": "7fb03cb94d505aed", "flowhash": "cedd0cbf", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.113.26", "state": "ESTABLISHED", "rxbytes": 4958, "txbytes": 3996, "kind": "network", "local_port": "5486", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5486, "foreign_port_num": 443}, {"socket": "7fb03cb94d692475", "flowhash": "1c9f9fcd", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "208.91.113.36", "state": "ESTABLISHED", "rxbytes": 39554, "txbytes": 9531, "kind": "network", "local_port": "5480", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5480, "foreign_port_num": 443}, {"socket": "7fb03cb94b25de55", "flowhash": "dbe59bf8", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.112.26", "state": "ESTABLISHED", "rxbytes": 6022, "txbytes": 6313, "kind": "network", "local_port": "5478", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5478, "foreign_port_num": 443}, {"socket": "7fb03cb95fad8165", "flowhash": "6a3d6e4", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.201", "state": "ESTABLISHED", "rxbytes": 1910, "txbytes": 2803, "kind": "network", "local_port": "5450", "foreign_port": "4923", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 4923}, {"socket": "7fb03cb946c1cbcd", "flowhash": "3c023c0", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "rxbytes": 167633, "txbytes": 41617, "kind": "network", "local_port": "5", "foreign_port": "9", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 9}, {"socket": "7fb03cb95fad77dd", "flowhash": "3f163cd2", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.64", "state": "ESTABLISHED", "rxbytes": 2592, "txbytes": 3096, "kind": "network", "local_port": "5450", "foreign_port": "53380", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 53380}, {"socket": "7fb03cb94221360d", "flowhash": "cc0e0c2a", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2603:1030:b00::e", "state": "ESTABLISHED", "rxbytes": 15646, "txbytes": 15752, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c20e4d", "flowhash": "8e998322", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2620:1ec:21::14", "state": "ESTABLISHED", "rxbytes": 46800, "txbytes": 45200, "kind": "network", "local_port": "5", "foreign_port": "44", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 44}, {"socket": "7fb03cb93c75d475", "flowhash": "d53fb648", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "ESTABLISHED", "rxbytes": 102916, "txbytes": 305797, "kind": "network", "local_port": "5452", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 8081}, {"socket": "7fb03cb937c2140d", "flowhash": "e013f438", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4000:8", "state": "ESTABLISHED", "rxbytes": 91675, "txbytes": 183353, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b718aed", "flowhash": "bcd5aa6f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.88", "state": "ESTABLISHED", "rxbytes": 1439, "txbytes": 2749, "kind": "network", "local_port": "5452", "foreign_port": "49153", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 49153}, {"socket": "7fb03cb94b716e55", "flowhash": "30944ff3", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.89", "state": "ESTABLISHED", "rxbytes": 1412, "txbytes": 2852, "kind": "network", "local_port": "5451", "foreign_port": "49152", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 49152}, {"socket": "7fb03cb93c75b7dd", "flowhash": "d54ab36f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.72", "state": "ESTABLISHED", "rxbytes": 1098, "txbytes": 3946, "kind": "network", "local_port": "5450", "foreign_port": "55617", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 55617}, {"socket": "7fb03cb93b2d6e55", "flowhash": "d11ddd76", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "52.114.148.56", "state": "ESTABLISHED", "rxbytes": 54904, "txbytes": 37123, "kind": "network", "local_port": "5451", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 443}, {"socket": "7fb03cb94a8f8d0d", "flowhash": "88c31bcb", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 929, "txbytes": 1397, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f988d", "flowhash": "a10400b8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 56095, "txbytes": 13875, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb948e8f88d", "flowhash": "cd67a7b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "rxbytes": 5331, "txbytes": 7172, "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb94bcb6475", "flowhash": "4ca24b6e", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT", "rxbytes": 1424, "txbytes": 2595, "kind": "network", "local_port": "5442", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5442, "foreign_port_num": 8081}, {"socket": "7fb03cb94b4f518d", "flowhash": "25c58fec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1326, "txbytes": 1023, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94bcb47dd", "flowhash": "b164479", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "rxbytes": 3182238, "txbytes": 0, "kind": "network", "local_port": "53755", "foreign_port": "53763", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53755, "foreign_port_num": 53763}, {"socket": "7fb03cb94b433e55", "flowhash": "f28b9248", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "rxbytes": 51430, "txbytes": 0, "kind": "network", "local_port": "53763", "foreign_port": "53755", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53763, "foreign_port_num": 53755}, {"socket": "7fb03cb94b719475", "flowhash": "316c063a", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "104.155.21.255", "state": "ESTABLISHED", "rxbytes": 73216, "txbytes": 1004723, "kind": "network", "local_port": "5359", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5359, "foreign_port_num": 555}, {"socket": "7fb03cb946c1ba8d", "flowhash": "d32bc928", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94c066aed", "flowhash": "fb73c2ca", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "17.57.144.20", "state": "ESTABLISHED", "rxbytes": 27110, "txbytes": 79402, "kind": "network", "local_port": "5263", "foreign_port": "5223", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5263, "foreign_port_num": 5223}, {"socket": "7fb03cb94d2ebaed", "flowhash": "22dc0e42", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.80", "state": "ESTABLISHED", "rxbytes": 8433051, "txbytes": 3259730, "kind": "network", "local_port": "5179", "foreign_port": "548", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5179, "foreign_port_num": 548}, {"socket": "7fb03cb94a8f818d", "flowhash": "5e12e220", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 3768, "txbytes": 1815, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f704d", "flowhash": "16ca6e94", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 684, "txbytes": 3761, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942212a8d", "flowhash": "da4b1f7d", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1470, "txbytes": 1167, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8dbcd", "flowhash": "4aeb1af1", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f92cd", "flowhash": "6859cfec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 765, "txbytes": 663, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1e2cd", "flowhash": "248b598b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942213bcd", "flowhash": "56762cbf", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8d60d", "flowhash": "d29e9efa", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 3668, "txbytes": 1997, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1d18d", "flowhash": "60f3fa15", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1053, "txbytes": 1167, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94b4347dd", "flowhash": "a1f7c428", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "rxbytes": 52, "txbytes": 1084, "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb948047aed", "flowhash": "ceac8539", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "rxbytes": 52, "txbytes": 1136, "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb963503e55", "flowhash": "d98dfd14", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "rxbytes": 52, "txbytes": 1200, "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb937c202cd", "flowhash": "2e36177f", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 893, "txbytes": 26581, "kind": "network", "local_port": "6", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 6, "foreign_port_num": 4}, {"socket": "7fb03cb946c1c60d", "flowhash": "aaabe009", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 985405, "txbytes": 1688994, "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb948536475", "flowhash": "dc1e01a0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "96.45.36.31", "state": "ESTABLISHED", "rxbytes": 3654, "txbytes": 3229, "kind": "network", "local_port": "5879", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5879, "foreign_port_num": 443}, {"socket": "7fb03cb94b38e7dd", "flowhash": "e3b8b675", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "CLOSE_WAIT", "rxbytes": 29513, "txbytes": 0, "kind": "network", "local_port": "9592", "foreign_port": "58704", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 9592, "foreign_port_num": 58704}, {"socket": "7fb03cb94d691165", "flowhash": "7eee3b1", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT", "rxbytes": 1218, "txbytes": 6437, "kind": "network", "local_port": "5346", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5346, "foreign_port_num": 8081}, {"socket": "7fb03cb948e8f2cd", "flowhash": "e7486da9", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 893, "txbytes": 111664, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94221304d", "flowhash": "3e982c00", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 965, "txbytes": 99241, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c2088d", "flowhash": "30000ae7", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 893, "txbytes": 125491, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b4f4bcd", "flowhash": "57e076f4", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 889, "txbytes": 128896, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94221474d", "flowhash": "6465b356", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 14206, "txbytes": 134302, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f6a8d", "flowhash": "bed25b95", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1909, "txbytes": 120628, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb937c1fd0d", "flowhash": "33613be8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 684, "txbytes": 259247, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb93c70600d", "flowhash": "777662f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 48, "txbytes": 76, "kind": "network", "local_port": "58043", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58043}, {"socket": "7fb03cb93c709f4d", "flowhash": "b64a4fe1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 98, "txbytes": 138, "kind": "network", "local_port": "63678", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63678}, {"socket": "7fb03cb93c708c0d", "flowhash": "48ba21c8", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 48, "txbytes": 76, "kind": "network", "local_port": "60774", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 60774}, {"socket": "7fb03cb93c70760d", "flowhash": "7f0afb2c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 98, "txbytes": 138, "kind": "network", "local_port": "51411", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51411}, {"socket": "7fb03cb93c707b8d", "flowhash": "7c49f0f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 48, "txbytes": 76, "kind": "network", "local_port": "57119", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57119}, {"socket": "7fb03cb93c70734d", "flowhash": "c750f7f0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 98, "txbytes": 138, "kind": "network", "local_port": "61217", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61217}, {"socket": "7fb03cb93c70810d", "flowhash": "2308a9b6", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 43700, "txbytes": 46473, "kind": "network", "local_port": "56091", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 56091}, {"socket": "7fb03cb93c707e4d", "flowhash": "4b2ff4b3", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 45885, "txbytes": 44260, "kind": "network", "local_port": "58807", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58807}, {"socket": "7fb03cb9371e2d4d", "flowhash": "8d16cd6b", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 6138, "kind": "network", "local_port": "54338", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54338}, {"socket": "7fb03cb93721310d", "flowhash": "f4140344", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 512, "kind": "network", "local_port": "3722", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 3722}, {"socket": "7fb03cb93d5b800d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 2554929, "txbytes": 0, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c7ba60d", "flowhash": "7fd9393b", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 38123, "txbytes": 35312, "kind": "network", "local_port": "61224", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61224}, {"socket": "7fb03cb93c7b8a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b0470d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c706dcd", "flowhash": "f725c38f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 1253564, "kind": "network", "local_port": "63995", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63995}, {"socket": "7fb03cb93c708ecd", "flowhash": "5ed0c674", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 1253656, "kind": "network", "local_port": "5063", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5063}, {"socket": "7fb03cb93c70868d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 496, "txbytes": 0, "kind": "network", "local_port": "33354", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33354}, {"socket": "7fb03cb93c70658d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 1253656, "txbytes": 0, "kind": "network", "local_port": "33355", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33355}, {"socket": "7fb03cb934b578cd", "flowhash": "530d4d40", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 29478, "txbytes": 27730, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61982}, {"socket": "7fb03cb934b59c8d", "flowhash": "91b8382", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 21216, "txbytes": 15688, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61982}, {"socket": "7fb03cb934b56dcd", "flowhash": "ca5be4ea", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 28968, "txbytes": 27260, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52378}, {"socket": "7fb03cb934b5760d", "flowhash": "3462e1b2", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 21726, "txbytes": 16058, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52378}, {"socket": "7fb03cb934b5944d", "flowhash": "58e06369", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 28684, "txbytes": 27063, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53910}, {"socket": "7fb03cb934b5a20d", "flowhash": "e03584", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 21513, "txbytes": 15841, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53910}, {"socket": "7fb03cb934b55d4d", "flowhash": "e91dd2ad", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 32262, "txbytes": 30952, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 57674}, {"socket": "7fb03cb934b5970d", "flowhash": "da8119f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 24510, "txbytes": 18834, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57674}, {"socket": "7fb03cb934b599cd", "flowhash": "3504cd68", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 30666, "txbytes": 29150, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62448}, {"socket": "7fb03cb934b557cd", "flowhash": "941a5612", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 25992, "txbytes": 19952, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62448}, {"socket": "7fb03cb934b58c0d", "flowhash": "c487a471", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 29380, "txbytes": 28035, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55681}, {"socket": "7fb03cb934b5600d", "flowhash": "c4b0913", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 26781, "txbytes": 20570, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55681}, {"socket": "7fb03cb93716444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b6df00d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8bbd4d", "flowhash": "47d61919", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 3818017, "txbytes": 26658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc00d", "flowhash": "8148de2d", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 3811093, "txbytes": 26658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc2cd", "flowhash": "41ad85a1", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 22458, "txbytes": 29658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bfc8d", "flowhash": "3d59980f", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 29658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bd34d", "flowhash": "73cc988e", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 55268610, "txbytes": 29658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bf44d", "flowhash": "dee9266c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 162940592, "txbytes": 26658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bdb8d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb937211dcd", "flowhash": "b4871709", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 1251903, "txbytes": 2351183, "kind": "network", "local_port": "51226", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51226}, {"socket": "7fb03cb9372154cd", "flowhash": "21b31d88", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "rxbytes": 733104, "txbytes": 1160292, "kind": "network", "local_port": "61491", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61491}, {"socket": "7fb03cb93b74a3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "6096", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 6096}, {"socket": "7fb03cb93c7bb10d", "flowhash": "f1ac8ec5", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 30600076, "txbytes": 18446784, "kind": "network", "local_port": "58997", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58997}, {"socket": "7fb03cb93b70ea8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b7129cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b71270d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b711c0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72d70d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72bb8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b747a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc90a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9520d", "flowhash": "97a44721", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 65984, "kind": "network", "local_port": "52551", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52551}, {"socket": "7fb03cb93bc90d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc94f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c7bcc8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8beecd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be10d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be68d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93d5b7a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70894d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70a20d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70944d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70684d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b049cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371654cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716520d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937164f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371628cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162b8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162e4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371e32cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb934b56b0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721394d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbcd4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbf10d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"socket": "7fb03cb93721184d", "flowhash": "b180dc9e", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 57357377, "txbytes": 15237561, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb9372149cd", "flowhash": "6fa9aaf7", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 174466390, "txbytes": 26656837, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb934b583cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "9595", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 9595}, {"socket": "7fb03cb934b5810d", "flowhash": "5b0b6f0f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 692460, "txbytes": 126560, "kind": "network", "local_port": "138", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 138}, {"socket": "7fb03cb934b57e4d", "flowhash": "dd966d84", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 3666438, "txbytes": 3028491, "kind": "network", "local_port": "137", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 137}, {"socket": "7fb03cb939ad73cd", "flowhash": "0", "proto": "icm4", "recv_q": 8136, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": "1325516", "rxbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "icmp", "network_protocol": "ipv4"}, {"address": "7fb03cb95130f135", "type": "stream", "recv_q": 1, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130efa5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130efa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e70d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130e70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130da8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f38d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130f38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130da8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130cd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130de75", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130de75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d9c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130cc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94d74825d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748965", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74825d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7471f5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7471f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74695d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74695d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747e75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747ce5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748bbd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d389c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d389c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d396a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d396a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ac85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ac85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b38d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3b38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cfa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b5dd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ae0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b44d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aa25", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d1f5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130d1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3aa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74906d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746e0d", "type": "stream", "recv_q": 8, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74906d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d385dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d385dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3876d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3876d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d386a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d386a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d390cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d390cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3895d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3895d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d392bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38e0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d392bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3976d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3912d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3912d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3976d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d391f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d391f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38c7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94b87f5d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS", "kind": "socket"}, {"address": "7fb03cb945d39c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ac7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63caf5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63caf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ac7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ce0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ce0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130caed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ca25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ca25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130caed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e7d5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ced5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f51d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ced5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130df3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c7cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130df3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ea2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ea2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb937de855d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Library/Application Support/LANDesk/tmp/socket/sys", "kind": "socket"}, {"address": "7fb03cb95130d065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ec85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ee15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ee15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ec85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ed4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ed4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3925d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39c85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3925d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d381f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b005e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afd895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935afd895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b005e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d5e5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ba8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63a895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cc85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7480cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d7480cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c7d5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e005", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb95130e005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b001fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdaed", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afdaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b001fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0038d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ead1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b002c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff0cd", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb935aff0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b002c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b00135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdbb5", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb935afdbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b00135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affd4d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935affd4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affe15", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affe15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affa2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0006d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afffa5", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afffa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b0006d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdc7d", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935afdc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affc85", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935affc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afde0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affbbd", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affbbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afde0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afded5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff965", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afded5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff7d5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdf9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff70d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdf9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff57d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff4b5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd2d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb935aff325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93609fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935aff25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94cddc36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock", "kind": "socket"}, {"address": "7fb03cb935afe12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe1f5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eac25", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe8fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afedad", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf", "kind": "socket"}, {"address": "7fb03cb935afedad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe8fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b763e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.000005f5", "kind": "socket"}, {"address": "7fb03cb935afef3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b761f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.00000948", "kind": "socket"}, {"address": "7fb03cb935afe5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b760fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afe6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe76d", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb935afe76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afee75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9360a12ed", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend.sock", "kind": "socket"}, {"address": "7fb03cb935afece5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd29bd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-export.sock", "kind": "socket"}, {"address": "7fb03cb935afec1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd43e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd40fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-volume.sock", "kind": "socket"}, {"address": "7fb03cb935afeb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eaa35", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker-api.sock", "kind": "socket"}, {"address": "7fb03cb935afea8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eab2d", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb93501b065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb937d37bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea465", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.port.sock", "kind": "socket"}, {"address": "7fb03cb937d3a5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a0dca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker.sock", "kind": "socket"}, {"address": "7fb03cb937d3a51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab1005", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.pcap.sock", "kind": "socket"}, {"address": "7fb03cb94d7495e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0f0d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.diag.sock", "kind": "socket"}, {"address": "7fb03cb94d746895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950aafd9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb94d7467cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0085", "conn": "0", "refs": "0", "nextref": "0", "addr": "osxfs.sock", "kind": "socket"}, {"address": "7fb03cb94d746bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb94d7496ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a1dab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock", "kind": "socket"}, {"address": "7fb03cb94d7492c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d746aed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7492c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7472bd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7472bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748a2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74776d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74776d", "type": "stream", "recv_q": 145, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748a2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74889d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7478fd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7478fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74889d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74870d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7487d5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7487d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74870d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7479c5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7479c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747a8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74857d", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb94d74857d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747a8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7484b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747b55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747b55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7484b5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748325", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7483ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94db01655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock_501", "kind": "socket"}, {"address": "7fb03cb94a63bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c57d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bdad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63be75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c325", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bf3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c005", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ad4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ae15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d377cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501b835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ad4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d377cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ae15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a6ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a06d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d387cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94d0e4a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock", "kind": "socket"}, {"address": "7fb03cb937d3812d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3812d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d395dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39515", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d395dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39dad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39dad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9418d26cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket", "kind": "socket"}, {"address": "7fb03cb93ceaeaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb151d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb151d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceae95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb138d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb138d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceae95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb12c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaed45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaed45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb12c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaee0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeed5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaeed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaee0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb106d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaef9d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaef9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb106d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0fa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb0fa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0bbd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafa8d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceafa8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb057d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb070d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb070d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb057d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf9c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaf9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb025d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea4fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock", "kind": "socket"}, {"address": "7fb03cb93ceb0325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea5074d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/tmp/filesystemui.socket", "kind": "socket"}, {"address": "7fb03cb93ceafb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea1cd1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WbUfpjQ9cD/Render", "kind": "socket"}, {"address": "7fb03cb93ceb00cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea42275", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners", "kind": "socket"}, {"address": "7fb03cb937d394b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938289085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb93501a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aaed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501aaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aa25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d1fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ae0d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501cedd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b44d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93763e7cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/displaypolicyd/state", "kind": "socket"}, {"address": "7fb03cb93501b76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb936ea7d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/pppconfd", "kind": "socket"}, {"address": "7fb03cb93501c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec3e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/epctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec1f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctvpnctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec0fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb93501c70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec005", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/com.docker.vmnetd.sock", "kind": "socket"}, {"address": "7fb03cb93501c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e845", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e55d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/usbmuxd", "kind": "socket"}, {"address": "7fb03cb93501c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e74d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355617cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/mdssvc", "kind": "socket"}, {"address": "7fb03cb93501c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355636cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355618c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501bb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355635d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355634dd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/systemkeychaincheck.socket", "kind": "socket"}, {"address": "7fb03cb93501bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561ab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/.sim_diagnosticd_socket", "kind": "socket"}, {"address": "7fb03cb93501bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561bad", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/portmap.socket", "kind": "socket"}, {"address": "7fb03cb93501be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935511d1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/vpncontrol.sock", "kind": "socket"}, {"address": "7fb03cb93501bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354fd085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/NETLOGON", "kind": "socket"}, {"address": "7fb03cb93501c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354e58c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/cupsd", "kind": "socket"}, {"address": "7fb03cb95130ddad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3afa5", "kind": "socket"}, {"address": "7fb03cb94a63b065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b9c5", "refs": "7fb03cb94a63b9c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b9c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b065", "refs": "7fb03cb94a63b065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3afa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63ad45", "kind": "socket"}, {"address": "7fb03cb94a63ad45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63af9d", "kind": "socket"}, {"address": "7fb03cb94a63af9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae7cd", "kind": "socket"}, {"address": "7fb03cb93ceae7cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3b51d", "kind": "socket"}, {"address": "7fb03cb945d3b51d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3a3ed", "kind": "socket"}, {"address": "7fb03cb945d3a3ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3989d", "kind": "socket"}, {"address": "7fb03cb937d3989d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b76d", "kind": "socket"}, {"address": "7fb03cb94a63b76d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d44d", "kind": "socket"}, {"address": "7fb03cb95130d44d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130cf9d", "kind": "socket"}, {"address": "7fb03cb95130cf9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d6ad", "kind": "socket"}, {"address": "7fb03cb94d7491fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7476a5", "refs": "7fb03cb94d7476a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7476a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7491fd", "refs": "7fb03cb94d7491fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63d6ad", "kind": "socket"}, {"address": "7fb03cb94d748005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d749455", "refs": "7fb03cb94d749455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d749455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748005", "refs": "7fb03cb94d748005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7475dd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747065", "refs": "7fb03cb94d747065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7475dd", "refs": "7fb03cb94d7475dd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a95d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d455", "refs": "7fb03cb93501d455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a95d", "refs": "7fb03cb93501a95d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130db55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ebbd", "refs": "7fb03cb95130ebbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ebbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130db55", "refs": "7fb03cb95130db55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74938d", "kind": "socket"}, {"address": "7fb03cb94d74938d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38a8d", "kind": "socket"}, {"address": "7fb03cb937d38a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d835", "kind": "socket"}, {"address": "7fb03cb95130d835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d746c7d", "kind": "socket"}, {"address": "7fb03cb945d3aedd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b6ad", "refs": "7fb03cb945d3b6ad", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3aedd", "refs": "7fb03cb945d3aedd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74712d", "kind": "socket"}, {"address": "7fb03cb94d74712d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39edd", "kind": "socket"}, {"address": "7fb03cb937d39edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38dad", "kind": "socket"}, {"address": "7fb03cb937d38dad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b12d", "kind": "socket"}, {"address": "7fb03cb94a63b12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e57d", "kind": "socket"}, {"address": "7fb03cb95130e57d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74951d", "kind": "socket"}, {"address": "7fb03cb94d74951d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d749135", "kind": "socket"}, {"address": "7fb03cb94d749135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb15e5", "kind": "socket"}, {"address": "7fb03cb93ceb15e5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae895", "kind": "socket"}, {"address": "7fb03cb93ceae895", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb16ad", "kind": "socket"}, {"address": "7fb03cb93ceb16ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3a1fd", "kind": "socket"}, {"address": "7fb03cb937d3a1fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39065", "kind": "socket"}, {"address": "7fb03cb945d39065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d38f9d", "kind": "socket"}, {"address": "7fb03cb945d38f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39a8d", "kind": "socket"}, {"address": "7fb03cb945d399c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a005", "refs": "7fb03cb945d3a005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d399c5", "refs": "7fb03cb945d399c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39b55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39f3d", "refs": "7fb03cb945d39f3d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39f3d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39b55", "refs": "7fb03cb945d39b55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d397d5", "kind": "socket"}, {"address": "7fb03cb937d37d45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37e0d", "refs": "7fb03cb937d37e0d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37e0d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37d45", "refs": "7fb03cb937d37d45", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d397d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb11fd", "kind": "socket"}, {"address": "7fb03cb93ceb11fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf065", "kind": "socket"}, {"address": "7fb03cb93ceaf065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0edd", "kind": "socket"}, {"address": "7fb03cb93ceb0edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf385", "kind": "socket"}, {"address": "7fb03cb93ceaf12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf1f5", "refs": "7fb03cb93ceaf1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf12d", "refs": "7fb03cb93ceaf12d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf385", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0965", "kind": "socket"}, {"address": "7fb03cb93ceb0965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0a2d", "kind": "socket"}, {"address": "7fb03cb93ceb0a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf835", "kind": "socket"}, {"address": "7fb03cb93ceaf835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf8fd", "kind": "socket"}, {"address": "7fb03cb93ceaf8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafdad", "kind": "socket"}, {"address": "7fb03cb93ceafdad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb07d5", "kind": "socket"}, {"address": "7fb03cb93ceb07d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb089d", "kind": "socket"}, {"address": "7fb03cb93ceb0645", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafe75", "refs": "7fb03cb93ceafe75", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafe75", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0645", "refs": "7fb03cb93ceb0645", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb089d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafc1d", "kind": "socket"}, {"address": "7fb03cb93ceb0195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0005", "refs": "7fb03cb93ceb0005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0195", "refs": "7fb03cb93ceb0195", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafc1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb03ed", "kind": "socket"}, {"address": "7fb03cb93ceb03ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39fa5", "kind": "socket"}, {"address": "7fb03cb937d39a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39bbd", "refs": "7fb03cb937d39bbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39bbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39a2d", "refs": "7fb03cb937d39a2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39fa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39965", "kind": "socket"}, {"address": "7fb03cb937d38065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37c7d", "refs": "7fb03cb937d37c7d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38065", "refs": "7fb03cb937d38065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d37f9d", "kind": "socket"}, {"address": "7fb03cb937d37f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d393ed", "kind": "socket"}, {"address": "7fb03cb937d393ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3970d", "kind": "socket"}, {"address": "7fb03cb937d3970d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d135", "kind": "socket"}, {"address": "7fb03cb937d382bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3957d", "refs": "7fb03cb937d3957d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3957d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d382bd", "refs": "7fb03cb937d382bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38c1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38ce5", "refs": "7fb03cb937d38ce5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38ce5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38c1d", "refs": "7fb03cb937d38c1d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cd4d", "kind": "socket"}, {"address": "7fb03cb93501cd4d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cc85", "kind": "socket"}, {"address": "7fb03cb93501b1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b2bd", "refs": "7fb03cb93501b2bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b2bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b1f5", "refs": "7fb03cb93501b1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b515", "refs": "7fb03cb93501b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b515", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ce15", "refs": "7fb03cb93501ce15", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501caf5", "refs": "7fb03cb93501caf5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501caf5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b6a5", "refs": "7fb03cb93501b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cc85", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cbbd", "kind": "socket"}, {"address": "7fb03cb93501cbbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501c0cd", "kind": "socket"}, {"address": "7fb03cb93501b8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ca2d", "refs": "7fb03cb93501ca2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ca2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b8fd", "refs": "7fb03cb93501b8fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c0cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb934ff43e5", "conn": "0", "refs": "7fb03cb95130ddad", "nextref": "0", "addr": "/private//var/run/syslog", "kind": "socket"}, {"kctlref": "10001", "id": "1", "unit": -1, "osx_flags": 9, "pcbcount": 0, "rcvbuf": 131072, "sndbuf": 131072, "name": "com.apple.flow-divert ", "kind": "Registered kernel control module"}, {"kctlref": "20002", "id": "2", "unit": -1, "osx_flags": 1, "pcbcount": 1, "rcvbuf": 16384, "sndbuf": 2048, "name": "com.apple.nke.sockwall ", "kind": "Registered kernel control module"}, {"kctlref": "30003", "id": "3", "unit": -1, "osx_flags": 9, "pcbcount": 0, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.content-filter ", "kind": "Registered kernel control module"}, {"kctlref": "40004", "id": "4", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.necp_control ", "kind": "Registered kernel control module"}, {"kctlref": "50005", "id": "5", "unit": -1, "osx_flags": 1, "pcbcount": 12, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.netagent ", "kind": "Registered kernel control module"}, {"kctlref": "60006", "id": "6", "unit": -1, "osx_flags": 9, "pcbcount": 4, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.net.utun_control ", "kind": "Registered kernel control module"}, {"kctlref": "70007", "id": "7", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.ipsec_control ", "kind": "Registered kernel control module"}, {"kctlref": "80008", "id": "8", "unit": -1, "osx_flags": 0, "pcbcount": 74, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.netsrc ", "kind": "Registered kernel control module"}, {"kctlref": "90009", "id": "9", "unit": -1, "osx_flags": 18, "pcbcount": 4, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.statistics ", "kind": "Registered kernel control module"}, {"kctlref": "a000a", "id": "a", "unit": -1, "osx_flags": 5, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.tcp_ccdebug ", "kind": "Registered kernel control module"}, {"kctlref": "b000b", "id": "b", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.advisory ", "kind": "Registered kernel control module"}, {"kctlref": "c000c", "id": "c", "unit": -1, "osx_flags": 4, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 2048, "name": "com.apple.uart.BLTH ", "kind": "Registered kernel control module"}, {"kctlref": "d000d", "id": "d", "unit": -1, "osx_flags": 4, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.uart.sk.BLTH ", "kind": "Registered kernel control module"}, {"kctlref": "e000e", "id": "e", "unit": -1, "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 8192, "name": "com.apple.fileutil.kext.stateful.ctl ", "kind": "Registered kernel control module"}, {"kctlref": "f000f", "id": "f", "unit": -1, "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.fileutil.kext.stateless.ctl ", "kind": "Registered kernel control module"}, {"kctlref": "170017", "id": "17", "unit": -1, "osx_flags": 5, "pcbcount": 1, "rcvbuf": 32768, "sndbuf": 2048, "name": "com.fortinet.fct.kext.fwnke ", "kind": "Registered kernel control module"}, {"kctlref": "ea0010", "id": "18", "unit": -1, "osx_flags": 5, "pcbcount": 1, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.fortinet.kext.avkern2 ", "kind": "Registered kernel control module"}, {"pcb": "7fb03cb936ead2bd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead2f5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 4, "subcla": 0, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd0d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "rxbytes": 1414844, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd45", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead24d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead215", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1dd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 11, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd7d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacdb5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacded", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716744, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace25", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716744, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace5d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716744, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1a5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27718800, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace95", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719296, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacecd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719296, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf05", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719296, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead16d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 6, "rxbytes": 823488, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf3d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "rxbytes": 836, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf75", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719456, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfad", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "rxbytes": 444256, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead135", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 10, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfe5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1000, "class": 5, "subcla": 11, "rxbytes": 144855, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead01d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 7, "rxbytes": 151680, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead055", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "rxbytes": 836, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead08d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "rxbytes": 444256, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0fd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 3, "subcla": 3, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0c5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "rxbytes": 1422896, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb937d0314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 791268, "txbytes": 657340, "unit": 1, "id": "2", "name": "com.apple.nke.sockwall", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4f4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 1, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d5ded", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 2, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 3, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d656d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 4, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4c4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 5, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d662d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 6, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a1a6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 7, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c7488ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 8, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e7299ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 9, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b5cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 10, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b6ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 11, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60182d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 12, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f6020cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 30618, "txbytes": 0, "unit": 1, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f9cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 2, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8fded", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 3, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f48d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 4, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d644d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 224, "txbytes": 144, "unit": 1, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c237d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 224, "txbytes": 144, "unit": 2, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c23682d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 9352, "txbytes": 6012, "unit": 3, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9503efa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 4144, "txbytes": 2664, "unit": 4, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93cc9038d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 376544, "txbytes": 242064, "unit": 5, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93d3a7d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 3192, "txbytes": 2052, "unit": 6, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 630280, "txbytes": 405180, "unit": 7, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93eefef0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 8, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d2e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 9, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60260d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 32368, "txbytes": 20808, "unit": 10, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f601d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 120568, "txbytes": 77508, "unit": 11, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8e30d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6272, "txbytes": 4032, "unit": 12, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8d8ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 896, "txbytes": 576, "unit": 13, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d384d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1344, "txbytes": 864, "unit": 14, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940438bad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 81816, "txbytes": 52596, "unit": 15, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb949ba84ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6328, "txbytes": 4068, "unit": 16, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94043968d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 17, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940c3594d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 74760, "txbytes": 48060, "unit": 18, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941b872cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 19, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb943aa506d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 309064, "txbytes": 198684, "unit": 20, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941451a8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 31864, "txbytes": 20484, "unit": 21, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94510508d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2632, "txbytes": 1692, "unit": 22, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9459058ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 133392, "txbytes": 85752, "unit": 23, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb945c5bf0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2016, "txbytes": 1296, "unit": 24, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94766e96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 14280, "txbytes": 9180, "unit": 25, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946464c6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1568, "txbytes": 1008, "unit": 26, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946463fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 203224, "txbytes": 130644, "unit": 27, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94646394d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 338184, "txbytes": 217404, "unit": 28, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95002e5ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 616, "txbytes": 396, "unit": 29, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fe5d12d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 14280, "txbytes": 9180, "unit": 30, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fb8feed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 31, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9471823cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 438592, "txbytes": 281952, "unit": 32, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96085390d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 166040, "txbytes": 106740, "unit": 33, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a3cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 34, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f18d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 57792, "txbytes": 37152, "unit": 35, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f42d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 36, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804fead", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1568, "txbytes": 1008, "unit": 37, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fefcd2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 8512, "txbytes": 5472, "unit": 38, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9330ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 9520, "txbytes": 6120, "unit": 39, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffb8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 4816, "txbytes": 3096, "unit": 40, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e70872d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 203448, "txbytes": 130788, "unit": 41, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c8769ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 280616, "txbytes": 180396, "unit": 42, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9508e426d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 43, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f702d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 44, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94d86f2cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 103040, "txbytes": 66240, "unit": 45, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94e49c2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 56, "txbytes": 36, "unit": 46, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95eff106d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 327936, "txbytes": 210816, "unit": 47, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93aa79fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 8064, "txbytes": 5184, "unit": 48, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f65e74d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 3136, "txbytes": 2016, "unit": 49, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f8944ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6888, "txbytes": 4428, "unit": 50, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f931d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 51, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9d11ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6720, "txbytes": 4320, "unit": 52, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fbb0aed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 28448, "txbytes": 18288, "unit": 53, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f88ec4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 63000, "txbytes": 40500, "unit": 54, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffa0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2576, "txbytes": 1656, "unit": 55, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c736fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 56, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95477236d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 57, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a588d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 7336, "txbytes": 4716, "unit": 58, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a726d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 12544, "txbytes": 8064, "unit": 59, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ed4f24d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 60, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f46cc6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 11872, "txbytes": 7632, "unit": 61, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fb5ad2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 168, "txbytes": 108, "unit": 62, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95cb8b9ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1456, "txbytes": 936, "unit": 63, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb954772d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 64, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb950171fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 672, "txbytes": 432, "unit": 65, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d590d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 66, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a1ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 168, "txbytes": 108, "unit": 67, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ffdd1ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 129808, "txbytes": 83448, "unit": 68, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 168, "txbytes": 108, "unit": 69, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e6c8e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 18648, "txbytes": 11988, "unit": 70, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94b5af2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 224, "txbytes": 144, "unit": 71, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96074aa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 72, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95bff57cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 56, "txbytes": 36, "unit": 74, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fc8056d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 77, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb937d02e4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 216428, "txbytes": 44, "unit": 1, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e09b08d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 144713152, "txbytes": 30152, "unit": 2, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099a0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 3, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099bed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6100, "txbytes": 2148, "unit": 4, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d82cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 1, "id": "23", "name": "com.fortinet.fct.kext.fwnke", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d67cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 20960, "txbytes": 240, "unit": 1, "id": "24", "name": "com.fortinet.kext.avkern2", "kind": "Active kernel control socket"}] +[{"socket": "7fb03cb94d505aed", "flowhash": "cedd0cbf", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.113.26", "state": "ESTABLISHED", "rxbytes": 4958, "txbytes": 3996, "kind": "network", "local_port": "5486", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5486, "foreign_port_num": 443}, {"socket": "7fb03cb94d692475", "flowhash": "1c9f9fcd", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "208.91.113.36", "state": "ESTABLISHED", "rxbytes": 39554, "txbytes": 9531, "kind": "network", "local_port": "5480", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5480, "foreign_port_num": 443}, {"socket": "7fb03cb94b25de55", "flowhash": "dbe59bf8", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.112.26", "state": "ESTABLISHED", "rxbytes": 6022, "txbytes": 6313, "kind": "network", "local_port": "5478", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5478, "foreign_port_num": 443}, {"socket": "7fb03cb95fad8165", "flowhash": "6a3d6e4", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.201", "state": "ESTABLISHED", "rxbytes": 1910, "txbytes": 2803, "kind": "network", "local_port": "5450", "foreign_port": "4923", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 4923}, {"socket": "7fb03cb946c1cbcd", "flowhash": "3c023c0", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "rxbytes": 167633, "txbytes": 41617, "kind": "network", "local_port": "5", "foreign_port": "9", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 9}, {"socket": "7fb03cb95fad77dd", "flowhash": "3f163cd2", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.64", "state": "ESTABLISHED", "rxbytes": 2592, "txbytes": 3096, "kind": "network", "local_port": "5450", "foreign_port": "53380", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 53380}, {"socket": "7fb03cb94221360d", "flowhash": "cc0e0c2a", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2603:1030:b00::e", "state": "ESTABLISHED", "rxbytes": 15646, "txbytes": 15752, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c20e4d", "flowhash": "8e998322", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2620:1ec:21::14", "state": "ESTABLISHED", "rxbytes": 46800, "txbytes": 45200, "kind": "network", "local_port": "5", "foreign_port": "44", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 44}, {"socket": "7fb03cb93c75d475", "flowhash": "d53fb648", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "ESTABLISHED", "rxbytes": 102916, "txbytes": 305797, "kind": "network", "local_port": "5452", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 8081}, {"socket": "7fb03cb937c2140d", "flowhash": "e013f438", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4000:8", "state": "ESTABLISHED", "rxbytes": 91675, "txbytes": 183353, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b718aed", "flowhash": "bcd5aa6f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.88", "state": "ESTABLISHED", "rxbytes": 1439, "txbytes": 2749, "kind": "network", "local_port": "5452", "foreign_port": "49153", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 49153}, {"socket": "7fb03cb94b716e55", "flowhash": "30944ff3", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.89", "state": "ESTABLISHED", "rxbytes": 1412, "txbytes": 2852, "kind": "network", "local_port": "5451", "foreign_port": "49152", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 49152}, {"socket": "7fb03cb93c75b7dd", "flowhash": "d54ab36f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.72", "state": "ESTABLISHED", "rxbytes": 1098, "txbytes": 3946, "kind": "network", "local_port": "5450", "foreign_port": "55617", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 55617}, {"socket": "7fb03cb93b2d6e55", "flowhash": "d11ddd76", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "52.114.148.56", "state": "ESTABLISHED", "rxbytes": 54904, "txbytes": 37123, "kind": "network", "local_port": "5451", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 443}, {"socket": "7fb03cb94a8f8d0d", "flowhash": "88c31bcb", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 929, "txbytes": 1397, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f988d", "flowhash": "a10400b8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 56095, "txbytes": 13875, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb948e8f88d", "flowhash": "cd67a7b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "rxbytes": 5331, "txbytes": 7172, "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb94bcb6475", "flowhash": "4ca24b6e", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT", "rxbytes": 1424, "txbytes": 2595, "kind": "network", "local_port": "5442", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5442, "foreign_port_num": 8081}, {"socket": "7fb03cb94b4f518d", "flowhash": "25c58fec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1326, "txbytes": 1023, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94bcb47dd", "flowhash": "b164479", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "rxbytes": 3182238, "txbytes": 0, "kind": "network", "local_port": "53755", "foreign_port": "53763", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53755, "foreign_port_num": 53763}, {"socket": "7fb03cb94b433e55", "flowhash": "f28b9248", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "rxbytes": 51430, "txbytes": 0, "kind": "network", "local_port": "53763", "foreign_port": "53755", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53763, "foreign_port_num": 53755}, {"socket": "7fb03cb94b719475", "flowhash": "316c063a", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "104.155.21.255", "state": "ESTABLISHED", "rxbytes": 73216, "txbytes": 1004723, "kind": "network", "local_port": "5359", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5359, "foreign_port_num": 555}, {"socket": "7fb03cb946c1ba8d", "flowhash": "d32bc928", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94c066aed", "flowhash": "fb73c2ca", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "17.57.144.20", "state": "ESTABLISHED", "rxbytes": 27110, "txbytes": 79402, "kind": "network", "local_port": "5263", "foreign_port": "5223", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5263, "foreign_port_num": 5223}, {"socket": "7fb03cb94d2ebaed", "flowhash": "22dc0e42", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.80", "state": "ESTABLISHED", "rxbytes": 8433051, "txbytes": 3259730, "kind": "network", "local_port": "5179", "foreign_port": "548", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5179, "foreign_port_num": 548}, {"socket": "7fb03cb94a8f818d", "flowhash": "5e12e220", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 3768, "txbytes": 1815, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f704d", "flowhash": "16ca6e94", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 684, "txbytes": 3761, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942212a8d", "flowhash": "da4b1f7d", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1470, "txbytes": 1167, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8dbcd", "flowhash": "4aeb1af1", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f92cd", "flowhash": "6859cfec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 765, "txbytes": 663, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1e2cd", "flowhash": "248b598b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942213bcd", "flowhash": "56762cbf", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8d60d", "flowhash": "d29e9efa", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 3668, "txbytes": 1997, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1d18d", "flowhash": "60f3fa15", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1053, "txbytes": 1167, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94b4347dd", "flowhash": "a1f7c428", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "rxbytes": 52, "txbytes": 1084, "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb948047aed", "flowhash": "ceac8539", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "rxbytes": 52, "txbytes": 1136, "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb963503e55", "flowhash": "d98dfd14", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "rxbytes": 52, "txbytes": 1200, "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb937c202cd", "flowhash": "2e36177f", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 893, "txbytes": 26581, "kind": "network", "local_port": "6", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 6, "foreign_port_num": 4}, {"socket": "7fb03cb946c1c60d", "flowhash": "aaabe009", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 985405, "txbytes": 1688994, "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb948536475", "flowhash": "dc1e01a0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "96.45.36.31", "state": "ESTABLISHED", "rxbytes": 3654, "txbytes": 3229, "kind": "network", "local_port": "5879", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5879, "foreign_port_num": 443}, {"socket": "7fb03cb94b38e7dd", "flowhash": "e3b8b675", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "CLOSE_WAIT", "rxbytes": 29513, "txbytes": 0, "kind": "network", "local_port": "9592", "foreign_port": "58704", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 9592, "foreign_port_num": 58704}, {"socket": "7fb03cb94d691165", "flowhash": "7eee3b1", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT", "rxbytes": 1218, "txbytes": 6437, "kind": "network", "local_port": "5346", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5346, "foreign_port_num": 8081}, {"socket": "7fb03cb948e8f2cd", "flowhash": "e7486da9", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 893, "txbytes": 111664, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94221304d", "flowhash": "3e982c00", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 965, "txbytes": 99241, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c2088d", "flowhash": "30000ae7", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 893, "txbytes": 125491, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b4f4bcd", "flowhash": "57e076f4", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 889, "txbytes": 128896, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94221474d", "flowhash": "6465b356", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 14206, "txbytes": 134302, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f6a8d", "flowhash": "bed25b95", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1909, "txbytes": 120628, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb937c1fd0d", "flowhash": "33613be8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 684, "txbytes": 259247, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb93c70600d", "flowhash": "777662f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 48, "txbytes": 76, "kind": "network", "local_port": "58043", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58043}, {"socket": "7fb03cb93c709f4d", "flowhash": "b64a4fe1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 98, "txbytes": 138, "kind": "network", "local_port": "63678", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63678}, {"socket": "7fb03cb93c708c0d", "flowhash": "48ba21c8", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 48, "txbytes": 76, "kind": "network", "local_port": "60774", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 60774}, {"socket": "7fb03cb93c70760d", "flowhash": "7f0afb2c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 98, "txbytes": 138, "kind": "network", "local_port": "51411", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51411}, {"socket": "7fb03cb93c707b8d", "flowhash": "7c49f0f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 48, "txbytes": 76, "kind": "network", "local_port": "57119", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57119}, {"socket": "7fb03cb93c70734d", "flowhash": "c750f7f0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 98, "txbytes": 138, "kind": "network", "local_port": "61217", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61217}, {"socket": "7fb03cb93c70810d", "flowhash": "2308a9b6", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 43700, "txbytes": 46473, "kind": "network", "local_port": "56091", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 56091}, {"socket": "7fb03cb93c707e4d", "flowhash": "4b2ff4b3", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 45885, "txbytes": 44260, "kind": "network", "local_port": "58807", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58807}, {"socket": "7fb03cb9371e2d4d", "flowhash": "8d16cd6b", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 6138, "kind": "network", "local_port": "54338", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54338}, {"socket": "7fb03cb93721310d", "flowhash": "f4140344", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 512, "kind": "network", "local_port": "3722", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 3722}, {"socket": "7fb03cb93d5b800d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 2554929, "txbytes": 0, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c7ba60d", "flowhash": "7fd9393b", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 38123, "txbytes": 35312, "kind": "network", "local_port": "61224", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61224}, {"socket": "7fb03cb93c7b8a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b0470d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c706dcd", "flowhash": "f725c38f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 1253564, "kind": "network", "local_port": "63995", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63995}, {"socket": "7fb03cb93c708ecd", "flowhash": "5ed0c674", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 1253656, "kind": "network", "local_port": "5063", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5063}, {"socket": "7fb03cb93c70868d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 496, "txbytes": 0, "kind": "network", "local_port": "33354", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33354}, {"socket": "7fb03cb93c70658d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 1253656, "txbytes": 0, "kind": "network", "local_port": "33355", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33355}, {"socket": "7fb03cb934b578cd", "flowhash": "530d4d40", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 29478, "txbytes": 27730, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61982}, {"socket": "7fb03cb934b59c8d", "flowhash": "91b8382", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 21216, "txbytes": 15688, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61982}, {"socket": "7fb03cb934b56dcd", "flowhash": "ca5be4ea", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 28968, "txbytes": 27260, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52378}, {"socket": "7fb03cb934b5760d", "flowhash": "3462e1b2", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 21726, "txbytes": 16058, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52378}, {"socket": "7fb03cb934b5944d", "flowhash": "58e06369", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 28684, "txbytes": 27063, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53910}, {"socket": "7fb03cb934b5a20d", "flowhash": "e03584", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 21513, "txbytes": 15841, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53910}, {"socket": "7fb03cb934b55d4d", "flowhash": "e91dd2ad", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 32262, "txbytes": 30952, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 57674}, {"socket": "7fb03cb934b5970d", "flowhash": "da8119f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 24510, "txbytes": 18834, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57674}, {"socket": "7fb03cb934b599cd", "flowhash": "3504cd68", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 30666, "txbytes": 29150, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62448}, {"socket": "7fb03cb934b557cd", "flowhash": "941a5612", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 25992, "txbytes": 19952, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62448}, {"socket": "7fb03cb934b58c0d", "flowhash": "c487a471", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 29380, "txbytes": 28035, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55681}, {"socket": "7fb03cb934b5600d", "flowhash": "c4b0913", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 26781, "txbytes": 20570, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55681}, {"socket": "7fb03cb93716444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b6df00d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8bbd4d", "flowhash": "47d61919", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 3818017, "txbytes": 26658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc00d", "flowhash": "8148de2d", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 3811093, "txbytes": 26658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc2cd", "flowhash": "41ad85a1", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 22458, "txbytes": 29658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bfc8d", "flowhash": "3d59980f", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 29658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bd34d", "flowhash": "73cc988e", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 55268610, "txbytes": 29658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bf44d", "flowhash": "dee9266c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 162940592, "txbytes": 26658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bdb8d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb937211dcd", "flowhash": "b4871709", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 1251903, "txbytes": 2351183, "kind": "network", "local_port": "51226", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51226}, {"socket": "7fb03cb9372154cd", "flowhash": "21b31d88", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "rxbytes": 733104, "txbytes": 1160292, "kind": "network", "local_port": "61491", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61491}, {"socket": "7fb03cb93b74a3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "6096", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 6096}, {"socket": "7fb03cb93c7bb10d", "flowhash": "f1ac8ec5", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 30600076, "txbytes": 18446784, "kind": "network", "local_port": "58997", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58997}, {"socket": "7fb03cb93b70ea8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b7129cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b71270d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b711c0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72d70d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72bb8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b747a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc90a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9520d", "flowhash": "97a44721", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 65984, "kind": "network", "local_port": "52551", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52551}, {"socket": "7fb03cb93bc90d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc94f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c7bcc8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8beecd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be10d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be68d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93d5b7a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70894d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70a20d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70944d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70684d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b049cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371654cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716520d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937164f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371628cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162b8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162e4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371e32cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb934b56b0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721394d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbcd4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbf10d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"socket": "7fb03cb93721184d", "flowhash": "b180dc9e", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 57357377, "txbytes": 15237561, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb9372149cd", "flowhash": "6fa9aaf7", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 174466390, "txbytes": 26656837, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb934b583cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "9595", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 9595}, {"socket": "7fb03cb934b5810d", "flowhash": "5b0b6f0f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 692460, "txbytes": 126560, "kind": "network", "local_port": "138", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 138}, {"socket": "7fb03cb934b57e4d", "flowhash": "dd966d84", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 3666438, "txbytes": 3028491, "kind": "network", "local_port": "137", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 137}, {"socket": "7fb03cb939ad73cd", "flowhash": "0", "proto": "icm4", "recv_q": 8136, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": "1325516", "rxbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "icmp", "network_protocol": "ipv4"}, {"address": "7fb03cb95130f135", "type": "stream", "recv_q": 1, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130efa5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130efa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e70d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130e70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130da8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f38d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130f38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130da8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130cd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130de75", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130de75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d9c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130cc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94d74825d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748965", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74825d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7471f5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7471f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74695d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74695d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747e75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747ce5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748bbd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d389c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d389c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d396a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d396a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ac85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ac85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b38d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3b38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cfa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b5dd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ae0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b44d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aa25", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d1f5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130d1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3aa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74906d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746e0d", "type": "stream", "recv_q": 8, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74906d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d385dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d385dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3876d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3876d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d386a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d386a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d390cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d390cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3895d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3895d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d392bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38e0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d392bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3976d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3912d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3912d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3976d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d391f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d391f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38c7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94b87f5d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS", "kind": "socket"}, {"address": "7fb03cb945d39c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ac7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63caf5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63caf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ac7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ce0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ce0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130caed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ca25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ca25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130caed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e7d5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ced5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f51d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ced5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130df3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c7cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130df3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ea2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ea2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb937de855d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Library/Application Support/LANDesk/tmp/socket/sys", "kind": "socket"}, {"address": "7fb03cb95130d065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ec85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ee15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ee15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ec85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ed4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ed4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3925d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39c85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3925d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d381f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b005e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afd895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935afd895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b005e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d5e5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ba8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63a895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cc85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7480cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d7480cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c7d5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e005", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb95130e005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b001fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdaed", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afdaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b001fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0038d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ead1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b002c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff0cd", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb935aff0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b002c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b00135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdbb5", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb935afdbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b00135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affd4d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935affd4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affe15", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affe15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affa2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0006d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afffa5", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afffa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b0006d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdc7d", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935afdc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affc85", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935affc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afde0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affbbd", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affbbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afde0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afded5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff965", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afded5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff7d5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdf9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff70d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdf9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff57d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff4b5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd2d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb935aff325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93609fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935aff25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94cddc36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock", "kind": "socket"}, {"address": "7fb03cb935afe12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe1f5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eac25", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe8fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afedad", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf", "kind": "socket"}, {"address": "7fb03cb935afedad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe8fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b763e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.000005f5", "kind": "socket"}, {"address": "7fb03cb935afef3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b761f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.00000948", "kind": "socket"}, {"address": "7fb03cb935afe5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b760fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afe6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe76d", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb935afe76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afee75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9360a12ed", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend.sock", "kind": "socket"}, {"address": "7fb03cb935afece5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd29bd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-export.sock", "kind": "socket"}, {"address": "7fb03cb935afec1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd43e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd40fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-volume.sock", "kind": "socket"}, {"address": "7fb03cb935afeb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eaa35", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker-api.sock", "kind": "socket"}, {"address": "7fb03cb935afea8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eab2d", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb93501b065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb937d37bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea465", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.port.sock", "kind": "socket"}, {"address": "7fb03cb937d3a5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a0dca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker.sock", "kind": "socket"}, {"address": "7fb03cb937d3a51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab1005", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.pcap.sock", "kind": "socket"}, {"address": "7fb03cb94d7495e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0f0d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.diag.sock", "kind": "socket"}, {"address": "7fb03cb94d746895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950aafd9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb94d7467cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0085", "conn": "0", "refs": "0", "nextref": "0", "addr": "osxfs.sock", "kind": "socket"}, {"address": "7fb03cb94d746bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb94d7496ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a1dab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock", "kind": "socket"}, {"address": "7fb03cb94d7492c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d746aed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7492c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7472bd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7472bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748a2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74776d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74776d", "type": "stream", "recv_q": 145, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748a2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74889d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7478fd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7478fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74889d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74870d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7487d5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7487d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74870d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7479c5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7479c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747a8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74857d", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb94d74857d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747a8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7484b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747b55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747b55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7484b5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748325", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7483ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94db01655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock_501", "kind": "socket"}, {"address": "7fb03cb94a63bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c57d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bdad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63be75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c325", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bf3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c005", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ad4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ae15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d377cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501b835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ad4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d377cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ae15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a6ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a06d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d387cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94d0e4a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock", "kind": "socket"}, {"address": "7fb03cb937d3812d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3812d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d395dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39515", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d395dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39dad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39dad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9418d26cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket", "kind": "socket"}, {"address": "7fb03cb93ceaeaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb151d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb151d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceae95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb138d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb138d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceae95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb12c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaed45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaed45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb12c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaee0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeed5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaeed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaee0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb106d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaef9d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaef9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb106d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0fa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb0fa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0bbd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafa8d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceafa8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb057d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb070d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb070d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb057d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf9c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaf9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb025d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea4fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock", "kind": "socket"}, {"address": "7fb03cb93ceb0325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea5074d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/tmp/filesystemui.socket", "kind": "socket"}, {"address": "7fb03cb93ceafb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea1cd1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WbUfpjQ9cD/Render", "kind": "socket"}, {"address": "7fb03cb93ceb00cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea42275", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners", "kind": "socket"}, {"address": "7fb03cb937d394b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938289085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb93501a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aaed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501aaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aa25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d1fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ae0d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501cedd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b44d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93763e7cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/displaypolicyd/state", "kind": "socket"}, {"address": "7fb03cb93501b76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb936ea7d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/pppconfd", "kind": "socket"}, {"address": "7fb03cb93501c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec3e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/epctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec1f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctvpnctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec0fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb93501c70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec005", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/com.docker.vmnetd.sock", "kind": "socket"}, {"address": "7fb03cb93501c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e845", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e55d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/usbmuxd", "kind": "socket"}, {"address": "7fb03cb93501c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e74d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355617cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/mdssvc", "kind": "socket"}, {"address": "7fb03cb93501c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355636cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355618c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501bb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355635d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355634dd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/systemkeychaincheck.socket", "kind": "socket"}, {"address": "7fb03cb93501bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561ab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/.sim_diagnosticd_socket", "kind": "socket"}, {"address": "7fb03cb93501bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561bad", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/portmap.socket", "kind": "socket"}, {"address": "7fb03cb93501be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935511d1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/vpncontrol.sock", "kind": "socket"}, {"address": "7fb03cb93501bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354fd085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/NETLOGON", "kind": "socket"}, {"address": "7fb03cb93501c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354e58c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/cupsd", "kind": "socket"}, {"address": "7fb03cb95130ddad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3afa5", "kind": "socket"}, {"address": "7fb03cb94a63b065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b9c5", "refs": "7fb03cb94a63b9c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b9c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b065", "refs": "7fb03cb94a63b065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3afa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63ad45", "kind": "socket"}, {"address": "7fb03cb94a63ad45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63af9d", "kind": "socket"}, {"address": "7fb03cb94a63af9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae7cd", "kind": "socket"}, {"address": "7fb03cb93ceae7cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3b51d", "kind": "socket"}, {"address": "7fb03cb945d3b51d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3a3ed", "kind": "socket"}, {"address": "7fb03cb945d3a3ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3989d", "kind": "socket"}, {"address": "7fb03cb937d3989d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b76d", "kind": "socket"}, {"address": "7fb03cb94a63b76d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d44d", "kind": "socket"}, {"address": "7fb03cb95130d44d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130cf9d", "kind": "socket"}, {"address": "7fb03cb95130cf9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d6ad", "kind": "socket"}, {"address": "7fb03cb94d7491fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7476a5", "refs": "7fb03cb94d7476a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7476a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7491fd", "refs": "7fb03cb94d7491fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63d6ad", "kind": "socket"}, {"address": "7fb03cb94d748005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d749455", "refs": "7fb03cb94d749455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d749455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748005", "refs": "7fb03cb94d748005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7475dd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747065", "refs": "7fb03cb94d747065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7475dd", "refs": "7fb03cb94d7475dd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a95d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d455", "refs": "7fb03cb93501d455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a95d", "refs": "7fb03cb93501a95d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130db55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ebbd", "refs": "7fb03cb95130ebbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ebbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130db55", "refs": "7fb03cb95130db55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74938d", "kind": "socket"}, {"address": "7fb03cb94d74938d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38a8d", "kind": "socket"}, {"address": "7fb03cb937d38a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d835", "kind": "socket"}, {"address": "7fb03cb95130d835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d746c7d", "kind": "socket"}, {"address": "7fb03cb945d3aedd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b6ad", "refs": "7fb03cb945d3b6ad", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3aedd", "refs": "7fb03cb945d3aedd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74712d", "kind": "socket"}, {"address": "7fb03cb94d74712d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39edd", "kind": "socket"}, {"address": "7fb03cb937d39edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38dad", "kind": "socket"}, {"address": "7fb03cb937d38dad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b12d", "kind": "socket"}, {"address": "7fb03cb94a63b12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e57d", "kind": "socket"}, {"address": "7fb03cb95130e57d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74951d", "kind": "socket"}, {"address": "7fb03cb94d74951d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d749135", "kind": "socket"}, {"address": "7fb03cb94d749135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb15e5", "kind": "socket"}, {"address": "7fb03cb93ceb15e5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae895", "kind": "socket"}, {"address": "7fb03cb93ceae895", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb16ad", "kind": "socket"}, {"address": "7fb03cb93ceb16ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3a1fd", "kind": "socket"}, {"address": "7fb03cb937d3a1fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39065", "kind": "socket"}, {"address": "7fb03cb945d39065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d38f9d", "kind": "socket"}, {"address": "7fb03cb945d38f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39a8d", "kind": "socket"}, {"address": "7fb03cb945d399c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a005", "refs": "7fb03cb945d3a005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d399c5", "refs": "7fb03cb945d399c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39b55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39f3d", "refs": "7fb03cb945d39f3d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39f3d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39b55", "refs": "7fb03cb945d39b55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d397d5", "kind": "socket"}, {"address": "7fb03cb937d37d45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37e0d", "refs": "7fb03cb937d37e0d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37e0d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37d45", "refs": "7fb03cb937d37d45", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d397d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb11fd", "kind": "socket"}, {"address": "7fb03cb93ceb11fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf065", "kind": "socket"}, {"address": "7fb03cb93ceaf065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0edd", "kind": "socket"}, {"address": "7fb03cb93ceb0edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf385", "kind": "socket"}, {"address": "7fb03cb93ceaf12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf1f5", "refs": "7fb03cb93ceaf1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf12d", "refs": "7fb03cb93ceaf12d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf385", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0965", "kind": "socket"}, {"address": "7fb03cb93ceb0965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0a2d", "kind": "socket"}, {"address": "7fb03cb93ceb0a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf835", "kind": "socket"}, {"address": "7fb03cb93ceaf835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf8fd", "kind": "socket"}, {"address": "7fb03cb93ceaf8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafdad", "kind": "socket"}, {"address": "7fb03cb93ceafdad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb07d5", "kind": "socket"}, {"address": "7fb03cb93ceb07d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb089d", "kind": "socket"}, {"address": "7fb03cb93ceb0645", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafe75", "refs": "7fb03cb93ceafe75", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafe75", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0645", "refs": "7fb03cb93ceb0645", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb089d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafc1d", "kind": "socket"}, {"address": "7fb03cb93ceb0195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0005", "refs": "7fb03cb93ceb0005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0195", "refs": "7fb03cb93ceb0195", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafc1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb03ed", "kind": "socket"}, {"address": "7fb03cb93ceb03ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39fa5", "kind": "socket"}, {"address": "7fb03cb937d39a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39bbd", "refs": "7fb03cb937d39bbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39bbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39a2d", "refs": "7fb03cb937d39a2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39fa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39965", "kind": "socket"}, {"address": "7fb03cb937d38065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37c7d", "refs": "7fb03cb937d37c7d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38065", "refs": "7fb03cb937d38065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d37f9d", "kind": "socket"}, {"address": "7fb03cb937d37f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d393ed", "kind": "socket"}, {"address": "7fb03cb937d393ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3970d", "kind": "socket"}, {"address": "7fb03cb937d3970d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d135", "kind": "socket"}, {"address": "7fb03cb937d382bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3957d", "refs": "7fb03cb937d3957d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3957d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d382bd", "refs": "7fb03cb937d382bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38c1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38ce5", "refs": "7fb03cb937d38ce5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38ce5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38c1d", "refs": "7fb03cb937d38c1d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cd4d", "kind": "socket"}, {"address": "7fb03cb93501cd4d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cc85", "kind": "socket"}, {"address": "7fb03cb93501b1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b2bd", "refs": "7fb03cb93501b2bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b2bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b1f5", "refs": "7fb03cb93501b1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b515", "refs": "7fb03cb93501b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b515", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ce15", "refs": "7fb03cb93501ce15", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501caf5", "refs": "7fb03cb93501caf5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501caf5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b6a5", "refs": "7fb03cb93501b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cc85", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cbbd", "kind": "socket"}, {"address": "7fb03cb93501cbbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501c0cd", "kind": "socket"}, {"address": "7fb03cb93501b8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ca2d", "refs": "7fb03cb93501ca2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ca2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b8fd", "refs": "7fb03cb93501b8fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c0cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb934ff43e5", "conn": "0", "refs": "7fb03cb95130ddad", "nextref": "0", "addr": "/private//var/run/syslog", "kind": "socket"}, {"kctlref": "10001", "id": "1", "unit": -1, "osx_flags": 9, "pcbcount": 0, "rcvbuf": 131072, "sndbuf": 131072, "name": "com.apple.flow-divert", "kind": "Registered kernel control module"}, {"kctlref": "20002", "id": "2", "unit": -1, "osx_flags": 1, "pcbcount": 1, "rcvbuf": 16384, "sndbuf": 2048, "name": "com.apple.nke.sockwall", "kind": "Registered kernel control module"}, {"kctlref": "30003", "id": "3", "unit": -1, "osx_flags": 9, "pcbcount": 0, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.content-filter", "kind": "Registered kernel control module"}, {"kctlref": "40004", "id": "4", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.necp_control", "kind": "Registered kernel control module"}, {"kctlref": "50005", "id": "5", "unit": -1, "osx_flags": 1, "pcbcount": 12, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.netagent", "kind": "Registered kernel control module"}, {"kctlref": "60006", "id": "6", "unit": -1, "osx_flags": 9, "pcbcount": 4, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.net.utun_control", "kind": "Registered kernel control module"}, {"kctlref": "70007", "id": "7", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.ipsec_control", "kind": "Registered kernel control module"}, {"kctlref": "80008", "id": "8", "unit": -1, "osx_flags": 0, "pcbcount": 74, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.netsrc", "kind": "Registered kernel control module"}, {"kctlref": "90009", "id": "9", "unit": -1, "osx_flags": 18, "pcbcount": 4, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.statistics", "kind": "Registered kernel control module"}, {"kctlref": "a000a", "id": "a", "unit": -1, "osx_flags": 5, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.tcp_ccdebug", "kind": "Registered kernel control module"}, {"kctlref": "b000b", "id": "b", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.advisory", "kind": "Registered kernel control module"}, {"kctlref": "c000c", "id": "c", "unit": -1, "osx_flags": 4, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 2048, "name": "com.apple.uart.BLTH", "kind": "Registered kernel control module"}, {"kctlref": "d000d", "id": "d", "unit": -1, "osx_flags": 4, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.uart.sk.BLTH", "kind": "Registered kernel control module"}, {"kctlref": "e000e", "id": "e", "unit": -1, "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 8192, "name": "com.apple.fileutil.kext.stateful.ctl", "kind": "Registered kernel control module"}, {"kctlref": "f000f", "id": "f", "unit": -1, "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.fileutil.kext.stateless.ctl", "kind": "Registered kernel control module"}, {"kctlref": "170017", "id": "17", "unit": -1, "osx_flags": 5, "pcbcount": 1, "rcvbuf": 32768, "sndbuf": 2048, "name": "com.fortinet.fct.kext.fwnke", "kind": "Registered kernel control module"}, {"kctlref": "ea0010", "id": "18", "unit": -1, "osx_flags": 5, "pcbcount": 1, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.fortinet.kext.avkern2", "kind": "Registered kernel control module"}, {"pcb": "7fb03cb936ead2bd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead2f5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 4, "subcla": 0, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd0d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "rxbytes": 1414844, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd45", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead24d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead215", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1dd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 11, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd7d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacdb5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacded", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716744, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace25", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716744, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace5d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716744, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1a5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27718800, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace95", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719296, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacecd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719296, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf05", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719296, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead16d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 6, "rxbytes": 823488, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf3d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "rxbytes": 836, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf75", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719456, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfad", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "rxbytes": 444256, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead135", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 10, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfe5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1000, "class": 5, "subcla": 11, "rxbytes": 144855, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead01d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 7, "rxbytes": 151680, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead055", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "rxbytes": 836, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead08d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "rxbytes": 444256, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0fd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 3, "subcla": 3, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0c5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "rxbytes": 1422896, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb937d0314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 791268, "txbytes": 657340, "unit": 1, "id": "2", "name": "com.apple.nke.sockwall", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4f4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 1, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d5ded", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 2, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 3, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d656d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 4, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4c4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 5, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d662d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 6, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a1a6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 7, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c7488ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 8, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e7299ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 9, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b5cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 10, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b6ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 11, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60182d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 12, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f6020cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 30618, "txbytes": 0, "unit": 1, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f9cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 2, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8fded", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 3, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f48d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 4, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d644d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 224, "txbytes": 144, "unit": 1, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c237d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 224, "txbytes": 144, "unit": 2, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c23682d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 9352, "txbytes": 6012, "unit": 3, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9503efa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 4144, "txbytes": 2664, "unit": 4, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93cc9038d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 376544, "txbytes": 242064, "unit": 5, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93d3a7d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 3192, "txbytes": 2052, "unit": 6, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 630280, "txbytes": 405180, "unit": 7, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93eefef0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 8, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d2e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 9, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60260d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 32368, "txbytes": 20808, "unit": 10, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f601d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 120568, "txbytes": 77508, "unit": 11, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8e30d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6272, "txbytes": 4032, "unit": 12, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8d8ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 896, "txbytes": 576, "unit": 13, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d384d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1344, "txbytes": 864, "unit": 14, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940438bad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 81816, "txbytes": 52596, "unit": 15, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb949ba84ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6328, "txbytes": 4068, "unit": 16, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94043968d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 17, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940c3594d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 74760, "txbytes": 48060, "unit": 18, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941b872cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 19, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb943aa506d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 309064, "txbytes": 198684, "unit": 20, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941451a8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 31864, "txbytes": 20484, "unit": 21, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94510508d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2632, "txbytes": 1692, "unit": 22, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9459058ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 133392, "txbytes": 85752, "unit": 23, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb945c5bf0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2016, "txbytes": 1296, "unit": 24, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94766e96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 14280, "txbytes": 9180, "unit": 25, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946464c6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1568, "txbytes": 1008, "unit": 26, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946463fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 203224, "txbytes": 130644, "unit": 27, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94646394d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 338184, "txbytes": 217404, "unit": 28, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95002e5ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 616, "txbytes": 396, "unit": 29, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fe5d12d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 14280, "txbytes": 9180, "unit": 30, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fb8feed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 31, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9471823cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 438592, "txbytes": 281952, "unit": 32, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96085390d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 166040, "txbytes": 106740, "unit": 33, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a3cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 34, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f18d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 57792, "txbytes": 37152, "unit": 35, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f42d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 36, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804fead", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1568, "txbytes": 1008, "unit": 37, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fefcd2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 8512, "txbytes": 5472, "unit": 38, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9330ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 9520, "txbytes": 6120, "unit": 39, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffb8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 4816, "txbytes": 3096, "unit": 40, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e70872d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 203448, "txbytes": 130788, "unit": 41, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c8769ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 280616, "txbytes": 180396, "unit": 42, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9508e426d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 43, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f702d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 44, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94d86f2cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 103040, "txbytes": 66240, "unit": 45, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94e49c2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 56, "txbytes": 36, "unit": 46, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95eff106d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 327936, "txbytes": 210816, "unit": 47, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93aa79fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 8064, "txbytes": 5184, "unit": 48, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f65e74d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 3136, "txbytes": 2016, "unit": 49, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f8944ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6888, "txbytes": 4428, "unit": 50, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f931d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 51, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9d11ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6720, "txbytes": 4320, "unit": 52, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fbb0aed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 28448, "txbytes": 18288, "unit": 53, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f88ec4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 63000, "txbytes": 40500, "unit": 54, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffa0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2576, "txbytes": 1656, "unit": 55, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c736fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 56, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95477236d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 57, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a588d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 7336, "txbytes": 4716, "unit": 58, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a726d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 12544, "txbytes": 8064, "unit": 59, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ed4f24d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 60, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f46cc6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 11872, "txbytes": 7632, "unit": 61, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fb5ad2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 168, "txbytes": 108, "unit": 62, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95cb8b9ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1456, "txbytes": 936, "unit": 63, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb954772d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 64, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb950171fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 672, "txbytes": 432, "unit": 65, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d590d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 66, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a1ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 168, "txbytes": 108, "unit": 67, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ffdd1ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 129808, "txbytes": 83448, "unit": 68, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 168, "txbytes": 108, "unit": 69, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e6c8e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 18648, "txbytes": 11988, "unit": 70, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94b5af2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 224, "txbytes": 144, "unit": 71, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96074aa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 72, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95bff57cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 56, "txbytes": 36, "unit": 74, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fc8056d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 77, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb937d02e4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 216428, "txbytes": 44, "unit": 1, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e09b08d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 144713152, "txbytes": 30152, "unit": 2, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099a0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 3, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099bed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6100, "txbytes": 2148, "unit": 4, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d82cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 1, "id": "23", "name": "com.fortinet.fct.kext.fwnke", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d67cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 20960, "txbytes": 240, "unit": 1, "id": "24", "name": "com.fortinet.kext.avkern2", "kind": "Active kernel control socket"}] diff --git a/tests/fixtures/osx-10.14.6/netstat-An.json b/tests/fixtures/osx-10.14.6/netstat-An.json index dca31a97..b2dbc3fb 100644 --- a/tests/fixtures/osx-10.14.6/netstat-An.json +++ b/tests/fixtures/osx-10.14.6/netstat-An.json @@ -1 +1 @@ -[{"socket": "7fb03cb94d505aed", "flowhash": "cedd0cbf", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.113.26", "state": "ESTABLISHED", "kind": "network", "local_port": "5486", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5486, "foreign_port_num": 443}, {"socket": "7fb03cb94d692475", "flowhash": "1c9f9fcd", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "208.91.113.36", "state": "ESTABLISHED", "kind": "network", "local_port": "5480", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5480, "foreign_port_num": 443}, {"socket": "7fb03cb94b25de55", "flowhash": "dbe59bf8", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.112.26", "state": "ESTABLISHED", "kind": "network", "local_port": "5478", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5478, "foreign_port_num": 443}, {"socket": "7fb03cb95fad8165", "flowhash": "6a3d6e4", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.201", "state": "ESTABLISHED", "kind": "network", "local_port": "5450", "foreign_port": "4923", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 4923}, {"socket": "7fb03cb946c1cbcd", "flowhash": "3c023c0", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "9", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 9}, {"socket": "7fb03cb95fad77dd", "flowhash": "3f163cd2", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.64", "state": "ESTABLISHED", "kind": "network", "local_port": "5450", "foreign_port": "53380", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 53380}, {"socket": "7fb03cb94221360d", "flowhash": "cc0e0c2a", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2603:1030:b00::e", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c20e4d", "flowhash": "8e998322", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2620:1ec:21::14", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "44", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 44}, {"socket": "7fb03cb93c75d475", "flowhash": "d53fb648", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "ESTABLISHED", "kind": "network", "local_port": "5452", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 8081}, {"socket": "7fb03cb937c2140d", "flowhash": "e013f438", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4000:8", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b718aed", "flowhash": "bcd5aa6f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.88", "state": "ESTABLISHED", "kind": "network", "local_port": "5452", "foreign_port": "49153", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 49153}, {"socket": "7fb03cb94b716e55", "flowhash": "30944ff3", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.89", "state": "ESTABLISHED", "kind": "network", "local_port": "5451", "foreign_port": "49152", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 49152}, {"socket": "7fb03cb93c75b7dd", "flowhash": "d54ab36f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.72", "state": "ESTABLISHED", "kind": "network", "local_port": "5450", "foreign_port": "55617", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 55617}, {"socket": "7fb03cb93b2d6e55", "flowhash": "d11ddd76", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "52.114.148.56", "state": "ESTABLISHED", "kind": "network", "local_port": "5451", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 443}, {"socket": "7fb03cb94a8f8d0d", "flowhash": "88c31bcb", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f988d", "flowhash": "a10400b8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb948e8f88d", "flowhash": "cd67a7b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb94bcb6475", "flowhash": "4ca24b6e", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5442", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5442, "foreign_port_num": 8081}, {"socket": "7fb03cb94b4f518d", "flowhash": "25c58fec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94bcb47dd", "flowhash": "b164479", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "kind": "network", "local_port": "53755", "foreign_port": "53763", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53755, "foreign_port_num": 53763}, {"socket": "7fb03cb94b433e55", "flowhash": "f28b9248", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "kind": "network", "local_port": "53763", "foreign_port": "53755", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53763, "foreign_port_num": 53755}, {"socket": "7fb03cb94b719475", "flowhash": "316c063a", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "104.155.21.255", "state": "ESTABLISHED", "kind": "network", "local_port": "5359", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5359, "foreign_port_num": 555}, {"socket": "7fb03cb946c1ba8d", "flowhash": "d32bc928", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94c066aed", "flowhash": "fb73c2ca", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "17.57.144.20", "state": "ESTABLISHED", "kind": "network", "local_port": "5263", "foreign_port": "5223", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5263, "foreign_port_num": 5223}, {"socket": "7fb03cb94d2ebaed", "flowhash": "22dc0e42", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.80", "state": "ESTABLISHED", "kind": "network", "local_port": "5179", "foreign_port": "548", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5179, "foreign_port_num": 548}, {"socket": "7fb03cb94a8f818d", "flowhash": "5e12e220", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f704d", "flowhash": "16ca6e94", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942212a8d", "flowhash": "da4b1f7d", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8dbcd", "flowhash": "4aeb1af1", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f92cd", "flowhash": "6859cfec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1e2cd", "flowhash": "248b598b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942213bcd", "flowhash": "56762cbf", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8d60d", "flowhash": "d29e9efa", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1d18d", "flowhash": "60f3fa15", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94b4347dd", "flowhash": "a1f7c428", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb948047aed", "flowhash": "ceac8539", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb963503e55", "flowhash": "d98dfd14", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb937c202cd", "flowhash": "2e36177f", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "6", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 6, "foreign_port_num": 4}, {"socket": "7fb03cb946c1c60d", "flowhash": "aaabe009", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb948536475", "flowhash": "dc1e01a0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "96.45.36.31", "state": "ESTABLISHED", "kind": "network", "local_port": "5879", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5879, "foreign_port_num": 443}, {"socket": "7fb03cb94b38e7dd", "flowhash": "e3b8b675", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "9592", "foreign_port": "58704", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 9592, "foreign_port_num": 58704}, {"socket": "7fb03cb94d691165", "flowhash": "7eee3b1", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5346", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5346, "foreign_port_num": 8081}, {"socket": "7fb03cb948e8f2cd", "flowhash": "e7486da9", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94221304d", "flowhash": "3e982c00", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c2088d", "flowhash": "30000ae7", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b4f4bcd", "flowhash": "57e076f4", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94221474d", "flowhash": "6465b356", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f6a8d", "flowhash": "bed25b95", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb937c1fd0d", "flowhash": "33613be8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb93c70600d", "flowhash": "777662f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58043", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58043}, {"socket": "7fb03cb93c709f4d", "flowhash": "b64a4fe1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63678", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63678}, {"socket": "7fb03cb93c708c0d", "flowhash": "48ba21c8", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "60774", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 60774}, {"socket": "7fb03cb93c70760d", "flowhash": "7f0afb2c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51411", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51411}, {"socket": "7fb03cb93c707b8d", "flowhash": "7c49f0f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57119", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57119}, {"socket": "7fb03cb93c70734d", "flowhash": "c750f7f0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61217", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61217}, {"socket": "7fb03cb93c70810d", "flowhash": "2308a9b6", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "56091", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 56091}, {"socket": "7fb03cb93c707e4d", "flowhash": "4b2ff4b3", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58807", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58807}, {"socket": "7fb03cb9371e2d4d", "flowhash": "8d16cd6b", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "54338", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54338}, {"socket": "7fb03cb93721310d", "flowhash": "f4140344", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "3722", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 3722}, {"socket": "7fb03cb93d5b800d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c7ba60d", "flowhash": "7fd9393b", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61224", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61224}, {"socket": "7fb03cb93c7b8a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b0470d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c706dcd", "flowhash": "f725c38f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63995", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63995}, {"socket": "7fb03cb93c708ecd", "flowhash": "5ed0c674", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5063", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5063}, {"socket": "7fb03cb93c70868d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33354", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33354}, {"socket": "7fb03cb93c70658d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33355", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33355}, {"socket": "7fb03cb934b578cd", "flowhash": "530d4d40", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61982}, {"socket": "7fb03cb934b59c8d", "flowhash": "91b8382", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61982}, {"socket": "7fb03cb934b56dcd", "flowhash": "ca5be4ea", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52378}, {"socket": "7fb03cb934b5760d", "flowhash": "3462e1b2", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52378}, {"socket": "7fb03cb934b5944d", "flowhash": "58e06369", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53910}, {"socket": "7fb03cb934b5a20d", "flowhash": "e03584", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53910}, {"socket": "7fb03cb934b55d4d", "flowhash": "e91dd2ad", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 57674}, {"socket": "7fb03cb934b5970d", "flowhash": "da8119f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57674}, {"socket": "7fb03cb934b599cd", "flowhash": "3504cd68", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62448}, {"socket": "7fb03cb934b557cd", "flowhash": "941a5612", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62448}, {"socket": "7fb03cb934b58c0d", "flowhash": "c487a471", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55681}, {"socket": "7fb03cb934b5600d", "flowhash": "c4b0913", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55681}, {"socket": "7fb03cb93716444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b6df00d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8bbd4d", "flowhash": "47d61919", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc00d", "flowhash": "8148de2d", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc2cd", "flowhash": "41ad85a1", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bfc8d", "flowhash": "3d59980f", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bd34d", "flowhash": "73cc988e", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bf44d", "flowhash": "dee9266c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bdb8d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb937211dcd", "flowhash": "b4871709", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51226", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51226}, {"socket": "7fb03cb9372154cd", "flowhash": "21b31d88", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61491", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61491}, {"socket": "7fb03cb93b74a3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "6096", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 6096}, {"socket": "7fb03cb93c7bb10d", "flowhash": "f1ac8ec5", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58997", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58997}, {"socket": "7fb03cb93b70ea8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b7129cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b71270d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b711c0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72d70d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72bb8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b747a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc90a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9520d", "flowhash": "97a44721", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52551", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52551}, {"socket": "7fb03cb93bc90d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc94f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c7bcc8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8beecd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be10d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be68d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93d5b7a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70894d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70a20d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70944d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70684d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b049cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371654cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716520d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937164f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371628cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162b8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162e4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371e32cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb934b56b0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721394d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbcd4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbf10d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"socket": "7fb03cb93721184d", "flowhash": "b180dc9e", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb9372149cd", "flowhash": "6fa9aaf7", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb934b583cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "9595", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 9595}, {"socket": "7fb03cb934b5810d", "flowhash": "5b0b6f0f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "138", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 138}, {"socket": "7fb03cb934b57e4d", "flowhash": "dd966d84", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "137", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 137}, {"socket": "7fb03cb939ad73cd", "flowhash": "0", "proto": "icm4", "recv_q": 8136, "send_q": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "icmp", "network_protocol": "ipv4"}, {"address": "7fb03cb95130f2c5", "type": "stream", "recv_q": 1, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e70d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130e70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130da8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f38d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130f38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130da8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130cd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130de75", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130de75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d9c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130cc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94d74825d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748965", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74825d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7471f5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7471f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74695d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74695d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747e75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747ce5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748bbd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d389c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d389c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d396a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d396a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ac85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ac85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b38d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3b38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cfa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b5dd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ae0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b44d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aa25", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d1f5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130d1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3aa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74906d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746e0d", "type": "stream", "recv_q": 8, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74906d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d385dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d385dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3876d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3876d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d386a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d386a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d390cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d390cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3895d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3895d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d392bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38e0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d392bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3976d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3912d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3912d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3976d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d391f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d391f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38c7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94b87f5d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS", "kind": "socket"}, {"address": "7fb03cb945d39c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ac7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63caf5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63caf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ac7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ce0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ce0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130caed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ca25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ca25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130caed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e7d5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ced5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f51d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ced5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130df3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c7cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130df3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ea2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ea2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb937de855d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Library/Application Support/LANDesk/tmp/socket/sys", "kind": "socket"}, {"address": "7fb03cb95130d065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ec85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ee15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ee15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ec85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ed4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ed4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3925d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39c85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3925d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d381f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b005e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afd895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935afd895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b005e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d5e5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ba8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63a895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cc85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7480cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d7480cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c7d5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e005", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb95130e005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b001fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdaed", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afdaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b001fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0038d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ead1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b002c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff0cd", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb935aff0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b002c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b00135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdbb5", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb935afdbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b00135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affd4d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935affd4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affe15", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affe15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affa2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0006d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afffa5", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afffa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b0006d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdc7d", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935afdc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affc85", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935affc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afde0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affbbd", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affbbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afde0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afded5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff965", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afded5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff7d5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdf9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff70d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdf9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff57d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff4b5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd2d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb935aff325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93609fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935aff25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94cddc36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock", "kind": "socket"}, {"address": "7fb03cb935afe12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe1f5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eac25", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe8fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afedad", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf", "kind": "socket"}, {"address": "7fb03cb935afedad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe8fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b763e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.000005f5", "kind": "socket"}, {"address": "7fb03cb935afef3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b761f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.00000948", "kind": "socket"}, {"address": "7fb03cb935afe5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b760fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afe6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe76d", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb935afe76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afee75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9360a12ed", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend.sock", "kind": "socket"}, {"address": "7fb03cb935afece5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd29bd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-export.sock", "kind": "socket"}, {"address": "7fb03cb935afec1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd43e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd40fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-volume.sock", "kind": "socket"}, {"address": "7fb03cb935afeb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eaa35", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker-api.sock", "kind": "socket"}, {"address": "7fb03cb935afea8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eab2d", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb93501b065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb937d37bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea465", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.port.sock", "kind": "socket"}, {"address": "7fb03cb937d3a5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a0dca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker.sock", "kind": "socket"}, {"address": "7fb03cb937d3a51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab1005", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.pcap.sock", "kind": "socket"}, {"address": "7fb03cb94d7495e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0f0d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.diag.sock", "kind": "socket"}, {"address": "7fb03cb94d746895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950aafd9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb94d7467cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0085", "conn": "0", "refs": "0", "nextref": "0", "addr": "osxfs.sock", "kind": "socket"}, {"address": "7fb03cb94d746bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb94d7496ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a1dab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock", "kind": "socket"}, {"address": "7fb03cb94d7492c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d746aed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7492c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7472bd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7472bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748a2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74776d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74776d", "type": "stream", "recv_q": 145, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748a2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74889d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7478fd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7478fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74889d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74870d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7487d5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7487d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74870d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7479c5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7479c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747a8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74857d", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb94d74857d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747a8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7484b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747b55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747b55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7484b5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748325", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7483ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94db01655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock_501", "kind": "socket"}, {"address": "7fb03cb94a63bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c57d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bdad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63be75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c325", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bf3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c005", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ad4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ae15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d377cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501b835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ad4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d377cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ae15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a6ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a06d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d387cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94d0e4a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock", "kind": "socket"}, {"address": "7fb03cb937d3812d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3812d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d395dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39515", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d395dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39dad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39dad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9418d26cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket", "kind": "socket"}, {"address": "7fb03cb93ceaeaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb151d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb151d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceae95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb138d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb138d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceae95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb12c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaed45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaed45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb12c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaee0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeed5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaeed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaee0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb106d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaef9d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaef9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb106d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0fa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb0fa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0bbd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafa8d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceafa8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb057d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb070d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb070d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb057d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf9c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaf9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb025d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea4fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock", "kind": "socket"}, {"address": "7fb03cb93ceb0325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea5074d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/tmp/filesystemui.socket", "kind": "socket"}, {"address": "7fb03cb93ceafb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea1cd1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WbUfpjQ9cD/Render", "kind": "socket"}, {"address": "7fb03cb93ceb00cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea42275", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners", "kind": "socket"}, {"address": "7fb03cb937d394b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938289085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb93501a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aaed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501aaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aa25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d1fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ae0d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501cedd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b44d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93763e7cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/displaypolicyd/state", "kind": "socket"}, {"address": "7fb03cb93501b76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb936ea7d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/pppconfd", "kind": "socket"}, {"address": "7fb03cb93501c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec3e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/epctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec1f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctvpnctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec0fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb93501c70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec005", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/com.docker.vmnetd.sock", "kind": "socket"}, {"address": "7fb03cb93501c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e845", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e55d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/usbmuxd", "kind": "socket"}, {"address": "7fb03cb93501c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e74d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355617cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/mdssvc", "kind": "socket"}, {"address": "7fb03cb93501c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355636cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355618c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501bb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355635d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355634dd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/systemkeychaincheck.socket", "kind": "socket"}, {"address": "7fb03cb93501bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561ab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/.sim_diagnosticd_socket", "kind": "socket"}, {"address": "7fb03cb93501bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561bad", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/portmap.socket", "kind": "socket"}, {"address": "7fb03cb93501be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935511d1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/vpncontrol.sock", "kind": "socket"}, {"address": "7fb03cb93501bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354fd085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/NETLOGON", "kind": "socket"}, {"address": "7fb03cb93501c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354e58c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/cupsd", "kind": "socket"}, {"address": "7fb03cb95130ddad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3afa5", "kind": "socket"}, {"address": "7fb03cb94a63b065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b9c5", "refs": "7fb03cb94a63b9c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b9c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b065", "refs": "7fb03cb94a63b065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3afa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63ad45", "kind": "socket"}, {"address": "7fb03cb94a63ad45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63af9d", "kind": "socket"}, {"address": "7fb03cb94a63af9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae7cd", "kind": "socket"}, {"address": "7fb03cb93ceae7cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3b51d", "kind": "socket"}, {"address": "7fb03cb945d3b51d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3a3ed", "kind": "socket"}, {"address": "7fb03cb945d3a3ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3989d", "kind": "socket"}, {"address": "7fb03cb937d3989d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b76d", "kind": "socket"}, {"address": "7fb03cb94a63b76d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d44d", "kind": "socket"}, {"address": "7fb03cb95130d44d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130cf9d", "kind": "socket"}, {"address": "7fb03cb95130cf9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d6ad", "kind": "socket"}, {"address": "7fb03cb94d7491fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7476a5", "refs": "7fb03cb94d7476a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7476a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7491fd", "refs": "7fb03cb94d7491fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63d6ad", "kind": "socket"}, {"address": "7fb03cb94d748005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d749455", "refs": "7fb03cb94d749455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d749455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748005", "refs": "7fb03cb94d748005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7475dd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747065", "refs": "7fb03cb94d747065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7475dd", "refs": "7fb03cb94d7475dd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a95d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d455", "refs": "7fb03cb93501d455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a95d", "refs": "7fb03cb93501a95d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130db55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ebbd", "refs": "7fb03cb95130ebbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ebbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130db55", "refs": "7fb03cb95130db55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74938d", "kind": "socket"}, {"address": "7fb03cb94d74938d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38a8d", "kind": "socket"}, {"address": "7fb03cb937d38a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d835", "kind": "socket"}, {"address": "7fb03cb95130d835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d746c7d", "kind": "socket"}, {"address": "7fb03cb945d3aedd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b6ad", "refs": "7fb03cb945d3b6ad", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3aedd", "refs": "7fb03cb945d3aedd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74712d", "kind": "socket"}, {"address": "7fb03cb94d74712d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39edd", "kind": "socket"}, {"address": "7fb03cb937d39edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38dad", "kind": "socket"}, {"address": "7fb03cb937d38dad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b12d", "kind": "socket"}, {"address": "7fb03cb94a63b12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e57d", "kind": "socket"}, {"address": "7fb03cb95130e57d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74951d", "kind": "socket"}, {"address": "7fb03cb94d74951d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d749135", "kind": "socket"}, {"address": "7fb03cb94d749135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb15e5", "kind": "socket"}, {"address": "7fb03cb93ceb15e5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae895", "kind": "socket"}, {"address": "7fb03cb93ceae895", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb16ad", "kind": "socket"}, {"address": "7fb03cb93ceb16ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3a1fd", "kind": "socket"}, {"address": "7fb03cb937d3a1fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39065", "kind": "socket"}, {"address": "7fb03cb945d39065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d38f9d", "kind": "socket"}, {"address": "7fb03cb945d38f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39a8d", "kind": "socket"}, {"address": "7fb03cb945d399c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a005", "refs": "7fb03cb945d3a005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d399c5", "refs": "7fb03cb945d399c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39b55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39f3d", "refs": "7fb03cb945d39f3d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39f3d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39b55", "refs": "7fb03cb945d39b55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d397d5", "kind": "socket"}, {"address": "7fb03cb937d37d45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37e0d", "refs": "7fb03cb937d37e0d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37e0d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37d45", "refs": "7fb03cb937d37d45", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d397d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb11fd", "kind": "socket"}, {"address": "7fb03cb93ceb11fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf065", "kind": "socket"}, {"address": "7fb03cb93ceaf065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0edd", "kind": "socket"}, {"address": "7fb03cb93ceb0edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf385", "kind": "socket"}, {"address": "7fb03cb93ceaf12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf1f5", "refs": "7fb03cb93ceaf1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf12d", "refs": "7fb03cb93ceaf12d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf385", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0965", "kind": "socket"}, {"address": "7fb03cb93ceb0965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0a2d", "kind": "socket"}, {"address": "7fb03cb93ceb0a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf835", "kind": "socket"}, {"address": "7fb03cb93ceaf835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf8fd", "kind": "socket"}, {"address": "7fb03cb93ceaf8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafdad", "kind": "socket"}, {"address": "7fb03cb93ceafdad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb07d5", "kind": "socket"}, {"address": "7fb03cb93ceb07d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb089d", "kind": "socket"}, {"address": "7fb03cb93ceb0645", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafe75", "refs": "7fb03cb93ceafe75", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafe75", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0645", "refs": "7fb03cb93ceb0645", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb089d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafc1d", "kind": "socket"}, {"address": "7fb03cb93ceb0195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0005", "refs": "7fb03cb93ceb0005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0195", "refs": "7fb03cb93ceb0195", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafc1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb03ed", "kind": "socket"}, {"address": "7fb03cb93ceb03ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39fa5", "kind": "socket"}, {"address": "7fb03cb937d39a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39bbd", "refs": "7fb03cb937d39bbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39bbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39a2d", "refs": "7fb03cb937d39a2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39fa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39965", "kind": "socket"}, {"address": "7fb03cb937d38065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37c7d", "refs": "7fb03cb937d37c7d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38065", "refs": "7fb03cb937d38065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d37f9d", "kind": "socket"}, {"address": "7fb03cb937d37f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d393ed", "kind": "socket"}, {"address": "7fb03cb937d393ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3970d", "kind": "socket"}, {"address": "7fb03cb937d3970d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d135", "kind": "socket"}, {"address": "7fb03cb937d382bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3957d", "refs": "7fb03cb937d3957d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3957d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d382bd", "refs": "7fb03cb937d382bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38c1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38ce5", "refs": "7fb03cb937d38ce5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38ce5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38c1d", "refs": "7fb03cb937d38c1d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cd4d", "kind": "socket"}, {"address": "7fb03cb93501cd4d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cc85", "kind": "socket"}, {"address": "7fb03cb93501b1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b2bd", "refs": "7fb03cb93501b2bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b2bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b1f5", "refs": "7fb03cb93501b1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b515", "refs": "7fb03cb93501b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b515", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ce15", "refs": "7fb03cb93501ce15", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501caf5", "refs": "7fb03cb93501caf5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501caf5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b6a5", "refs": "7fb03cb93501b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cc85", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cbbd", "kind": "socket"}, {"address": "7fb03cb93501cbbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501c0cd", "kind": "socket"}, {"address": "7fb03cb93501b8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ca2d", "refs": "7fb03cb93501ca2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ca2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b8fd", "refs": "7fb03cb93501b8fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c0cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb934ff43e5", "conn": "0", "refs": "7fb03cb95130ddad", "nextref": "0", "addr": "/private//var/run/syslog", "kind": "socket"}, {"kctlref": "10001", "id": "1", "unit": -1, "osx_flags": 9, "pcbcount": 0, "rcvbuf": 131072, "sndbuf": 131072, "name": "com.apple.flow-divert ", "kind": "Registered kernel control module"}, {"kctlref": "20002", "id": "2", "unit": -1, "osx_flags": 1, "pcbcount": 1, "rcvbuf": 16384, "sndbuf": 2048, "name": "com.apple.nke.sockwall ", "kind": "Registered kernel control module"}, {"kctlref": "30003", "id": "3", "unit": -1, "osx_flags": 9, "pcbcount": 0, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.content-filter ", "kind": "Registered kernel control module"}, {"kctlref": "40004", "id": "4", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.necp_control ", "kind": "Registered kernel control module"}, {"kctlref": "50005", "id": "5", "unit": -1, "osx_flags": 1, "pcbcount": 12, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.netagent ", "kind": "Registered kernel control module"}, {"kctlref": "60006", "id": "6", "unit": -1, "osx_flags": 9, "pcbcount": 4, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.net.utun_control ", "kind": "Registered kernel control module"}, {"kctlref": "70007", "id": "7", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.ipsec_control ", "kind": "Registered kernel control module"}, {"kctlref": "80008", "id": "8", "unit": -1, "osx_flags": 0, "pcbcount": 74, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.netsrc ", "kind": "Registered kernel control module"}, {"kctlref": "90009", "id": "9", "unit": -1, "osx_flags": 18, "pcbcount": 4, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.statistics ", "kind": "Registered kernel control module"}, {"kctlref": "a000a", "id": "a", "unit": -1, "osx_flags": 5, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.tcp_ccdebug ", "kind": "Registered kernel control module"}, {"kctlref": "b000b", "id": "b", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.advisory ", "kind": "Registered kernel control module"}, {"kctlref": "c000c", "id": "c", "unit": -1, "osx_flags": 4, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 2048, "name": "com.apple.uart.BLTH ", "kind": "Registered kernel control module"}, {"kctlref": "d000d", "id": "d", "unit": -1, "osx_flags": 4, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.uart.sk.BLTH ", "kind": "Registered kernel control module"}, {"kctlref": "e000e", "id": "e", "unit": -1, "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 8192, "name": "com.apple.fileutil.kext.stateful.ctl ", "kind": "Registered kernel control module"}, {"kctlref": "f000f", "id": "f", "unit": -1, "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.fileutil.kext.stateless.ctl ", "kind": "Registered kernel control module"}, {"kctlref": "170017", "id": "17", "unit": -1, "osx_flags": 5, "pcbcount": 1, "rcvbuf": 32768, "sndbuf": 2048, "name": "com.fortinet.fct.kext.fwnke ", "kind": "Registered kernel control module"}, {"kctlref": "ea0010", "id": "18", "unit": -1, "osx_flags": 5, "pcbcount": 1, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.fortinet.kext.avkern2 ", "kind": "Registered kernel control module"}, {"pcb": "7fb03cb936ead2bd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead2f5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 4, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd0d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd45", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead24d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead215", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1dd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 11, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd7d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacdb5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacded", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace25", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace5d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1a5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace95", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacecd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf05", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead16d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 6, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf3d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf75", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfad", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead135", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 10, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfe5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1000, "class": 5, "subcla": 11, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead01d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 7, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead055", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead08d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0fd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 3, "subcla": 3, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0c5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb937d0314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "2", "name": "com.apple.nke.sockwall", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4f4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d5ded", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d656d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4c4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d662d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a1a6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c7488ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e7299ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b5cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b6ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60182d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f6020cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f9cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8fded", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f48d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d644d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c237d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c23682d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9503efa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93cc9038d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93d3a7d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93eefef0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d2e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60260d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f601d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8e30d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8d8ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 13, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d384d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 14, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940438bad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 15, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb949ba84ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 16, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94043968d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 17, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940c3594d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 18, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941b872cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 19, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb943aa506d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 20, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941451a8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 21, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94510508d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 22, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9459058ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 23, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb945c5bf0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 24, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94766e96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 25, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946464c6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 26, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946463fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 27, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94646394d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 28, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95002e5ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 29, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fe5d12d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 30, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fb8feed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 31, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9471823cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 32, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96085390d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 33, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a3cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 34, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f18d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 35, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f42d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 36, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804fead", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 37, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fefcd2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 38, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9330ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 39, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffb8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 40, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e70872d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 41, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c8769ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 42, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9508e426d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 43, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f702d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 44, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94d86f2cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 45, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94e49c2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 46, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95eff106d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 47, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93aa79fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 48, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f65e74d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 49, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f8944ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 50, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f931d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 51, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9d11ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 52, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fbb0aed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 53, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f88ec4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 54, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffa0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 55, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c736fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 56, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95477236d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 57, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a588d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 58, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a726d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 59, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ed4f24d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 60, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f46cc6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 61, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fb5ad2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 62, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95cb8b9ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 63, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb954772d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 64, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb950171fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 65, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d590d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 66, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a1ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 67, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ffdd1ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 68, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 69, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e6c8e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 70, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94b5af2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 71, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96074aa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 72, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95bff57cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 74, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fc8056d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 77, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb937d02e4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e09b08d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099a0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099bed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d82cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "23", "name": "com.fortinet.fct.kext.fwnke", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d67cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "24", "name": "com.fortinet.kext.avkern2", "kind": "Active kernel control socket"}] +[{"socket": "7fb03cb94d505aed", "flowhash": "cedd0cbf", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.113.26", "state": "ESTABLISHED", "kind": "network", "local_port": "5486", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5486, "foreign_port_num": 443}, {"socket": "7fb03cb94d692475", "flowhash": "1c9f9fcd", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "208.91.113.36", "state": "ESTABLISHED", "kind": "network", "local_port": "5480", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5480, "foreign_port_num": 443}, {"socket": "7fb03cb94b25de55", "flowhash": "dbe59bf8", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.112.26", "state": "ESTABLISHED", "kind": "network", "local_port": "5478", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5478, "foreign_port_num": 443}, {"socket": "7fb03cb95fad8165", "flowhash": "6a3d6e4", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.201", "state": "ESTABLISHED", "kind": "network", "local_port": "5450", "foreign_port": "4923", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 4923}, {"socket": "7fb03cb946c1cbcd", "flowhash": "3c023c0", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "9", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 9}, {"socket": "7fb03cb95fad77dd", "flowhash": "3f163cd2", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.64", "state": "ESTABLISHED", "kind": "network", "local_port": "5450", "foreign_port": "53380", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 53380}, {"socket": "7fb03cb94221360d", "flowhash": "cc0e0c2a", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2603:1030:b00::e", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c20e4d", "flowhash": "8e998322", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2620:1ec:21::14", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "44", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 44}, {"socket": "7fb03cb93c75d475", "flowhash": "d53fb648", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "ESTABLISHED", "kind": "network", "local_port": "5452", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 8081}, {"socket": "7fb03cb937c2140d", "flowhash": "e013f438", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4000:8", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b718aed", "flowhash": "bcd5aa6f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.88", "state": "ESTABLISHED", "kind": "network", "local_port": "5452", "foreign_port": "49153", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 49153}, {"socket": "7fb03cb94b716e55", "flowhash": "30944ff3", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.89", "state": "ESTABLISHED", "kind": "network", "local_port": "5451", "foreign_port": "49152", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 49152}, {"socket": "7fb03cb93c75b7dd", "flowhash": "d54ab36f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.72", "state": "ESTABLISHED", "kind": "network", "local_port": "5450", "foreign_port": "55617", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 55617}, {"socket": "7fb03cb93b2d6e55", "flowhash": "d11ddd76", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "52.114.148.56", "state": "ESTABLISHED", "kind": "network", "local_port": "5451", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 443}, {"socket": "7fb03cb94a8f8d0d", "flowhash": "88c31bcb", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f988d", "flowhash": "a10400b8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb948e8f88d", "flowhash": "cd67a7b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb94bcb6475", "flowhash": "4ca24b6e", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5442", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5442, "foreign_port_num": 8081}, {"socket": "7fb03cb94b4f518d", "flowhash": "25c58fec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94bcb47dd", "flowhash": "b164479", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "kind": "network", "local_port": "53755", "foreign_port": "53763", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53755, "foreign_port_num": 53763}, {"socket": "7fb03cb94b433e55", "flowhash": "f28b9248", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "kind": "network", "local_port": "53763", "foreign_port": "53755", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53763, "foreign_port_num": 53755}, {"socket": "7fb03cb94b719475", "flowhash": "316c063a", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "104.155.21.255", "state": "ESTABLISHED", "kind": "network", "local_port": "5359", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5359, "foreign_port_num": 555}, {"socket": "7fb03cb946c1ba8d", "flowhash": "d32bc928", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94c066aed", "flowhash": "fb73c2ca", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "17.57.144.20", "state": "ESTABLISHED", "kind": "network", "local_port": "5263", "foreign_port": "5223", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5263, "foreign_port_num": 5223}, {"socket": "7fb03cb94d2ebaed", "flowhash": "22dc0e42", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.80", "state": "ESTABLISHED", "kind": "network", "local_port": "5179", "foreign_port": "548", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5179, "foreign_port_num": 548}, {"socket": "7fb03cb94a8f818d", "flowhash": "5e12e220", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f704d", "flowhash": "16ca6e94", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942212a8d", "flowhash": "da4b1f7d", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8dbcd", "flowhash": "4aeb1af1", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f92cd", "flowhash": "6859cfec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1e2cd", "flowhash": "248b598b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942213bcd", "flowhash": "56762cbf", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8d60d", "flowhash": "d29e9efa", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1d18d", "flowhash": "60f3fa15", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94b4347dd", "flowhash": "a1f7c428", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb948047aed", "flowhash": "ceac8539", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb963503e55", "flowhash": "d98dfd14", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb937c202cd", "flowhash": "2e36177f", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "6", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 6, "foreign_port_num": 4}, {"socket": "7fb03cb946c1c60d", "flowhash": "aaabe009", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb948536475", "flowhash": "dc1e01a0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "96.45.36.31", "state": "ESTABLISHED", "kind": "network", "local_port": "5879", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5879, "foreign_port_num": 443}, {"socket": "7fb03cb94b38e7dd", "flowhash": "e3b8b675", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "9592", "foreign_port": "58704", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 9592, "foreign_port_num": 58704}, {"socket": "7fb03cb94d691165", "flowhash": "7eee3b1", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "5346", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5346, "foreign_port_num": 8081}, {"socket": "7fb03cb948e8f2cd", "flowhash": "e7486da9", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94221304d", "flowhash": "3e982c00", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c2088d", "flowhash": "30000ae7", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b4f4bcd", "flowhash": "57e076f4", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94221474d", "flowhash": "6465b356", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f6a8d", "flowhash": "bed25b95", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb937c1fd0d", "flowhash": "33613be8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb93c70600d", "flowhash": "777662f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58043", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58043}, {"socket": "7fb03cb93c709f4d", "flowhash": "b64a4fe1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63678", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63678}, {"socket": "7fb03cb93c708c0d", "flowhash": "48ba21c8", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "60774", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 60774}, {"socket": "7fb03cb93c70760d", "flowhash": "7f0afb2c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51411", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51411}, {"socket": "7fb03cb93c707b8d", "flowhash": "7c49f0f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57119", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57119}, {"socket": "7fb03cb93c70734d", "flowhash": "c750f7f0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61217", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61217}, {"socket": "7fb03cb93c70810d", "flowhash": "2308a9b6", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "56091", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 56091}, {"socket": "7fb03cb93c707e4d", "flowhash": "4b2ff4b3", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58807", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58807}, {"socket": "7fb03cb9371e2d4d", "flowhash": "8d16cd6b", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "54338", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54338}, {"socket": "7fb03cb93721310d", "flowhash": "f4140344", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "3722", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 3722}, {"socket": "7fb03cb93d5b800d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c7ba60d", "flowhash": "7fd9393b", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61224", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61224}, {"socket": "7fb03cb93c7b8a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b0470d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c706dcd", "flowhash": "f725c38f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63995", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63995}, {"socket": "7fb03cb93c708ecd", "flowhash": "5ed0c674", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5063", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5063}, {"socket": "7fb03cb93c70868d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33354", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33354}, {"socket": "7fb03cb93c70658d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33355", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33355}, {"socket": "7fb03cb934b578cd", "flowhash": "530d4d40", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61982}, {"socket": "7fb03cb934b59c8d", "flowhash": "91b8382", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61982}, {"socket": "7fb03cb934b56dcd", "flowhash": "ca5be4ea", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52378}, {"socket": "7fb03cb934b5760d", "flowhash": "3462e1b2", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52378}, {"socket": "7fb03cb934b5944d", "flowhash": "58e06369", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53910}, {"socket": "7fb03cb934b5a20d", "flowhash": "e03584", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53910}, {"socket": "7fb03cb934b55d4d", "flowhash": "e91dd2ad", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 57674}, {"socket": "7fb03cb934b5970d", "flowhash": "da8119f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57674}, {"socket": "7fb03cb934b599cd", "flowhash": "3504cd68", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62448}, {"socket": "7fb03cb934b557cd", "flowhash": "941a5612", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62448}, {"socket": "7fb03cb934b58c0d", "flowhash": "c487a471", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55681}, {"socket": "7fb03cb934b5600d", "flowhash": "c4b0913", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55681}, {"socket": "7fb03cb93716444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b6df00d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8bbd4d", "flowhash": "47d61919", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc00d", "flowhash": "8148de2d", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc2cd", "flowhash": "41ad85a1", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bfc8d", "flowhash": "3d59980f", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bd34d", "flowhash": "73cc988e", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bf44d", "flowhash": "dee9266c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bdb8d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb937211dcd", "flowhash": "b4871709", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51226", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51226}, {"socket": "7fb03cb9372154cd", "flowhash": "21b31d88", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61491", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61491}, {"socket": "7fb03cb93b74a3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "6096", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 6096}, {"socket": "7fb03cb93c7bb10d", "flowhash": "f1ac8ec5", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58997", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58997}, {"socket": "7fb03cb93b70ea8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b7129cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b71270d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b711c0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72d70d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72bb8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b747a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc90a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9520d", "flowhash": "97a44721", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52551", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52551}, {"socket": "7fb03cb93bc90d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc94f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c7bcc8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8beecd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be10d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be68d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93d5b7a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70894d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70a20d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70944d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70684d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b049cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371654cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716520d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937164f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371628cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162b8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162e4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371e32cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb934b56b0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721394d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbcd4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbf10d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"socket": "7fb03cb93721184d", "flowhash": "b180dc9e", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb9372149cd", "flowhash": "6fa9aaf7", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb934b583cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "9595", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 9595}, {"socket": "7fb03cb934b5810d", "flowhash": "5b0b6f0f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "138", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 138}, {"socket": "7fb03cb934b57e4d", "flowhash": "dd966d84", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "137", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 137}, {"socket": "7fb03cb939ad73cd", "flowhash": "0", "proto": "icm4", "recv_q": 8136, "send_q": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "icmp", "network_protocol": "ipv4"}, {"address": "7fb03cb95130f2c5", "type": "stream", "recv_q": 1, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e70d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130e70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130da8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f38d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130f38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130da8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130cd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130de75", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130de75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d9c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130cc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94d74825d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748965", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74825d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7471f5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7471f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74695d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74695d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747e75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747ce5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748bbd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d389c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d389c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d396a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d396a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ac85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ac85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b38d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3b38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cfa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b5dd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ae0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b44d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aa25", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d1f5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130d1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3aa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74906d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746e0d", "type": "stream", "recv_q": 8, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74906d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d385dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d385dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3876d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3876d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d386a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d386a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d390cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d390cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3895d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3895d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d392bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38e0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d392bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3976d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3912d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3912d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3976d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d391f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d391f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38c7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94b87f5d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS", "kind": "socket"}, {"address": "7fb03cb945d39c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ac7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63caf5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63caf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ac7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ce0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ce0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130caed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ca25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ca25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130caed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e7d5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ced5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f51d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ced5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130df3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c7cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130df3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ea2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ea2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb937de855d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Library/Application Support/LANDesk/tmp/socket/sys", "kind": "socket"}, {"address": "7fb03cb95130d065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ec85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ee15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ee15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ec85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ed4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ed4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3925d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39c85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3925d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d381f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b005e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afd895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935afd895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b005e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d5e5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ba8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63a895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cc85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7480cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d7480cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c7d5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e005", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb95130e005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b001fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdaed", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afdaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b001fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0038d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ead1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b002c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff0cd", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb935aff0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b002c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b00135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdbb5", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb935afdbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b00135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affd4d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935affd4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affe15", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affe15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affa2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0006d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afffa5", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afffa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b0006d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdc7d", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935afdc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affc85", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935affc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afde0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affbbd", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affbbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afde0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afded5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff965", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afded5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff7d5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdf9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff70d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdf9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff57d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff4b5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd2d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb935aff325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93609fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935aff25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94cddc36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock", "kind": "socket"}, {"address": "7fb03cb935afe12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe1f5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eac25", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe8fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afedad", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf", "kind": "socket"}, {"address": "7fb03cb935afedad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe8fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b763e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.000005f5", "kind": "socket"}, {"address": "7fb03cb935afef3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b761f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.00000948", "kind": "socket"}, {"address": "7fb03cb935afe5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b760fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afe6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe76d", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb935afe76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afee75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9360a12ed", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend.sock", "kind": "socket"}, {"address": "7fb03cb935afece5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd29bd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-export.sock", "kind": "socket"}, {"address": "7fb03cb935afec1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd43e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd40fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-volume.sock", "kind": "socket"}, {"address": "7fb03cb935afeb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eaa35", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker-api.sock", "kind": "socket"}, {"address": "7fb03cb935afea8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eab2d", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb93501b065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb937d37bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea465", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.port.sock", "kind": "socket"}, {"address": "7fb03cb937d3a5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a0dca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker.sock", "kind": "socket"}, {"address": "7fb03cb937d3a51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab1005", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.pcap.sock", "kind": "socket"}, {"address": "7fb03cb94d7495e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0f0d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.diag.sock", "kind": "socket"}, {"address": "7fb03cb94d746895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950aafd9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb94d7467cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0085", "conn": "0", "refs": "0", "nextref": "0", "addr": "osxfs.sock", "kind": "socket"}, {"address": "7fb03cb94d746bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb94d7496ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a1dab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock", "kind": "socket"}, {"address": "7fb03cb94d7492c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d746aed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7492c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7472bd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7472bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748a2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74776d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74776d", "type": "stream", "recv_q": 145, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748a2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74889d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7478fd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7478fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74889d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74870d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7487d5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7487d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74870d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7479c5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7479c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747a8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74857d", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb94d74857d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747a8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7484b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747b55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747b55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7484b5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748325", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7483ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94db01655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock_501", "kind": "socket"}, {"address": "7fb03cb94a63bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c57d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bdad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63be75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c325", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bf3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c005", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ad4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ae15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d377cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501b835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ad4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d377cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ae15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a6ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a06d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d387cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94d0e4a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock", "kind": "socket"}, {"address": "7fb03cb937d3812d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3812d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d395dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39515", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d395dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39dad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39dad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9418d26cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket", "kind": "socket"}, {"address": "7fb03cb93ceaeaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb151d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb151d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceae95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb138d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb138d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceae95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb12c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaed45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaed45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb12c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaee0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeed5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaeed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaee0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb106d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaef9d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaef9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb106d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0fa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb0fa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0bbd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafa8d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceafa8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb057d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb070d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb070d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb057d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf9c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaf9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb025d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea4fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock", "kind": "socket"}, {"address": "7fb03cb93ceb0325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea5074d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/tmp/filesystemui.socket", "kind": "socket"}, {"address": "7fb03cb93ceafb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea1cd1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WbUfpjQ9cD/Render", "kind": "socket"}, {"address": "7fb03cb93ceb00cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea42275", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners", "kind": "socket"}, {"address": "7fb03cb937d394b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938289085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb93501a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aaed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501aaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aa25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d1fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ae0d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501cedd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b44d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93763e7cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/displaypolicyd/state", "kind": "socket"}, {"address": "7fb03cb93501b76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb936ea7d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/pppconfd", "kind": "socket"}, {"address": "7fb03cb93501c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec3e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/epctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec1f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctvpnctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec0fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb93501c70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec005", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/com.docker.vmnetd.sock", "kind": "socket"}, {"address": "7fb03cb93501c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e845", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e55d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/usbmuxd", "kind": "socket"}, {"address": "7fb03cb93501c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e74d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355617cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/mdssvc", "kind": "socket"}, {"address": "7fb03cb93501c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355636cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355618c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501bb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355635d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355634dd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/systemkeychaincheck.socket", "kind": "socket"}, {"address": "7fb03cb93501bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561ab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/.sim_diagnosticd_socket", "kind": "socket"}, {"address": "7fb03cb93501bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561bad", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/portmap.socket", "kind": "socket"}, {"address": "7fb03cb93501be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935511d1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/vpncontrol.sock", "kind": "socket"}, {"address": "7fb03cb93501bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354fd085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/NETLOGON", "kind": "socket"}, {"address": "7fb03cb93501c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354e58c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/cupsd", "kind": "socket"}, {"address": "7fb03cb95130ddad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3afa5", "kind": "socket"}, {"address": "7fb03cb94a63b065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b9c5", "refs": "7fb03cb94a63b9c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b9c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b065", "refs": "7fb03cb94a63b065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3afa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63ad45", "kind": "socket"}, {"address": "7fb03cb94a63ad45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63af9d", "kind": "socket"}, {"address": "7fb03cb94a63af9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae7cd", "kind": "socket"}, {"address": "7fb03cb93ceae7cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3b51d", "kind": "socket"}, {"address": "7fb03cb945d3b51d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3a3ed", "kind": "socket"}, {"address": "7fb03cb945d3a3ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3989d", "kind": "socket"}, {"address": "7fb03cb937d3989d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b76d", "kind": "socket"}, {"address": "7fb03cb94a63b76d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d44d", "kind": "socket"}, {"address": "7fb03cb95130d44d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130cf9d", "kind": "socket"}, {"address": "7fb03cb95130cf9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d6ad", "kind": "socket"}, {"address": "7fb03cb94d7491fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7476a5", "refs": "7fb03cb94d7476a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7476a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7491fd", "refs": "7fb03cb94d7491fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63d6ad", "kind": "socket"}, {"address": "7fb03cb94d748005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d749455", "refs": "7fb03cb94d749455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d749455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748005", "refs": "7fb03cb94d748005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7475dd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747065", "refs": "7fb03cb94d747065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7475dd", "refs": "7fb03cb94d7475dd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a95d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d455", "refs": "7fb03cb93501d455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a95d", "refs": "7fb03cb93501a95d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130db55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ebbd", "refs": "7fb03cb95130ebbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ebbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130db55", "refs": "7fb03cb95130db55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74938d", "kind": "socket"}, {"address": "7fb03cb94d74938d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38a8d", "kind": "socket"}, {"address": "7fb03cb937d38a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d835", "kind": "socket"}, {"address": "7fb03cb95130d835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d746c7d", "kind": "socket"}, {"address": "7fb03cb945d3aedd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b6ad", "refs": "7fb03cb945d3b6ad", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3aedd", "refs": "7fb03cb945d3aedd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74712d", "kind": "socket"}, {"address": "7fb03cb94d74712d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39edd", "kind": "socket"}, {"address": "7fb03cb937d39edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38dad", "kind": "socket"}, {"address": "7fb03cb937d38dad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b12d", "kind": "socket"}, {"address": "7fb03cb94a63b12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e57d", "kind": "socket"}, {"address": "7fb03cb95130e57d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74951d", "kind": "socket"}, {"address": "7fb03cb94d74951d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d749135", "kind": "socket"}, {"address": "7fb03cb94d749135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb15e5", "kind": "socket"}, {"address": "7fb03cb93ceb15e5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae895", "kind": "socket"}, {"address": "7fb03cb93ceae895", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb16ad", "kind": "socket"}, {"address": "7fb03cb93ceb16ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3a1fd", "kind": "socket"}, {"address": "7fb03cb937d3a1fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39065", "kind": "socket"}, {"address": "7fb03cb945d39065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d38f9d", "kind": "socket"}, {"address": "7fb03cb945d38f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39a8d", "kind": "socket"}, {"address": "7fb03cb945d399c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a005", "refs": "7fb03cb945d3a005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d399c5", "refs": "7fb03cb945d399c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39b55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39f3d", "refs": "7fb03cb945d39f3d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39f3d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39b55", "refs": "7fb03cb945d39b55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d397d5", "kind": "socket"}, {"address": "7fb03cb937d37d45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37e0d", "refs": "7fb03cb937d37e0d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37e0d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37d45", "refs": "7fb03cb937d37d45", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d397d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb11fd", "kind": "socket"}, {"address": "7fb03cb93ceb11fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf065", "kind": "socket"}, {"address": "7fb03cb93ceaf065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0edd", "kind": "socket"}, {"address": "7fb03cb93ceb0edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf385", "kind": "socket"}, {"address": "7fb03cb93ceaf12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf1f5", "refs": "7fb03cb93ceaf1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf12d", "refs": "7fb03cb93ceaf12d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf385", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0965", "kind": "socket"}, {"address": "7fb03cb93ceb0965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0a2d", "kind": "socket"}, {"address": "7fb03cb93ceb0a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf835", "kind": "socket"}, {"address": "7fb03cb93ceaf835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf8fd", "kind": "socket"}, {"address": "7fb03cb93ceaf8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafdad", "kind": "socket"}, {"address": "7fb03cb93ceafdad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb07d5", "kind": "socket"}, {"address": "7fb03cb93ceb07d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb089d", "kind": "socket"}, {"address": "7fb03cb93ceb0645", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafe75", "refs": "7fb03cb93ceafe75", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafe75", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0645", "refs": "7fb03cb93ceb0645", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb089d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafc1d", "kind": "socket"}, {"address": "7fb03cb93ceb0195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0005", "refs": "7fb03cb93ceb0005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0195", "refs": "7fb03cb93ceb0195", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafc1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb03ed", "kind": "socket"}, {"address": "7fb03cb93ceb03ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39fa5", "kind": "socket"}, {"address": "7fb03cb937d39a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39bbd", "refs": "7fb03cb937d39bbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39bbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39a2d", "refs": "7fb03cb937d39a2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39fa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39965", "kind": "socket"}, {"address": "7fb03cb937d38065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37c7d", "refs": "7fb03cb937d37c7d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38065", "refs": "7fb03cb937d38065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d37f9d", "kind": "socket"}, {"address": "7fb03cb937d37f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d393ed", "kind": "socket"}, {"address": "7fb03cb937d393ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3970d", "kind": "socket"}, {"address": "7fb03cb937d3970d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d135", "kind": "socket"}, {"address": "7fb03cb937d382bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3957d", "refs": "7fb03cb937d3957d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3957d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d382bd", "refs": "7fb03cb937d382bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38c1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38ce5", "refs": "7fb03cb937d38ce5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38ce5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38c1d", "refs": "7fb03cb937d38c1d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cd4d", "kind": "socket"}, {"address": "7fb03cb93501cd4d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cc85", "kind": "socket"}, {"address": "7fb03cb93501b1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b2bd", "refs": "7fb03cb93501b2bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b2bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b1f5", "refs": "7fb03cb93501b1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b515", "refs": "7fb03cb93501b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b515", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ce15", "refs": "7fb03cb93501ce15", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501caf5", "refs": "7fb03cb93501caf5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501caf5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b6a5", "refs": "7fb03cb93501b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cc85", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cbbd", "kind": "socket"}, {"address": "7fb03cb93501cbbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501c0cd", "kind": "socket"}, {"address": "7fb03cb93501b8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ca2d", "refs": "7fb03cb93501ca2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ca2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b8fd", "refs": "7fb03cb93501b8fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c0cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb934ff43e5", "conn": "0", "refs": "7fb03cb95130ddad", "nextref": "0", "addr": "/private//var/run/syslog", "kind": "socket"}, {"kctlref": "10001", "id": "1", "unit": -1, "osx_flags": 9, "pcbcount": 0, "rcvbuf": 131072, "sndbuf": 131072, "name": "com.apple.flow-divert", "kind": "Registered kernel control module"}, {"kctlref": "20002", "id": "2", "unit": -1, "osx_flags": 1, "pcbcount": 1, "rcvbuf": 16384, "sndbuf": 2048, "name": "com.apple.nke.sockwall", "kind": "Registered kernel control module"}, {"kctlref": "30003", "id": "3", "unit": -1, "osx_flags": 9, "pcbcount": 0, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.content-filter", "kind": "Registered kernel control module"}, {"kctlref": "40004", "id": "4", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.necp_control", "kind": "Registered kernel control module"}, {"kctlref": "50005", "id": "5", "unit": -1, "osx_flags": 1, "pcbcount": 12, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.netagent", "kind": "Registered kernel control module"}, {"kctlref": "60006", "id": "6", "unit": -1, "osx_flags": 9, "pcbcount": 4, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.net.utun_control", "kind": "Registered kernel control module"}, {"kctlref": "70007", "id": "7", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.ipsec_control", "kind": "Registered kernel control module"}, {"kctlref": "80008", "id": "8", "unit": -1, "osx_flags": 0, "pcbcount": 74, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.netsrc", "kind": "Registered kernel control module"}, {"kctlref": "90009", "id": "9", "unit": -1, "osx_flags": 18, "pcbcount": 4, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.statistics", "kind": "Registered kernel control module"}, {"kctlref": "a000a", "id": "a", "unit": -1, "osx_flags": 5, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.tcp_ccdebug", "kind": "Registered kernel control module"}, {"kctlref": "b000b", "id": "b", "unit": -1, "osx_flags": 1, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.advisory", "kind": "Registered kernel control module"}, {"kctlref": "c000c", "id": "c", "unit": -1, "osx_flags": 4, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 2048, "name": "com.apple.uart.BLTH", "kind": "Registered kernel control module"}, {"kctlref": "d000d", "id": "d", "unit": -1, "osx_flags": 4, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.uart.sk.BLTH", "kind": "Registered kernel control module"}, {"kctlref": "e000e", "id": "e", "unit": -1, "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 8192, "name": "com.apple.fileutil.kext.stateful.ctl", "kind": "Registered kernel control module"}, {"kctlref": "f000f", "id": "f", "unit": -1, "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.fileutil.kext.stateless.ctl", "kind": "Registered kernel control module"}, {"kctlref": "170017", "id": "17", "unit": -1, "osx_flags": 5, "pcbcount": 1, "rcvbuf": 32768, "sndbuf": 2048, "name": "com.fortinet.fct.kext.fwnke", "kind": "Registered kernel control module"}, {"kctlref": "ea0010", "id": "18", "unit": -1, "osx_flags": 5, "pcbcount": 1, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.fortinet.kext.avkern2", "kind": "Registered kernel control module"}, {"pcb": "7fb03cb936ead2bd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead2f5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 4, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd0d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd45", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead24d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead215", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1dd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 11, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd7d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacdb5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacded", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace25", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace5d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1a5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace95", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacecd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf05", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead16d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 6, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf3d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf75", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfad", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead135", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 10, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfe5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1000, "class": 5, "subcla": 11, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead01d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 7, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead055", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead08d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0fd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 3, "subcla": 3, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0c5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb937d0314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "2", "name": "com.apple.nke.sockwall", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4f4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d5ded", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d656d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4c4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d662d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a1a6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c7488ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e7299ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b5cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b6ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60182d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f6020cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f9cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8fded", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f48d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d644d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c237d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c23682d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9503efa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93cc9038d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93d3a7d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93eefef0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d2e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60260d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f601d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8e30d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8d8ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 13, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d384d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 14, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940438bad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 15, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb949ba84ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 16, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94043968d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 17, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940c3594d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 18, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941b872cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 19, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb943aa506d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 20, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941451a8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 21, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94510508d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 22, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9459058ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 23, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb945c5bf0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 24, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94766e96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 25, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946464c6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 26, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946463fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 27, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94646394d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 28, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95002e5ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 29, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fe5d12d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 30, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fb8feed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 31, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9471823cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 32, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96085390d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 33, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a3cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 34, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f18d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 35, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f42d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 36, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804fead", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 37, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fefcd2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 38, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9330ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 39, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffb8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 40, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e70872d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 41, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c8769ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 42, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9508e426d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 43, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f702d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 44, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94d86f2cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 45, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94e49c2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 46, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95eff106d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 47, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93aa79fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 48, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f65e74d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 49, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f8944ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 50, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f931d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 51, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9d11ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 52, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fbb0aed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 53, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f88ec4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 54, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffa0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 55, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c736fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 56, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95477236d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 57, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a588d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 58, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a726d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 59, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ed4f24d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 60, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f46cc6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 61, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fb5ad2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 62, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95cb8b9ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 63, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb954772d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 64, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb950171fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 65, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d590d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 66, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a1ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 67, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ffdd1ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 68, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 69, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e6c8e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 70, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94b5af2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 71, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96074aa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 72, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95bff57cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 74, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fc8056d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 77, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb937d02e4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e09b08d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099a0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099bed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d82cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "23", "name": "com.fortinet.fct.kext.fwnke", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d67cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "24", "name": "com.fortinet.kext.avkern2", "kind": "Active kernel control socket"}] diff --git a/tests/fixtures/osx-10.14.6/netstat.json b/tests/fixtures/osx-10.14.6/netstat.json index 9eac82d4..1cb07ad7 100644 --- a/tests/fixtures/osx-10.14.6/netstat.json +++ b/tests/fixtures/osx-10.14.6/netstat.json @@ -1 +1 @@ -[{"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "g2600-1406-1400-", "state": "ESTABLISHED", "kind": "network", "local_port": "54901", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54901}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "142.192.227.35.b", "state": "ESTABLISHED", "kind": "network", "local_port": "54897", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54897}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "2620:1ec:21::14", "state": "ESTABLISHED", "kind": "network", "local_port": "54880", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54880}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54864", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54864}, {"proto": "tcp4", "recv_q": 24, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-192-30-255-11", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "54863", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54863}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ec2-3-81-154-197", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "54862", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54862}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-140-82-113-26", "state": "ESTABLISHED", "kind": "network", "local_port": "54861", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54861}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54860", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54860}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54859", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54859}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54858", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54858}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54857", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54857}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54856", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54856}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54855", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54855}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54854", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54854}, {"proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ec2-3-81-154-197", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "54853", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54853}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "151.101.188.133", "state": "ESTABLISHED", "kind": "network", "local_port": "54852", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54852}, {"proto": "tcp4", "recv_q": 24, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-192-30-255-11", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "54851", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54851}, {"proto": "tcp4", "recv_q": 24, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-192-30-255-11", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "54850", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54850}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "52.114.128.7", "state": "ESTABLISHED", "kind": "network", "local_port": "54837", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54837}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "on-in-x6c.1e100.", "state": "ESTABLISHED", "kind": "network", "local_port": "54825", "foreign_port": "imaps", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54825}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "208.91.113.36", "state": "ESTABLISHED", "kind": "network", "local_port": "54800", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54800}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-140-82-112-26", "state": "ESTABLISHED", "kind": "network", "local_port": "54782", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54782}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "kellysblackipad.", "state": "ESTABLISHED", "kind": "network", "local_port": "54506", "foreign_port": "49231", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54506, "foreign_port_num": 49231}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "oc-in-x6d.1e100.", "state": "ESTABLISHED", "kind": "network", "local_port": "54631", "foreign_port": "imaps", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54631}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "kellys-iphone.at", "state": "ESTABLISHED", "kind": "network", "local_port": "54506", "foreign_port": "53380", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54506, "foreign_port_num": 53380}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "2603:1030:b00::e", "state": "ESTABLISHED", "kind": "network", "local_port": "54542", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54542}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "2620:1ec:21::14", "state": "ESTABLISHED", "kind": "network", "local_port": "54538", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54538}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "93.87.236.35.bc.", "state": "ESTABLISHED", "kind": "network", "local_port": "54522", "foreign_port": "sunpr", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54522}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "dfw25s34-in-x0e.", "state": "ESTABLISHED", "kind": "network", "local_port": "54521", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54521}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "family-room-5.at", "state": "ESTABLISHED", "kind": "network", "local_port": "54520", "foreign_port": "49153", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54520, "foreign_port_num": 49153}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "bedroom.attlocal", "state": "ESTABLISHED", "kind": "network", "local_port": "54519", "foreign_port": "49152", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54519, "foreign_port_num": 49152}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "kellys-mbp.attlo", "state": "ESTABLISHED", "kind": "network", "local_port": "54506", "foreign_port": "55617", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54506, "foreign_port_num": 55617}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "52.114.148.56", "state": "ESTABLISHED", "kind": "network", "local_port": "54517", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54517}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "54511", "foreign_port": "49621", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54511, "foreign_port_num": 49621}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "54508", "foreign_port": "49607", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54508, "foreign_port_num": 49607}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ok-in-xbc.1e100.", "state": "ESTABLISHED", "kind": "network", "local_port": "54471", "foreign_port": "5228", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 54471, "foreign_port_num": 5228}, {"proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "93.87.236.35.bc.", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "54426", "foreign_port": "sunpr", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54426}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49795", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49795}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "kind": "network", "local_port": "53755", "foreign_port": "53763", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53755, "foreign_port_num": 53763}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "kind": "network", "local_port": "53763", "foreign_port": "53755", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53763, "foreign_port_num": 53755}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "255.21.155.104.b", "state": "ESTABLISHED", "kind": "network", "local_port": "53599", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53599}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49794", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49794}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "17.57.144.20", "state": "ESTABLISHED", "kind": "network", "local_port": "52630", "foreign_port": "5223", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 52630, "foreign_port_num": 5223}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "mycloudex2ultra.", "state": "ESTABLISHED", "kind": "network", "local_port": "51797", "foreign_port": "afpov", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51797}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49793", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49793}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49604", "foreign_port": "49617", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49604, "foreign_port_num": 49617}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49792", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49792}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49791", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49791}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49790", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49790}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49789", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49789}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49788", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49788}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49787", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49787}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49786", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49786}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "51642", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51642}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "51641", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51641}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "51640", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51640}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "63836", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 63836, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "59388", "foreign_port": "59602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 59388, "foreign_port_num": 59602}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "96.45.36.31", "state": "ESTABLISHED", "kind": "network", "local_port": "58795", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 58795}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "ldgateway", "foreign_port": "58704", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 58704}, {"proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "93.87.236.35.bc.", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "53461", "foreign_port": "sunpr", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53461}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "59281", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 59281, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "57652", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 57652, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "51989", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 51989, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49892", "foreign_port": "49620", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49892, "foreign_port_num": 49620}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49798", "foreign_port": "49608", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49798, "foreign_port_num": 49608}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49390", "foreign_port": "49613", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49390, "foreign_port_num": 49613}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49157", "foreign_port": "49615", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49157, "foreign_port_num": 49615}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ussjc2-vip-bx-00", "state": "TIME_WAIT ", "kind": "network", "local_port": "54877", "foreign_port": "http", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54877}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ec2-52-9-68-189.", "state": "TIME_WAIT ", "kind": "network", "local_port": "54888", "foreign_port": "http", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54888}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ec2-54-68-181-40", "state": "TIME_WAIT ", "kind": "network", "local_port": "54890", "foreign_port": "http", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54890}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "199.119.186.166", "state": "TIME_WAIT ", "kind": "network", "local_port": "54871", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54871}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "199.119.186.166", "state": "TIME_WAIT ", "kind": "network", "local_port": "54870", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 54870}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "56497", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 56497}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "64718", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 64718}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "dfw25s34-in-x0e.", "state": null, "kind": "network", "local_port": "52658", "foreign_port": "https", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52658}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51955", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51955}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57333", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57333}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "dfw28s05-in-x0a.", "state": null, "kind": "network", "local_port": "56587", "foreign_port": "https", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 56587}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58579", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58579}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53717", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53717}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53463", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53463}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "65477", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 65477}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "54338", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54338}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "xserveraid", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57390", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57390}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53677", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53677}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61224", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61224}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63995", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63995}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "50636", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 50636}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33354", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33354}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33355", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33355}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61982}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61982}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52378}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52378}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53910}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53910}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 57674}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57674}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62448}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62448}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55681}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55681}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51226", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51226}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61491", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61491}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "6096", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 6096}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58997", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58997}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52551", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52551}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "pds", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "netbios-dgm", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "netbios-ns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "icm4", "recv_q": 8136, "send_q": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "icmp", "network_protocol": "ipv4"}, {"address": "7fb03cb94a63d2c5", "type": "stream", "recv_q": 1, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ce15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ce15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cd4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94a63b515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cd4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaec7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb04b5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb93ceb04b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaec7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130da8d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130da8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130cc7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130cd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e89d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130cd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e70d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130de75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130de75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130f135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b0051d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb937d38835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d389c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d389c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d396a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d396a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ac85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ac85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b38d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3b38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cfa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b5dd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ae0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b44d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b835", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94a63b835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bb55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94a63bb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b8fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b8fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63a7cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c70d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94a63c70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63a7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94a63b385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aa25", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d1f5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130d1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3aa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74906d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746e0d", "type": "stream", "recv_q": 8, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74906d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d385dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d385dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3876d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3876d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d386a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d386a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d390cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d390cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3895d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3895d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d392bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38e0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d392bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3976d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3912d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3912d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3976d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d391f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d391f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38c7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94b87f5d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS", "kind": "socket"}, {"address": "7fb03cb945d39c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ac7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63caf5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63caf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ac7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ce0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ce0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130caed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ca25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ca25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130caed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e7d5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ced5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f51d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ced5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130df3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c7cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130df3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ea2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ea2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb937de855d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Library/Application Support/LANDesk/tmp/socket/sys", "kind": "socket"}, {"address": "7fb03cb95130d065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ec85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ee15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ee15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ec85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ed4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ed4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3925d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39c85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3925d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d381f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b005e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afd895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935afd895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b005e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d5e5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ba8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63a895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cc85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7480cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d7480cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c7d5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e005", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb95130e005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b001fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdaed", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afdaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b001fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0038d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ead1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b002c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff0cd", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb935aff0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b002c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b00135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdbb5", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb935afdbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b00135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affd4d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935affd4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affe15", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affe15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affa2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0006d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afffa5", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afffa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b0006d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdc7d", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935afdc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affc85", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935affc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afde0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affbbd", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affbbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afde0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afded5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff965", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afded5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff7d5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdf9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff70d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdf9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff57d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff4b5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd2d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb935aff325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93609fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935aff25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94cddc36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock", "kind": "socket"}, {"address": "7fb03cb935afe12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe1f5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eac25", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe8fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afedad", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf", "kind": "socket"}, {"address": "7fb03cb935afedad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe8fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b763e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.000005f5", "kind": "socket"}, {"address": "7fb03cb935afef3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b761f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.00000948", "kind": "socket"}, {"address": "7fb03cb935afe5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b760fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afe6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe76d", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb935afe76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afee75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9360a12ed", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend.sock", "kind": "socket"}, {"address": "7fb03cb935afece5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd29bd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-export.sock", "kind": "socket"}, {"address": "7fb03cb935afec1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd43e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd40fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-volume.sock", "kind": "socket"}, {"address": "7fb03cb935afeb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eaa35", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker-api.sock", "kind": "socket"}, {"address": "7fb03cb935afea8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eab2d", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb93501b065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb937d37bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea465", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.port.sock", "kind": "socket"}, {"address": "7fb03cb937d3a5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a0dca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker.sock", "kind": "socket"}, {"address": "7fb03cb937d3a51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab1005", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.pcap.sock", "kind": "socket"}, {"address": "7fb03cb94d7495e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0f0d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.diag.sock", "kind": "socket"}, {"address": "7fb03cb94d746895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950aafd9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb94d7467cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0085", "conn": "0", "refs": "0", "nextref": "0", "addr": "osxfs.sock", "kind": "socket"}, {"address": "7fb03cb94d746bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb94d7496ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a1dab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock", "kind": "socket"}, {"address": "7fb03cb94d7492c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d746aed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7492c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7472bd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7472bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748a2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74776d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74776d", "type": "stream", "recv_q": 145, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748a2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74889d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7478fd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7478fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74889d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74870d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7487d5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7487d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74870d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7479c5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7479c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747a8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74857d", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb94d74857d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747a8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7484b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747b55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747b55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7484b5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748325", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7483ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94db01655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock_501", "kind": "socket"}, {"address": "7fb03cb94a63bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c57d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bdad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63be75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c325", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bf3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c005", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ad4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ae15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d377cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501b835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ad4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d377cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ae15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a6ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a06d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d387cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94d0e4a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock", "kind": "socket"}, {"address": "7fb03cb937d3812d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3812d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d395dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39515", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d395dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39dad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39dad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9418d26cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket", "kind": "socket"}, {"address": "7fb03cb93ceaeaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb151d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb151d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceae95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb138d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb138d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceae95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb12c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaed45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaed45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb12c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaee0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeed5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaeed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaee0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb106d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaef9d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaef9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb106d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0fa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb0fa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0bbd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafa8d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceafa8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb057d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb070d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb070d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb057d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf9c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaf9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb025d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea4fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock", "kind": "socket"}, {"address": "7fb03cb93ceb0325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea5074d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/tmp/filesystemui.socket", "kind": "socket"}, {"address": "7fb03cb93ceafb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea1cd1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WbUfpjQ9cD/Render", "kind": "socket"}, {"address": "7fb03cb93ceb00cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea42275", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners", "kind": "socket"}, {"address": "7fb03cb937d394b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938289085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb93501a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aaed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501aaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aa25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d1fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ae0d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501cedd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b44d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93763e7cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/displaypolicyd/state", "kind": "socket"}, {"address": "7fb03cb93501b76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb936ea7d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/pppconfd", "kind": "socket"}, {"address": "7fb03cb93501c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec3e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/epctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec1f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctvpnctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec0fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb93501c70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec005", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/com.docker.vmnetd.sock", "kind": "socket"}, {"address": "7fb03cb93501c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e845", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e55d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/usbmuxd", "kind": "socket"}, {"address": "7fb03cb93501c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e74d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355617cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/mdssvc", "kind": "socket"}, {"address": "7fb03cb93501c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355636cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355618c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501bb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355635d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355634dd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/systemkeychaincheck.socket", "kind": "socket"}, {"address": "7fb03cb93501bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561ab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/.sim_diagnosticd_socket", "kind": "socket"}, {"address": "7fb03cb93501bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561bad", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/portmap.socket", "kind": "socket"}, {"address": "7fb03cb93501be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935511d1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/vpncontrol.sock", "kind": "socket"}, {"address": "7fb03cb93501bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354fd085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/NETLOGON", "kind": "socket"}, {"address": "7fb03cb93501c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354e58c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/cupsd", "kind": "socket"}, {"address": "7fb03cb94a63b065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b9c5", "refs": "7fb03cb94a63b9c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b9c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b065", "refs": "7fb03cb94a63b065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3afa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63ad45", "kind": "socket"}, {"address": "7fb03cb94a63ad45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63af9d", "kind": "socket"}, {"address": "7fb03cb94a63af9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae7cd", "kind": "socket"}, {"address": "7fb03cb93ceae7cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3b51d", "kind": "socket"}, {"address": "7fb03cb945d3b51d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3a3ed", "kind": "socket"}, {"address": "7fb03cb945d3a3ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3989d", "kind": "socket"}, {"address": "7fb03cb937d3989d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b76d", "kind": "socket"}, {"address": "7fb03cb94a63b76d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d44d", "kind": "socket"}, {"address": "7fb03cb95130d44d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130cf9d", "kind": "socket"}, {"address": "7fb03cb95130cf9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d6ad", "kind": "socket"}, {"address": "7fb03cb94d7491fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7476a5", "refs": "7fb03cb94d7476a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7476a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7491fd", "refs": "7fb03cb94d7491fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63d6ad", "kind": "socket"}, {"address": "7fb03cb94d748005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d749455", "refs": "7fb03cb94d749455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d749455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748005", "refs": "7fb03cb94d748005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7475dd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747065", "refs": "7fb03cb94d747065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7475dd", "refs": "7fb03cb94d7475dd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a95d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d455", "refs": "7fb03cb93501d455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a95d", "refs": "7fb03cb93501a95d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130db55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ebbd", "refs": "7fb03cb95130ebbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ebbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130db55", "refs": "7fb03cb95130db55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74938d", "kind": "socket"}, {"address": "7fb03cb94d74938d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38a8d", "kind": "socket"}, {"address": "7fb03cb937d38a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d835", "kind": "socket"}, {"address": "7fb03cb95130d835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d746c7d", "kind": "socket"}, {"address": "7fb03cb945d3aedd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b6ad", "refs": "7fb03cb945d3b6ad", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3aedd", "refs": "7fb03cb945d3aedd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74712d", "kind": "socket"}, {"address": "7fb03cb94d74712d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39edd", "kind": "socket"}, {"address": "7fb03cb937d39edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38dad", "kind": "socket"}, {"address": "7fb03cb937d38dad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b12d", "kind": "socket"}, {"address": "7fb03cb94a63b12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e57d", "kind": "socket"}, {"address": "7fb03cb95130e57d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74951d", "kind": "socket"}, {"address": "7fb03cb94d74951d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d749135", "kind": "socket"}, {"address": "7fb03cb94d749135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb15e5", "kind": "socket"}, {"address": "7fb03cb93ceb15e5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae895", "kind": "socket"}, {"address": "7fb03cb93ceae895", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb16ad", "kind": "socket"}, {"address": "7fb03cb93ceb16ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3a1fd", "kind": "socket"}, {"address": "7fb03cb937d3a1fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39065", "kind": "socket"}, {"address": "7fb03cb945d39065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d38f9d", "kind": "socket"}, {"address": "7fb03cb945d38f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39a8d", "kind": "socket"}, {"address": "7fb03cb945d399c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a005", "refs": "7fb03cb945d3a005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d399c5", "refs": "7fb03cb945d399c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39b55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39f3d", "refs": "7fb03cb945d39f3d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39f3d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39b55", "refs": "7fb03cb945d39b55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d397d5", "kind": "socket"}, {"address": "7fb03cb937d37d45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37e0d", "refs": "7fb03cb937d37e0d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37e0d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37d45", "refs": "7fb03cb937d37d45", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d397d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb11fd", "kind": "socket"}, {"address": "7fb03cb93ceb11fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf065", "kind": "socket"}, {"address": "7fb03cb93ceaf065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0edd", "kind": "socket"}, {"address": "7fb03cb93ceb0edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf385", "kind": "socket"}, {"address": "7fb03cb93ceaf12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf1f5", "refs": "7fb03cb93ceaf1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf12d", "refs": "7fb03cb93ceaf12d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf385", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0965", "kind": "socket"}, {"address": "7fb03cb93ceb0965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0a2d", "kind": "socket"}, {"address": "7fb03cb93ceb0a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf835", "kind": "socket"}, {"address": "7fb03cb93ceaf835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf8fd", "kind": "socket"}, {"address": "7fb03cb93ceaf8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafdad", "kind": "socket"}, {"address": "7fb03cb93ceafdad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb07d5", "kind": "socket"}, {"address": "7fb03cb93ceb07d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb089d", "kind": "socket"}, {"address": "7fb03cb93ceb0645", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafe75", "refs": "7fb03cb93ceafe75", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafe75", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0645", "refs": "7fb03cb93ceb0645", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb089d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafc1d", "kind": "socket"}, {"address": "7fb03cb93ceb0195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0005", "refs": "7fb03cb93ceb0005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0195", "refs": "7fb03cb93ceb0195", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafc1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb03ed", "kind": "socket"}, {"address": "7fb03cb93ceb03ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39fa5", "kind": "socket"}, {"address": "7fb03cb937d39a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39bbd", "refs": "7fb03cb937d39bbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39bbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39a2d", "refs": "7fb03cb937d39a2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39fa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39965", "kind": "socket"}, {"address": "7fb03cb937d38065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37c7d", "refs": "7fb03cb937d37c7d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38065", "refs": "7fb03cb937d38065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d37f9d", "kind": "socket"}, {"address": "7fb03cb937d37f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d393ed", "kind": "socket"}, {"address": "7fb03cb937d393ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3970d", "kind": "socket"}, {"address": "7fb03cb937d3970d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d135", "kind": "socket"}, {"address": "7fb03cb937d382bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3957d", "refs": "7fb03cb937d3957d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3957d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d382bd", "refs": "7fb03cb937d382bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38c1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38ce5", "refs": "7fb03cb937d38ce5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38ce5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38c1d", "refs": "7fb03cb937d38c1d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cd4d", "kind": "socket"}, {"address": "7fb03cb93501cd4d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cc85", "kind": "socket"}, {"address": "7fb03cb93501b1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b2bd", "refs": "7fb03cb93501b2bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b2bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b1f5", "refs": "7fb03cb93501b1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b515", "refs": "7fb03cb93501b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b515", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ce15", "refs": "7fb03cb93501ce15", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501caf5", "refs": "7fb03cb93501caf5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501caf5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b6a5", "refs": "7fb03cb93501b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cc85", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cbbd", "kind": "socket"}, {"address": "7fb03cb93501cbbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501c0cd", "kind": "socket"}, {"address": "7fb03cb93501b8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ca2d", "refs": "7fb03cb93501ca2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ca2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b8fd", "refs": "7fb03cb93501b8fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c0cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb934ff43e5", "conn": "0", "refs": "7fb03cb945d3afa5", "nextref": "0", "addr": "/private//var/run/syslog", "kind": "socket"}, {"id": "1", "osx_flags": 9, "pcbcount": 0, "rcvbuf": 131072, "sndbuf": 131072, "name": "com.apple.flow-divert ", "kind": "Registered kernel control module"}, {"id": "2", "osx_flags": 1, "pcbcount": 1, "rcvbuf": 16384, "sndbuf": 2048, "name": "com.apple.nke.sockwall ", "kind": "Registered kernel control module"}, {"id": "3", "osx_flags": 9, "pcbcount": 0, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.content-filter ", "kind": "Registered kernel control module"}, {"id": "4", "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.necp_control ", "kind": "Registered kernel control module"}, {"id": "5", "osx_flags": 1, "pcbcount": 12, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.netagent ", "kind": "Registered kernel control module"}, {"id": "6", "osx_flags": 9, "pcbcount": 4, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.net.utun_control ", "kind": "Registered kernel control module"}, {"id": "7", "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.ipsec_control ", "kind": "Registered kernel control module"}, {"id": "8", "osx_flags": 0, "pcbcount": 74, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.netsrc ", "kind": "Registered kernel control module"}, {"id": "9", "osx_flags": 18, "pcbcount": 4, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.statistics ", "kind": "Registered kernel control module"}, {"id": "a", "osx_flags": 5, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.tcp_ccdebug ", "kind": "Registered kernel control module"}, {"id": "b", "osx_flags": 1, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.advisory ", "kind": "Registered kernel control module"}, {"id": "c", "osx_flags": 4, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 2048, "name": "com.apple.uart.BLTH ", "kind": "Registered kernel control module"}, {"id": "d", "osx_flags": 4, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.uart.sk.BLTH ", "kind": "Registered kernel control module"}, {"id": "e", "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 8192, "name": "com.apple.fileutil.kext.stateful.ctl ", "kind": "Registered kernel control module"}, {"id": "f", "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.fileutil.kext.stateless.ctl ", "kind": "Registered kernel control module"}, {"id": "17", "osx_flags": 5, "pcbcount": 1, "rcvbuf": 32768, "sndbuf": 2048, "name": "com.fortinet.fct.kext.fwnke ", "kind": "Registered kernel control module"}, {"id": "18", "osx_flags": 5, "pcbcount": 1, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.fortinet.kext.avkern2 ", "kind": "Registered kernel control module"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 4, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 11, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 6, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 10, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1000, "class": 5, "subcla": 11, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 7, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 3, "subcla": 3, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "2", "name": "com.apple.nke.sockwall", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 13, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 14, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 15, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 16, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 17, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 18, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 19, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 20, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 21, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 22, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 23, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 24, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 25, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 26, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 27, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 28, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 29, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 30, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 31, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 32, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 33, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 34, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 35, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 36, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 37, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 38, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 39, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 40, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 41, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 42, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 43, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 44, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 45, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 46, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 47, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 48, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 49, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 50, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 51, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 52, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 53, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 54, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 55, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 56, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 57, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 58, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 59, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 60, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 61, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 62, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 63, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 64, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 65, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 66, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 67, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 68, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 69, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 70, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 71, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 72, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 74, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 77, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "23", "name": "com.fortinet.fct.kext.fwnke", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "24", "name": "com.fortinet.kext.avkern2", "kind": "Active kernel control socket"}] +[{"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "40.77.18.167", "state": "ESTABLISHED", "kind": "network", "local_port": "62979", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62979}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "2620:1ec:42::132", "state": "ESTABLISHED", "kind": "network", "local_port": "62978", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 62978}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-140-82-114-25", "state": "ESTABLISHED", "kind": "network", "local_port": "62961", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62961}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "52.114.128.7", "state": "ESTABLISHED", "kind": "network", "local_port": "62951", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62951}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "on-in-x6d.1e100.", "state": "ESTABLISHED", "kind": "network", "local_port": "62900", "foreign_port": "imaps", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 62900}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "208.91.113.36", "state": "ESTABLISHED", "kind": "network", "local_port": "62894", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62894}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-140-82-112-25", "state": "ESTABLISHED", "kind": "network", "local_port": "62849", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62849}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "kind": "network", "local_port": "62823", "foreign_port": "62835", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62823, "foreign_port_num": 62835}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "kind": "network", "local_port": "62835", "foreign_port": "62823", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62835, "foreign_port_num": 62823}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "m33sjmcs118.webe", "state": "ESTABLISHED", "kind": "network", "local_port": "62733", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62733}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "m33sjmcs180.webe", "state": "ESTABLISHED", "kind": "network", "local_port": "62703", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62703}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ed1sjcb1402.webe", "state": "ESTABLISHED", "kind": "network", "local_port": "62697", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62697}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "sj1-tsa.webex.co", "state": "ESTABLISHED", "kind": "network", "local_port": "62670", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62670}, {"proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "93.87.236.35.bc.", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "62664", "foreign_port": "sunpr", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62664}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "dfw28s05-in-x0e.", "state": "ESTABLISHED", "kind": "network", "local_port": "62494", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 62494}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ob-in-x6d.1e100.", "state": "ESTABLISHED", "kind": "network", "local_port": "62485", "foreign_port": "imaps", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 62485}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "ESTABLISHED", "kind": "network", "local_port": "62443", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62443}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "61677", "foreign_port": "49617", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 61677, "foreign_port_num": 49617}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "52.114.148.57", "state": "ESTABLISHED", "kind": "network", "local_port": "61582", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 61582}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ox-in-xbc.1e100.", "state": "ESTABLISHED", "kind": "network", "local_port": "61581", "foreign_port": "5228", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 61581, "foreign_port_num": 5228}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "kellys-iphone.at", "state": "ESTABLISHED", "kind": "network", "local_port": "61343", "foreign_port": "53700", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 61343, "foreign_port_num": 53700}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "2603:1030:b00::e", "state": "ESTABLISHED", "kind": "network", "local_port": "61394", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 61394}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "93.87.236.35.bc.", "state": "ESTABLISHED", "kind": "network", "local_port": "61368", "foreign_port": "sunpr", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 61368}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "family-room-5.at", "state": "ESTABLISHED", "kind": "network", "local_port": "61357", "foreign_port": "49153", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 61357, "foreign_port_num": 49153}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "bedroom.attlocal", "state": "ESTABLISHED", "kind": "network", "local_port": "61356", "foreign_port": "49152", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 61356, "foreign_port_num": 49152}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "kellys-mbp.attlo", "state": "ESTABLISHED", "kind": "network", "local_port": "61343", "foreign_port": "56012", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 61343, "foreign_port_num": 56012}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "61347", "foreign_port": "49621", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 61347, "foreign_port_num": 49621}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "61346", "foreign_port": "49607", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 61346, "foreign_port_num": 49607}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49804", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49804}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49803", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49803}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "52.114.88.20", "state": "ESTABLISHED", "kind": "network", "local_port": "60773", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 60773}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49802", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49802}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49801", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49801}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49800", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49800}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49799", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49799}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49798", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49798}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "17.57.144.20", "state": "ESTABLISHED", "kind": "network", "local_port": "52630", "foreign_port": "5223", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 52630, "foreign_port_num": 5223}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "mycloudex2ultra.", "state": "ESTABLISHED", "kind": "network", "local_port": "51797", "foreign_port": "afpov", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51797}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "51642", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51642}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "51641", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51641}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "51640", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51640}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "63836", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 63836, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "59388", "foreign_port": "59602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 59388, "foreign_port_num": 59602}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "96.45.36.31", "state": "ESTABLISHED", "kind": "network", "local_port": "58795", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 58795}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "CLOSE_WAIT ", "kind": "network", "local_port": "ldgateway", "foreign_port": "58704", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 58704}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "59281", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 59281, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "57652", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 57652, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "51989", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 51989, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49892", "foreign_port": "49620", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49892, "foreign_port_num": 49620}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49798", "foreign_port": "49608", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49798, "foreign_port_num": 49608}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49390", "foreign_port": "49613", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49390, "foreign_port_num": 49613}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49157", "foreign_port": "49615", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49157, "foreign_port_num": 49615}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "2600:9000:2202:9", "state": "TIME_WAIT ", "kind": "network", "local_port": "62983", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 62983}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63388", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63388}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61398", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61398}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53413", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53413}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "59909", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 59909}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53609", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53609}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "54417", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54417}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62632", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62632}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "54797", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54797}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "56570", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 56570}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "56159", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 56159}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58453", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 58453}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58452", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58452}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55724", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55724}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55723", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55723}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58104", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 58104}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58103", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58103}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62803", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62803}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62802", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62802}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51531", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 51531}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51530", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51530}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53504", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53504}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53503", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53503}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "56260", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 56260}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "60036", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 60036}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "54290", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54290}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "xserveraid", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61224", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61224}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63995", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63995}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "50636", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 50636}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33354", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33354}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33355", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33355}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61982}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61982}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52378}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52378}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53910}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53910}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 57674}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57674}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62448}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62448}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55681}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55681}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51226", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51226}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61491", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61491}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "6096", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 6096}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58997", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58997}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52551", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52551}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "pds", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "netbios-dgm", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "netbios-ns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "icm4", "recv_q": 8136, "send_q": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "icmp", "network_protocol": "ipv4"}, {"address": "7fb03cb94a63a7cd", "type": "stream", "recv_q": 1, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63a7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b2bd", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94a63b2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f38d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130f38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130cc7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3795d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d38835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3795d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39d4d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb937d39d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3812d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38e75", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb937d38e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3812d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaebb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaff3d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb93ceaff3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaebb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb1135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afe2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b006ad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935b006ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a7cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94d74857d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74857d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63aaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b1f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b1f5", "type": "stream", "recv_q": 4, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63aaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cd4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63a95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63a95d", "type": "stream", "recv_q": 4, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cd4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b385", "type": "stream", "recv_q": 8, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ae0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7471f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7471f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746f9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746f9d", "type": "stream", "recv_q": 8, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748edd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747a8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747a8d", "type": "stream", "recv_q": 8, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748edd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38b55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39005", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39005", "type": "stream", "recv_q": 8, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38b55", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130cd45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130cd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130de75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eaf5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb95130eaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130de75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f135", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb95130f135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130da8d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb95130da8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e70d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130efa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e645", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb95130e645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130efa5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746d45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74695d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d74695d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746d45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748fa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74825d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d74825d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748fa5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ac85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ac85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d38aed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3944d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a965", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3944d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b5dd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c70d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b44d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f6ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e89d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cbbd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63cbbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ca2d", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb94a63ca2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b9c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ad45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938289085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb95130c95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d1f5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130d1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3aa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74906d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746e0d", "type": "stream", "recv_q": 8, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74906d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d385dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d385dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3876d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3876d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37a25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d386a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d386a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d390cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d390cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b455", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3895d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3895d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d392bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38e0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d392bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d38ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3976d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3912d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3912d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3976d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d391f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d391f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38c7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94b87f5d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS", "kind": "socket"}, {"address": "7fb03cb945d39c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39e75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ac7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63caf5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63caf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ac7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ce0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ce0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130caed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ca25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ca25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130caed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e7d5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ced5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f51d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ced5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130df3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c7cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130df3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ea2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ea2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130c895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb937de855d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Library/Application Support/LANDesk/tmp/socket/sys", "kind": "socket"}, {"address": "7fb03cb95130d065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ec85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ee15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ee15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ec85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ed4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130eedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ed4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3925d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39c85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3925d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d381f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b005e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afd895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935afd895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b005e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746ed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d5e5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63ba8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63a895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63cc85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747f3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7480cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d7480cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c7d5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130e005", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb95130e005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130dce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b001fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdaed", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afdaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b001fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0038d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ead1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b002c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff0cd", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb935aff0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b002c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b00135", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdbb5", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb935afdbb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b00135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affaf5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affd4d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935affd4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affa2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affe15", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affe15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affa2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0006d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afffa5", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afffa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935b0006d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdc7d", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935afdc7d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdd45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affc85", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935affc85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afde0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935affbbd", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affbbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afde0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afded5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff965", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afded5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff7d5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdf9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff70d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afdf9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff57d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff4b5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd2d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb935aff325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93609fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935aff25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94cddc36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock", "kind": "socket"}, {"address": "7fb03cb935afe12d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe1f5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe1f5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935aff195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eac25", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe8fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afedad", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf", "kind": "socket"}, {"address": "7fb03cb935afedad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe8fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b763e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.000005f5", "kind": "socket"}, {"address": "7fb03cb935afef3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b761f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.00000948", "kind": "socket"}, {"address": "7fb03cb935afe5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb938b760fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afe6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe76d", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb935afe76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb935afe6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afee75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9360a12ed", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend.sock", "kind": "socket"}, {"address": "7fb03cb935afece5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd29bd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-export.sock", "kind": "socket"}, {"address": "7fb03cb935afec1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd43e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935cd40fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-volume.sock", "kind": "socket"}, {"address": "7fb03cb935afeb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eaa35", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker-api.sock", "kind": "socket"}, {"address": "7fb03cb935afea8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350eab2d", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb93501b065", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb937d37bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9350ea465", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.port.sock", "kind": "socket"}, {"address": "7fb03cb937d3a5e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a0dca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker.sock", "kind": "socket"}, {"address": "7fb03cb937d3a51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab1005", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.pcap.sock", "kind": "socket"}, {"address": "7fb03cb94d7495e5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0f0d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.diag.sock", "kind": "socket"}, {"address": "7fb03cb94d746895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950aafd9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb94d7467cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0085", "conn": "0", "refs": "0", "nextref": "0", "addr": "osxfs.sock", "kind": "socket"}, {"address": "7fb03cb94d746bb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950ab0a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb94d7496ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb950a1dab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock", "kind": "socket"}, {"address": "7fb03cb94d7492c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d746aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d746aed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7492c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7472bd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7472bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748a2d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74776d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74776d", "type": "stream", "recv_q": 580, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748a2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74889d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7478fd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7478fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74889d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74870d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7487d5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7487d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d74870d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7479c5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7479c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7484b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747b55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747b55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7484b5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747c1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748325", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7483ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94db01655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock_501", "kind": "socket"}, {"address": "7fb03cb94a63bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c57d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bdad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63be75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c325", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63bf3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c195", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c005", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c0cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63c0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ad4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ae15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d377cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501b835", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ad4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d377cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3ae15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a6ad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a06d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3a6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d387cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb94d0e4a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock", "kind": "socket"}, {"address": "7fb03cb945d395dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39515", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d395dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39ce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39dad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39dad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9418d26cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket", "kind": "socket"}, {"address": "7fb03cb93ceaeaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb151d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb151d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceae95d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb138d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb138d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceae95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb12c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaed45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaed45", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb12c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaee0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaeed5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaeed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaee0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb106d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaef9d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaef9d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb106d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf2bd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0fa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb0fa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf515", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0e15", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf5dd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0d4d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0c85", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf6a5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0bbd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0bbd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0af5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafa8d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceafa8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb057d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb070d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb070d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb057d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf9c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaf9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb025d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea4fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock", "kind": "socket"}, {"address": "7fb03cb93ceb0325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea5074d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/tmp/filesystemui.socket", "kind": "socket"}, {"address": "7fb03cb93ceafb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea1cd1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WbUfpjQ9cD/Render", "kind": "socket"}, {"address": "7fb03cb93ceb00cd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93ea42275", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners", "kind": "socket"}, {"address": "7fb03cb93501a895", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d51d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aa25", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aaed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501aaed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aa25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d38d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d2c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501abb5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d1fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aed5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ae0d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b44d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501cedd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501cedd", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b44d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d06d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b385", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93763e7cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/displaypolicyd/state", "kind": "socket"}, {"address": "7fb03cb93501b76d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb936ea7d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/pppconfd", "kind": "socket"}, {"address": "7fb03cb93501c965", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec3e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/epctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c89d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec1f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctvpnctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec0fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb93501c70d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355ec005", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/com.docker.vmnetd.sock", "kind": "socket"}, {"address": "7fb03cb93501c645", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e845", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501c57d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e55d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/usbmuxd", "kind": "socket"}, {"address": "7fb03cb93501c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb93557e74d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355617cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/mdssvc", "kind": "socket"}, {"address": "7fb03cb93501c325", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355636cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501c25d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355618c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501bb55", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355635d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9355634dd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/systemkeychaincheck.socket", "kind": "socket"}, {"address": "7fb03cb93501bce5", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561ab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/.sim_diagnosticd_socket", "kind": "socket"}, {"address": "7fb03cb93501bdad", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935561bad", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/portmap.socket", "kind": "socket"}, {"address": "7fb03cb93501be75", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb935511d1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/vpncontrol.sock", "kind": "socket"}, {"address": "7fb03cb93501bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354fd085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/NETLOGON", "kind": "socket"}, {"address": "7fb03cb93501c005", "type": "stream", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb9354e58c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/cupsd", "kind": "socket"}, {"address": "7fb03cb94a63c89d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63ce15", "kind": "socket"}, {"address": "7fb03cb94a63ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e25d", "kind": "socket"}, {"address": "7fb03cb94a63b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b515", "refs": "7fb03cb94a63b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b515", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94a63b6a5", "refs": "7fb03cb94a63b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e25d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3afa5", "kind": "socket"}, {"address": "7fb03cb95130f455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130d9c5", "refs": "7fb03cb95130d9c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d9c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130f455", "refs": "7fb03cb95130f455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3afa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63af9d", "kind": "socket"}, {"address": "7fb03cb94a63af9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae7cd", "kind": "socket"}, {"address": "7fb03cb93ceae7cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3b51d", "kind": "socket"}, {"address": "7fb03cb945d3b51d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3a3ed", "kind": "socket"}, {"address": "7fb03cb945d3a3ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3989d", "kind": "socket"}, {"address": "7fb03cb937d3989d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b76d", "kind": "socket"}, {"address": "7fb03cb94a63b76d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d44d", "kind": "socket"}, {"address": "7fb03cb95130d44d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130cf9d", "kind": "socket"}, {"address": "7fb03cb95130cf9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d6ad", "kind": "socket"}, {"address": "7fb03cb94d7491fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7476a5", "refs": "7fb03cb94d7476a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7476a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7491fd", "refs": "7fb03cb94d7491fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63d6ad", "kind": "socket"}, {"address": "7fb03cb94d748005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d749455", "refs": "7fb03cb94d749455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d749455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d748005", "refs": "7fb03cb94d748005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7475dd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d747065", "refs": "7fb03cb94d747065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb94d7475dd", "refs": "7fb03cb94d7475dd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a95d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501d455", "refs": "7fb03cb93501d455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d455", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501a95d", "refs": "7fb03cb93501a95d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130db55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130ebbd", "refs": "7fb03cb95130ebbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ebbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb95130db55", "refs": "7fb03cb95130db55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74938d", "kind": "socket"}, {"address": "7fb03cb94d74938d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38a8d", "kind": "socket"}, {"address": "7fb03cb937d38a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d835", "kind": "socket"}, {"address": "7fb03cb95130d835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d746c7d", "kind": "socket"}, {"address": "7fb03cb945d3aedd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3b6ad", "refs": "7fb03cb945d3b6ad", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3aedd", "refs": "7fb03cb945d3aedd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74712d", "kind": "socket"}, {"address": "7fb03cb94d74712d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39edd", "kind": "socket"}, {"address": "7fb03cb937d39edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38dad", "kind": "socket"}, {"address": "7fb03cb937d38dad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b12d", "kind": "socket"}, {"address": "7fb03cb94a63b12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e57d", "kind": "socket"}, {"address": "7fb03cb95130e57d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74951d", "kind": "socket"}, {"address": "7fb03cb94d74951d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d749135", "kind": "socket"}, {"address": "7fb03cb94d749135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb15e5", "kind": "socket"}, {"address": "7fb03cb93ceb15e5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae895", "kind": "socket"}, {"address": "7fb03cb93ceae895", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb16ad", "kind": "socket"}, {"address": "7fb03cb93ceb16ad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3a1fd", "kind": "socket"}, {"address": "7fb03cb937d3a1fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39065", "kind": "socket"}, {"address": "7fb03cb945d39065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d38f9d", "kind": "socket"}, {"address": "7fb03cb945d38f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39a8d", "kind": "socket"}, {"address": "7fb03cb945d399c5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d3a005", "refs": "7fb03cb945d3a005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d399c5", "refs": "7fb03cb945d399c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39b55", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39f3d", "refs": "7fb03cb945d39f3d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39f3d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb945d39b55", "refs": "7fb03cb945d39b55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d397d5", "kind": "socket"}, {"address": "7fb03cb937d37d45", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37e0d", "refs": "7fb03cb937d37e0d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37e0d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37d45", "refs": "7fb03cb937d37d45", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d397d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb11fd", "kind": "socket"}, {"address": "7fb03cb93ceb11fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf065", "kind": "socket"}, {"address": "7fb03cb93ceaf065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0edd", "kind": "socket"}, {"address": "7fb03cb93ceb0edd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf385", "kind": "socket"}, {"address": "7fb03cb93ceaf12d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf1f5", "refs": "7fb03cb93ceaf1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceaf12d", "refs": "7fb03cb93ceaf12d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf385", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0965", "kind": "socket"}, {"address": "7fb03cb93ceb0965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0a2d", "kind": "socket"}, {"address": "7fb03cb93ceb0a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf835", "kind": "socket"}, {"address": "7fb03cb93ceaf835", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf8fd", "kind": "socket"}, {"address": "7fb03cb93ceaf8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafdad", "kind": "socket"}, {"address": "7fb03cb93ceafdad", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb07d5", "kind": "socket"}, {"address": "7fb03cb93ceb07d5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb089d", "kind": "socket"}, {"address": "7fb03cb93ceb0645", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceafe75", "refs": "7fb03cb93ceafe75", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafe75", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0645", "refs": "7fb03cb93ceb0645", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb089d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafc1d", "kind": "socket"}, {"address": "7fb03cb93ceb0195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0005", "refs": "7fb03cb93ceb0005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0005", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93ceb0195", "refs": "7fb03cb93ceb0195", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafc1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb03ed", "kind": "socket"}, {"address": "7fb03cb93ceb03ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39fa5", "kind": "socket"}, {"address": "7fb03cb937d39a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39bbd", "refs": "7fb03cb937d39bbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39bbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d39a2d", "refs": "7fb03cb937d39a2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39fa5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39965", "kind": "socket"}, {"address": "7fb03cb937d38065", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d37c7d", "refs": "7fb03cb937d37c7d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38065", "refs": "7fb03cb937d38065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39965", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d37f9d", "kind": "socket"}, {"address": "7fb03cb937d37f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d393ed", "kind": "socket"}, {"address": "7fb03cb937d393ed", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3970d", "kind": "socket"}, {"address": "7fb03cb937d3970d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d135", "kind": "socket"}, {"address": "7fb03cb937d382bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d3957d", "refs": "7fb03cb937d3957d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3957d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d382bd", "refs": "7fb03cb937d382bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38c1d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38ce5", "refs": "7fb03cb937d38ce5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38ce5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb937d38c1d", "refs": "7fb03cb937d38c1d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d135", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cd4d", "kind": "socket"}, {"address": "7fb03cb93501cd4d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cc85", "kind": "socket"}, {"address": "7fb03cb93501b1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b2bd", "refs": "7fb03cb93501b2bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b2bd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b1f5", "refs": "7fb03cb93501b1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b515", "refs": "7fb03cb93501b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b515", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ce15", "refs": "7fb03cb93501ce15", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501caf5", "refs": "7fb03cb93501caf5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501caf5", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b6a5", "refs": "7fb03cb93501b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cc85", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cbbd", "kind": "socket"}, {"address": "7fb03cb93501cbbd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501c0cd", "kind": "socket"}, {"address": "7fb03cb93501b8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501ca2d", "refs": "7fb03cb93501ca2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ca2d", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501b8fd", "refs": "7fb03cb93501b8fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c0cd", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c195", "type": "dgram", "recv_q": 0, "send_q": 0, "osx_inode": "7fb03cb934ff43e5", "conn": "0", "refs": "7fb03cb94a63c89d", "nextref": "0", "addr": "/private//var/run/syslog", "kind": "socket"}, {"id": "1", "osx_flags": 9, "pcbcount": 0, "rcvbuf": 131072, "sndbuf": 131072, "name": "com.apple.flow-divert", "kind": "Registered kernel control module"}, {"id": "2", "osx_flags": 1, "pcbcount": 1, "rcvbuf": 16384, "sndbuf": 2048, "name": "com.apple.nke.sockwall", "kind": "Registered kernel control module"}, {"id": "3", "osx_flags": 9, "pcbcount": 0, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.content-filter", "kind": "Registered kernel control module"}, {"id": "4", "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.necp_control", "kind": "Registered kernel control module"}, {"id": "5", "osx_flags": 1, "pcbcount": 12, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.netagent", "kind": "Registered kernel control module"}, {"id": "6", "osx_flags": 9, "pcbcount": 4, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.net.utun_control", "kind": "Registered kernel control module"}, {"id": "7", "osx_flags": 1, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.ipsec_control", "kind": "Registered kernel control module"}, {"id": "8", "osx_flags": 0, "pcbcount": 75, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.netsrc", "kind": "Registered kernel control module"}, {"id": "9", "osx_flags": 18, "pcbcount": 4, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.statistics", "kind": "Registered kernel control module"}, {"id": "a", "osx_flags": 5, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.tcp_ccdebug", "kind": "Registered kernel control module"}, {"id": "b", "osx_flags": 1, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.advisory", "kind": "Registered kernel control module"}, {"id": "c", "osx_flags": 4, "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 2048, "name": "com.apple.uart.BLTH", "kind": "Registered kernel control module"}, {"id": "d", "osx_flags": 4, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.uart.sk.BLTH", "kind": "Registered kernel control module"}, {"id": "e", "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 8192, "name": "com.apple.fileutil.kext.stateful.ctl", "kind": "Registered kernel control module"}, {"id": "f", "osx_flags": 0, "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.fileutil.kext.stateless.ctl", "kind": "Registered kernel control module"}, {"id": "17", "osx_flags": 5, "pcbcount": 1, "rcvbuf": 32768, "sndbuf": 2048, "name": "com.fortinet.fct.kext.fwnke", "kind": "Registered kernel control module"}, {"id": "18", "osx_flags": 5, "pcbcount": 1, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.fortinet.kext.avkern2", "kind": "Registered kernel control module"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 4, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 11, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 6, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 10, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1000, "class": 5, "subcla": 11, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 7, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 3, "subcla": 3, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "2", "name": "com.apple.nke.sockwall", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 13, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 14, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 15, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 16, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 17, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 18, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 19, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 20, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 21, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 22, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 23, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 24, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 25, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 26, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 27, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 28, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 29, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 30, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 31, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 32, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 33, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 34, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 35, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 36, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 37, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 38, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 39, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 40, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 41, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 42, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 43, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 44, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 45, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 46, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 47, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 48, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 49, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 50, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 51, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 52, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 53, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 54, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 55, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 56, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 57, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 58, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 59, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 60, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 61, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 62, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 63, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 64, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 65, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 66, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 67, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 68, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 69, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 70, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 71, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 72, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 73, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 74, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 77, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "23", "name": "com.fortinet.fct.kext.fwnke", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "24", "name": "com.fortinet.kext.avkern2", "kind": "Active kernel control socket"}] diff --git a/tests/fixtures/osx-10.14.6/netstat.out b/tests/fixtures/osx-10.14.6/netstat.out index f9697fe6..820db57a 100644 --- a/tests/fixtures/osx-10.14.6/netstat.out +++ b/tests/fixtures/osx-10.14.6/netstat.out @@ -1,58 +1,43 @@ Active Internet connections Proto Recv-Q Send-Q Local Address Foreign Address (state) -tcp6 0 0 kbrazil-mac.attl.54901 g2600-1406-1400-.https ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54897 142.192.227.35.b.https ESTABLISHED -tcp6 0 0 kbrazil-mac.attl.54880 2620:1ec:21::14.https ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54864 151.101.188.133.https ESTABLISHED -tcp4 24 0 kbrazil-mac.attl.54863 lb-192-30-255-11.https CLOSE_WAIT -tcp4 0 0 kbrazil-mac.attl.54862 ec2-3-81-154-197.https CLOSE_WAIT -tcp4 0 0 kbrazil-mac.attl.54861 lb-140-82-113-26.https ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54860 151.101.188.133.https ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54859 151.101.188.133.https ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54858 151.101.188.133.https ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54857 151.101.188.133.https ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54856 151.101.188.133.https ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54855 151.101.188.133.https ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54854 151.101.188.133.https ESTABLISHED -tcp4 31 0 kbrazil-mac.attl.54853 ec2-3-81-154-197.https CLOSE_WAIT -tcp4 0 0 kbrazil-mac.attl.54852 151.101.188.133.https ESTABLISHED -tcp4 24 0 kbrazil-mac.attl.54851 lb-192-30-255-11.https CLOSE_WAIT -tcp4 24 0 kbrazil-mac.attl.54850 lb-192-30-255-11.https CLOSE_WAIT -tcp4 0 0 kbrazil-mac.attl.54837 52.114.128.7.https ESTABLISHED -tcp6 0 0 kbrazil-mac.attl.54825 on-in-x6c.1e100..imaps ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54800 208.91.113.36.https ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54782 lb-140-82-112-26.https ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54506 kellysblackipad..49231 ESTABLISHED -tcp6 0 0 kbrazil-mac.attl.54631 oc-in-x6d.1e100..imaps ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54506 kellys-iphone.at.53380 ESTABLISHED -tcp6 0 0 kbrazil-mac.attl.54542 2603:1030:b00::e.https ESTABLISHED -tcp6 0 0 kbrazil-mac.attl.54538 2620:1ec:21::14.https ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54522 93.87.236.35.bc..sunpr ESTABLISHED -tcp6 0 0 kbrazil-mac.attl.54521 dfw25s34-in-x0e..https ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54520 family-room-5.at.49153 ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54519 bedroom.attlocal.49152 ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54506 kellys-mbp.attlo.55617 ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54517 52.114.148.56.https ESTABLISHED -tcp6 0 0 fe80::aede:48ff:.54511 fe80::aede:48ff:.49621 ESTABLISHED -tcp6 0 0 fe80::aede:48ff:.54508 fe80::aede:48ff:.49607 ESTABLISHED -tcp6 0 0 kbrazil-mac.attl.54471 ok-in-xbc.1e100..5228 ESTABLISHED -tcp4 31 0 kbrazil-mac.attl.54426 93.87.236.35.bc..sunpr CLOSE_WAIT -tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49795 ESTABLISHED -tcp4 0 0 localhost.53755 localhost.53763 ESTABLISHED -tcp4 0 0 localhost.53763 localhost.53755 ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.53599 255.21.155.104.b.dsf ESTABLISHED -tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49794 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.62979 40.77.18.167.https ESTABLISHED +tcp6 0 0 kbrazil-mac.attl.62978 2620:1ec:42::132.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.62961 lb-140-82-114-25.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.62951 52.114.128.7.https ESTABLISHED +tcp6 0 0 kbrazil-mac.attl.62900 on-in-x6d.1e100..imaps ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.62894 208.91.113.36.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.62849 lb-140-82-112-25.https ESTABLISHED +tcp4 0 0 localhost.62823 localhost.62835 ESTABLISHED +tcp4 0 0 localhost.62835 localhost.62823 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.62733 m33sjmcs118.webe.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.62703 m33sjmcs180.webe.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.62697 ed1sjcb1402.webe.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.62670 sj1-tsa.webex.co.https ESTABLISHED +tcp4 31 0 kbrazil-mac.attl.62664 93.87.236.35.bc..sunpr CLOSE_WAIT +tcp6 0 0 kbrazil-mac.attl.62494 dfw28s05-in-x0e..https ESTABLISHED +tcp6 0 0 kbrazil-mac.attl.62485 ob-in-x6d.1e100..imaps ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.62443 194.123.235.35.b.dsf ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.61677 fe80::aede:48ff:.49617 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.61582 52.114.148.57.https ESTABLISHED +tcp6 0 0 kbrazil-mac.attl.61581 ox-in-xbc.1e100..5228 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.61343 kellys-iphone.at.53700 ESTABLISHED +tcp6 0 0 kbrazil-mac.attl.61394 2603:1030:b00::e.https ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.61368 93.87.236.35.bc..sunpr ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.61357 family-room-5.at.49153 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.61356 bedroom.attlocal.49152 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.61343 kellys-mbp.attlo.56012 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.61347 fe80::aede:48ff:.49621 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.61346 fe80::aede:48ff:.49607 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49804 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49803 ESTABLISHED +tcp4 0 0 kbrazil-mac.attl.60773 52.114.88.20.https ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49802 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49801 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49800 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49799 ESTABLISHED +tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49798 ESTABLISHED tcp4 0 0 kbrazil-mac.attl.52630 17.57.144.20.5223 ESTABLISHED tcp4 0 0 kbrazil-mac.attl.51797 mycloudex2ultra..afpov ESTABLISHED -tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49793 ESTABLISHED -tcp6 0 0 fe80::aede:48ff:.49604 fe80::aede:48ff:.49617 ESTABLISHED -tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49792 ESTABLISHED -tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49791 ESTABLISHED -tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49790 ESTABLISHED -tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49789 ESTABLISHED -tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49788 ESTABLISHED -tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49787 ESTABLISHED -tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49786 ESTABLISHED tcp4 0 0 kbrazil-mac.attl.51642 194.123.235.35.b.dsf CLOSE_WAIT tcp4 0 0 kbrazil-mac.attl.51641 194.123.235.35.b.dsf CLOSE_WAIT tcp4 0 0 kbrazil-mac.attl.51640 194.123.235.35.b.dsf CLOSE_WAIT @@ -60,7 +45,6 @@ tcp6 0 0 fe80::aede:48ff:.63836 fe80::aede:48ff:.49602 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.59388 fe80::aede:48ff:.59602 ESTABLISHED tcp4 0 0 kbrazil-mac.attl.58795 96.45.36.31.https ESTABLISHED tcp4 0 0 localhost.ldgateway localhost.58704 CLOSE_WAIT -tcp4 31 0 kbrazil-mac.attl.53461 93.87.236.35.bc..sunpr CLOSE_WAIT tcp6 0 0 fe80::aede:48ff:.59281 fe80::aede:48ff:.49602 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.57652 fe80::aede:48ff:.49602 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.51989 fe80::aede:48ff:.49602 ESTABLISHED @@ -68,26 +52,34 @@ tcp6 0 0 fe80::aede:48ff:.49892 fe80::aede:48ff:.49620 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49798 fe80::aede:48ff:.49608 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49390 fe80::aede:48ff:.49613 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49157 fe80::aede:48ff:.49615 ESTABLISHED -tcp4 0 0 kbrazil-mac.attl.54877 ussjc2-vip-bx-00.http TIME_WAIT -tcp4 0 0 kbrazil-mac.attl.54888 ec2-52-9-68-189..http TIME_WAIT -tcp4 0 0 kbrazil-mac.attl.54890 ec2-54-68-181-40.http TIME_WAIT -tcp4 0 0 kbrazil-mac.attl.54871 199.119.186.166.https TIME_WAIT -tcp4 0 0 kbrazil-mac.attl.54870 199.119.186.166.https TIME_WAIT -udp4 0 0 *.56497 *.* -udp4 0 0 *.64718 *.* -udp6 0 0 kbrazil-mac.attl.52658 dfw25s34-in-x0e..https -udp4 0 0 *.51955 *.* -udp4 0 0 *.57333 *.* -udp6 0 0 kbrazil-mac.attl.56587 dfw28s05-in-x0a..https -udp4 0 0 *.58579 *.* -udp4 0 0 *.53717 *.* -udp4 0 0 *.53463 *.* -udp4 0 0 *.65477 *.* -udp4 0 0 *.54338 *.* -udp4 0 0 *.xserveraid *.* -udp4 0 0 *.57390 *.* -udp4 0 0 *.53677 *.* +tcp6 0 0 kbrazil-mac.attl.62983 2600:9000:2202:9.https TIME_WAIT +udp4 0 0 kbrazil-mac.attl.63388 *.* +udp4 0 0 *.61398 *.* +udp4 0 0 *.53413 *.* +udp4 0 0 *.59909 *.* +udp4 0 0 *.53609 *.* +udp4 0 0 *.54417 *.* +udp4 0 0 *.62632 *.* +udp4 0 0 kbrazil-mac.attl.54797 *.* +udp6 0 0 kbrazil-mac.attl.56570 *.* +udp4 0 0 kbrazil-mac.attl.56159 *.* +udp6 0 0 kbrazil-mac.attl.58453 *.* +udp4 0 0 kbrazil-mac.attl.58452 *.* +udp6 0 0 kbrazil-mac.attl.55724 *.* +udp4 0 0 kbrazil-mac.attl.55723 *.* +udp6 0 0 kbrazil-mac.attl.58104 *.* +udp4 0 0 kbrazil-mac.attl.58103 *.* +udp6 0 0 kbrazil-mac.attl.62803 *.* +udp4 0 0 kbrazil-mac.attl.62802 *.* +udp6 0 0 kbrazil-mac.attl.51531 *.* +udp4 0 0 kbrazil-mac.attl.51530 *.* +udp6 0 0 kbrazil-mac.attl.53504 *.* +udp4 0 0 kbrazil-mac.attl.53503 *.* +udp6 0 0 kbrazil-mac.attl.56260 *.* +udp4 0 0 *.60036 *.* +udp4 0 0 *.54290 *.* udp4 0 0 *.mdns *.* +udp4 0 0 *.xserveraid *.* udp46 0 0 *.61224 *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* @@ -170,52 +162,73 @@ Active Multipath Internet connections Proto/ID Flags Local Address Foreign Address (state) Active LOCAL (UNIX) domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr -7fb03cb94a63d2c5 stream 1 0 0 7fb03cb94a63ce15 0 0 -7fb03cb94a63ce15 stream 0 0 0 7fb03cb94a63d2c5 0 0 -7fb03cb94a63cd4d stream 0 0 0 7fb03cb94a63b515 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock -7fb03cb94a63b515 stream 0 0 0 7fb03cb94a63cd4d 0 0 -7fb03cb93ceaec7d stream 0 0 0 7fb03cb93ceb04b5 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock -7fb03cb93ceb04b5 stream 0 0 0 7fb03cb93ceaec7d 0 0 -7fb03cb95130cc7d stream 0 0 0 7fb03cb95130da8d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock -7fb03cb95130da8d stream 0 0 0 7fb03cb95130cc7d 0 0 -7fb03cb95130eaf5 stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock -7fb03cb95130cd45 stream 0 0 0 7fb03cb95130e89d 0 0 /var/run/mDNSResponder -7fb03cb95130e89d stream 0 0 0 7fb03cb95130cd45 0 0 -7fb03cb95130e70d stream 0 0 0 7fb03cb95130e0cd 0 0 -7fb03cb95130e0cd stream 0 0 0 7fb03cb95130e70d 0 0 -7fb03cb95130de75 stream 0 0 0 7fb03cb95130f38d 0 0 -7fb03cb95130f38d stream 0 0 0 7fb03cb95130de75 0 0 -7fb03cb95130d9c5 stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock -7fb03cb95130f135 stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock -7fb03cb935b0051d stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock -7fb03cb937d38835 stream 0 0 0 7fb03cb937d389c5 0 0 /var/run/mDNSResponder -7fb03cb937d389c5 stream 0 0 0 7fb03cb937d38835 0 0 -7fb03cb945d3b2c5 stream 0 0 0 7fb03cb945d396a5 0 0 /var/run/mDNSResponder -7fb03cb945d396a5 stream 0 0 0 7fb03cb945d3b2c5 0 0 -7fb03cb945d3b5e5 stream 0 0 0 7fb03cb945d3a645 0 0 /var/run/mDNSResponder -7fb03cb945d3a645 stream 0 0 0 7fb03cb945d3b5e5 0 0 -7fb03cb945d39835 stream 0 0 0 7fb03cb945d3ac85 0 0 /var/run/mDNSResponder -7fb03cb945d3ac85 stream 0 0 0 7fb03cb945d39835 0 0 -7fb03cb945d3a89d stream 0 0 0 7fb03cb945d3b38d 0 0 /var/run/mDNSResponder -7fb03cb945d3b38d stream 0 0 0 7fb03cb945d3a89d 0 0 -7fb03cb94a63aed5 stream 0 0 0 7fb03cb94a63cfa5 0 0 /var/run/mDNSResponder -7fb03cb94a63cfa5 stream 0 0 0 7fb03cb94a63aed5 0 0 -7fb03cb94a63ae0d stream 0 0 0 7fb03cb94a63b5dd 0 0 /var/run/mDNSResponder -7fb03cb94a63b5dd stream 0 0 0 7fb03cb94a63ae0d 0 0 -7fb03cb94a63cedd stream 0 0 0 7fb03cb94a63b44d 0 0 /var/run/mDNSResponder -7fb03cb94a63b44d stream 0 0 0 7fb03cb94a63cedd 0 0 -7fb03cb94a63d06d stream 0 0 0 7fb03cb94a63b835 0 0 /var/run/fctservctl.sock -7fb03cb94a63b835 stream 0 0 0 7fb03cb94a63d06d 0 0 -7fb03cb94a63d455 stream 0 0 0 7fb03cb94a63bb55 0 0 /var/run/fctservctl.sock -7fb03cb94a63bb55 stream 0 0 0 7fb03cb94a63d455 0 0 -7fb03cb94a63d1fd stream 0 0 0 7fb03cb94a63b8fd 0 0 /var/run/mDNSResponder -7fb03cb94a63b8fd stream 0 0 0 7fb03cb94a63d1fd 0 0 -7fb03cb94a63a7cd stream 0 0 0 7fb03cb94a63c70d 0 0 /var/run/fctservctl.sock -7fb03cb94a63c70d stream 0 0 0 7fb03cb94a63a7cd 0 0 -7fb03cb94a63b2bd stream 0 0 0 7fb03cb94a63b385 0 0 /var/run/fctservctl.sock -7fb03cb94a63b385 stream 0 0 0 7fb03cb94a63b2bd 0 0 -7fb03cb94a63d38d stream 0 0 0 7fb03cb94a63aa25 0 0 /var/run/mDNSResponder -7fb03cb94a63aa25 stream 0 0 0 7fb03cb94a63d38d 0 0 +7fb03cb94a63a7cd stream 1 0 0 7fb03cb94a63cedd 0 0 +7fb03cb94a63cedd stream 0 0 0 7fb03cb94a63a7cd 0 0 +7fb03cb94a63b065 stream 0 0 0 7fb03cb94a63b2bd 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb94a63b2bd stream 0 0 0 7fb03cb94a63b065 0 0 +7fb03cb95130cc7d stream 0 0 0 7fb03cb95130f38d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb95130f38d stream 0 0 0 7fb03cb95130cc7d 0 0 +7fb03cb937d38385 stream 0 0 0 7fb03cb937d3a135 0 0 +7fb03cb937d3a135 stream 0 0 0 7fb03cb937d38385 0 0 +7fb03cb937d3795d stream 0 0 0 7fb03cb937d38835 0 0 /var/run/mDNSResponder +7fb03cb937d38835 stream 0 0 0 7fb03cb937d3795d 0 0 +7fb03cb937d38515 stream 0 0 0 7fb03cb937d39d4d 0 0 /var/run/fctservctl.sock +7fb03cb937d39d4d stream 0 0 0 7fb03cb937d38515 0 0 +7fb03cb937d3812d stream 0 0 0 7fb03cb937d38e75 0 0 /var/run/fctservctl.sock +7fb03cb937d38e75 stream 0 0 0 7fb03cb937d3812d 0 0 +7fb03cb93ceaebb5 stream 0 0 0 7fb03cb93ceaff3d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb93ceaff3d stream 0 0 0 7fb03cb93ceaebb5 0 0 +7fb03cb93ceb1135 stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb935afe2bd stream 0 0 0 7fb03cb935b006ad 0 0 /var/run/mDNSResponder +7fb03cb935b006ad stream 0 0 0 7fb03cb935afe2bd 0 0 +7fb03cb93501a7cd stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock +7fb03cb94d74857d stream 0 0 0 7fb03cb94d747e75 0 0 /var/run/mDNSResponder +7fb03cb94d747e75 stream 0 0 0 7fb03cb94d74857d 0 0 +7fb03cb94a63aaed stream 0 0 0 7fb03cb94a63b1f5 0 0 +7fb03cb94a63b1f5 stream 4 0 0 7fb03cb94a63aaed 0 0 +7fb03cb94a63cd4d stream 0 0 0 7fb03cb94a63a95d 0 0 +7fb03cb94a63a95d stream 4 0 0 7fb03cb94a63cd4d 0 0 +7fb03cb94a63ae0d stream 0 0 0 7fb03cb94a63b385 0 0 +7fb03cb94a63b385 stream 8 0 0 7fb03cb94a63ae0d 0 0 +7fb03cb94d7471f5 stream 0 0 0 7fb03cb94d748965 0 0 +7fb03cb94d748965 stream 0 0 0 7fb03cb94d7471f5 0 0 +7fb03cb94d747ce5 stream 0 0 0 7fb03cb94d746f9d 0 0 +7fb03cb94d746f9d stream 8 0 0 7fb03cb94d747ce5 0 0 +7fb03cb94d748edd stream 0 0 0 7fb03cb94d747a8d 0 0 +7fb03cb94d747a8d stream 8 0 0 7fb03cb94d748edd 0 0 +7fb03cb937d38b55 stream 0 0 0 7fb03cb937d39005 0 0 +7fb03cb937d39005 stream 8 0 0 7fb03cb937d38b55 0 0 +7fb03cb95130f2c5 stream 0 0 0 7fb03cb95130cd45 0 0 /var/run/mDNSResponder +7fb03cb95130cd45 stream 0 0 0 7fb03cb95130f2c5 0 0 +7fb03cb95130de75 stream 0 0 0 7fb03cb95130eaf5 0 0 /var/run/fctservctl.sock +7fb03cb95130eaf5 stream 0 0 0 7fb03cb95130de75 0 0 +7fb03cb95130e0cd stream 0 0 0 7fb03cb95130f135 0 0 /var/run/fctservctl.sock +7fb03cb95130f135 stream 0 0 0 7fb03cb95130e0cd 0 0 +7fb03cb95130e70d stream 0 0 0 7fb03cb95130da8d 0 0 /var/run/fctservctl.sock +7fb03cb95130da8d stream 0 0 0 7fb03cb95130e70d 0 0 +7fb03cb95130efa5 stream 0 0 0 7fb03cb95130e645 0 0 /var/run/fctservctl.sock +7fb03cb95130e645 stream 0 0 0 7fb03cb95130efa5 0 0 +7fb03cb94d746d45 stream 0 0 0 7fb03cb94d74695d 0 0 /var/run/mDNSResponder +7fb03cb94d74695d stream 0 0 0 7fb03cb94d746d45 0 0 +7fb03cb94d748fa5 stream 0 0 0 7fb03cb94d74825d 0 0 /var/run/mDNSResponder +7fb03cb94d74825d stream 0 0 0 7fb03cb94d748fa5 0 0 +7fb03cb945d3ac85 stream 0 0 0 7fb03cb945d3a25d 0 0 /var/run/mDNSResponder +7fb03cb945d3a25d stream 0 0 0 7fb03cb945d3ac85 0 0 +7fb03cb945d3a0cd stream 0 0 0 7fb03cb945d38aed 0 0 /var/run/mDNSResponder +7fb03cb945d38aed stream 0 0 0 7fb03cb945d3a0cd 0 0 +7fb03cb945d3944d stream 0 0 0 7fb03cb945d3a965 0 0 /var/run/mDNSResponder +7fb03cb945d3a965 stream 0 0 0 7fb03cb945d3944d 0 0 +7fb03cb94a63c70d stream 0 0 0 7fb03cb94a63b5dd 0 0 /var/run/mDNSResponder +7fb03cb94a63b5dd stream 0 0 0 7fb03cb94a63c70d 0 0 +7fb03cb94a63d06d stream 0 0 0 7fb03cb94a63b44d 0 0 /var/run/mDNSResponder +7fb03cb94a63b44d stream 0 0 0 7fb03cb94a63d06d 0 0 +7fb03cb95130f6ad stream 0 0 0 7fb03cb95130e89d 0 0 /var/run/mDNSResponder +7fb03cb95130e89d stream 0 0 0 7fb03cb95130f6ad 0 0 +7fb03cb94a63d38d stream 0 0 0 7fb03cb94a63cbbd 0 0 /var/run/mDNSResponder +7fb03cb94a63cbbd stream 0 0 0 7fb03cb94a63d38d 0 0 +7fb03cb94a63b9c5 stream 0 0 0 7fb03cb94a63ca2d 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe +7fb03cb94a63ca2d stream 0 0 0 7fb03cb94a63b9c5 0 0 +7fb03cb94a63ad45 stream 0 0 7fb03cb938289085 0 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe 7fb03cb95130c95d stream 0 0 0 7fb03cb95130d1f5 0 0 /var/run/mDNSResponder 7fb03cb95130d1f5 stream 0 0 0 7fb03cb95130c95d 0 0 7fb03cb945d38a25 stream 0 0 0 7fb03cb945d3a195 0 0 /var/run/mDNSResponder @@ -368,15 +381,13 @@ Address Type Recv-Q Send-Q Inode Conn 7fb03cb94d748af5 stream 0 0 0 7fb03cb94d747835 0 0 /var/run/mDNSResponder 7fb03cb94d747835 stream 0 0 0 7fb03cb94d748af5 0 0 7fb03cb94d748a2d stream 0 0 0 7fb03cb94d74776d 0 0 /var/run/fctservctl.sock -7fb03cb94d74776d stream 145 0 0 7fb03cb94d748a2d 0 0 +7fb03cb94d74776d stream 580 0 0 7fb03cb94d748a2d 0 0 7fb03cb94d74889d stream 0 0 0 7fb03cb94d7478fd 0 0 /var/run/fctservctl.sock 7fb03cb94d7478fd stream 0 0 0 7fb03cb94d74889d 0 0 7fb03cb94d74870d stream 0 0 0 7fb03cb94d7487d5 0 0 /var/run/fctservctl.sock 7fb03cb94d7487d5 stream 0 0 0 7fb03cb94d74870d 0 0 7fb03cb94d748645 stream 0 0 0 7fb03cb94d7479c5 0 0 /var/run/fctservctl.sock 7fb03cb94d7479c5 stream 0 0 0 7fb03cb94d748645 0 0 -7fb03cb94d747a8d stream 0 0 0 7fb03cb94d74857d 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe -7fb03cb94d74857d stream 0 0 0 7fb03cb94d747a8d 0 0 7fb03cb94d7484b5 stream 0 0 0 7fb03cb94d747b55 0 0 /var/run/fctservctl.sock 7fb03cb94d747b55 stream 0 0 0 7fb03cb94d7484b5 0 0 7fb03cb94d747c1d stream 0 0 0 7fb03cb94d748325 0 0 /var/run/fctservctl.sock @@ -403,8 +414,6 @@ Address Type Recv-Q Send-Q Inode Conn 7fb03cb937d3a6ad stream 0 0 0 7fb03cb937d3a06d 0 0 /var/run/mDNSResponder 7fb03cb937d3a06d stream 0 0 0 7fb03cb937d3a6ad 0 0 7fb03cb945d387cd stream 0 0 7fb03cb94d0e4a35 0 0 0 /Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock -7fb03cb937d3812d stream 0 0 0 7fb03cb937d3a2c5 0 0 /var/run/mDNSResponder -7fb03cb937d3a2c5 stream 0 0 0 7fb03cb937d3812d 0 0 7fb03cb945d395dd stream 0 0 0 7fb03cb945d39515 0 0 /var/run/mDNSResponder 7fb03cb945d39515 stream 0 0 0 7fb03cb945d395dd 0 0 7fb03cb945d39ce5 stream 0 0 0 7fb03cb945d39dad 0 0 /var/run/mDNSResponder @@ -442,7 +451,6 @@ Address Type Recv-Q Send-Q Inode Conn 7fb03cb93ceb0325 stream 0 0 7fb03cb93ea5074d 0 0 0 /var/tmp/filesystemui.socket 7fb03cb93ceafb55 stream 0 0 7fb03cb93ea1cd1d 0 0 0 /private/tmp/com.apple.launchd.WbUfpjQ9cD/Render 7fb03cb93ceb00cd stream 0 0 7fb03cb93ea42275 0 0 0 /private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners -7fb03cb937d394b5 stream 0 0 7fb03cb938289085 0 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe 7fb03cb93501a895 stream 0 0 0 7fb03cb93501d51d 0 0 /var/run/mDNSResponder 7fb03cb93501d51d stream 0 0 0 7fb03cb93501a895 0 0 7fb03cb93501aa25 stream 0 0 0 7fb03cb93501aaed 0 0 /var/run/mDNSResponder @@ -478,10 +486,14 @@ Address Type Recv-Q Send-Q Inode Conn 7fb03cb93501be75 stream 0 0 7fb03cb935511d1d 0 0 0 /var/run/vpncontrol.sock 7fb03cb93501bf3d stream 0 0 7fb03cb9354fd085 0 0 0 /var/rpc/ncalrpc/NETLOGON 7fb03cb93501c005 stream 0 0 7fb03cb9354e58c5 0 0 0 /private/var/run/cupsd -7fb03cb94a63b065 dgram 0 0 0 7fb03cb94a63b9c5 7fb03cb94a63b9c5 0 -7fb03cb94a63b9c5 dgram 0 0 0 7fb03cb94a63b065 7fb03cb94a63b065 0 -7fb03cb945d3afa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63ad45 -7fb03cb94a63ad45 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63af9d +7fb03cb94a63c89d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63ce15 +7fb03cb94a63ce15 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130e25d +7fb03cb94a63b6a5 dgram 0 0 0 7fb03cb94a63b515 7fb03cb94a63b515 0 +7fb03cb94a63b515 dgram 0 0 0 7fb03cb94a63b6a5 7fb03cb94a63b6a5 0 +7fb03cb95130e25d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3afa5 +7fb03cb95130f455 dgram 0 0 0 7fb03cb95130d9c5 7fb03cb95130d9c5 0 +7fb03cb95130d9c5 dgram 0 0 0 7fb03cb95130f455 7fb03cb95130f455 0 +7fb03cb945d3afa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63af9d 7fb03cb94a63af9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceae7cd 7fb03cb93ceae7cd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3b51d 7fb03cb945d3b51d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3a3ed @@ -574,7 +586,7 @@ Address Type Recv-Q Send-Q Inode Conn 7fb03cb93501b8fd dgram 0 0 0 7fb03cb93501ca2d 7fb03cb93501ca2d 0 7fb03cb93501ca2d dgram 0 0 0 7fb03cb93501b8fd 7fb03cb93501b8fd 0 7fb03cb93501c0cd dgram 0 0 0 7fb03cb93501c195 0 0 -7fb03cb93501c195 dgram 0 0 7fb03cb934ff43e5 0 7fb03cb945d3afa5 0 /private//var/run/syslog +7fb03cb93501c195 dgram 0 0 7fb03cb934ff43e5 0 7fb03cb94a63c89d 0 /private//var/run/syslog Registered kernel control modules id flags pcbcount rcvbuf sndbuf name 1 9 0 131072 131072 com.apple.flow-divert @@ -584,7 +596,7 @@ id flags pcbcount rcvbuf sndbuf name 5 1 12 65536 65536 com.apple.net.netagent 6 9 4 524288 524288 com.apple.net.utun_control 7 1 0 65536 65536 com.apple.net.ipsec_control - 8 0 74 8192 2048 com.apple.netsrc + 8 0 75 8192 2048 com.apple.netsrc 9 18 4 8192 2048 com.apple.network.statistics a 5 0 8192 2048 com.apple.network.tcp_ccdebug b 1 0 8192 2048 com.apple.network.advisory @@ -714,6 +726,7 @@ kctl 0 0 69 8 com.apple.netsrc kctl 0 0 70 8 com.apple.netsrc kctl 0 0 71 8 com.apple.netsrc kctl 0 0 72 8 com.apple.netsrc +kctl 0 0 73 8 com.apple.netsrc kctl 0 0 74 8 com.apple.netsrc kctl 0 0 77 8 com.apple.netsrc kctl 0 0 1 9 com.apple.network.statistics From 6cba7d429898d331c674c778f8bd85ba75a8dca9 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 21 May 2020 11:10:00 -0700 Subject: [PATCH 37/52] remove linux from description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c81b05c9..714a3a3b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ # JC JSON CLI output utility -`jc` JSONifies the output of many linux CLI tools and file-types for easier parsing in scripts. See the [**Parsers**](#parsers) section for supported commands and file-types. +`jc` JSONifies the output of many CLI tools and file-types for easier parsing in scripts. See the [**Parsers**](#parsers) section for supported commands and file-types. This allows further command-line processing of output with tools like `jq` by piping commands: ``` From 7b09e9fccdd4f09218a500b54c898ada1b9843c7 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 21 May 2020 17:01:17 -0700 Subject: [PATCH 38/52] set empty values to Null and update fixtures --- docs/parsers/dmidecode.md | 2 +- jc/parsers/dmidecode.py | 5 ++++- tests/fixtures/centos-7.7/dmidecode.json | 2 +- tests/fixtures/fedora32/dmidecode.json | 2 +- tests/fixtures/ubuntu-18.04/dmidecode.json | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/parsers/dmidecode.md b/docs/parsers/dmidecode.md index 934ffec0..cd37e567 100644 --- a/docs/parsers/dmidecode.md +++ b/docs/parsers/dmidecode.md @@ -125,7 +125,7 @@ Returns: "type": integer, "bytes": integer, "description": string, - "values": { + "values": { (null if empty) "lowercase_no_spaces_keys": string, "multiline_key_values": [ string, diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index c31e4665..4d5d3409 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -134,7 +134,7 @@ def process(proc_data): "type": integer, "bytes": integer, "description": string, - "values": { + "values": { (null if empty) "lowercase_no_spaces_keys": string, "multiline_key_values": [ string, @@ -153,6 +153,9 @@ def process(proc_data): except (ValueError): entry[key] = None + if not entry['values']: + entry['values'] = None + return proc_data diff --git a/tests/fixtures/centos-7.7/dmidecode.json b/tests/fixtures/centos-7.7/dmidecode.json index e3532309..1cbec01f 100644 --- a/tests/fixtures/centos-7.7/dmidecode.json +++ b/tests/fixtures/centos-7.7/dmidecode.json @@ -1 +1 @@ -[{"handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": {"vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": ["ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported"], "bios_revision": "4.6", "firmware_revision": "0.0"}}, {"handle": "0x0001", "type": 1, "bytes": 27, "description": "System Information", "values": {"manufacturer": "VMware, Inc.", "product_name": "VMware Virtual Platform", "version": "None", "serial_number": "VMware-56 4d fd 28 89 33 f8 e2-64 74 01 59 92 3b 58 0e", "uuid": "28fd4d56-3389-e2f8-6474-0159923b580e", "wake-up_type": "Power Switch", "sku_number": "Not Specified", "family": "Not Specified"}}, {"handle": "0x0002", "type": 2, "bytes": 15, "description": "Base Board Information", "values": {"manufacturer": "Intel Corporation", "product_name": "440BX Desktop Reference Platform", "version": "None", "serial_number": "None", "asset_tag": "Not Specified", "features": "None", "location_in_chassis": "Not Specified", "chassis_handle": "0x0000", "type": "Unknown", "contained_object_handles": "0"}}, {"handle": "0x0003", "type": 3, "bytes": 21, "description": "Chassis Information", "values": {"manufacturer": "No Enclosure", "type": "Other", "lock": "Not Present", "version": "N/A", "serial_number": "None", "asset_tag": "No Asset Tag", "boot-up_state": "Safe", "power_supply_state": "Safe", "thermal_state": "Safe", "security_status": "None", "oem_information": "0x00001234", "height": "Unspecified", "number_of_power_cords": "Unspecified", "contained_elements": "0"}}, {"handle": "0x0004", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #000", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 08 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Enabled", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0094", "l2_cache_handle": "0x0114", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0005", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #001", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0095", "l2_cache_handle": "0x0115", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0006", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #002", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0096", "l2_cache_handle": "0x0116", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0007", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #003", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0097", "l2_cache_handle": "0x0117", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0008", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #004", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0098", "l2_cache_handle": "0x0118", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0009", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #005", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0099", "l2_cache_handle": "0x0119", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #006", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009A", "l2_cache_handle": "0x011A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #007", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009B", "l2_cache_handle": "0x011B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #008", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009C", "l2_cache_handle": "0x011C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #009", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009D", "l2_cache_handle": "0x011D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #010", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009E", "l2_cache_handle": "0x011E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #011", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009F", "l2_cache_handle": "0x011F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0010", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #012", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A0", "l2_cache_handle": "0x0120", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0011", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #013", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A1", "l2_cache_handle": "0x0121", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0012", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #014", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A2", "l2_cache_handle": "0x0122", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0013", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #015", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A3", "l2_cache_handle": "0x0123", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0014", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #016", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A4", "l2_cache_handle": "0x0124", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0015", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #017", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A5", "l2_cache_handle": "0x0125", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0016", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #018", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A6", "l2_cache_handle": "0x0126", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0017", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #019", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A7", "l2_cache_handle": "0x0127", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0018", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #020", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A8", "l2_cache_handle": "0x0128", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0019", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #021", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A9", "l2_cache_handle": "0x0129", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #022", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AA", "l2_cache_handle": "0x012A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #023", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AB", "l2_cache_handle": "0x012B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #024", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AC", "l2_cache_handle": "0x012C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #025", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AD", "l2_cache_handle": "0x012D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #026", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AE", "l2_cache_handle": "0x012E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #027", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AF", "l2_cache_handle": "0x012F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0020", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #028", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B0", "l2_cache_handle": "0x0130", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0021", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #029", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B1", "l2_cache_handle": "0x0131", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0022", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #030", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B2", "l2_cache_handle": "0x0132", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0023", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #031", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B3", "l2_cache_handle": "0x0133", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0024", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #032", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B4", "l2_cache_handle": "0x0134", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0025", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #033", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B5", "l2_cache_handle": "0x0135", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0026", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #034", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B6", "l2_cache_handle": "0x0136", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0027", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #035", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B7", "l2_cache_handle": "0x0137", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0028", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #036", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B8", "l2_cache_handle": "0x0138", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0029", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #037", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B9", "l2_cache_handle": "0x0139", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #038", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BA", "l2_cache_handle": "0x013A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #039", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BB", "l2_cache_handle": "0x013B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #040", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BC", "l2_cache_handle": "0x013C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #041", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BD", "l2_cache_handle": "0x013D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #042", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BE", "l2_cache_handle": "0x013E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #043", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BF", "l2_cache_handle": "0x013F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0030", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #044", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C0", "l2_cache_handle": "0x0140", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0031", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #045", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C1", "l2_cache_handle": "0x0141", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0032", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #046", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C2", "l2_cache_handle": "0x0142", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0033", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #047", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C3", "l2_cache_handle": "0x0143", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0034", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #048", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C4", "l2_cache_handle": "0x0144", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0035", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #049", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C5", "l2_cache_handle": "0x0145", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0036", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #050", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C6", "l2_cache_handle": "0x0146", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0037", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #051", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C7", "l2_cache_handle": "0x0147", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0038", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #052", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C8", "l2_cache_handle": "0x0148", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0039", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #053", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C9", "l2_cache_handle": "0x0149", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #054", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CA", "l2_cache_handle": "0x014A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #055", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CB", "l2_cache_handle": "0x014B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #056", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CC", "l2_cache_handle": "0x014C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #057", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CD", "l2_cache_handle": "0x014D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #058", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CE", "l2_cache_handle": "0x014E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #059", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CF", "l2_cache_handle": "0x014F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0040", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #060", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D0", "l2_cache_handle": "0x0150", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0041", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #061", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D1", "l2_cache_handle": "0x0151", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0042", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #062", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D2", "l2_cache_handle": "0x0152", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0043", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #063", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D3", "l2_cache_handle": "0x0153", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0044", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #064", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D4", "l2_cache_handle": "0x0154", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0045", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #065", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D5", "l2_cache_handle": "0x0155", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0046", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #066", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D6", "l2_cache_handle": "0x0156", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0047", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #067", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D7", "l2_cache_handle": "0x0157", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0048", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #068", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D8", "l2_cache_handle": "0x0158", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0049", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #069", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D9", "l2_cache_handle": "0x0159", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #070", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DA", "l2_cache_handle": "0x015A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #071", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DB", "l2_cache_handle": "0x015B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #072", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DC", "l2_cache_handle": "0x015C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #073", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DD", "l2_cache_handle": "0x015D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #074", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DE", "l2_cache_handle": "0x015E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #075", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DF", "l2_cache_handle": "0x015F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0050", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #076", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E0", "l2_cache_handle": "0x0160", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0051", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #077", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E1", "l2_cache_handle": "0x0161", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0052", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #078", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E2", "l2_cache_handle": "0x0162", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0053", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #079", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E3", "l2_cache_handle": "0x0163", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0054", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #080", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E4", "l2_cache_handle": "0x0164", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0055", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #081", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E5", "l2_cache_handle": "0x0165", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0056", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #082", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E6", "l2_cache_handle": "0x0166", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0057", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #083", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E7", "l2_cache_handle": "0x0167", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0058", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #084", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E8", "l2_cache_handle": "0x0168", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0059", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #085", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E9", "l2_cache_handle": "0x0169", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #086", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EA", "l2_cache_handle": "0x016A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #087", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EB", "l2_cache_handle": "0x016B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #088", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EC", "l2_cache_handle": "0x016C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #089", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00ED", "l2_cache_handle": "0x016D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #090", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EE", "l2_cache_handle": "0x016E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #091", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EF", "l2_cache_handle": "0x016F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0060", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #092", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F0", "l2_cache_handle": "0x0170", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0061", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #093", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F1", "l2_cache_handle": "0x0171", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0062", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #094", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F2", "l2_cache_handle": "0x0172", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0063", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #095", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F3", "l2_cache_handle": "0x0173", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0064", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #096", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F4", "l2_cache_handle": "0x0174", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0065", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #097", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F5", "l2_cache_handle": "0x0175", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0066", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #098", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F6", "l2_cache_handle": "0x0176", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0067", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #099", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F7", "l2_cache_handle": "0x0177", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0068", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #100", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F8", "l2_cache_handle": "0x0178", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0069", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #101", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F9", "l2_cache_handle": "0x0179", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #102", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FA", "l2_cache_handle": "0x017A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #103", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FB", "l2_cache_handle": "0x017B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #104", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FC", "l2_cache_handle": "0x017C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #105", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FD", "l2_cache_handle": "0x017D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #106", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FE", "l2_cache_handle": "0x017E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #107", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FF", "l2_cache_handle": "0x017F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0070", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #108", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0100", "l2_cache_handle": "0x0180", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0071", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #109", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0101", "l2_cache_handle": "0x0181", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0072", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #110", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0102", "l2_cache_handle": "0x0182", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0073", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #111", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0103", "l2_cache_handle": "0x0183", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0074", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #112", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0104", "l2_cache_handle": "0x0184", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0075", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #113", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0105", "l2_cache_handle": "0x0185", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0076", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #114", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0106", "l2_cache_handle": "0x0186", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0077", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #115", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0107", "l2_cache_handle": "0x0187", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0078", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #116", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0108", "l2_cache_handle": "0x0188", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0079", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #117", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0109", "l2_cache_handle": "0x0189", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #118", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010A", "l2_cache_handle": "0x018A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #119", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010B", "l2_cache_handle": "0x018B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #120", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010C", "l2_cache_handle": "0x018C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #121", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010D", "l2_cache_handle": "0x018D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #122", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010E", "l2_cache_handle": "0x018E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #123", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010F", "l2_cache_handle": "0x018F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0080", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #124", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0110", "l2_cache_handle": "0x0190", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0081", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #125", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0111", "l2_cache_handle": "0x0191", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0082", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #126", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0112", "l2_cache_handle": "0x0192", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0083", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #127", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0113", "l2_cache_handle": "0x0193", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0084", "type": 5, "bytes": 46, "description": "Memory Controller Information", "values": {"error_detecting_method": "None", "error_correcting_capabilities": ["None"], "supported_interleave": "One-way Interleave", "current_interleave": "One-way Interleave", "maximum_memory_module_size": "32768 MB", "maximum_total_memory_size": "491520 MB", "supported_speeds": ["70 ns", "60 ns"], "supported_memory_types": ["FPM", "EDO", "DIMM", "SDRAM"], "memory_module_voltage": "3.3 V", "associated_memory_slots": "15", "associated_memory_slots_data": ["0x0006", "0x0007", "0x0008", "0x0009", "0x000A", "0x000B", "0x000C", "0x000D", "0x000E", "0x000F", "0x0010", "0x0011", "0x0012", "0x0013", "0x0014"], "enabled_error_correcting_capabilities": ["None"]}}, {"handle": "0x0085", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #0", "bank_connections": "None", "current_speed": "Unknown", "type": "EDO DIMM", "installed_size": "4096 MB (Single-bank Connection)", "enabled_size": "4096 MB (Single-bank Connection)", "error_status": "OK"}}, {"handle": "0x0086", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #1", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0087", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #2", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0088", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #3", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0089", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #4", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008A", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #5", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008B", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #6", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008C", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #7", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008D", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #8", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008E", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #9", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008F", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #10", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0090", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #11", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0091", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #12", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0092", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #13", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0093", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #14", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0094", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0095", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0096", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0097", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0098", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0099", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00ED", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0100", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0101", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0102", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0103", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0104", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0105", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0106", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0107", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0108", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0109", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0110", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0111", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0112", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0113", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0114", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0115", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0116", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0117", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0118", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0119", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0120", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0121", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0122", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0123", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0124", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0125", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0126", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0127", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0128", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0129", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0130", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0131", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0132", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0133", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0134", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0135", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0136", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0137", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0138", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0139", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0140", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0141", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0142", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0143", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0144", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0145", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0146", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0147", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0148", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0149", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0150", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0151", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0152", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0153", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0154", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0155", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0156", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0157", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0158", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0159", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0160", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0161", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0162", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0163", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0164", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0165", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0166", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0167", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0168", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0169", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0170", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0171", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0172", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0173", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0174", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0175", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0176", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0177", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0178", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0179", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0180", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0181", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0182", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0183", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0184", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0185", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0186", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0187", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0188", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0189", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0190", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0191", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0192", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0193", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0194", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J19", "internal_connector_type": "9 Pin Dual Inline (pin 10 cut)", "external_reference_designator": "COM 1", "external_connector_type": "DB-9 male", "port_type": "Serial Port 16550A Compatible"}}, {"handle": "0x0195", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J23", "internal_connector_type": "25 Pin Dual Inline (pin 26 cut)", "external_reference_designator": "Parallel", "external_connector_type": "DB-25 female", "port_type": "Parallel Port ECP/EPP"}}, {"handle": "0x0196", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J11", "internal_connector_type": "None", "external_reference_designator": "Keyboard", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0197", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J12", "internal_connector_type": "None", "external_reference_designator": "PS/2 Mouse", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0198", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J8", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x0199", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J9", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019A", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J10", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019B", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J11", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "1", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:0f.0"}}, {"handle": "0x019C", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J12", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "2", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:10.0"}}, {"handle": "0x019D", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J13", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "3", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:11.0"}}, {"handle": "0x019E", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J14", "type": "32-bit PCI", "current_usage": "Available", "length": "Long", "id": "4", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:12.0"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 1 Information", "values": {"type": "Video", "status": "Disabled", "description": "VMware SVGA II"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 2 Information", "values": {"type": "Sound", "status": "Disabled", "description": "ES1371"}}, {"handle": "0x01A0", "type": 11, "bytes": 5, "description": "OEM Strings", "values": {"string_1": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]", "string_2": "Welcome to the Virtual Machine"}}, {"handle": "0x01A1", "type": 15, "bytes": 29, "description": "System Event Log", "values": {"area_length": "16 bytes", "header_start_offset": "0x0000", "header_length": "16 bytes", "data_start_offset": "0x0010", "access_method": "General-purpose non-volatile data functions", "access_address": "0x0000", "status": "Invalid, Full", "change_token": "0x00000036", "header_format": "Type 1", "supported_log_type_descriptors": "3", "descriptor_1": "POST error", "data_format_1": "POST results bitmap", "descriptor_2": "Single-bit ECC memory error", "data_format_2": "Multiple-event", "descriptor_3": "Multi-bit ECC memory error", "data_format_3": "Multiple-event"}}, {"handle": "0x01A2", "type": 16, "bytes": 23, "description": "Physical Memory Array", "values": {"location": "System Board Or Motherboard", "use": "System Memory", "error_correction_type": "None", "maximum_capacity": "65 GB", "error_information_handle": "Not Provided", "number_of_devices": "64"}}, {"handle": "0x01A3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "4096 MB", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #0", "bank_locator": "RAM slot #0", "type": "DRAM", "type_detail": "EDO", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #1", "bank_locator": "RAM slot #1", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #2", "bank_locator": "RAM slot #2", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #3", "bank_locator": "RAM slot #3", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #4", "bank_locator": "RAM slot #4", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #5", "bank_locator": "RAM slot #5", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #6", "bank_locator": "RAM slot #6", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #7", "bank_locator": "RAM slot #7", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #8", "bank_locator": "RAM slot #8", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #9", "bank_locator": "RAM slot #9", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #10", "bank_locator": "RAM slot #10", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #11", "bank_locator": "RAM slot #11", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #12", "bank_locator": "RAM slot #12", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #13", "bank_locator": "RAM slot #13", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #14", "bank_locator": "RAM slot #14", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #15", "bank_locator": "RAM slot #15", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #16", "bank_locator": "RAM slot #16", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #17", "bank_locator": "RAM slot #17", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #18", "bank_locator": "RAM slot #18", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #19", "bank_locator": "RAM slot #19", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #20", "bank_locator": "RAM slot #20", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #21", "bank_locator": "RAM slot #21", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #22", "bank_locator": "RAM slot #22", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #23", "bank_locator": "RAM slot #23", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #24", "bank_locator": "RAM slot #24", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #25", "bank_locator": "RAM slot #25", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #26", "bank_locator": "RAM slot #26", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #27", "bank_locator": "RAM slot #27", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #28", "bank_locator": "RAM slot #28", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #29", "bank_locator": "RAM slot #29", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #30", "bank_locator": "RAM slot #30", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #31", "bank_locator": "RAM slot #31", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #32", "bank_locator": "RAM slot #32", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #33", "bank_locator": "RAM slot #33", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #34", "bank_locator": "RAM slot #34", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #35", "bank_locator": "RAM slot #35", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #36", "bank_locator": "RAM slot #36", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #37", "bank_locator": "RAM slot #37", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #38", "bank_locator": "RAM slot #38", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #39", "bank_locator": "RAM slot #39", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #40", "bank_locator": "RAM slot #40", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #41", "bank_locator": "RAM slot #41", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #42", "bank_locator": "RAM slot #42", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #43", "bank_locator": "RAM slot #43", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #44", "bank_locator": "RAM slot #44", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #45", "bank_locator": "RAM slot #45", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #46", "bank_locator": "RAM slot #46", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #47", "bank_locator": "RAM slot #47", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #48", "bank_locator": "RAM slot #48", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #49", "bank_locator": "RAM slot #49", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #50", "bank_locator": "RAM slot #50", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #51", "bank_locator": "RAM slot #51", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #52", "bank_locator": "RAM slot #52", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #53", "bank_locator": "RAM slot #53", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #54", "bank_locator": "RAM slot #54", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #55", "bank_locator": "RAM slot #55", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #56", "bank_locator": "RAM slot #56", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #57", "bank_locator": "RAM slot #57", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #58", "bank_locator": "RAM slot #58", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #59", "bank_locator": "RAM slot #59", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #60", "bank_locator": "RAM slot #60", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #61", "bank_locator": "RAM slot #61", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #62", "bank_locator": "RAM slot #62", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #63", "bank_locator": "RAM slot #63", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #0", "bank_locator": "NVD #0", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #1", "bank_locator": "NVD #1", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #2", "bank_locator": "NVD #2", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #3", "bank_locator": "NVD #3", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #4", "bank_locator": "NVD #4", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #5", "bank_locator": "NVD #5", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #6", "bank_locator": "NVD #6", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #7", "bank_locator": "NVD #7", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #8", "bank_locator": "NVD #8", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #9", "bank_locator": "NVD #9", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01ED", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #10", "bank_locator": "NVD #10", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #11", "bank_locator": "NVD #11", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #12", "bank_locator": "NVD #12", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #13", "bank_locator": "NVD #13", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #14", "bank_locator": "NVD #14", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #15", "bank_locator": "NVD #15", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #16", "bank_locator": "NVD #16", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #17", "bank_locator": "NVD #17", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #18", "bank_locator": "NVD #18", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #19", "bank_locator": "NVD #19", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #20", "bank_locator": "NVD #20", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #21", "bank_locator": "NVD #21", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #22", "bank_locator": "NVD #22", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #23", "bank_locator": "NVD #23", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #24", "bank_locator": "NVD #24", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #25", "bank_locator": "NVD #25", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #26", "bank_locator": "NVD #26", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #27", "bank_locator": "NVD #27", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #28", "bank_locator": "NVD #28", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0200", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #29", "bank_locator": "NVD #29", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0201", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #30", "bank_locator": "NVD #30", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0202", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #31", "bank_locator": "NVD #31", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0203", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #32", "bank_locator": "NVD #32", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0204", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #33", "bank_locator": "NVD #33", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0205", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #34", "bank_locator": "NVD #34", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0206", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #35", "bank_locator": "NVD #35", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0207", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #36", "bank_locator": "NVD #36", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0208", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #37", "bank_locator": "NVD #37", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0209", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #38", "bank_locator": "NVD #38", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #39", "bank_locator": "NVD #39", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #40", "bank_locator": "NVD #40", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #41", "bank_locator": "NVD #41", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #42", "bank_locator": "NVD #42", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #43", "bank_locator": "NVD #43", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #44", "bank_locator": "NVD #44", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0210", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #45", "bank_locator": "NVD #45", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0211", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #46", "bank_locator": "NVD #46", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0212", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #47", "bank_locator": "NVD #47", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0213", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #48", "bank_locator": "NVD #48", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0214", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #49", "bank_locator": "NVD #49", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0215", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #50", "bank_locator": "NVD #50", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0216", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #51", "bank_locator": "NVD #51", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0217", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #52", "bank_locator": "NVD #52", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0218", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #53", "bank_locator": "NVD #53", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0219", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #54", "bank_locator": "NVD #54", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #55", "bank_locator": "NVD #55", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #56", "bank_locator": "NVD #56", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #57", "bank_locator": "NVD #57", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #58", "bank_locator": "NVD #58", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #59", "bank_locator": "NVD #59", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #60", "bank_locator": "NVD #60", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0220", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #61", "bank_locator": "NVD #61", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0221", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #62", "bank_locator": "NVD #62", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0222", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #63", "bank_locator": "NVD #63", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0223", "type": 18, "bytes": 23, "description": "32-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x0224", "type": 19, "bytes": 31, "description": "Memory Array Mapped Address", "values": {"starting_address": "0x00000000000", "ending_address": "0x000FFFFFFFF", "range_size": "4 GB", "physical_array_handle": "0x0025", "partition_width": "64"}}, {"handle": "0x0225", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0026", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0226", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0027", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0227", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0028", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0228", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0029", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0229", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0030", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0230", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0031", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0231", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0032", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0232", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0033", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0233", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0034", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0234", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0035", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0235", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0036", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0236", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0037", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0237", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0038", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0238", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0039", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0239", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0040", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0240", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0041", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0241", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0042", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0242", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0043", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0243", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0044", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0244", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0045", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0245", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0046", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0246", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0047", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0247", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0048", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0248", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0049", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0249", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0050", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0250", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0051", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0251", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0052", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0252", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0053", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0253", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0054", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0254", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0055", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0255", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0056", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0256", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0057", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0257", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0058", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0258", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0059", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0259", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0060", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0260", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0061", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0261", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0062", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0262", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0063", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0263", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0064", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0264", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0065", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0265", "type": 23, "bytes": 13, "description": "System Reset", "values": {"status": "Enabled", "watchdog_timer": "Present", "boot_option": "Do Not Reboot", "boot_option_on_limit": "Do Not Reboot", "reset_count": "Unknown", "reset_limit": "Unknown", "timer_interval": "Unknown", "timeout": "Unknown"}}, {"handle": "0x0266", "type": 24, "bytes": 5, "description": "Hardware Security", "values": {"power-on_password_status": "Disabled", "keyboard_password_status": "Unknown", "administrator_password_status": "Enabled", "front_panel_reset_status": "Unknown"}}, {"handle": "0x0267", "type": 30, "bytes": 6, "description": "Out-of-band Remote Access", "values": {"manufacturer_name": "Intel", "inbound_connection": "Enabled", "outbound_connection": "Disabled"}}, {"handle": "0x0268", "type": 32, "bytes": 20, "description": "System Boot Information", "values": {"status": "No errors detected"}}, {"handle": "0x0269", "type": 33, "bytes": 31, "description": "64-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x026A", "type": 126, "bytes": 4, "description": "Inactive", "values": {}}, {"handle": "0x026B", "type": 127, "bytes": 4, "description": "End Of Table", "values": {}}] +[{"handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": {"vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": ["ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported"], "bios_revision": "4.6", "firmware_revision": "0.0"}}, {"handle": "0x0001", "type": 1, "bytes": 27, "description": "System Information", "values": {"manufacturer": "VMware, Inc.", "product_name": "VMware Virtual Platform", "version": "None", "serial_number": "VMware-56 4d fd 28 89 33 f8 e2-64 74 01 59 92 3b 58 0e", "uuid": "28fd4d56-3389-e2f8-6474-0159923b580e", "wake-up_type": "Power Switch", "sku_number": "Not Specified", "family": "Not Specified"}}, {"handle": "0x0002", "type": 2, "bytes": 15, "description": "Base Board Information", "values": {"manufacturer": "Intel Corporation", "product_name": "440BX Desktop Reference Platform", "version": "None", "serial_number": "None", "asset_tag": "Not Specified", "features": "None", "location_in_chassis": "Not Specified", "chassis_handle": "0x0000", "type": "Unknown", "contained_object_handles": "0"}}, {"handle": "0x0003", "type": 3, "bytes": 21, "description": "Chassis Information", "values": {"manufacturer": "No Enclosure", "type": "Other", "lock": "Not Present", "version": "N/A", "serial_number": "None", "asset_tag": "No Asset Tag", "boot-up_state": "Safe", "power_supply_state": "Safe", "thermal_state": "Safe", "security_status": "None", "oem_information": "0x00001234", "height": "Unspecified", "number_of_power_cords": "Unspecified", "contained_elements": "0"}}, {"handle": "0x0004", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #000", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 08 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Enabled", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0094", "l2_cache_handle": "0x0114", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0005", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #001", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0095", "l2_cache_handle": "0x0115", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0006", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #002", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0096", "l2_cache_handle": "0x0116", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0007", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #003", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0097", "l2_cache_handle": "0x0117", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0008", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #004", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0098", "l2_cache_handle": "0x0118", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0009", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #005", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0099", "l2_cache_handle": "0x0119", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #006", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009A", "l2_cache_handle": "0x011A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #007", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009B", "l2_cache_handle": "0x011B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #008", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009C", "l2_cache_handle": "0x011C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #009", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009D", "l2_cache_handle": "0x011D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #010", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009E", "l2_cache_handle": "0x011E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #011", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009F", "l2_cache_handle": "0x011F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0010", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #012", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A0", "l2_cache_handle": "0x0120", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0011", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #013", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A1", "l2_cache_handle": "0x0121", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0012", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #014", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A2", "l2_cache_handle": "0x0122", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0013", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #015", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A3", "l2_cache_handle": "0x0123", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0014", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #016", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A4", "l2_cache_handle": "0x0124", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0015", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #017", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A5", "l2_cache_handle": "0x0125", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0016", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #018", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A6", "l2_cache_handle": "0x0126", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0017", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #019", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A7", "l2_cache_handle": "0x0127", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0018", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #020", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A8", "l2_cache_handle": "0x0128", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0019", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #021", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A9", "l2_cache_handle": "0x0129", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #022", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AA", "l2_cache_handle": "0x012A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #023", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AB", "l2_cache_handle": "0x012B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #024", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AC", "l2_cache_handle": "0x012C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #025", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AD", "l2_cache_handle": "0x012D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #026", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AE", "l2_cache_handle": "0x012E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #027", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AF", "l2_cache_handle": "0x012F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0020", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #028", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B0", "l2_cache_handle": "0x0130", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0021", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #029", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B1", "l2_cache_handle": "0x0131", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0022", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #030", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B2", "l2_cache_handle": "0x0132", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0023", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #031", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B3", "l2_cache_handle": "0x0133", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0024", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #032", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B4", "l2_cache_handle": "0x0134", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0025", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #033", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B5", "l2_cache_handle": "0x0135", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0026", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #034", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B6", "l2_cache_handle": "0x0136", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0027", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #035", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B7", "l2_cache_handle": "0x0137", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0028", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #036", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B8", "l2_cache_handle": "0x0138", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0029", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #037", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B9", "l2_cache_handle": "0x0139", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #038", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BA", "l2_cache_handle": "0x013A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #039", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BB", "l2_cache_handle": "0x013B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #040", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BC", "l2_cache_handle": "0x013C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #041", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BD", "l2_cache_handle": "0x013D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #042", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BE", "l2_cache_handle": "0x013E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #043", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BF", "l2_cache_handle": "0x013F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0030", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #044", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C0", "l2_cache_handle": "0x0140", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0031", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #045", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C1", "l2_cache_handle": "0x0141", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0032", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #046", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C2", "l2_cache_handle": "0x0142", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0033", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #047", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C3", "l2_cache_handle": "0x0143", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0034", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #048", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C4", "l2_cache_handle": "0x0144", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0035", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #049", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C5", "l2_cache_handle": "0x0145", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0036", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #050", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C6", "l2_cache_handle": "0x0146", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0037", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #051", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C7", "l2_cache_handle": "0x0147", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0038", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #052", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C8", "l2_cache_handle": "0x0148", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0039", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #053", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C9", "l2_cache_handle": "0x0149", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #054", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CA", "l2_cache_handle": "0x014A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #055", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CB", "l2_cache_handle": "0x014B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #056", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CC", "l2_cache_handle": "0x014C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #057", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CD", "l2_cache_handle": "0x014D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #058", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CE", "l2_cache_handle": "0x014E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #059", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CF", "l2_cache_handle": "0x014F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0040", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #060", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D0", "l2_cache_handle": "0x0150", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0041", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #061", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D1", "l2_cache_handle": "0x0151", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0042", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #062", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D2", "l2_cache_handle": "0x0152", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0043", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #063", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D3", "l2_cache_handle": "0x0153", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0044", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #064", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D4", "l2_cache_handle": "0x0154", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0045", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #065", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D5", "l2_cache_handle": "0x0155", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0046", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #066", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D6", "l2_cache_handle": "0x0156", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0047", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #067", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D7", "l2_cache_handle": "0x0157", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0048", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #068", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D8", "l2_cache_handle": "0x0158", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0049", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #069", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D9", "l2_cache_handle": "0x0159", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #070", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DA", "l2_cache_handle": "0x015A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #071", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DB", "l2_cache_handle": "0x015B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #072", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DC", "l2_cache_handle": "0x015C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #073", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DD", "l2_cache_handle": "0x015D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #074", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DE", "l2_cache_handle": "0x015E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #075", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DF", "l2_cache_handle": "0x015F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0050", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #076", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E0", "l2_cache_handle": "0x0160", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0051", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #077", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E1", "l2_cache_handle": "0x0161", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0052", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #078", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E2", "l2_cache_handle": "0x0162", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0053", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #079", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E3", "l2_cache_handle": "0x0163", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0054", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #080", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E4", "l2_cache_handle": "0x0164", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0055", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #081", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E5", "l2_cache_handle": "0x0165", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0056", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #082", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E6", "l2_cache_handle": "0x0166", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0057", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #083", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E7", "l2_cache_handle": "0x0167", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0058", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #084", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E8", "l2_cache_handle": "0x0168", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0059", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #085", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E9", "l2_cache_handle": "0x0169", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #086", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EA", "l2_cache_handle": "0x016A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #087", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EB", "l2_cache_handle": "0x016B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #088", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EC", "l2_cache_handle": "0x016C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #089", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00ED", "l2_cache_handle": "0x016D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #090", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EE", "l2_cache_handle": "0x016E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #091", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EF", "l2_cache_handle": "0x016F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0060", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #092", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F0", "l2_cache_handle": "0x0170", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0061", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #093", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F1", "l2_cache_handle": "0x0171", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0062", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #094", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F2", "l2_cache_handle": "0x0172", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0063", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #095", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F3", "l2_cache_handle": "0x0173", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0064", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #096", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F4", "l2_cache_handle": "0x0174", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0065", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #097", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F5", "l2_cache_handle": "0x0175", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0066", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #098", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F6", "l2_cache_handle": "0x0176", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0067", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #099", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F7", "l2_cache_handle": "0x0177", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0068", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #100", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F8", "l2_cache_handle": "0x0178", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0069", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #101", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F9", "l2_cache_handle": "0x0179", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #102", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FA", "l2_cache_handle": "0x017A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #103", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FB", "l2_cache_handle": "0x017B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #104", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FC", "l2_cache_handle": "0x017C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #105", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FD", "l2_cache_handle": "0x017D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #106", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FE", "l2_cache_handle": "0x017E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #107", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FF", "l2_cache_handle": "0x017F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0070", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #108", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0100", "l2_cache_handle": "0x0180", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0071", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #109", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0101", "l2_cache_handle": "0x0181", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0072", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #110", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0102", "l2_cache_handle": "0x0182", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0073", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #111", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0103", "l2_cache_handle": "0x0183", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0074", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #112", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0104", "l2_cache_handle": "0x0184", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0075", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #113", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0105", "l2_cache_handle": "0x0185", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0076", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #114", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0106", "l2_cache_handle": "0x0186", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0077", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #115", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0107", "l2_cache_handle": "0x0187", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0078", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #116", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0108", "l2_cache_handle": "0x0188", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0079", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #117", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0109", "l2_cache_handle": "0x0189", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #118", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010A", "l2_cache_handle": "0x018A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #119", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010B", "l2_cache_handle": "0x018B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #120", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010C", "l2_cache_handle": "0x018C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #121", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010D", "l2_cache_handle": "0x018D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #122", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010E", "l2_cache_handle": "0x018E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #123", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010F", "l2_cache_handle": "0x018F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0080", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #124", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0110", "l2_cache_handle": "0x0190", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0081", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #125", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0111", "l2_cache_handle": "0x0191", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0082", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #126", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0112", "l2_cache_handle": "0x0192", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0083", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #127", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0113", "l2_cache_handle": "0x0193", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0084", "type": 5, "bytes": 46, "description": "Memory Controller Information", "values": {"error_detecting_method": "None", "error_correcting_capabilities": ["None"], "supported_interleave": "One-way Interleave", "current_interleave": "One-way Interleave", "maximum_memory_module_size": "32768 MB", "maximum_total_memory_size": "491520 MB", "supported_speeds": ["70 ns", "60 ns"], "supported_memory_types": ["FPM", "EDO", "DIMM", "SDRAM"], "memory_module_voltage": "3.3 V", "associated_memory_slots": "15", "associated_memory_slots_data": ["0x0006", "0x0007", "0x0008", "0x0009", "0x000A", "0x000B", "0x000C", "0x000D", "0x000E", "0x000F", "0x0010", "0x0011", "0x0012", "0x0013", "0x0014"], "enabled_error_correcting_capabilities": ["None"]}}, {"handle": "0x0085", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #0", "bank_connections": "None", "current_speed": "Unknown", "type": "EDO DIMM", "installed_size": "4096 MB (Single-bank Connection)", "enabled_size": "4096 MB (Single-bank Connection)", "error_status": "OK"}}, {"handle": "0x0086", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #1", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0087", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #2", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0088", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #3", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0089", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #4", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008A", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #5", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008B", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #6", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008C", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #7", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008D", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #8", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008E", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #9", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008F", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #10", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0090", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #11", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0091", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #12", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0092", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #13", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0093", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #14", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0094", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0095", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0096", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0097", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0098", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0099", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00ED", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0100", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0101", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0102", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0103", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0104", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0105", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0106", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0107", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0108", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0109", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0110", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0111", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0112", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0113", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0114", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0115", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0116", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0117", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0118", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0119", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0120", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0121", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0122", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0123", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0124", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0125", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0126", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0127", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0128", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0129", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0130", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0131", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0132", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0133", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0134", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0135", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0136", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0137", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0138", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0139", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0140", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0141", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0142", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0143", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0144", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0145", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0146", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0147", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0148", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0149", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0150", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0151", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0152", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0153", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0154", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0155", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0156", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0157", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0158", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0159", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0160", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0161", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0162", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0163", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0164", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0165", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0166", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0167", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0168", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0169", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0170", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0171", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0172", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0173", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0174", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0175", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0176", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0177", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0178", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0179", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0180", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0181", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0182", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0183", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0184", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0185", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0186", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0187", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0188", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0189", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0190", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0191", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0192", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0193", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0194", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J19", "internal_connector_type": "9 Pin Dual Inline (pin 10 cut)", "external_reference_designator": "COM 1", "external_connector_type": "DB-9 male", "port_type": "Serial Port 16550A Compatible"}}, {"handle": "0x0195", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J23", "internal_connector_type": "25 Pin Dual Inline (pin 26 cut)", "external_reference_designator": "Parallel", "external_connector_type": "DB-25 female", "port_type": "Parallel Port ECP/EPP"}}, {"handle": "0x0196", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J11", "internal_connector_type": "None", "external_reference_designator": "Keyboard", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0197", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J12", "internal_connector_type": "None", "external_reference_designator": "PS/2 Mouse", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0198", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J8", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x0199", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J9", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019A", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J10", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019B", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J11", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "1", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:0f.0"}}, {"handle": "0x019C", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J12", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "2", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:10.0"}}, {"handle": "0x019D", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J13", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "3", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:11.0"}}, {"handle": "0x019E", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J14", "type": "32-bit PCI", "current_usage": "Available", "length": "Long", "id": "4", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:12.0"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 1 Information", "values": {"type": "Video", "status": "Disabled", "description": "VMware SVGA II"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 2 Information", "values": {"type": "Sound", "status": "Disabled", "description": "ES1371"}}, {"handle": "0x01A0", "type": 11, "bytes": 5, "description": "OEM Strings", "values": {"string_1": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]", "string_2": "Welcome to the Virtual Machine"}}, {"handle": "0x01A1", "type": 15, "bytes": 29, "description": "System Event Log", "values": {"area_length": "16 bytes", "header_start_offset": "0x0000", "header_length": "16 bytes", "data_start_offset": "0x0010", "access_method": "General-purpose non-volatile data functions", "access_address": "0x0000", "status": "Invalid, Full", "change_token": "0x00000036", "header_format": "Type 1", "supported_log_type_descriptors": "3", "descriptor_1": "POST error", "data_format_1": "POST results bitmap", "descriptor_2": "Single-bit ECC memory error", "data_format_2": "Multiple-event", "descriptor_3": "Multi-bit ECC memory error", "data_format_3": "Multiple-event"}}, {"handle": "0x01A2", "type": 16, "bytes": 23, "description": "Physical Memory Array", "values": {"location": "System Board Or Motherboard", "use": "System Memory", "error_correction_type": "None", "maximum_capacity": "65 GB", "error_information_handle": "Not Provided", "number_of_devices": "64"}}, {"handle": "0x01A3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "4096 MB", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #0", "bank_locator": "RAM slot #0", "type": "DRAM", "type_detail": "EDO", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #1", "bank_locator": "RAM slot #1", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #2", "bank_locator": "RAM slot #2", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #3", "bank_locator": "RAM slot #3", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #4", "bank_locator": "RAM slot #4", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #5", "bank_locator": "RAM slot #5", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #6", "bank_locator": "RAM slot #6", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #7", "bank_locator": "RAM slot #7", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #8", "bank_locator": "RAM slot #8", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #9", "bank_locator": "RAM slot #9", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #10", "bank_locator": "RAM slot #10", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #11", "bank_locator": "RAM slot #11", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #12", "bank_locator": "RAM slot #12", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #13", "bank_locator": "RAM slot #13", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #14", "bank_locator": "RAM slot #14", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #15", "bank_locator": "RAM slot #15", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #16", "bank_locator": "RAM slot #16", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #17", "bank_locator": "RAM slot #17", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #18", "bank_locator": "RAM slot #18", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #19", "bank_locator": "RAM slot #19", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #20", "bank_locator": "RAM slot #20", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #21", "bank_locator": "RAM slot #21", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #22", "bank_locator": "RAM slot #22", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #23", "bank_locator": "RAM slot #23", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #24", "bank_locator": "RAM slot #24", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #25", "bank_locator": "RAM slot #25", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #26", "bank_locator": "RAM slot #26", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #27", "bank_locator": "RAM slot #27", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #28", "bank_locator": "RAM slot #28", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #29", "bank_locator": "RAM slot #29", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #30", "bank_locator": "RAM slot #30", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #31", "bank_locator": "RAM slot #31", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #32", "bank_locator": "RAM slot #32", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #33", "bank_locator": "RAM slot #33", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #34", "bank_locator": "RAM slot #34", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #35", "bank_locator": "RAM slot #35", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #36", "bank_locator": "RAM slot #36", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #37", "bank_locator": "RAM slot #37", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #38", "bank_locator": "RAM slot #38", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #39", "bank_locator": "RAM slot #39", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #40", "bank_locator": "RAM slot #40", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #41", "bank_locator": "RAM slot #41", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #42", "bank_locator": "RAM slot #42", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #43", "bank_locator": "RAM slot #43", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #44", "bank_locator": "RAM slot #44", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #45", "bank_locator": "RAM slot #45", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #46", "bank_locator": "RAM slot #46", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #47", "bank_locator": "RAM slot #47", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #48", "bank_locator": "RAM slot #48", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #49", "bank_locator": "RAM slot #49", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #50", "bank_locator": "RAM slot #50", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #51", "bank_locator": "RAM slot #51", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #52", "bank_locator": "RAM slot #52", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #53", "bank_locator": "RAM slot #53", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #54", "bank_locator": "RAM slot #54", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #55", "bank_locator": "RAM slot #55", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #56", "bank_locator": "RAM slot #56", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #57", "bank_locator": "RAM slot #57", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #58", "bank_locator": "RAM slot #58", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #59", "bank_locator": "RAM slot #59", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #60", "bank_locator": "RAM slot #60", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #61", "bank_locator": "RAM slot #61", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #62", "bank_locator": "RAM slot #62", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #63", "bank_locator": "RAM slot #63", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #0", "bank_locator": "NVD #0", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #1", "bank_locator": "NVD #1", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #2", "bank_locator": "NVD #2", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #3", "bank_locator": "NVD #3", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #4", "bank_locator": "NVD #4", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #5", "bank_locator": "NVD #5", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #6", "bank_locator": "NVD #6", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #7", "bank_locator": "NVD #7", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #8", "bank_locator": "NVD #8", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #9", "bank_locator": "NVD #9", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01ED", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #10", "bank_locator": "NVD #10", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #11", "bank_locator": "NVD #11", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #12", "bank_locator": "NVD #12", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #13", "bank_locator": "NVD #13", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #14", "bank_locator": "NVD #14", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #15", "bank_locator": "NVD #15", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #16", "bank_locator": "NVD #16", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #17", "bank_locator": "NVD #17", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #18", "bank_locator": "NVD #18", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #19", "bank_locator": "NVD #19", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #20", "bank_locator": "NVD #20", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #21", "bank_locator": "NVD #21", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #22", "bank_locator": "NVD #22", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #23", "bank_locator": "NVD #23", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #24", "bank_locator": "NVD #24", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #25", "bank_locator": "NVD #25", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #26", "bank_locator": "NVD #26", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #27", "bank_locator": "NVD #27", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #28", "bank_locator": "NVD #28", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0200", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #29", "bank_locator": "NVD #29", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0201", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #30", "bank_locator": "NVD #30", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0202", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #31", "bank_locator": "NVD #31", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0203", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #32", "bank_locator": "NVD #32", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0204", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #33", "bank_locator": "NVD #33", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0205", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #34", "bank_locator": "NVD #34", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0206", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #35", "bank_locator": "NVD #35", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0207", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #36", "bank_locator": "NVD #36", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0208", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #37", "bank_locator": "NVD #37", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0209", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #38", "bank_locator": "NVD #38", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #39", "bank_locator": "NVD #39", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #40", "bank_locator": "NVD #40", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #41", "bank_locator": "NVD #41", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #42", "bank_locator": "NVD #42", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #43", "bank_locator": "NVD #43", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #44", "bank_locator": "NVD #44", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0210", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #45", "bank_locator": "NVD #45", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0211", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #46", "bank_locator": "NVD #46", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0212", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #47", "bank_locator": "NVD #47", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0213", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #48", "bank_locator": "NVD #48", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0214", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #49", "bank_locator": "NVD #49", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0215", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #50", "bank_locator": "NVD #50", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0216", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #51", "bank_locator": "NVD #51", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0217", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #52", "bank_locator": "NVD #52", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0218", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #53", "bank_locator": "NVD #53", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0219", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #54", "bank_locator": "NVD #54", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #55", "bank_locator": "NVD #55", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #56", "bank_locator": "NVD #56", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #57", "bank_locator": "NVD #57", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #58", "bank_locator": "NVD #58", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #59", "bank_locator": "NVD #59", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #60", "bank_locator": "NVD #60", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0220", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #61", "bank_locator": "NVD #61", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0221", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #62", "bank_locator": "NVD #62", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0222", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #63", "bank_locator": "NVD #63", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0223", "type": 18, "bytes": 23, "description": "32-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x0224", "type": 19, "bytes": 31, "description": "Memory Array Mapped Address", "values": {"starting_address": "0x00000000000", "ending_address": "0x000FFFFFFFF", "range_size": "4 GB", "physical_array_handle": "0x0025", "partition_width": "64"}}, {"handle": "0x0225", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0026", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0226", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0027", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0227", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0028", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0228", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0029", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0229", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0030", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0230", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0031", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0231", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0032", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0232", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0033", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0233", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0034", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0234", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0035", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0235", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0036", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0236", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0037", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0237", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0038", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0238", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0039", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0239", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0040", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0240", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0041", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0241", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0042", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0242", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0043", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0243", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0044", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0244", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0045", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0245", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0046", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0246", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0047", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0247", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0048", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0248", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0049", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0249", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0050", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0250", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0051", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0251", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0052", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0252", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0053", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0253", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0054", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0254", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0055", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0255", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0056", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0256", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0057", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0257", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0058", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0258", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0059", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0259", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0060", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0260", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0061", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0261", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0062", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0262", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0063", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0263", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0064", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0264", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0065", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0265", "type": 23, "bytes": 13, "description": "System Reset", "values": {"status": "Enabled", "watchdog_timer": "Present", "boot_option": "Do Not Reboot", "boot_option_on_limit": "Do Not Reboot", "reset_count": "Unknown", "reset_limit": "Unknown", "timer_interval": "Unknown", "timeout": "Unknown"}}, {"handle": "0x0266", "type": 24, "bytes": 5, "description": "Hardware Security", "values": {"power-on_password_status": "Disabled", "keyboard_password_status": "Unknown", "administrator_password_status": "Enabled", "front_panel_reset_status": "Unknown"}}, {"handle": "0x0267", "type": 30, "bytes": 6, "description": "Out-of-band Remote Access", "values": {"manufacturer_name": "Intel", "inbound_connection": "Enabled", "outbound_connection": "Disabled"}}, {"handle": "0x0268", "type": 32, "bytes": 20, "description": "System Boot Information", "values": {"status": "No errors detected"}}, {"handle": "0x0269", "type": 33, "bytes": 31, "description": "64-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x026A", "type": 126, "bytes": 4, "description": "Inactive", "values": null}, {"handle": "0x026B", "type": 127, "bytes": 4, "description": "End Of Table", "values": null}] diff --git a/tests/fixtures/fedora32/dmidecode.json b/tests/fixtures/fedora32/dmidecode.json index 04b6456d..03d36859 100644 --- a/tests/fixtures/fedora32/dmidecode.json +++ b/tests/fixtures/fedora32/dmidecode.json @@ -1 +1 @@ -[{"handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": {"vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": ["ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported"], "bios_revision": "4.6", "firmware_revision": "0.0"}}, {"handle": "0x0001", "type": 1, "bytes": 27, "description": "System Information", "values": {"manufacturer": "VMware, Inc.", "product_name": "VMware Virtual Platform", "version": "None", "serial_number": "VMware-56 4d bf 23 01 aa 4e 9f-c3 92 24 bd 7b 66 16 68", "uuid": "23bf4d56-aa01-9f4e-c392-24bd7b661668", "wake-up_type": "Power Switch", "sku_number": "Not Specified", "family": "Not Specified"}}, {"handle": "0x0002", "type": 2, "bytes": 15, "description": "Base Board Information", "values": {"manufacturer": "Intel Corporation", "product_name": "440BX Desktop Reference Platform", "version": "None", "serial_number": "None", "asset_tag": "Not Specified", "features": "None", "location_in_chassis": "Not Specified", "chassis_handle": "0x0000", "type": "Unknown", "contained_object_handles": "0"}}, {"handle": "0x0003", "type": 3, "bytes": 21, "description": "Chassis Information", "values": {"manufacturer": "No Enclosure", "type": "Other", "lock": "Not Present", "version": "N/A", "serial_number": "None", "asset_tag": "No Asset Tag", "boot-up_state": "Safe", "power_supply_state": "Safe", "thermal_state": "Safe", "security_status": "None", "oem_information": "0x00001234", "height": "Unspecified", "number_of_power_cords": "Unspecified", "contained_elements": "0"}}, {"handle": "0x0004", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #000", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 08 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Enabled", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0094", "l2_cache_handle": "0x0114", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0005", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #001", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0095", "l2_cache_handle": "0x0115", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0006", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #002", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0096", "l2_cache_handle": "0x0116", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0007", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #003", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0097", "l2_cache_handle": "0x0117", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0008", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #004", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0098", "l2_cache_handle": "0x0118", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0009", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #005", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0099", "l2_cache_handle": "0x0119", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #006", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009A", "l2_cache_handle": "0x011A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #007", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009B", "l2_cache_handle": "0x011B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #008", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009C", "l2_cache_handle": "0x011C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #009", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009D", "l2_cache_handle": "0x011D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #010", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009E", "l2_cache_handle": "0x011E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #011", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009F", "l2_cache_handle": "0x011F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0010", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #012", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A0", "l2_cache_handle": "0x0120", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0011", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #013", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A1", "l2_cache_handle": "0x0121", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0012", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #014", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A2", "l2_cache_handle": "0x0122", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0013", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #015", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A3", "l2_cache_handle": "0x0123", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0014", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #016", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A4", "l2_cache_handle": "0x0124", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0015", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #017", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A5", "l2_cache_handle": "0x0125", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0016", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #018", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A6", "l2_cache_handle": "0x0126", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0017", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #019", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A7", "l2_cache_handle": "0x0127", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0018", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #020", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A8", "l2_cache_handle": "0x0128", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0019", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #021", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A9", "l2_cache_handle": "0x0129", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #022", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AA", "l2_cache_handle": "0x012A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #023", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AB", "l2_cache_handle": "0x012B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #024", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AC", "l2_cache_handle": "0x012C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #025", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AD", "l2_cache_handle": "0x012D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #026", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AE", "l2_cache_handle": "0x012E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #027", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AF", "l2_cache_handle": "0x012F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0020", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #028", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B0", "l2_cache_handle": "0x0130", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0021", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #029", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B1", "l2_cache_handle": "0x0131", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0022", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #030", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B2", "l2_cache_handle": "0x0132", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0023", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #031", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B3", "l2_cache_handle": "0x0133", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0024", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #032", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B4", "l2_cache_handle": "0x0134", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0025", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #033", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B5", "l2_cache_handle": "0x0135", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0026", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #034", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B6", "l2_cache_handle": "0x0136", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0027", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #035", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B7", "l2_cache_handle": "0x0137", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0028", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #036", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B8", "l2_cache_handle": "0x0138", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0029", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #037", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B9", "l2_cache_handle": "0x0139", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #038", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BA", "l2_cache_handle": "0x013A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #039", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BB", "l2_cache_handle": "0x013B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #040", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BC", "l2_cache_handle": "0x013C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #041", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BD", "l2_cache_handle": "0x013D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #042", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BE", "l2_cache_handle": "0x013E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #043", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BF", "l2_cache_handle": "0x013F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0030", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #044", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C0", "l2_cache_handle": "0x0140", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0031", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #045", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C1", "l2_cache_handle": "0x0141", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0032", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #046", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C2", "l2_cache_handle": "0x0142", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0033", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #047", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C3", "l2_cache_handle": "0x0143", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0034", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #048", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C4", "l2_cache_handle": "0x0144", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0035", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #049", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C5", "l2_cache_handle": "0x0145", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0036", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #050", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C6", "l2_cache_handle": "0x0146", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0037", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #051", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C7", "l2_cache_handle": "0x0147", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0038", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #052", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C8", "l2_cache_handle": "0x0148", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0039", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #053", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C9", "l2_cache_handle": "0x0149", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #054", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CA", "l2_cache_handle": "0x014A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #055", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CB", "l2_cache_handle": "0x014B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #056", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CC", "l2_cache_handle": "0x014C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #057", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CD", "l2_cache_handle": "0x014D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #058", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CE", "l2_cache_handle": "0x014E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #059", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CF", "l2_cache_handle": "0x014F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0040", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #060", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D0", "l2_cache_handle": "0x0150", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0041", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #061", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D1", "l2_cache_handle": "0x0151", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0042", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #062", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D2", "l2_cache_handle": "0x0152", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0043", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #063", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D3", "l2_cache_handle": "0x0153", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0044", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #064", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D4", "l2_cache_handle": "0x0154", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0045", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #065", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D5", "l2_cache_handle": "0x0155", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0046", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #066", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D6", "l2_cache_handle": "0x0156", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0047", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #067", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D7", "l2_cache_handle": "0x0157", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0048", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #068", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D8", "l2_cache_handle": "0x0158", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0049", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #069", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D9", "l2_cache_handle": "0x0159", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #070", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DA", "l2_cache_handle": "0x015A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #071", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DB", "l2_cache_handle": "0x015B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #072", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DC", "l2_cache_handle": "0x015C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #073", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DD", "l2_cache_handle": "0x015D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #074", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DE", "l2_cache_handle": "0x015E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #075", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DF", "l2_cache_handle": "0x015F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0050", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #076", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E0", "l2_cache_handle": "0x0160", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0051", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #077", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E1", "l2_cache_handle": "0x0161", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0052", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #078", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E2", "l2_cache_handle": "0x0162", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0053", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #079", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E3", "l2_cache_handle": "0x0163", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0054", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #080", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E4", "l2_cache_handle": "0x0164", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0055", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #081", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E5", "l2_cache_handle": "0x0165", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0056", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #082", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E6", "l2_cache_handle": "0x0166", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0057", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #083", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E7", "l2_cache_handle": "0x0167", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0058", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #084", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E8", "l2_cache_handle": "0x0168", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0059", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #085", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E9", "l2_cache_handle": "0x0169", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #086", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EA", "l2_cache_handle": "0x016A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #087", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EB", "l2_cache_handle": "0x016B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #088", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EC", "l2_cache_handle": "0x016C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #089", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00ED", "l2_cache_handle": "0x016D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #090", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EE", "l2_cache_handle": "0x016E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #091", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EF", "l2_cache_handle": "0x016F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0060", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #092", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F0", "l2_cache_handle": "0x0170", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0061", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #093", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F1", "l2_cache_handle": "0x0171", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0062", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #094", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F2", "l2_cache_handle": "0x0172", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0063", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #095", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F3", "l2_cache_handle": "0x0173", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0064", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #096", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F4", "l2_cache_handle": "0x0174", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0065", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #097", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F5", "l2_cache_handle": "0x0175", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0066", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #098", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F6", "l2_cache_handle": "0x0176", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0067", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #099", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F7", "l2_cache_handle": "0x0177", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0068", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #100", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F8", "l2_cache_handle": "0x0178", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0069", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #101", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F9", "l2_cache_handle": "0x0179", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #102", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FA", "l2_cache_handle": "0x017A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #103", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FB", "l2_cache_handle": "0x017B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #104", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FC", "l2_cache_handle": "0x017C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #105", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FD", "l2_cache_handle": "0x017D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #106", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FE", "l2_cache_handle": "0x017E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #107", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FF", "l2_cache_handle": "0x017F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0070", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #108", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0100", "l2_cache_handle": "0x0180", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0071", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #109", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0101", "l2_cache_handle": "0x0181", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0072", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #110", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0102", "l2_cache_handle": "0x0182", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0073", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #111", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0103", "l2_cache_handle": "0x0183", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0074", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #112", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0104", "l2_cache_handle": "0x0184", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0075", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #113", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0105", "l2_cache_handle": "0x0185", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0076", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #114", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0106", "l2_cache_handle": "0x0186", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0077", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #115", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0107", "l2_cache_handle": "0x0187", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0078", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #116", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0108", "l2_cache_handle": "0x0188", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0079", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #117", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0109", "l2_cache_handle": "0x0189", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #118", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010A", "l2_cache_handle": "0x018A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #119", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010B", "l2_cache_handle": "0x018B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #120", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010C", "l2_cache_handle": "0x018C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #121", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010D", "l2_cache_handle": "0x018D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #122", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010E", "l2_cache_handle": "0x018E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #123", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010F", "l2_cache_handle": "0x018F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0080", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #124", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0110", "l2_cache_handle": "0x0190", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0081", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #125", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0111", "l2_cache_handle": "0x0191", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0082", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #126", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0112", "l2_cache_handle": "0x0192", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0083", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #127", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0113", "l2_cache_handle": "0x0193", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0084", "type": 5, "bytes": 46, "description": "Memory Controller Information", "values": {"error_detecting_method": "None", "error_correcting_capabilities": ["None"], "supported_interleave": "One-way Interleave", "current_interleave": "One-way Interleave", "maximum_memory_module_size": "32768 MB", "maximum_total_memory_size": "491520 MB", "supported_speeds": ["70 ns", "60 ns"], "supported_memory_types": ["FPM", "EDO", "DIMM", "SDRAM"], "memory_module_voltage": "3.3 V", "associated_memory_slots": "15", "associated_memory_slots_data": ["0x0006", "0x0007", "0x0008", "0x0009", "0x000A", "0x000B", "0x000C", "0x000D", "0x000E", "0x000F", "0x0010", "0x0011", "0x0012", "0x0013", "0x0014"], "enabled_error_correcting_capabilities": ["None"]}}, {"handle": "0x0085", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #0", "bank_connections": "None", "current_speed": "Unknown", "type": "EDO DIMM", "installed_size": "4096 MB (Single-bank Connection)", "enabled_size": "4096 MB (Single-bank Connection)", "error_status": "OK"}}, {"handle": "0x0086", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #1", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0087", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #2", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0088", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #3", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0089", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #4", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008A", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #5", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008B", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #6", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008C", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #7", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008D", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #8", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008E", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #9", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008F", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #10", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0090", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #11", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0091", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #12", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0092", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #13", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0093", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #14", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0094", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0095", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0096", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0097", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0098", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0099", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00ED", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0100", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0101", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0102", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0103", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0104", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0105", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0106", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0107", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0108", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0109", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0110", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0111", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0112", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0113", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0114", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0115", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0116", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0117", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0118", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0119", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0120", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0121", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0122", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0123", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0124", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0125", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0126", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0127", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0128", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0129", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0130", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0131", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0132", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0133", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0134", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0135", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0136", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0137", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0138", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0139", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0140", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0141", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0142", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0143", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0144", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0145", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0146", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0147", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0148", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0149", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0150", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0151", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0152", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0153", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0154", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0155", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0156", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0157", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0158", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0159", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0160", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0161", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0162", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0163", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0164", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0165", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0166", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0167", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0168", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0169", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0170", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0171", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0172", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0173", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0174", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0175", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0176", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0177", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0178", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0179", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0180", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0181", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0182", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0183", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0184", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0185", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0186", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0187", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0188", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0189", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0190", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0191", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0192", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0193", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0194", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J19", "internal_connector_type": "9 Pin Dual Inline (pin 10 cut)", "external_reference_designator": "COM 1", "external_connector_type": "DB-9 male", "port_type": "Serial Port 16550A Compatible"}}, {"handle": "0x0195", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J23", "internal_connector_type": "25 Pin Dual Inline (pin 26 cut)", "external_reference_designator": "Parallel", "external_connector_type": "DB-25 female", "port_type": "Parallel Port ECP/EPP"}}, {"handle": "0x0196", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J11", "internal_connector_type": "None", "external_reference_designator": "Keyboard", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0197", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J12", "internal_connector_type": "None", "external_reference_designator": "PS/2 Mouse", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0198", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J8", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x0199", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J9", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019A", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J10", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019B", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J11", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "1", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:0f.0"}}, {"handle": "0x019C", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J12", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "2", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:10.0"}}, {"handle": "0x019D", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J13", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "3", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:11.0"}}, {"handle": "0x019E", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J14", "type": "32-bit PCI", "current_usage": "Available", "length": "Long", "id": "4", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:12.0"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 1 Information", "values": {"type": "Video", "status": "Disabled", "description": "VMware SVGA II"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 2 Information", "values": {"type": "Sound", "status": "Disabled", "description": "ES1371"}}, {"handle": "0x01A0", "type": 11, "bytes": 5, "description": "OEM Strings", "values": {"string_1": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]", "string_2": "Welcome to the Virtual Machine"}}, {"handle": "0x01A1", "type": 15, "bytes": 29, "description": "System Event Log", "values": {"area_length": "16 bytes", "header_start_offset": "0x0000", "header_length": "16 bytes", "data_start_offset": "0x0010", "access_method": "General-purpose non-volatile data functions", "access_address": "0x0000", "status": "Invalid, Full", "change_token": "0x00000036", "header_format": "Type 1", "supported_log_type_descriptors": "3", "descriptor_1": "POST error", "data_format_1": "POST results bitmap", "descriptor_2": "Single-bit ECC memory error", "data_format_2": "Multiple-event", "descriptor_3": "Multi-bit ECC memory error", "data_format_3": "Multiple-event"}}, {"handle": "0x01A2", "type": 16, "bytes": 23, "description": "Physical Memory Array", "values": {"location": "System Board Or Motherboard", "use": "System Memory", "error_correction_type": "None", "maximum_capacity": "65 GB", "error_information_handle": "Not Provided", "number_of_devices": "64"}}, {"handle": "0x01A3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "4 GB", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #0", "bank_locator": "RAM slot #0", "type": "DRAM", "type_detail": "EDO", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #1", "bank_locator": "RAM slot #1", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #2", "bank_locator": "RAM slot #2", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #3", "bank_locator": "RAM slot #3", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #4", "bank_locator": "RAM slot #4", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #5", "bank_locator": "RAM slot #5", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #6", "bank_locator": "RAM slot #6", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #7", "bank_locator": "RAM slot #7", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #8", "bank_locator": "RAM slot #8", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #9", "bank_locator": "RAM slot #9", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #10", "bank_locator": "RAM slot #10", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #11", "bank_locator": "RAM slot #11", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #12", "bank_locator": "RAM slot #12", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #13", "bank_locator": "RAM slot #13", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #14", "bank_locator": "RAM slot #14", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #15", "bank_locator": "RAM slot #15", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #16", "bank_locator": "RAM slot #16", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #17", "bank_locator": "RAM slot #17", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #18", "bank_locator": "RAM slot #18", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #19", "bank_locator": "RAM slot #19", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #20", "bank_locator": "RAM slot #20", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #21", "bank_locator": "RAM slot #21", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #22", "bank_locator": "RAM slot #22", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #23", "bank_locator": "RAM slot #23", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #24", "bank_locator": "RAM slot #24", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #25", "bank_locator": "RAM slot #25", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #26", "bank_locator": "RAM slot #26", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #27", "bank_locator": "RAM slot #27", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #28", "bank_locator": "RAM slot #28", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #29", "bank_locator": "RAM slot #29", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #30", "bank_locator": "RAM slot #30", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #31", "bank_locator": "RAM slot #31", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #32", "bank_locator": "RAM slot #32", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #33", "bank_locator": "RAM slot #33", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #34", "bank_locator": "RAM slot #34", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #35", "bank_locator": "RAM slot #35", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #36", "bank_locator": "RAM slot #36", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #37", "bank_locator": "RAM slot #37", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #38", "bank_locator": "RAM slot #38", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #39", "bank_locator": "RAM slot #39", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #40", "bank_locator": "RAM slot #40", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #41", "bank_locator": "RAM slot #41", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #42", "bank_locator": "RAM slot #42", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #43", "bank_locator": "RAM slot #43", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #44", "bank_locator": "RAM slot #44", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #45", "bank_locator": "RAM slot #45", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #46", "bank_locator": "RAM slot #46", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #47", "bank_locator": "RAM slot #47", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #48", "bank_locator": "RAM slot #48", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #49", "bank_locator": "RAM slot #49", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #50", "bank_locator": "RAM slot #50", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #51", "bank_locator": "RAM slot #51", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #52", "bank_locator": "RAM slot #52", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #53", "bank_locator": "RAM slot #53", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #54", "bank_locator": "RAM slot #54", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #55", "bank_locator": "RAM slot #55", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #56", "bank_locator": "RAM slot #56", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #57", "bank_locator": "RAM slot #57", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #58", "bank_locator": "RAM slot #58", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #59", "bank_locator": "RAM slot #59", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #60", "bank_locator": "RAM slot #60", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #61", "bank_locator": "RAM slot #61", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #62", "bank_locator": "RAM slot #62", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #63", "bank_locator": "RAM slot #63", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #0", "bank_locator": "NVD #0", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #1", "bank_locator": "NVD #1", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #2", "bank_locator": "NVD #2", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #3", "bank_locator": "NVD #3", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #4", "bank_locator": "NVD #4", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #5", "bank_locator": "NVD #5", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #6", "bank_locator": "NVD #6", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #7", "bank_locator": "NVD #7", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #8", "bank_locator": "NVD #8", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #9", "bank_locator": "NVD #9", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01ED", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #10", "bank_locator": "NVD #10", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #11", "bank_locator": "NVD #11", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #12", "bank_locator": "NVD #12", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #13", "bank_locator": "NVD #13", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #14", "bank_locator": "NVD #14", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #15", "bank_locator": "NVD #15", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #16", "bank_locator": "NVD #16", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #17", "bank_locator": "NVD #17", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #18", "bank_locator": "NVD #18", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #19", "bank_locator": "NVD #19", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #20", "bank_locator": "NVD #20", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #21", "bank_locator": "NVD #21", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #22", "bank_locator": "NVD #22", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #23", "bank_locator": "NVD #23", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #24", "bank_locator": "NVD #24", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #25", "bank_locator": "NVD #25", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #26", "bank_locator": "NVD #26", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #27", "bank_locator": "NVD #27", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #28", "bank_locator": "NVD #28", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0200", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #29", "bank_locator": "NVD #29", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0201", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #30", "bank_locator": "NVD #30", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0202", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #31", "bank_locator": "NVD #31", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0203", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #32", "bank_locator": "NVD #32", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0204", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #33", "bank_locator": "NVD #33", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0205", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #34", "bank_locator": "NVD #34", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0206", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #35", "bank_locator": "NVD #35", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0207", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #36", "bank_locator": "NVD #36", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0208", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #37", "bank_locator": "NVD #37", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0209", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #38", "bank_locator": "NVD #38", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #39", "bank_locator": "NVD #39", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #40", "bank_locator": "NVD #40", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #41", "bank_locator": "NVD #41", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #42", "bank_locator": "NVD #42", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #43", "bank_locator": "NVD #43", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #44", "bank_locator": "NVD #44", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0210", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #45", "bank_locator": "NVD #45", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0211", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #46", "bank_locator": "NVD #46", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0212", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #47", "bank_locator": "NVD #47", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0213", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #48", "bank_locator": "NVD #48", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0214", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #49", "bank_locator": "NVD #49", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0215", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #50", "bank_locator": "NVD #50", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0216", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #51", "bank_locator": "NVD #51", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0217", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #52", "bank_locator": "NVD #52", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0218", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #53", "bank_locator": "NVD #53", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0219", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #54", "bank_locator": "NVD #54", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #55", "bank_locator": "NVD #55", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #56", "bank_locator": "NVD #56", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #57", "bank_locator": "NVD #57", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #58", "bank_locator": "NVD #58", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #59", "bank_locator": "NVD #59", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #60", "bank_locator": "NVD #60", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0220", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #61", "bank_locator": "NVD #61", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0221", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #62", "bank_locator": "NVD #62", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0222", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #63", "bank_locator": "NVD #63", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0223", "type": 18, "bytes": 23, "description": "32-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x0224", "type": 19, "bytes": 31, "description": "Memory Array Mapped Address", "values": {"starting_address": "0x00000000000", "ending_address": "0x000FFFFFFFF", "range_size": "4 GB", "physical_array_handle": "0x0025", "partition_width": "64"}}, {"handle": "0x0225", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0026", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0226", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0027", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0227", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0028", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0228", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0029", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0229", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0030", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0230", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0031", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0231", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0032", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0232", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0033", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0233", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0034", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0234", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0035", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0235", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0036", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0236", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0037", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0237", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0038", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0238", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0039", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0239", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0040", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0240", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0041", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0241", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0042", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0242", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0043", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0243", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0044", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0244", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0045", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0245", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0046", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0246", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0047", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0247", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0048", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0248", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0049", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0249", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0050", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0250", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0051", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0251", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0052", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0252", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0053", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0253", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0054", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0254", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0055", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0255", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0056", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0256", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0057", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0257", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0058", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0258", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0059", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0259", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0060", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0260", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0061", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0261", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0062", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0262", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0063", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0263", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0064", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0264", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0065", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0265", "type": 23, "bytes": 13, "description": "System Reset", "values": {"status": "Enabled", "watchdog_timer": "Present", "boot_option": "Do Not Reboot", "boot_option_on_limit": "Do Not Reboot", "reset_count": "Unknown", "reset_limit": "Unknown", "timer_interval": "Unknown", "timeout": "Unknown"}}, {"handle": "0x0266", "type": 24, "bytes": 5, "description": "Hardware Security", "values": {"power-on_password_status": "Disabled", "keyboard_password_status": "Unknown", "administrator_password_status": "Enabled", "front_panel_reset_status": "Unknown"}}, {"handle": "0x0267", "type": 30, "bytes": 6, "description": "Out-of-band Remote Access", "values": {"manufacturer_name": "Intel", "inbound_connection": "Enabled", "outbound_connection": "Disabled"}}, {"handle": "0x0268", "type": 32, "bytes": 20, "description": "System Boot Information", "values": {"status": "No errors detected"}}, {"handle": "0x0269", "type": 33, "bytes": 31, "description": "64-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x026A", "type": 126, "bytes": 4, "description": "Inactive", "values": {}}, {"handle": "0x026B", "type": 127, "bytes": 4, "description": "End Of Table", "values": {}}] +[{"handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": {"vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": ["ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported"], "bios_revision": "4.6", "firmware_revision": "0.0"}}, {"handle": "0x0001", "type": 1, "bytes": 27, "description": "System Information", "values": {"manufacturer": "VMware, Inc.", "product_name": "VMware Virtual Platform", "version": "None", "serial_number": "VMware-56 4d bf 23 01 aa 4e 9f-c3 92 24 bd 7b 66 16 68", "uuid": "23bf4d56-aa01-9f4e-c392-24bd7b661668", "wake-up_type": "Power Switch", "sku_number": "Not Specified", "family": "Not Specified"}}, {"handle": "0x0002", "type": 2, "bytes": 15, "description": "Base Board Information", "values": {"manufacturer": "Intel Corporation", "product_name": "440BX Desktop Reference Platform", "version": "None", "serial_number": "None", "asset_tag": "Not Specified", "features": "None", "location_in_chassis": "Not Specified", "chassis_handle": "0x0000", "type": "Unknown", "contained_object_handles": "0"}}, {"handle": "0x0003", "type": 3, "bytes": 21, "description": "Chassis Information", "values": {"manufacturer": "No Enclosure", "type": "Other", "lock": "Not Present", "version": "N/A", "serial_number": "None", "asset_tag": "No Asset Tag", "boot-up_state": "Safe", "power_supply_state": "Safe", "thermal_state": "Safe", "security_status": "None", "oem_information": "0x00001234", "height": "Unspecified", "number_of_power_cords": "Unspecified", "contained_elements": "0"}}, {"handle": "0x0004", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #000", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 08 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Enabled", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0094", "l2_cache_handle": "0x0114", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0005", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #001", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0095", "l2_cache_handle": "0x0115", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0006", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #002", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0096", "l2_cache_handle": "0x0116", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0007", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #003", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0097", "l2_cache_handle": "0x0117", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0008", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #004", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0098", "l2_cache_handle": "0x0118", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0009", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #005", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0099", "l2_cache_handle": "0x0119", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #006", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009A", "l2_cache_handle": "0x011A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #007", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009B", "l2_cache_handle": "0x011B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #008", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009C", "l2_cache_handle": "0x011C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #009", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009D", "l2_cache_handle": "0x011D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #010", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009E", "l2_cache_handle": "0x011E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #011", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009F", "l2_cache_handle": "0x011F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0010", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #012", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A0", "l2_cache_handle": "0x0120", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0011", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #013", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A1", "l2_cache_handle": "0x0121", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0012", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #014", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A2", "l2_cache_handle": "0x0122", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0013", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #015", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A3", "l2_cache_handle": "0x0123", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0014", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #016", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A4", "l2_cache_handle": "0x0124", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0015", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #017", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A5", "l2_cache_handle": "0x0125", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0016", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #018", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A6", "l2_cache_handle": "0x0126", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0017", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #019", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A7", "l2_cache_handle": "0x0127", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0018", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #020", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A8", "l2_cache_handle": "0x0128", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0019", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #021", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A9", "l2_cache_handle": "0x0129", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #022", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AA", "l2_cache_handle": "0x012A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #023", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AB", "l2_cache_handle": "0x012B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #024", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AC", "l2_cache_handle": "0x012C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #025", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AD", "l2_cache_handle": "0x012D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #026", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AE", "l2_cache_handle": "0x012E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #027", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AF", "l2_cache_handle": "0x012F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0020", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #028", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B0", "l2_cache_handle": "0x0130", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0021", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #029", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B1", "l2_cache_handle": "0x0131", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0022", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #030", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B2", "l2_cache_handle": "0x0132", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0023", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #031", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B3", "l2_cache_handle": "0x0133", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0024", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #032", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B4", "l2_cache_handle": "0x0134", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0025", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #033", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B5", "l2_cache_handle": "0x0135", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0026", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #034", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B6", "l2_cache_handle": "0x0136", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0027", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #035", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B7", "l2_cache_handle": "0x0137", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0028", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #036", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B8", "l2_cache_handle": "0x0138", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0029", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #037", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B9", "l2_cache_handle": "0x0139", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #038", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BA", "l2_cache_handle": "0x013A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #039", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BB", "l2_cache_handle": "0x013B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #040", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BC", "l2_cache_handle": "0x013C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #041", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BD", "l2_cache_handle": "0x013D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #042", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BE", "l2_cache_handle": "0x013E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #043", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BF", "l2_cache_handle": "0x013F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0030", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #044", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C0", "l2_cache_handle": "0x0140", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0031", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #045", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C1", "l2_cache_handle": "0x0141", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0032", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #046", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C2", "l2_cache_handle": "0x0142", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0033", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #047", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C3", "l2_cache_handle": "0x0143", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0034", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #048", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C4", "l2_cache_handle": "0x0144", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0035", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #049", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C5", "l2_cache_handle": "0x0145", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0036", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #050", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C6", "l2_cache_handle": "0x0146", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0037", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #051", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C7", "l2_cache_handle": "0x0147", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0038", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #052", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C8", "l2_cache_handle": "0x0148", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0039", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #053", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C9", "l2_cache_handle": "0x0149", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #054", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CA", "l2_cache_handle": "0x014A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #055", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CB", "l2_cache_handle": "0x014B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #056", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CC", "l2_cache_handle": "0x014C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #057", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CD", "l2_cache_handle": "0x014D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #058", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CE", "l2_cache_handle": "0x014E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #059", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CF", "l2_cache_handle": "0x014F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0040", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #060", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D0", "l2_cache_handle": "0x0150", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0041", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #061", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D1", "l2_cache_handle": "0x0151", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0042", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #062", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D2", "l2_cache_handle": "0x0152", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0043", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #063", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D3", "l2_cache_handle": "0x0153", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0044", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #064", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D4", "l2_cache_handle": "0x0154", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0045", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #065", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D5", "l2_cache_handle": "0x0155", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0046", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #066", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D6", "l2_cache_handle": "0x0156", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0047", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #067", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D7", "l2_cache_handle": "0x0157", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0048", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #068", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D8", "l2_cache_handle": "0x0158", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0049", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #069", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D9", "l2_cache_handle": "0x0159", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #070", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DA", "l2_cache_handle": "0x015A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #071", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DB", "l2_cache_handle": "0x015B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #072", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DC", "l2_cache_handle": "0x015C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #073", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DD", "l2_cache_handle": "0x015D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #074", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DE", "l2_cache_handle": "0x015E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #075", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DF", "l2_cache_handle": "0x015F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0050", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #076", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E0", "l2_cache_handle": "0x0160", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0051", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #077", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E1", "l2_cache_handle": "0x0161", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0052", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #078", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E2", "l2_cache_handle": "0x0162", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0053", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #079", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E3", "l2_cache_handle": "0x0163", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0054", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #080", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E4", "l2_cache_handle": "0x0164", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0055", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #081", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E5", "l2_cache_handle": "0x0165", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0056", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #082", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E6", "l2_cache_handle": "0x0166", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0057", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #083", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E7", "l2_cache_handle": "0x0167", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0058", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #084", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E8", "l2_cache_handle": "0x0168", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0059", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #085", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E9", "l2_cache_handle": "0x0169", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #086", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EA", "l2_cache_handle": "0x016A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #087", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EB", "l2_cache_handle": "0x016B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #088", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EC", "l2_cache_handle": "0x016C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #089", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00ED", "l2_cache_handle": "0x016D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #090", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EE", "l2_cache_handle": "0x016E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #091", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EF", "l2_cache_handle": "0x016F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0060", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #092", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F0", "l2_cache_handle": "0x0170", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0061", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #093", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F1", "l2_cache_handle": "0x0171", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0062", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #094", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F2", "l2_cache_handle": "0x0172", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0063", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #095", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F3", "l2_cache_handle": "0x0173", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0064", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #096", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F4", "l2_cache_handle": "0x0174", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0065", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #097", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F5", "l2_cache_handle": "0x0175", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0066", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #098", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F6", "l2_cache_handle": "0x0176", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0067", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #099", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F7", "l2_cache_handle": "0x0177", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0068", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #100", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F8", "l2_cache_handle": "0x0178", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0069", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #101", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F9", "l2_cache_handle": "0x0179", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #102", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FA", "l2_cache_handle": "0x017A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #103", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FB", "l2_cache_handle": "0x017B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #104", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FC", "l2_cache_handle": "0x017C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #105", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FD", "l2_cache_handle": "0x017D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #106", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FE", "l2_cache_handle": "0x017E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #107", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FF", "l2_cache_handle": "0x017F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0070", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #108", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0100", "l2_cache_handle": "0x0180", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0071", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #109", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0101", "l2_cache_handle": "0x0181", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0072", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #110", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0102", "l2_cache_handle": "0x0182", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0073", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #111", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0103", "l2_cache_handle": "0x0183", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0074", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #112", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0104", "l2_cache_handle": "0x0184", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0075", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #113", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0105", "l2_cache_handle": "0x0185", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0076", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #114", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0106", "l2_cache_handle": "0x0186", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0077", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #115", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0107", "l2_cache_handle": "0x0187", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0078", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #116", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0108", "l2_cache_handle": "0x0188", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0079", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #117", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0109", "l2_cache_handle": "0x0189", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #118", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010A", "l2_cache_handle": "0x018A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #119", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010B", "l2_cache_handle": "0x018B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #120", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010C", "l2_cache_handle": "0x018C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #121", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010D", "l2_cache_handle": "0x018D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #122", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010E", "l2_cache_handle": "0x018E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #123", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010F", "l2_cache_handle": "0x018F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0080", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #124", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0110", "l2_cache_handle": "0x0190", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0081", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #125", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0111", "l2_cache_handle": "0x0191", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0082", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #126", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0112", "l2_cache_handle": "0x0192", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0083", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #127", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0113", "l2_cache_handle": "0x0193", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0084", "type": 5, "bytes": 46, "description": "Memory Controller Information", "values": {"error_detecting_method": "None", "error_correcting_capabilities": ["None"], "supported_interleave": "One-way Interleave", "current_interleave": "One-way Interleave", "maximum_memory_module_size": "32768 MB", "maximum_total_memory_size": "491520 MB", "supported_speeds": ["70 ns", "60 ns"], "supported_memory_types": ["FPM", "EDO", "DIMM", "SDRAM"], "memory_module_voltage": "3.3 V", "associated_memory_slots": "15", "associated_memory_slots_data": ["0x0006", "0x0007", "0x0008", "0x0009", "0x000A", "0x000B", "0x000C", "0x000D", "0x000E", "0x000F", "0x0010", "0x0011", "0x0012", "0x0013", "0x0014"], "enabled_error_correcting_capabilities": ["None"]}}, {"handle": "0x0085", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #0", "bank_connections": "None", "current_speed": "Unknown", "type": "EDO DIMM", "installed_size": "4096 MB (Single-bank Connection)", "enabled_size": "4096 MB (Single-bank Connection)", "error_status": "OK"}}, {"handle": "0x0086", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #1", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0087", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #2", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0088", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #3", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0089", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #4", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008A", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #5", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008B", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #6", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008C", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #7", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008D", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #8", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008E", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #9", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008F", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #10", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0090", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #11", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0091", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #12", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0092", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #13", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0093", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #14", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0094", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0095", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0096", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0097", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0098", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0099", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00ED", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0100", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0101", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0102", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0103", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0104", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0105", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0106", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0107", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0108", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0109", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0110", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0111", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0112", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0113", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0114", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0115", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0116", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0117", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0118", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0119", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0120", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0121", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0122", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0123", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0124", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0125", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0126", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0127", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0128", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0129", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0130", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0131", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0132", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0133", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0134", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0135", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0136", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0137", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0138", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0139", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0140", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0141", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0142", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0143", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0144", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0145", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0146", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0147", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0148", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0149", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0150", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0151", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0152", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0153", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0154", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0155", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0156", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0157", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0158", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0159", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0160", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0161", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0162", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0163", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0164", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0165", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0166", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0167", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0168", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0169", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0170", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0171", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0172", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0173", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0174", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0175", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0176", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0177", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0178", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0179", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0180", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0181", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0182", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0183", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0184", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0185", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0186", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0187", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0188", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0189", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0190", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0191", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0192", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0193", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0194", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J19", "internal_connector_type": "9 Pin Dual Inline (pin 10 cut)", "external_reference_designator": "COM 1", "external_connector_type": "DB-9 male", "port_type": "Serial Port 16550A Compatible"}}, {"handle": "0x0195", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J23", "internal_connector_type": "25 Pin Dual Inline (pin 26 cut)", "external_reference_designator": "Parallel", "external_connector_type": "DB-25 female", "port_type": "Parallel Port ECP/EPP"}}, {"handle": "0x0196", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J11", "internal_connector_type": "None", "external_reference_designator": "Keyboard", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0197", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J12", "internal_connector_type": "None", "external_reference_designator": "PS/2 Mouse", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0198", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J8", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x0199", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J9", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019A", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J10", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019B", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J11", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "1", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:0f.0"}}, {"handle": "0x019C", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J12", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "2", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:10.0"}}, {"handle": "0x019D", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J13", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "3", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:11.0"}}, {"handle": "0x019E", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J14", "type": "32-bit PCI", "current_usage": "Available", "length": "Long", "id": "4", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:12.0"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 1 Information", "values": {"type": "Video", "status": "Disabled", "description": "VMware SVGA II"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 2 Information", "values": {"type": "Sound", "status": "Disabled", "description": "ES1371"}}, {"handle": "0x01A0", "type": 11, "bytes": 5, "description": "OEM Strings", "values": {"string_1": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]", "string_2": "Welcome to the Virtual Machine"}}, {"handle": "0x01A1", "type": 15, "bytes": 29, "description": "System Event Log", "values": {"area_length": "16 bytes", "header_start_offset": "0x0000", "header_length": "16 bytes", "data_start_offset": "0x0010", "access_method": "General-purpose non-volatile data functions", "access_address": "0x0000", "status": "Invalid, Full", "change_token": "0x00000036", "header_format": "Type 1", "supported_log_type_descriptors": "3", "descriptor_1": "POST error", "data_format_1": "POST results bitmap", "descriptor_2": "Single-bit ECC memory error", "data_format_2": "Multiple-event", "descriptor_3": "Multi-bit ECC memory error", "data_format_3": "Multiple-event"}}, {"handle": "0x01A2", "type": 16, "bytes": 23, "description": "Physical Memory Array", "values": {"location": "System Board Or Motherboard", "use": "System Memory", "error_correction_type": "None", "maximum_capacity": "65 GB", "error_information_handle": "Not Provided", "number_of_devices": "64"}}, {"handle": "0x01A3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "4 GB", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #0", "bank_locator": "RAM slot #0", "type": "DRAM", "type_detail": "EDO", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #1", "bank_locator": "RAM slot #1", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #2", "bank_locator": "RAM slot #2", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #3", "bank_locator": "RAM slot #3", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #4", "bank_locator": "RAM slot #4", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #5", "bank_locator": "RAM slot #5", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #6", "bank_locator": "RAM slot #6", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #7", "bank_locator": "RAM slot #7", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #8", "bank_locator": "RAM slot #8", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #9", "bank_locator": "RAM slot #9", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #10", "bank_locator": "RAM slot #10", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #11", "bank_locator": "RAM slot #11", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #12", "bank_locator": "RAM slot #12", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #13", "bank_locator": "RAM slot #13", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #14", "bank_locator": "RAM slot #14", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #15", "bank_locator": "RAM slot #15", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #16", "bank_locator": "RAM slot #16", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #17", "bank_locator": "RAM slot #17", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #18", "bank_locator": "RAM slot #18", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #19", "bank_locator": "RAM slot #19", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #20", "bank_locator": "RAM slot #20", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #21", "bank_locator": "RAM slot #21", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #22", "bank_locator": "RAM slot #22", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #23", "bank_locator": "RAM slot #23", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #24", "bank_locator": "RAM slot #24", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #25", "bank_locator": "RAM slot #25", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #26", "bank_locator": "RAM slot #26", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #27", "bank_locator": "RAM slot #27", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #28", "bank_locator": "RAM slot #28", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #29", "bank_locator": "RAM slot #29", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #30", "bank_locator": "RAM slot #30", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #31", "bank_locator": "RAM slot #31", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #32", "bank_locator": "RAM slot #32", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #33", "bank_locator": "RAM slot #33", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #34", "bank_locator": "RAM slot #34", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #35", "bank_locator": "RAM slot #35", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #36", "bank_locator": "RAM slot #36", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #37", "bank_locator": "RAM slot #37", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #38", "bank_locator": "RAM slot #38", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #39", "bank_locator": "RAM slot #39", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #40", "bank_locator": "RAM slot #40", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #41", "bank_locator": "RAM slot #41", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #42", "bank_locator": "RAM slot #42", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #43", "bank_locator": "RAM slot #43", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #44", "bank_locator": "RAM slot #44", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #45", "bank_locator": "RAM slot #45", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #46", "bank_locator": "RAM slot #46", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #47", "bank_locator": "RAM slot #47", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #48", "bank_locator": "RAM slot #48", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #49", "bank_locator": "RAM slot #49", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #50", "bank_locator": "RAM slot #50", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #51", "bank_locator": "RAM slot #51", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #52", "bank_locator": "RAM slot #52", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #53", "bank_locator": "RAM slot #53", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #54", "bank_locator": "RAM slot #54", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #55", "bank_locator": "RAM slot #55", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #56", "bank_locator": "RAM slot #56", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #57", "bank_locator": "RAM slot #57", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #58", "bank_locator": "RAM slot #58", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #59", "bank_locator": "RAM slot #59", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #60", "bank_locator": "RAM slot #60", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #61", "bank_locator": "RAM slot #61", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #62", "bank_locator": "RAM slot #62", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #63", "bank_locator": "RAM slot #63", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #0", "bank_locator": "NVD #0", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #1", "bank_locator": "NVD #1", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #2", "bank_locator": "NVD #2", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #3", "bank_locator": "NVD #3", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #4", "bank_locator": "NVD #4", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #5", "bank_locator": "NVD #5", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #6", "bank_locator": "NVD #6", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #7", "bank_locator": "NVD #7", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #8", "bank_locator": "NVD #8", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #9", "bank_locator": "NVD #9", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01ED", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #10", "bank_locator": "NVD #10", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #11", "bank_locator": "NVD #11", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #12", "bank_locator": "NVD #12", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #13", "bank_locator": "NVD #13", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #14", "bank_locator": "NVD #14", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #15", "bank_locator": "NVD #15", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #16", "bank_locator": "NVD #16", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #17", "bank_locator": "NVD #17", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #18", "bank_locator": "NVD #18", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #19", "bank_locator": "NVD #19", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #20", "bank_locator": "NVD #20", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #21", "bank_locator": "NVD #21", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #22", "bank_locator": "NVD #22", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #23", "bank_locator": "NVD #23", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #24", "bank_locator": "NVD #24", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #25", "bank_locator": "NVD #25", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #26", "bank_locator": "NVD #26", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #27", "bank_locator": "NVD #27", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #28", "bank_locator": "NVD #28", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0200", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #29", "bank_locator": "NVD #29", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0201", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #30", "bank_locator": "NVD #30", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0202", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #31", "bank_locator": "NVD #31", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0203", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #32", "bank_locator": "NVD #32", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0204", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #33", "bank_locator": "NVD #33", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0205", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #34", "bank_locator": "NVD #34", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0206", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #35", "bank_locator": "NVD #35", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0207", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #36", "bank_locator": "NVD #36", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0208", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #37", "bank_locator": "NVD #37", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0209", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #38", "bank_locator": "NVD #38", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #39", "bank_locator": "NVD #39", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #40", "bank_locator": "NVD #40", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #41", "bank_locator": "NVD #41", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #42", "bank_locator": "NVD #42", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #43", "bank_locator": "NVD #43", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #44", "bank_locator": "NVD #44", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0210", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #45", "bank_locator": "NVD #45", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0211", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #46", "bank_locator": "NVD #46", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0212", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #47", "bank_locator": "NVD #47", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0213", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #48", "bank_locator": "NVD #48", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0214", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #49", "bank_locator": "NVD #49", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0215", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #50", "bank_locator": "NVD #50", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0216", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #51", "bank_locator": "NVD #51", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0217", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #52", "bank_locator": "NVD #52", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0218", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #53", "bank_locator": "NVD #53", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0219", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #54", "bank_locator": "NVD #54", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #55", "bank_locator": "NVD #55", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #56", "bank_locator": "NVD #56", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #57", "bank_locator": "NVD #57", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #58", "bank_locator": "NVD #58", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #59", "bank_locator": "NVD #59", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #60", "bank_locator": "NVD #60", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0220", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #61", "bank_locator": "NVD #61", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0221", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #62", "bank_locator": "NVD #62", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0222", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #63", "bank_locator": "NVD #63", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0223", "type": 18, "bytes": 23, "description": "32-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x0224", "type": 19, "bytes": 31, "description": "Memory Array Mapped Address", "values": {"starting_address": "0x00000000000", "ending_address": "0x000FFFFFFFF", "range_size": "4 GB", "physical_array_handle": "0x0025", "partition_width": "64"}}, {"handle": "0x0225", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0026", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0226", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0027", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0227", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0028", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0228", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0029", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0229", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0030", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0230", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0031", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0231", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0032", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0232", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0033", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0233", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0034", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0234", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0035", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0235", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0036", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0236", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0037", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0237", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0038", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0238", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0039", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0239", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0040", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0240", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0041", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0241", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0042", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0242", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0043", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0243", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0044", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0244", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0045", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0245", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0046", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0246", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0047", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0247", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0048", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0248", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0049", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0249", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0050", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0250", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0051", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0251", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0052", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0252", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0053", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0253", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0054", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0254", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0055", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0255", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0056", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0256", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0057", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0257", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0058", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0258", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0059", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0259", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0060", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0260", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0061", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0261", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0062", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0262", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0063", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0263", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0064", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0264", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0065", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0265", "type": 23, "bytes": 13, "description": "System Reset", "values": {"status": "Enabled", "watchdog_timer": "Present", "boot_option": "Do Not Reboot", "boot_option_on_limit": "Do Not Reboot", "reset_count": "Unknown", "reset_limit": "Unknown", "timer_interval": "Unknown", "timeout": "Unknown"}}, {"handle": "0x0266", "type": 24, "bytes": 5, "description": "Hardware Security", "values": {"power-on_password_status": "Disabled", "keyboard_password_status": "Unknown", "administrator_password_status": "Enabled", "front_panel_reset_status": "Unknown"}}, {"handle": "0x0267", "type": 30, "bytes": 6, "description": "Out-of-band Remote Access", "values": {"manufacturer_name": "Intel", "inbound_connection": "Enabled", "outbound_connection": "Disabled"}}, {"handle": "0x0268", "type": 32, "bytes": 20, "description": "System Boot Information", "values": {"status": "No errors detected"}}, {"handle": "0x0269", "type": 33, "bytes": 31, "description": "64-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x026A", "type": 126, "bytes": 4, "description": "Inactive", "values": null}, {"handle": "0x026B", "type": 127, "bytes": 4, "description": "End Of Table", "values": null}] diff --git a/tests/fixtures/ubuntu-18.04/dmidecode.json b/tests/fixtures/ubuntu-18.04/dmidecode.json index 73488b56..2665432d 100644 --- a/tests/fixtures/ubuntu-18.04/dmidecode.json +++ b/tests/fixtures/ubuntu-18.04/dmidecode.json @@ -1 +1 @@ -[{"handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": {"vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": ["ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported"], "bios_revision": "4.6", "firmware_revision": "0.0"}}, {"handle": "0x0001", "type": 1, "bytes": 27, "description": "System Information", "values": {"manufacturer": "VMware, Inc.", "product_name": "VMware Virtual Platform", "version": "None", "serial_number": "VMware-56 4d 0d 1a cc cf 45 fa-43 81 ac 1f 3b 99 45 17", "uuid": "1A0D4D56-CFCC-FA45-4381-AC1F3B994517", "wake-up_type": "Power Switch", "sku_number": "Not Specified", "family": "Not Specified"}}, {"handle": "0x0002", "type": 2, "bytes": 15, "description": "Base Board Information", "values": {"manufacturer": "Intel Corporation", "product_name": "440BX Desktop Reference Platform", "version": "None", "serial_number": "None", "asset_tag": "Not Specified", "features": "None", "location_in_chassis": "Not Specified", "chassis_handle": "0x0000", "type": "Unknown", "contained_object_handles": "0"}}, {"handle": "0x0003", "type": 3, "bytes": 21, "description": "Chassis Information", "values": {"manufacturer": "No Enclosure", "type": "Other", "lock": "Not Present", "version": "N/A", "serial_number": "None", "asset_tag": "No Asset Tag", "boot-up_state": "Safe", "power_supply_state": "Safe", "thermal_state": "Safe", "security_status": "None", "oem_information": "0x00001234", "height": "Unspecified", "number_of_power_cords": "Unspecified", "contained_elements": "0"}}, {"handle": "0x0004", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #000", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 08 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Enabled", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0094", "l2_cache_handle": "0x0114", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0005", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #001", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0095", "l2_cache_handle": "0x0115", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0006", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #002", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0096", "l2_cache_handle": "0x0116", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0007", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #003", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0097", "l2_cache_handle": "0x0117", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0008", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #004", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0098", "l2_cache_handle": "0x0118", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0009", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #005", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0099", "l2_cache_handle": "0x0119", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #006", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009A", "l2_cache_handle": "0x011A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #007", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009B", "l2_cache_handle": "0x011B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #008", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009C", "l2_cache_handle": "0x011C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #009", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009D", "l2_cache_handle": "0x011D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #010", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009E", "l2_cache_handle": "0x011E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #011", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009F", "l2_cache_handle": "0x011F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0010", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #012", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A0", "l2_cache_handle": "0x0120", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0011", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #013", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A1", "l2_cache_handle": "0x0121", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0012", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #014", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A2", "l2_cache_handle": "0x0122", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0013", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #015", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A3", "l2_cache_handle": "0x0123", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0014", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #016", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A4", "l2_cache_handle": "0x0124", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0015", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #017", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A5", "l2_cache_handle": "0x0125", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0016", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #018", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A6", "l2_cache_handle": "0x0126", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0017", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #019", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A7", "l2_cache_handle": "0x0127", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0018", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #020", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A8", "l2_cache_handle": "0x0128", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0019", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #021", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A9", "l2_cache_handle": "0x0129", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #022", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AA", "l2_cache_handle": "0x012A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #023", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AB", "l2_cache_handle": "0x012B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #024", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AC", "l2_cache_handle": "0x012C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #025", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AD", "l2_cache_handle": "0x012D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #026", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AE", "l2_cache_handle": "0x012E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #027", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AF", "l2_cache_handle": "0x012F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0020", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #028", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B0", "l2_cache_handle": "0x0130", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0021", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #029", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B1", "l2_cache_handle": "0x0131", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0022", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #030", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B2", "l2_cache_handle": "0x0132", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0023", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #031", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B3", "l2_cache_handle": "0x0133", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0024", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #032", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B4", "l2_cache_handle": "0x0134", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0025", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #033", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B5", "l2_cache_handle": "0x0135", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0026", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #034", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B6", "l2_cache_handle": "0x0136", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0027", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #035", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B7", "l2_cache_handle": "0x0137", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0028", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #036", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B8", "l2_cache_handle": "0x0138", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0029", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #037", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B9", "l2_cache_handle": "0x0139", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #038", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BA", "l2_cache_handle": "0x013A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #039", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BB", "l2_cache_handle": "0x013B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #040", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BC", "l2_cache_handle": "0x013C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #041", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BD", "l2_cache_handle": "0x013D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #042", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BE", "l2_cache_handle": "0x013E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #043", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BF", "l2_cache_handle": "0x013F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0030", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #044", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C0", "l2_cache_handle": "0x0140", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0031", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #045", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C1", "l2_cache_handle": "0x0141", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0032", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #046", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C2", "l2_cache_handle": "0x0142", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0033", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #047", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C3", "l2_cache_handle": "0x0143", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0034", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #048", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C4", "l2_cache_handle": "0x0144", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0035", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #049", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C5", "l2_cache_handle": "0x0145", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0036", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #050", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C6", "l2_cache_handle": "0x0146", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0037", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #051", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C7", "l2_cache_handle": "0x0147", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0038", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #052", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C8", "l2_cache_handle": "0x0148", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0039", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #053", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C9", "l2_cache_handle": "0x0149", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #054", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CA", "l2_cache_handle": "0x014A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #055", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CB", "l2_cache_handle": "0x014B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #056", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CC", "l2_cache_handle": "0x014C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #057", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CD", "l2_cache_handle": "0x014D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #058", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CE", "l2_cache_handle": "0x014E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #059", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CF", "l2_cache_handle": "0x014F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0040", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #060", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D0", "l2_cache_handle": "0x0150", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0041", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #061", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D1", "l2_cache_handle": "0x0151", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0042", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #062", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D2", "l2_cache_handle": "0x0152", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0043", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #063", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D3", "l2_cache_handle": "0x0153", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0044", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #064", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D4", "l2_cache_handle": "0x0154", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0045", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #065", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D5", "l2_cache_handle": "0x0155", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0046", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #066", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D6", "l2_cache_handle": "0x0156", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0047", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #067", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D7", "l2_cache_handle": "0x0157", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0048", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #068", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D8", "l2_cache_handle": "0x0158", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0049", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #069", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D9", "l2_cache_handle": "0x0159", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #070", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DA", "l2_cache_handle": "0x015A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #071", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DB", "l2_cache_handle": "0x015B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #072", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DC", "l2_cache_handle": "0x015C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #073", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DD", "l2_cache_handle": "0x015D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #074", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DE", "l2_cache_handle": "0x015E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #075", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DF", "l2_cache_handle": "0x015F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0050", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #076", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E0", "l2_cache_handle": "0x0160", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0051", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #077", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E1", "l2_cache_handle": "0x0161", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0052", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #078", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E2", "l2_cache_handle": "0x0162", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0053", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #079", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E3", "l2_cache_handle": "0x0163", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0054", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #080", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E4", "l2_cache_handle": "0x0164", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0055", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #081", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E5", "l2_cache_handle": "0x0165", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0056", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #082", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E6", "l2_cache_handle": "0x0166", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0057", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #083", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E7", "l2_cache_handle": "0x0167", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0058", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #084", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E8", "l2_cache_handle": "0x0168", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0059", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #085", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E9", "l2_cache_handle": "0x0169", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #086", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EA", "l2_cache_handle": "0x016A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #087", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EB", "l2_cache_handle": "0x016B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #088", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EC", "l2_cache_handle": "0x016C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #089", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00ED", "l2_cache_handle": "0x016D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #090", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EE", "l2_cache_handle": "0x016E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #091", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EF", "l2_cache_handle": "0x016F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0060", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #092", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F0", "l2_cache_handle": "0x0170", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0061", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #093", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F1", "l2_cache_handle": "0x0171", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0062", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #094", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F2", "l2_cache_handle": "0x0172", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0063", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #095", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F3", "l2_cache_handle": "0x0173", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0064", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #096", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F4", "l2_cache_handle": "0x0174", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0065", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #097", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F5", "l2_cache_handle": "0x0175", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0066", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #098", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F6", "l2_cache_handle": "0x0176", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0067", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #099", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F7", "l2_cache_handle": "0x0177", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0068", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #100", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F8", "l2_cache_handle": "0x0178", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0069", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #101", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F9", "l2_cache_handle": "0x0179", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #102", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FA", "l2_cache_handle": "0x017A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #103", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FB", "l2_cache_handle": "0x017B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #104", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FC", "l2_cache_handle": "0x017C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #105", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FD", "l2_cache_handle": "0x017D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #106", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FE", "l2_cache_handle": "0x017E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #107", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FF", "l2_cache_handle": "0x017F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0070", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #108", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0100", "l2_cache_handle": "0x0180", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0071", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #109", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0101", "l2_cache_handle": "0x0181", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0072", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #110", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0102", "l2_cache_handle": "0x0182", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0073", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #111", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0103", "l2_cache_handle": "0x0183", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0074", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #112", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0104", "l2_cache_handle": "0x0184", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0075", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #113", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0105", "l2_cache_handle": "0x0185", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0076", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #114", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0106", "l2_cache_handle": "0x0186", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0077", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #115", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0107", "l2_cache_handle": "0x0187", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0078", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #116", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0108", "l2_cache_handle": "0x0188", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0079", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #117", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0109", "l2_cache_handle": "0x0189", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #118", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010A", "l2_cache_handle": "0x018A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #119", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010B", "l2_cache_handle": "0x018B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #120", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010C", "l2_cache_handle": "0x018C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #121", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010D", "l2_cache_handle": "0x018D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #122", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010E", "l2_cache_handle": "0x018E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #123", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010F", "l2_cache_handle": "0x018F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0080", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #124", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0110", "l2_cache_handle": "0x0190", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0081", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #125", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0111", "l2_cache_handle": "0x0191", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0082", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #126", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0112", "l2_cache_handle": "0x0192", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0083", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #127", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0113", "l2_cache_handle": "0x0193", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0084", "type": 5, "bytes": 46, "description": "Memory Controller Information", "values": {"error_detecting_method": "None", "error_correcting_capabilities": ["None"], "supported_interleave": "One-way Interleave", "current_interleave": "One-way Interleave", "maximum_memory_module_size": "32768 MB", "maximum_total_memory_size": "491520 MB", "supported_speeds": ["70 ns", "60 ns"], "supported_memory_types": ["FPM", "EDO", "DIMM", "SDRAM"], "memory_module_voltage": "3.3 V", "associated_memory_slots": "15", "associated_memory_slots_data": ["0x0006", "0x0007", "0x0008", "0x0009", "0x000A", "0x000B", "0x000C", "0x000D", "0x000E", "0x000F", "0x0010", "0x0011", "0x0012", "0x0013", "0x0014"], "enabled_error_correcting_capabilities": ["None"]}}, {"handle": "0x0085", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #0", "bank_connections": "None", "current_speed": "Unknown", "type": "EDO DIMM", "installed_size": "2048 MB (Single-bank Connection)", "enabled_size": "2048 MB (Single-bank Connection)", "error_status": "OK"}}, {"handle": "0x0086", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #1", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0087", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #2", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0088", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #3", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0089", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #4", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008A", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #5", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008B", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #6", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008C", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #7", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008D", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #8", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008E", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #9", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008F", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #10", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0090", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #11", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0091", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #12", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0092", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #13", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0093", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #14", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0094", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0095", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0096", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0097", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0098", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0099", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00ED", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0100", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0101", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0102", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0103", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0104", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0105", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0106", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0107", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0108", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0109", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0110", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0111", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0112", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0113", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0114", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0115", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0116", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0117", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0118", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0119", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0120", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0121", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0122", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0123", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0124", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0125", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0126", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0127", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0128", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0129", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0130", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0131", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0132", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0133", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0134", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0135", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0136", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0137", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0138", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0139", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0140", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0141", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0142", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0143", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0144", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0145", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0146", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0147", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0148", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0149", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0150", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0151", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0152", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0153", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0154", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0155", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0156", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0157", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0158", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0159", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0160", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0161", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0162", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0163", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0164", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0165", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0166", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0167", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0168", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0169", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0170", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0171", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0172", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0173", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0174", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0175", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0176", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0177", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0178", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0179", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0180", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0181", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0182", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0183", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0184", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0185", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0186", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0187", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0188", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0189", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0190", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0191", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0192", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0193", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0194", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J19", "internal_connector_type": "9 Pin Dual Inline (pin 10 cut)", "external_reference_designator": "COM 1", "external_connector_type": "DB-9 male", "port_type": "Serial Port 16550A Compatible"}}, {"handle": "0x0195", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J23", "internal_connector_type": "25 Pin Dual Inline (pin 26 cut)", "external_reference_designator": "Parallel", "external_connector_type": "DB-25 female", "port_type": "Parallel Port ECP/EPP"}}, {"handle": "0x0196", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J11", "internal_connector_type": "None", "external_reference_designator": "Keyboard", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0197", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J12", "internal_connector_type": "None", "external_reference_designator": "PS/2 Mouse", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0198", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J8", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x0199", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J9", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019A", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J10", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019B", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J11", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "1", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:0f.0"}}, {"handle": "0x019C", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J12", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "2", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:10.0"}}, {"handle": "0x019D", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J13", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "3", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:11.0"}}, {"handle": "0x019E", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J14", "type": "32-bit PCI", "current_usage": "Available", "length": "Long", "id": "4", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:12.0"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 1 Information", "values": {"type": "Video", "status": "Disabled", "description": "VMware SVGA II"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 2 Information", "values": {"type": "Sound", "status": "Disabled", "description": "ES1371"}}, {"handle": "0x01A0", "type": 11, "bytes": 5, "description": "OEM Strings", "values": {"string_1": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]", "string_2": "Welcome to the Virtual Machine"}}, {"handle": "0x01A1", "type": 15, "bytes": 29, "description": "System Event Log", "values": {"area_length": "16 bytes", "header_start_offset": "0x0000", "header_length": "16 bytes", "data_start_offset": "0x0010", "access_method": "General-purpose non-volatile data functions", "access_address": "0x0000", "status": "Invalid, Full", "change_token": "0x00000036", "header_format": "Type 1", "supported_log_type_descriptors": "3", "descriptor_1": "POST error", "data_format_1": "POST results bitmap", "descriptor_2": "Single-bit ECC memory error", "data_format_2": "Multiple-event", "descriptor_3": "Multi-bit ECC memory error", "data_format_3": "Multiple-event"}}, {"handle": "0x01A2", "type": 16, "bytes": 23, "description": "Physical Memory Array", "values": {"location": "System Board Or Motherboard", "use": "System Memory", "error_correction_type": "None", "maximum_capacity": "3 GB", "error_information_handle": "Not Provided", "number_of_devices": "64"}}, {"handle": "0x01A3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "2048 MB", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #0", "bank_locator": "RAM slot #0", "type": "DRAM", "type_detail": "EDO", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #1", "bank_locator": "RAM slot #1", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #2", "bank_locator": "RAM slot #2", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #3", "bank_locator": "RAM slot #3", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #4", "bank_locator": "RAM slot #4", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #5", "bank_locator": "RAM slot #5", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #6", "bank_locator": "RAM slot #6", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #7", "bank_locator": "RAM slot #7", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #8", "bank_locator": "RAM slot #8", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #9", "bank_locator": "RAM slot #9", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #10", "bank_locator": "RAM slot #10", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #11", "bank_locator": "RAM slot #11", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #12", "bank_locator": "RAM slot #12", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #13", "bank_locator": "RAM slot #13", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #14", "bank_locator": "RAM slot #14", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #15", "bank_locator": "RAM slot #15", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #16", "bank_locator": "RAM slot #16", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #17", "bank_locator": "RAM slot #17", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #18", "bank_locator": "RAM slot #18", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #19", "bank_locator": "RAM slot #19", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #20", "bank_locator": "RAM slot #20", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #21", "bank_locator": "RAM slot #21", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #22", "bank_locator": "RAM slot #22", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #23", "bank_locator": "RAM slot #23", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #24", "bank_locator": "RAM slot #24", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #25", "bank_locator": "RAM slot #25", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #26", "bank_locator": "RAM slot #26", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #27", "bank_locator": "RAM slot #27", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #28", "bank_locator": "RAM slot #28", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #29", "bank_locator": "RAM slot #29", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #30", "bank_locator": "RAM slot #30", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #31", "bank_locator": "RAM slot #31", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #32", "bank_locator": "RAM slot #32", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #33", "bank_locator": "RAM slot #33", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #34", "bank_locator": "RAM slot #34", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #35", "bank_locator": "RAM slot #35", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #36", "bank_locator": "RAM slot #36", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #37", "bank_locator": "RAM slot #37", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #38", "bank_locator": "RAM slot #38", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #39", "bank_locator": "RAM slot #39", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #40", "bank_locator": "RAM slot #40", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #41", "bank_locator": "RAM slot #41", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #42", "bank_locator": "RAM slot #42", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #43", "bank_locator": "RAM slot #43", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #44", "bank_locator": "RAM slot #44", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #45", "bank_locator": "RAM slot #45", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #46", "bank_locator": "RAM slot #46", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #47", "bank_locator": "RAM slot #47", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #48", "bank_locator": "RAM slot #48", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #49", "bank_locator": "RAM slot #49", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #50", "bank_locator": "RAM slot #50", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #51", "bank_locator": "RAM slot #51", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #52", "bank_locator": "RAM slot #52", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #53", "bank_locator": "RAM slot #53", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #54", "bank_locator": "RAM slot #54", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #55", "bank_locator": "RAM slot #55", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #56", "bank_locator": "RAM slot #56", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #57", "bank_locator": "RAM slot #57", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #58", "bank_locator": "RAM slot #58", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #59", "bank_locator": "RAM slot #59", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #60", "bank_locator": "RAM slot #60", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #61", "bank_locator": "RAM slot #61", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #62", "bank_locator": "RAM slot #62", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #63", "bank_locator": "RAM slot #63", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #0", "bank_locator": "NVD #0", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #1", "bank_locator": "NVD #1", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #2", "bank_locator": "NVD #2", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #3", "bank_locator": "NVD #3", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #4", "bank_locator": "NVD #4", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #5", "bank_locator": "NVD #5", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #6", "bank_locator": "NVD #6", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #7", "bank_locator": "NVD #7", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #8", "bank_locator": "NVD #8", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #9", "bank_locator": "NVD #9", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01ED", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #10", "bank_locator": "NVD #10", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #11", "bank_locator": "NVD #11", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #12", "bank_locator": "NVD #12", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #13", "bank_locator": "NVD #13", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #14", "bank_locator": "NVD #14", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #15", "bank_locator": "NVD #15", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #16", "bank_locator": "NVD #16", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #17", "bank_locator": "NVD #17", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #18", "bank_locator": "NVD #18", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #19", "bank_locator": "NVD #19", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #20", "bank_locator": "NVD #20", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #21", "bank_locator": "NVD #21", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #22", "bank_locator": "NVD #22", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #23", "bank_locator": "NVD #23", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #24", "bank_locator": "NVD #24", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #25", "bank_locator": "NVD #25", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #26", "bank_locator": "NVD #26", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #27", "bank_locator": "NVD #27", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #28", "bank_locator": "NVD #28", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0200", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #29", "bank_locator": "NVD #29", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0201", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #30", "bank_locator": "NVD #30", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0202", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #31", "bank_locator": "NVD #31", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0203", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #32", "bank_locator": "NVD #32", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0204", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #33", "bank_locator": "NVD #33", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0205", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #34", "bank_locator": "NVD #34", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0206", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #35", "bank_locator": "NVD #35", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0207", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #36", "bank_locator": "NVD #36", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0208", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #37", "bank_locator": "NVD #37", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0209", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #38", "bank_locator": "NVD #38", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #39", "bank_locator": "NVD #39", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #40", "bank_locator": "NVD #40", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #41", "bank_locator": "NVD #41", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #42", "bank_locator": "NVD #42", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #43", "bank_locator": "NVD #43", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #44", "bank_locator": "NVD #44", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0210", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #45", "bank_locator": "NVD #45", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0211", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #46", "bank_locator": "NVD #46", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0212", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #47", "bank_locator": "NVD #47", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0213", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #48", "bank_locator": "NVD #48", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0214", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #49", "bank_locator": "NVD #49", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0215", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #50", "bank_locator": "NVD #50", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0216", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #51", "bank_locator": "NVD #51", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0217", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #52", "bank_locator": "NVD #52", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0218", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #53", "bank_locator": "NVD #53", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0219", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #54", "bank_locator": "NVD #54", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #55", "bank_locator": "NVD #55", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #56", "bank_locator": "NVD #56", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #57", "bank_locator": "NVD #57", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #58", "bank_locator": "NVD #58", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #59", "bank_locator": "NVD #59", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #60", "bank_locator": "NVD #60", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0220", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #61", "bank_locator": "NVD #61", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0221", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #62", "bank_locator": "NVD #62", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0222", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #63", "bank_locator": "NVD #63", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0223", "type": 18, "bytes": 23, "description": "32-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x0224", "type": 19, "bytes": 31, "description": "Memory Array Mapped Address", "values": {"starting_address": "0x00000000000", "ending_address": "0x0007FFFFFFF", "range_size": "2 GB", "physical_array_handle": "0x0025", "partition_width": "64"}}, {"handle": "0x0225", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0026", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0226", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0027", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0227", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0028", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0228", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0029", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0229", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0030", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0230", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0031", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0231", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0032", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0232", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0033", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0233", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0034", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0234", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0035", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0235", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0036", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0236", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0037", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0237", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0038", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0238", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0039", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0239", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0040", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0240", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0041", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0241", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0042", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0242", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0043", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0243", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0044", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0244", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0045", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0245", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0046", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0246", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0047", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0247", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0048", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0248", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0049", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0249", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0050", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0250", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0051", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0251", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0052", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0252", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0053", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0253", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0054", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0254", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0055", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0255", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0056", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0256", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0057", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0257", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0058", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0258", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0059", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0259", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0060", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0260", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0061", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0261", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0062", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0262", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0063", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0263", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0064", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0264", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0065", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0265", "type": 23, "bytes": 13, "description": "System Reset", "values": {"status": "Enabled", "watchdog_timer": "Present", "boot_option": "Do Not Reboot", "boot_option_on_limit": "Do Not Reboot", "reset_count": "Unknown", "reset_limit": "Unknown", "timer_interval": "Unknown", "timeout": "Unknown"}}, {"handle": "0x0266", "type": 24, "bytes": 5, "description": "Hardware Security", "values": {"power-on_password_status": "Disabled", "keyboard_password_status": "Unknown", "administrator_password_status": "Enabled", "front_panel_reset_status": "Unknown"}}, {"handle": "0x0267", "type": 30, "bytes": 6, "description": "Out-of-band Remote Access", "values": {"manufacturer_name": "Intel", "inbound_connection": "Enabled", "outbound_connection": "Disabled"}}, {"handle": "0x0268", "type": 32, "bytes": 20, "description": "System Boot Information", "values": {"status": "No errors detected"}}, {"handle": "0x0269", "type": 33, "bytes": 31, "description": "64-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x026A", "type": 126, "bytes": 4, "description": "Inactive", "values": {}}, {"handle": "0x026B", "type": 127, "bytes": 4, "description": "End Of Table", "values": {}}] +[{"handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": {"vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": ["ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported"], "bios_revision": "4.6", "firmware_revision": "0.0"}}, {"handle": "0x0001", "type": 1, "bytes": 27, "description": "System Information", "values": {"manufacturer": "VMware, Inc.", "product_name": "VMware Virtual Platform", "version": "None", "serial_number": "VMware-56 4d 0d 1a cc cf 45 fa-43 81 ac 1f 3b 99 45 17", "uuid": "1A0D4D56-CFCC-FA45-4381-AC1F3B994517", "wake-up_type": "Power Switch", "sku_number": "Not Specified", "family": "Not Specified"}}, {"handle": "0x0002", "type": 2, "bytes": 15, "description": "Base Board Information", "values": {"manufacturer": "Intel Corporation", "product_name": "440BX Desktop Reference Platform", "version": "None", "serial_number": "None", "asset_tag": "Not Specified", "features": "None", "location_in_chassis": "Not Specified", "chassis_handle": "0x0000", "type": "Unknown", "contained_object_handles": "0"}}, {"handle": "0x0003", "type": 3, "bytes": 21, "description": "Chassis Information", "values": {"manufacturer": "No Enclosure", "type": "Other", "lock": "Not Present", "version": "N/A", "serial_number": "None", "asset_tag": "No Asset Tag", "boot-up_state": "Safe", "power_supply_state": "Safe", "thermal_state": "Safe", "security_status": "None", "oem_information": "0x00001234", "height": "Unspecified", "number_of_power_cords": "Unspecified", "contained_elements": "0"}}, {"handle": "0x0004", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #000", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 08 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Enabled", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0094", "l2_cache_handle": "0x0114", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0005", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #001", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0095", "l2_cache_handle": "0x0115", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0006", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #002", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0096", "l2_cache_handle": "0x0116", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0007", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #003", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0097", "l2_cache_handle": "0x0117", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0008", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #004", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0098", "l2_cache_handle": "0x0118", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0009", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #005", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0099", "l2_cache_handle": "0x0119", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #006", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009A", "l2_cache_handle": "0x011A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #007", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009B", "l2_cache_handle": "0x011B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #008", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009C", "l2_cache_handle": "0x011C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #009", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009D", "l2_cache_handle": "0x011D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #010", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009E", "l2_cache_handle": "0x011E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #011", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009F", "l2_cache_handle": "0x011F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0010", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #012", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A0", "l2_cache_handle": "0x0120", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0011", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #013", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A1", "l2_cache_handle": "0x0121", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0012", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #014", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A2", "l2_cache_handle": "0x0122", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0013", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #015", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A3", "l2_cache_handle": "0x0123", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0014", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #016", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A4", "l2_cache_handle": "0x0124", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0015", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #017", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A5", "l2_cache_handle": "0x0125", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0016", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #018", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A6", "l2_cache_handle": "0x0126", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0017", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #019", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A7", "l2_cache_handle": "0x0127", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0018", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #020", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A8", "l2_cache_handle": "0x0128", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0019", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #021", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A9", "l2_cache_handle": "0x0129", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #022", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AA", "l2_cache_handle": "0x012A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #023", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AB", "l2_cache_handle": "0x012B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #024", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AC", "l2_cache_handle": "0x012C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #025", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AD", "l2_cache_handle": "0x012D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #026", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AE", "l2_cache_handle": "0x012E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #027", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AF", "l2_cache_handle": "0x012F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0020", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #028", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B0", "l2_cache_handle": "0x0130", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0021", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #029", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B1", "l2_cache_handle": "0x0131", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0022", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #030", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B2", "l2_cache_handle": "0x0132", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0023", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #031", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B3", "l2_cache_handle": "0x0133", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0024", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #032", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B4", "l2_cache_handle": "0x0134", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0025", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #033", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B5", "l2_cache_handle": "0x0135", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0026", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #034", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B6", "l2_cache_handle": "0x0136", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0027", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #035", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B7", "l2_cache_handle": "0x0137", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0028", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #036", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B8", "l2_cache_handle": "0x0138", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0029", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #037", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B9", "l2_cache_handle": "0x0139", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #038", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BA", "l2_cache_handle": "0x013A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #039", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BB", "l2_cache_handle": "0x013B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #040", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BC", "l2_cache_handle": "0x013C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #041", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BD", "l2_cache_handle": "0x013D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #042", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BE", "l2_cache_handle": "0x013E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #043", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BF", "l2_cache_handle": "0x013F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0030", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #044", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C0", "l2_cache_handle": "0x0140", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0031", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #045", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C1", "l2_cache_handle": "0x0141", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0032", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #046", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C2", "l2_cache_handle": "0x0142", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0033", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #047", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C3", "l2_cache_handle": "0x0143", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0034", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #048", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C4", "l2_cache_handle": "0x0144", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0035", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #049", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C5", "l2_cache_handle": "0x0145", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0036", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #050", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C6", "l2_cache_handle": "0x0146", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0037", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #051", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C7", "l2_cache_handle": "0x0147", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0038", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #052", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C8", "l2_cache_handle": "0x0148", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0039", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #053", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C9", "l2_cache_handle": "0x0149", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #054", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CA", "l2_cache_handle": "0x014A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #055", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CB", "l2_cache_handle": "0x014B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #056", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CC", "l2_cache_handle": "0x014C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #057", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CD", "l2_cache_handle": "0x014D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #058", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CE", "l2_cache_handle": "0x014E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #059", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CF", "l2_cache_handle": "0x014F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0040", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #060", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D0", "l2_cache_handle": "0x0150", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0041", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #061", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D1", "l2_cache_handle": "0x0151", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0042", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #062", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D2", "l2_cache_handle": "0x0152", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0043", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #063", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D3", "l2_cache_handle": "0x0153", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0044", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #064", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D4", "l2_cache_handle": "0x0154", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0045", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #065", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D5", "l2_cache_handle": "0x0155", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0046", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #066", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D6", "l2_cache_handle": "0x0156", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0047", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #067", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D7", "l2_cache_handle": "0x0157", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0048", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #068", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D8", "l2_cache_handle": "0x0158", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0049", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #069", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D9", "l2_cache_handle": "0x0159", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #070", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DA", "l2_cache_handle": "0x015A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #071", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DB", "l2_cache_handle": "0x015B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #072", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DC", "l2_cache_handle": "0x015C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #073", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DD", "l2_cache_handle": "0x015D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #074", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DE", "l2_cache_handle": "0x015E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #075", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DF", "l2_cache_handle": "0x015F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0050", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #076", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E0", "l2_cache_handle": "0x0160", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0051", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #077", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E1", "l2_cache_handle": "0x0161", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0052", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #078", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E2", "l2_cache_handle": "0x0162", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0053", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #079", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E3", "l2_cache_handle": "0x0163", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0054", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #080", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E4", "l2_cache_handle": "0x0164", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0055", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #081", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E5", "l2_cache_handle": "0x0165", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0056", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #082", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E6", "l2_cache_handle": "0x0166", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0057", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #083", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E7", "l2_cache_handle": "0x0167", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0058", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #084", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E8", "l2_cache_handle": "0x0168", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0059", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #085", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E9", "l2_cache_handle": "0x0169", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #086", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EA", "l2_cache_handle": "0x016A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #087", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EB", "l2_cache_handle": "0x016B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #088", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EC", "l2_cache_handle": "0x016C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #089", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00ED", "l2_cache_handle": "0x016D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #090", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EE", "l2_cache_handle": "0x016E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #091", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EF", "l2_cache_handle": "0x016F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0060", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #092", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F0", "l2_cache_handle": "0x0170", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0061", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #093", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F1", "l2_cache_handle": "0x0171", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0062", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #094", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F2", "l2_cache_handle": "0x0172", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0063", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #095", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F3", "l2_cache_handle": "0x0173", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0064", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #096", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F4", "l2_cache_handle": "0x0174", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0065", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #097", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F5", "l2_cache_handle": "0x0175", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0066", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #098", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F6", "l2_cache_handle": "0x0176", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0067", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #099", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F7", "l2_cache_handle": "0x0177", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0068", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #100", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F8", "l2_cache_handle": "0x0178", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0069", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #101", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F9", "l2_cache_handle": "0x0179", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #102", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FA", "l2_cache_handle": "0x017A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #103", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FB", "l2_cache_handle": "0x017B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #104", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FC", "l2_cache_handle": "0x017C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #105", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FD", "l2_cache_handle": "0x017D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #106", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FE", "l2_cache_handle": "0x017E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #107", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FF", "l2_cache_handle": "0x017F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0070", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #108", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0100", "l2_cache_handle": "0x0180", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0071", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #109", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0101", "l2_cache_handle": "0x0181", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0072", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #110", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0102", "l2_cache_handle": "0x0182", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0073", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #111", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0103", "l2_cache_handle": "0x0183", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0074", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #112", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0104", "l2_cache_handle": "0x0184", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0075", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #113", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0105", "l2_cache_handle": "0x0185", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0076", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #114", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0106", "l2_cache_handle": "0x0186", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0077", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #115", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0107", "l2_cache_handle": "0x0187", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0078", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #116", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0108", "l2_cache_handle": "0x0188", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0079", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #117", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0109", "l2_cache_handle": "0x0189", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #118", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010A", "l2_cache_handle": "0x018A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #119", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010B", "l2_cache_handle": "0x018B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #120", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010C", "l2_cache_handle": "0x018C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #121", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010D", "l2_cache_handle": "0x018D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #122", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010E", "l2_cache_handle": "0x018E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #123", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010F", "l2_cache_handle": "0x018F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0080", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #124", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0110", "l2_cache_handle": "0x0190", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0081", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #125", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0111", "l2_cache_handle": "0x0191", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0082", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #126", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0112", "l2_cache_handle": "0x0192", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0083", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #127", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0113", "l2_cache_handle": "0x0193", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0084", "type": 5, "bytes": 46, "description": "Memory Controller Information", "values": {"error_detecting_method": "None", "error_correcting_capabilities": ["None"], "supported_interleave": "One-way Interleave", "current_interleave": "One-way Interleave", "maximum_memory_module_size": "32768 MB", "maximum_total_memory_size": "491520 MB", "supported_speeds": ["70 ns", "60 ns"], "supported_memory_types": ["FPM", "EDO", "DIMM", "SDRAM"], "memory_module_voltage": "3.3 V", "associated_memory_slots": "15", "associated_memory_slots_data": ["0x0006", "0x0007", "0x0008", "0x0009", "0x000A", "0x000B", "0x000C", "0x000D", "0x000E", "0x000F", "0x0010", "0x0011", "0x0012", "0x0013", "0x0014"], "enabled_error_correcting_capabilities": ["None"]}}, {"handle": "0x0085", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #0", "bank_connections": "None", "current_speed": "Unknown", "type": "EDO DIMM", "installed_size": "2048 MB (Single-bank Connection)", "enabled_size": "2048 MB (Single-bank Connection)", "error_status": "OK"}}, {"handle": "0x0086", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #1", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0087", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #2", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0088", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #3", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0089", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #4", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008A", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #5", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008B", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #6", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008C", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #7", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008D", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #8", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008E", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #9", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008F", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #10", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0090", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #11", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0091", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #12", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0092", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #13", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0093", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #14", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0094", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0095", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0096", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0097", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0098", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0099", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00ED", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0100", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0101", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0102", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0103", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0104", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0105", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0106", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0107", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0108", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0109", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0110", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0111", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0112", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0113", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0114", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0115", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0116", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0117", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0118", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0119", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0120", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0121", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0122", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0123", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0124", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0125", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0126", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0127", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0128", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0129", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0130", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0131", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0132", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0133", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0134", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0135", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0136", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0137", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0138", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0139", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0140", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0141", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0142", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0143", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0144", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0145", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0146", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0147", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0148", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0149", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0150", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0151", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0152", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0153", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0154", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0155", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0156", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0157", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0158", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0159", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0160", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0161", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0162", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0163", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0164", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0165", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0166", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0167", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0168", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0169", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0170", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0171", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0172", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0173", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0174", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0175", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0176", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0177", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0178", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0179", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0180", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0181", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0182", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0183", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0184", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0185", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0186", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0187", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0188", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0189", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0190", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0191", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0192", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0193", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0194", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J19", "internal_connector_type": "9 Pin Dual Inline (pin 10 cut)", "external_reference_designator": "COM 1", "external_connector_type": "DB-9 male", "port_type": "Serial Port 16550A Compatible"}}, {"handle": "0x0195", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J23", "internal_connector_type": "25 Pin Dual Inline (pin 26 cut)", "external_reference_designator": "Parallel", "external_connector_type": "DB-25 female", "port_type": "Parallel Port ECP/EPP"}}, {"handle": "0x0196", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J11", "internal_connector_type": "None", "external_reference_designator": "Keyboard", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0197", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J12", "internal_connector_type": "None", "external_reference_designator": "PS/2 Mouse", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0198", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J8", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x0199", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J9", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019A", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J10", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019B", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J11", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "1", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:0f.0"}}, {"handle": "0x019C", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J12", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "2", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:10.0"}}, {"handle": "0x019D", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J13", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "3", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:11.0"}}, {"handle": "0x019E", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J14", "type": "32-bit PCI", "current_usage": "Available", "length": "Long", "id": "4", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:12.0"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 1 Information", "values": {"type": "Video", "status": "Disabled", "description": "VMware SVGA II"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 2 Information", "values": {"type": "Sound", "status": "Disabled", "description": "ES1371"}}, {"handle": "0x01A0", "type": 11, "bytes": 5, "description": "OEM Strings", "values": {"string_1": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]", "string_2": "Welcome to the Virtual Machine"}}, {"handle": "0x01A1", "type": 15, "bytes": 29, "description": "System Event Log", "values": {"area_length": "16 bytes", "header_start_offset": "0x0000", "header_length": "16 bytes", "data_start_offset": "0x0010", "access_method": "General-purpose non-volatile data functions", "access_address": "0x0000", "status": "Invalid, Full", "change_token": "0x00000036", "header_format": "Type 1", "supported_log_type_descriptors": "3", "descriptor_1": "POST error", "data_format_1": "POST results bitmap", "descriptor_2": "Single-bit ECC memory error", "data_format_2": "Multiple-event", "descriptor_3": "Multi-bit ECC memory error", "data_format_3": "Multiple-event"}}, {"handle": "0x01A2", "type": 16, "bytes": 23, "description": "Physical Memory Array", "values": {"location": "System Board Or Motherboard", "use": "System Memory", "error_correction_type": "None", "maximum_capacity": "3 GB", "error_information_handle": "Not Provided", "number_of_devices": "64"}}, {"handle": "0x01A3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "2048 MB", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #0", "bank_locator": "RAM slot #0", "type": "DRAM", "type_detail": "EDO", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #1", "bank_locator": "RAM slot #1", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #2", "bank_locator": "RAM slot #2", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #3", "bank_locator": "RAM slot #3", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #4", "bank_locator": "RAM slot #4", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #5", "bank_locator": "RAM slot #5", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #6", "bank_locator": "RAM slot #6", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #7", "bank_locator": "RAM slot #7", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #8", "bank_locator": "RAM slot #8", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #9", "bank_locator": "RAM slot #9", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #10", "bank_locator": "RAM slot #10", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #11", "bank_locator": "RAM slot #11", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #12", "bank_locator": "RAM slot #12", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #13", "bank_locator": "RAM slot #13", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #14", "bank_locator": "RAM slot #14", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #15", "bank_locator": "RAM slot #15", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #16", "bank_locator": "RAM slot #16", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #17", "bank_locator": "RAM slot #17", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #18", "bank_locator": "RAM slot #18", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #19", "bank_locator": "RAM slot #19", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #20", "bank_locator": "RAM slot #20", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #21", "bank_locator": "RAM slot #21", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #22", "bank_locator": "RAM slot #22", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #23", "bank_locator": "RAM slot #23", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #24", "bank_locator": "RAM slot #24", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #25", "bank_locator": "RAM slot #25", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #26", "bank_locator": "RAM slot #26", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #27", "bank_locator": "RAM slot #27", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #28", "bank_locator": "RAM slot #28", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #29", "bank_locator": "RAM slot #29", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #30", "bank_locator": "RAM slot #30", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #31", "bank_locator": "RAM slot #31", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #32", "bank_locator": "RAM slot #32", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #33", "bank_locator": "RAM slot #33", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #34", "bank_locator": "RAM slot #34", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #35", "bank_locator": "RAM slot #35", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #36", "bank_locator": "RAM slot #36", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #37", "bank_locator": "RAM slot #37", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #38", "bank_locator": "RAM slot #38", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #39", "bank_locator": "RAM slot #39", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #40", "bank_locator": "RAM slot #40", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #41", "bank_locator": "RAM slot #41", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #42", "bank_locator": "RAM slot #42", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #43", "bank_locator": "RAM slot #43", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #44", "bank_locator": "RAM slot #44", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #45", "bank_locator": "RAM slot #45", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #46", "bank_locator": "RAM slot #46", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #47", "bank_locator": "RAM slot #47", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #48", "bank_locator": "RAM slot #48", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #49", "bank_locator": "RAM slot #49", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #50", "bank_locator": "RAM slot #50", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #51", "bank_locator": "RAM slot #51", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #52", "bank_locator": "RAM slot #52", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #53", "bank_locator": "RAM slot #53", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #54", "bank_locator": "RAM slot #54", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #55", "bank_locator": "RAM slot #55", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #56", "bank_locator": "RAM slot #56", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #57", "bank_locator": "RAM slot #57", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #58", "bank_locator": "RAM slot #58", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #59", "bank_locator": "RAM slot #59", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #60", "bank_locator": "RAM slot #60", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #61", "bank_locator": "RAM slot #61", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #62", "bank_locator": "RAM slot #62", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #63", "bank_locator": "RAM slot #63", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #0", "bank_locator": "NVD #0", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #1", "bank_locator": "NVD #1", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #2", "bank_locator": "NVD #2", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #3", "bank_locator": "NVD #3", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #4", "bank_locator": "NVD #4", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #5", "bank_locator": "NVD #5", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #6", "bank_locator": "NVD #6", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #7", "bank_locator": "NVD #7", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #8", "bank_locator": "NVD #8", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #9", "bank_locator": "NVD #9", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01ED", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #10", "bank_locator": "NVD #10", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #11", "bank_locator": "NVD #11", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #12", "bank_locator": "NVD #12", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #13", "bank_locator": "NVD #13", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #14", "bank_locator": "NVD #14", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #15", "bank_locator": "NVD #15", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #16", "bank_locator": "NVD #16", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #17", "bank_locator": "NVD #17", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #18", "bank_locator": "NVD #18", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #19", "bank_locator": "NVD #19", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #20", "bank_locator": "NVD #20", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #21", "bank_locator": "NVD #21", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #22", "bank_locator": "NVD #22", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #23", "bank_locator": "NVD #23", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #24", "bank_locator": "NVD #24", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #25", "bank_locator": "NVD #25", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #26", "bank_locator": "NVD #26", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #27", "bank_locator": "NVD #27", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #28", "bank_locator": "NVD #28", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0200", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #29", "bank_locator": "NVD #29", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0201", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #30", "bank_locator": "NVD #30", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0202", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #31", "bank_locator": "NVD #31", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0203", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #32", "bank_locator": "NVD #32", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0204", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #33", "bank_locator": "NVD #33", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0205", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #34", "bank_locator": "NVD #34", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0206", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #35", "bank_locator": "NVD #35", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0207", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #36", "bank_locator": "NVD #36", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0208", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #37", "bank_locator": "NVD #37", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0209", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #38", "bank_locator": "NVD #38", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #39", "bank_locator": "NVD #39", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #40", "bank_locator": "NVD #40", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #41", "bank_locator": "NVD #41", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #42", "bank_locator": "NVD #42", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #43", "bank_locator": "NVD #43", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #44", "bank_locator": "NVD #44", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0210", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #45", "bank_locator": "NVD #45", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0211", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #46", "bank_locator": "NVD #46", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0212", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #47", "bank_locator": "NVD #47", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0213", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #48", "bank_locator": "NVD #48", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0214", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #49", "bank_locator": "NVD #49", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0215", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #50", "bank_locator": "NVD #50", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0216", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #51", "bank_locator": "NVD #51", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0217", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #52", "bank_locator": "NVD #52", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0218", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #53", "bank_locator": "NVD #53", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0219", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #54", "bank_locator": "NVD #54", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #55", "bank_locator": "NVD #55", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #56", "bank_locator": "NVD #56", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #57", "bank_locator": "NVD #57", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #58", "bank_locator": "NVD #58", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #59", "bank_locator": "NVD #59", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #60", "bank_locator": "NVD #60", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0220", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #61", "bank_locator": "NVD #61", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0221", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #62", "bank_locator": "NVD #62", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0222", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #63", "bank_locator": "NVD #63", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0223", "type": 18, "bytes": 23, "description": "32-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x0224", "type": 19, "bytes": 31, "description": "Memory Array Mapped Address", "values": {"starting_address": "0x00000000000", "ending_address": "0x0007FFFFFFF", "range_size": "2 GB", "physical_array_handle": "0x0025", "partition_width": "64"}}, {"handle": "0x0225", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0026", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0226", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0027", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0227", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0028", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0228", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0029", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0229", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0030", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0230", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0031", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0231", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0032", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0232", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0033", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0233", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0034", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0234", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0035", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0235", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0036", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0236", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0037", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0237", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0038", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0238", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0039", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0239", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0040", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0240", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0041", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0241", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0042", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0242", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0043", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0243", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0044", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0244", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0045", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0245", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0046", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0246", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0047", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0247", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0048", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0248", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0049", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0249", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0050", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0250", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0051", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0251", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0052", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0252", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0053", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0253", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0054", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0254", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0055", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0255", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0056", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0256", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0057", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0257", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0058", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0258", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0059", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0259", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0060", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0260", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0061", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0261", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0062", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0262", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0063", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0263", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0064", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0264", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0065", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0265", "type": 23, "bytes": 13, "description": "System Reset", "values": {"status": "Enabled", "watchdog_timer": "Present", "boot_option": "Do Not Reboot", "boot_option_on_limit": "Do Not Reboot", "reset_count": "Unknown", "reset_limit": "Unknown", "timer_interval": "Unknown", "timeout": "Unknown"}}, {"handle": "0x0266", "type": 24, "bytes": 5, "description": "Hardware Security", "values": {"power-on_password_status": "Disabled", "keyboard_password_status": "Unknown", "administrator_password_status": "Enabled", "front_panel_reset_status": "Unknown"}}, {"handle": "0x0267", "type": 30, "bytes": 6, "description": "Out-of-band Remote Access", "values": {"manufacturer_name": "Intel", "inbound_connection": "Enabled", "outbound_connection": "Disabled"}}, {"handle": "0x0268", "type": 32, "bytes": 20, "description": "System Boot Information", "values": {"status": "No errors detected"}}, {"handle": "0x0269", "type": 33, "bytes": 31, "description": "64-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x026A", "type": 126, "bytes": 4, "description": "Inactive", "values": null}, {"handle": "0x026B", "type": 127, "bytes": 4, "description": "End Of Table", "values": null}] From 464f5f86cf2c8fe6a1a857b0ad4d221a3edf3d88 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 07:50:22 -0700 Subject: [PATCH 39/52] update description --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index becb61e3..c2f69254 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( version='1.10.12', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', - description='This tool serializes the output of popular command line tools and filetypes to structured JSON output.', + description='Converts the output of popular command-line tools and file-types to JSON.', install_requires=[ 'ruamel.yaml>=0.15.0', 'xmltodict>=0.12.0', From 40760991e7dae43cd15134310f7bbb5ce0f58dae Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 07:51:47 -0700 Subject: [PATCH 40/52] update copyright date --- LICENSE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE.md b/LICENSE.md index c040d4bb..719356cd 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019 Kelly Brazil +Copyright (c) 2020 Kelly Brazil Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From df1e4b414b2bda5be3153767cd854b2483ba600b Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 08:00:18 -0700 Subject: [PATCH 41/52] remove unused folder --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5e71973c..1ae9b0e0 100755 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,4 @@ __pycache__ dist/ build/ *.egg-info/ -jc/parsers.old/ .github/ From 5d0dbece9317e84a47d9f4b2d18a9ffa33fbee6e Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 11:09:41 -0700 Subject: [PATCH 42/52] add netstat -r functionality for OSX --- docs/parsers/netstat.md | 17 +++- jc/parsers/netstat.py | 23 ++++- jc/parsers/netstat_osx.py | 37 +++++++- tests/fixtures/osx-10.14.6/netstat-r.json | 1 + tests/fixtures/osx-10.14.6/netstat-r.out | 93 ++++++++++++++++++++ tests/fixtures/osx-10.14.6/netstat-rnl.json | 1 + tests/fixtures/osx-10.14.6/netstat-rnl.out | 96 +++++++++++++++++++++ tests/test_netstat.py | 25 ++++++ 8 files changed, 288 insertions(+), 5 deletions(-) create mode 100644 tests/fixtures/osx-10.14.6/netstat-r.json create mode 100644 tests/fixtures/osx-10.14.6/netstat-r.out create mode 100644 tests/fixtures/osx-10.14.6/netstat-rnl.json create mode 100644 tests/fixtures/osx-10.14.6/netstat-rnl.out diff --git a/docs/parsers/netstat.md b/docs/parsers/netstat.md index 42c94b5e..62cc6154 100644 --- a/docs/parsers/netstat.md +++ b/docs/parsers/netstat.md @@ -5,6 +5,11 @@ Usage: Specify --netstat as the first argument if the piped input is coming from netstat +Caveats: + + - Use of multiple 'l' options is not supported on OSX (e.g. 'netstat -rlll') + - Use of the 'A' option is not supported on OSX when using the 'r' option (e.g. netstat -rA) + Compatibility: 'linux', 'darwin' @@ -368,7 +373,17 @@ Returns: "rcvbuf": integer, "sndbuf": integer, "rxbytes": integer, - "txbytes": integer + "txbytes": integer, + + + "destination": string, + "gateway": string, + "route_flags": string, + "route_refs": integer, + "use": integer, + "mtu": integer, + "netif": string, + "expire": string } ] diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index 96a0cd88..a34e27e0 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -4,6 +4,11 @@ Usage: Specify --netstat as the first argument if the piped input is coming from netstat +Caveats: + + - Use of multiple 'l' options is not supported on OSX (e.g. 'netstat -rlll') + - Use of the 'A' option is not supported on OSX when using the 'r' option (e.g. netstat -rA) + Compatibility: 'linux', 'darwin' @@ -375,14 +380,25 @@ def process(proc_data): "rcvbuf": integer, "sndbuf": integer, "rxbytes": integer, - "txbytes": integer + "txbytes": integer, + + + "destination": string, + "gateway": string, + "route_flags": string, + "route_refs": integer, + "use": integer, + "mtu": integer, + "netif": string, + "expire": string } ] """ for entry in proc_data: # integer changes int_list = ['recv_q', 'send_q', 'pid', 'refcnt', 'inode', 'unit', 'vendor', 'class', - 'osx_flags', 'subcla', 'pcbcount', 'rcvbuf', 'sndbuf', 'rxbytes', 'txbytes'] + 'osx_flags', 'subcla', 'pcbcount', 'rcvbuf', 'sndbuf', 'rxbytes', 'txbytes', + 'route_refs', 'use', 'mtu'] for key in int_list: if key in entry: try: @@ -436,7 +452,8 @@ def parse(data, raw=False, quiet=False): or cleandata[0] == 'Active LOCAL (UNIX) domain sockets' \ or cleandata[0] == 'Registered kernel control modules' \ or cleandata[0] == 'Active kernel event sockets' \ - or cleandata[0] == 'Active kernel control sockets': + or cleandata[0] == 'Active kernel control sockets' \ + or cleandata[0] == 'Routing tables': import jc.parsers.netstat_osx raw_output = jc.parsers.netstat_osx.parse(cleandata) diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py index 9386932d..0febb801 100644 --- a/jc/parsers/netstat_osx.py +++ b/jc/parsers/netstat_osx.py @@ -13,6 +13,15 @@ def normalize_headers(header): return header +def normalize_route_headers(header): + header = header.lower() + header = header.replace('flags', 'route_flags') + header = header.replace('refs', 'route_refs') + header = header.replace('-', '_') + + return header + + def parse_item(headers, entry, kind): entry = entry.split(maxsplit=len(headers) - 1) @@ -82,10 +91,11 @@ def parse(cleandata): raw_output = [] network = False multipath = False + socket = False reg_kernel_control = False active_kernel_event = False active_kernel_control = False - socket = False + routing_table = False for line in cleandata: @@ -96,6 +106,7 @@ def parse(cleandata): reg_kernel_control = False active_kernel_event = False active_kernel_control = False + routing_table = False continue if line.startswith('Active Multipath Internet connections'): @@ -105,6 +116,7 @@ def parse(cleandata): reg_kernel_control = False active_kernel_event = False active_kernel_control = False + routing_table = False continue if line.startswith('Active LOCAL (UNIX) domain sockets'): @@ -114,6 +126,7 @@ def parse(cleandata): reg_kernel_control = False active_kernel_event = False active_kernel_control = False + routing_table = False continue if line.startswith('Registered kernel control modules'): @@ -123,6 +136,7 @@ def parse(cleandata): reg_kernel_control = True active_kernel_event = False active_kernel_control = False + routing_table = False continue if line.startswith('Active kernel event sockets'): @@ -132,6 +146,7 @@ def parse(cleandata): reg_kernel_control = False active_kernel_event = True active_kernel_control = False + routing_table = False continue if line.startswith('Active kernel control sockets'): @@ -141,6 +156,17 @@ def parse(cleandata): reg_kernel_control = False active_kernel_event = False active_kernel_control = True + routing_table = False + continue + + if line.startswith('Routing tables'): + network = False + multipath = False + socket = False + reg_kernel_control = False + active_kernel_event = False + active_kernel_control = False + routing_table = True continue # get headers @@ -169,6 +195,11 @@ def parse(cleandata): headers = header_text.split() continue + if routing_table and line.startswith('Destination '): + header_text = normalize_route_headers(line) + headers = header_text.split() + continue + # get items if network: raw_output.append(parse_item(headers, line, 'network')) @@ -194,4 +225,8 @@ def parse(cleandata): raw_output.append(parse_item(headers, line, 'Active kernel control socket')) continue + if routing_table and not (line.startswith('Internet:') or line.startswith('Internet6:')): + raw_output.append(parse_item(headers, line, 'route')) + continue + return parse_post(raw_output) diff --git a/tests/fixtures/osx-10.14.6/netstat-r.json b/tests/fixtures/osx-10.14.6/netstat-r.json new file mode 100644 index 00000000..7b70df05 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/netstat-r.json @@ -0,0 +1 @@ +[{"destination": "default", "gateway": "dsldevice.attlocal", "route_flags": "UGSc", "route_refs": 85, "use": 24, "netif": "en0", "kind": "route"}, {"destination": "127", "gateway": "localhost", "route_flags": "UCS", "route_refs": 0, "use": 0, "netif": "lo0", "kind": "route"}, {"destination": "localhost", "gateway": "localhost", "route_flags": "UH", "route_refs": 20, "use": 1266183, "netif": "lo0", "kind": "route"}, {"destination": "169.254", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1", "gateway": "link#10", "route_flags": "UCS", "route_refs": 11, "use": 0, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "kellys-iphone.attl", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWIi", "route_refs": 2, "use": 466, "netif": "en0", "expire": "866", "kind": "route"}, {"destination": "kellys-mbp.attloca", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWIi", "route_refs": 2, "use": 8877, "netif": "en0", "expire": "187", "kind": "route"}, {"destination": "ipad.attlocal.net", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWI", "route_refs": 0, "use": 600, "netif": "en0", "expire": "786", "kind": "route"}, {"destination": "mycloudex2ultra.at", "gateway": "0:90:a9:ed:e4:35", "route_flags": "UHLWIi", "route_refs": 1, "use": 265596, "netif": "en0", "expire": "1044", "kind": "route"}, {"destination": "family-room-5.attl", "gateway": "c8:d0:83:cd:e3:2d", "route_flags": "UHLWIi", "route_refs": 1, "use": 4308, "netif": "en0", "expire": "391", "kind": "route"}, {"destination": "bedroom.attlocal.n", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWIi", "route_refs": 1, "use": 4586, "netif": "en0", "expire": "36", "kind": "route"}, {"destination": "upstairs.attlocal.", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWIi", "route_refs": 1, "use": 6117, "netif": "en0", "expire": "1161", "kind": "route"}, {"destination": "rbr50.attlocal.net", "gateway": "3c:37:86:15:ad:f7", "route_flags": "UHLWI", "route_refs": 0, "use": 16, "netif": "en0", "expire": "678", "kind": "route"}, {"destination": "192.168.1.221/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLWI", "route_refs": 0, "use": 36, "netif": "lo0", "kind": "route"}, {"destination": "irobot-f5788f2e24e", "gateway": "50:14:79:12:42:3e", "route_flags": "UHLWI", "route_refs": 0, "use": 0, "netif": "en0", "expire": "1173", "kind": "route"}, {"destination": "victoriasiphone.at", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 54, "netif": "en0", "expire": "64", "kind": "route"}, {"destination": "rbs50.attlocal.net", "gateway": "3c:37:86:15:dd:b3", "route_flags": "UHLWI", "route_refs": 0, "use": 3300, "netif": "en0", "expire": "952", "kind": "route"}, {"destination": "192.168.1.254/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "dsldevice.attlocal", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "route_refs": 30, "use": 69452, "netif": "en0", "expire": "1180", "kind": "route"}, {"destination": "192.168.71", "gateway": "link#20", "route_flags": "UC", "route_refs": 2, "use": 0, "netif": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.71.160", "gateway": "link#20", "route_flags": "UHLWIi", "route_refs": 1, "use": 1708, "netif": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.101", "gateway": "link#19", "route_flags": "UC", "route_refs": 1, "use": 0, "netif": "vmnet1", "expire": "!", "kind": "route"}, {"destination": "224.0.0/4", "gateway": "link#10", "route_flags": "UmCS", "route_refs": 2, "use": 0, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "224.0.0.251", "gateway": "1:0:5e:0:0:fb", "route_flags": "UHmLWI", "route_refs": 0, "use": 312, "netif": "en0", "kind": "route"}, {"destination": "239.255.255.250", "gateway": "1:0:5e:7f:ff:fa", "route_flags": "UHmLWI", "route_refs": 0, "use": 9914, "netif": "en0", "kind": "route"}, {"destination": "255.255.255.255/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 0, "use": 0, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "default", "gateway": "fe80::feae:34ff:fe", "route_flags": "UGc", "netif": "en0", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun0", "route_flags": "UGcI", "netif": "utun0", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun1", "route_flags": "UGcI", "netif": "utun1", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun2", "route_flags": "UGcI", "netif": "utun2", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun3", "route_flags": "UGcI", "netif": "utun3", "kind": "route"}, {"destination": "localhost", "gateway": "localhost", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40", "gateway": "link#10", "route_flags": "UC", "netif": "en0", "kind": "route"}, {"destination": "dsldevice6.attloca", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIi", "netif": "en0", "kind": "route"}, {"destination": "2600:1700:bab0:d40", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "fe80::%lo0", "gateway": "fe80::1%lo0", "route_flags": "UcI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::1%lo0", "gateway": "link#1", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::%en5", "gateway": "link#8", "route_flags": "UCI", "netif": "en5", "kind": "route"}, {"destination": "fe80::aede:48ff:fe", "gateway": "ac:de:48:0:11:22", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::aede:48ff:fe", "gateway": "ac:de:48:33:44:55", "route_flags": "UHLWIi", "netif": "en5", "kind": "route"}, {"destination": "fe80::%en0", "gateway": "link#10", "route_flags": "UCI", "netif": "en0", "kind": "route"}, {"destination": "fe80::df:eea7:d8e0", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "fe80::472:ae33:7f7", "gateway": "b4:18:d1:9d:bc:2d", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "ipad.local", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "fe80::ced:5f18:1d1", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::10f2:d51c:68", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "upstairs.local", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWIi", "netif": "en0", "kind": "route"}, {"destination": "fe80::1899:d8f6:dc", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "kellys-macbook-pro", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "bedroom.local", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "kellys-airport-exp", "gateway": "48:d7:5:f1:86:e8", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "hp9cb654545bb9.loc", "gateway": "9c:b6:54:5a:5a:7c", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "fe80::feae:34ff:fe", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "netif": "en0", "kind": "route"}, {"destination": "fe80::%awdl0", "gateway": "link#12", "route_flags": "UCI", "netif": "awdl0", "kind": "route"}, {"destination": "fe80::b41f:b7ff:fe", "gateway": "b6:1f:b7:57:a5:4f", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun0", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "netif": "utun0", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "link#18", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun1", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "netif": "utun1", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "link#21", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun2", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "netif": "utun2", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "link#22", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun3", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "netif": "utun3", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "link#23", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "ff01::%lo0", "gateway": "localhost", "route_flags": "UmCI", "netif": "lo0", "kind": "route"}, {"destination": "ff01::%en5", "gateway": "link#8", "route_flags": "UmCI", "netif": "en5", "kind": "route"}, {"destination": "ff01::%en0", "gateway": "link#10", "route_flags": "UmCI", "netif": "en0", "kind": "route"}, {"destination": "ff01::%awdl0", "gateway": "link#12", "route_flags": "UmCI", "netif": "awdl0", "kind": "route"}, {"destination": "ff01::%utun0", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun0", "kind": "route"}, {"destination": "ff01::%utun1", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun1", "kind": "route"}, {"destination": "ff01::%utun2", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun2", "kind": "route"}, {"destination": "ff01::%utun3", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun3", "kind": "route"}, {"destination": "ff02::%lo0", "gateway": "localhost", "route_flags": "UmCI", "netif": "lo0", "kind": "route"}, {"destination": "ff02::%en5", "gateway": "link#8", "route_flags": "UmCI", "netif": "en5", "kind": "route"}, {"destination": "ff02::%en0", "gateway": "link#10", "route_flags": "UmCI", "netif": "en0", "kind": "route"}, {"destination": "ff02::%awdl0", "gateway": "link#12", "route_flags": "UmCI", "netif": "awdl0", "kind": "route"}, {"destination": "ff02::%utun0", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun0", "kind": "route"}, {"destination": "ff02::%utun1", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun1", "kind": "route"}, {"destination": "ff02::%utun2", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun2", "kind": "route"}, {"destination": "ff02::%utun3", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun3", "kind": "route"}] diff --git a/tests/fixtures/osx-10.14.6/netstat-r.out b/tests/fixtures/osx-10.14.6/netstat-r.out new file mode 100644 index 00000000..155d3cea --- /dev/null +++ b/tests/fixtures/osx-10.14.6/netstat-r.out @@ -0,0 +1,93 @@ +Routing tables + +Internet: +Destination Gateway Flags Refs Use Netif Expire +default dsldevice.attlocal UGSc 85 24 en0 +127 localhost UCS 0 0 lo0 +localhost localhost UH 20 1266183 lo0 +169.254 link#10 UCS 1 0 en0 ! +192.168.1 link#10 UCS 11 0 en0 ! +kellys-iphone.attl e0:33:8e:68:38:d6 UHLWIi 2 466 en0 866 +kellys-mbp.attloca f0:18:98:3:d8:39 UHLWIi 2 8877 en0 187 +ipad.attlocal.net 4c:56:9d:5f:b7:4c UHLWI 0 600 en0 786 +mycloudex2ultra.at 0:90:a9:ed:e4:35 UHLWIi 1 265596 en0 1044 +family-room-5.attl c8:d0:83:cd:e3:2d UHLWIi 1 4308 en0 391 +bedroom.attlocal.n d0:3:4b:3b:28:d5 UHLWIi 1 4586 en0 36 +upstairs.attlocal. 50:32:37:d7:f5:9b UHLWIi 1 6117 en0 1161 +rbr50.attlocal.net 3c:37:86:15:ad:f7 UHLWI 0 16 en0 678 +192.168.1.221/32 link#10 UCS 1 0 en0 ! +kbrazil-mac.attloc a4:83:e7:2d:62:8f UHLWI 0 36 lo0 +irobot-f5788f2e24e 50:14:79:12:42:3e UHLWI 0 0 en0 1173 +victoriasiphone.at 14:60:cb:10:ec:17 UHLWI 0 54 en0 64 +rbs50.attlocal.net 3c:37:86:15:dd:b3 UHLWI 0 3300 en0 952 +192.168.1.254/32 link#10 UCS 1 0 en0 ! +dsldevice.attlocal fc:ae:34:a1:3a:80 UHLWIir 30 69452 en0 1180 +192.168.71 link#20 UC 2 0 vmnet8 ! +192.168.71.160 link#20 UHLWIi 1 1708 vmnet8 ! +192.168.101 link#19 UC 1 0 vmnet1 ! +224.0.0/4 link#10 UmCS 2 0 en0 ! +224.0.0.251 1:0:5e:0:0:fb UHmLWI 0 312 en0 +239.255.255.250 1:0:5e:7f:ff:fa UHmLWI 0 9914 en0 +255.255.255.255/32 link#10 UCS 0 0 en0 ! + +Internet6: +Destination Gateway Flags Netif Expire +default fe80::feae:34ff:fe UGc en0 +default fe80::%utun0 UGcI utun0 +default fe80::%utun1 UGcI utun1 +default fe80::%utun2 UGcI utun2 +default fe80::%utun3 UGcI utun3 +localhost localhost UHL lo0 +2600:1700:bab0:d40 link#10 UC en0 +dsldevice6.attloca fc:ae:34:a1:3a:80 UHLWIi en0 +2600:1700:bab0:d40 a4:83:e7:2d:62:8f UHL lo0 +2600:1700:bab0:d40 a4:83:e7:2d:62:8f UHL lo0 +2600:1700:bab0:d40 a4:83:e7:2d:62:8f UHL lo0 +kbrazil-mac.attloc a4:83:e7:2d:62:8f UHL lo0 +kbrazil-mac.attloc a4:83:e7:2d:62:8f UHL lo0 +kbrazil-mac.attloc a4:83:e7:2d:62:8f UHL lo0 +fe80::%lo0 fe80::1%lo0 UcI lo0 +fe80::1%lo0 link#1 UHLI lo0 +fe80::%en5 link#8 UCI en5 +fe80::aede:48ff:fe ac:de:48:0:11:22 UHLI lo0 +fe80::aede:48ff:fe ac:de:48:33:44:55 UHLWIi en5 +fe80::%en0 link#10 UCI en0 +fe80::df:eea7:d8e0 14:60:cb:10:ec:17 UHLWI en0 +fe80::472:ae33:7f7 b4:18:d1:9d:bc:2d UHLWI en0 +ipad.local 4c:56:9d:5f:b7:4c UHLWI en0 +fe80::ced:5f18:1d1 14:60:cb:10:ec:17 UHLWI en0 +kbrazil-mac.local a4:83:e7:2d:62:8f UHLI lo0 +fe80::10f2:d51c:68 e0:33:8e:68:38:d6 UHLWI en0 +upstairs.local 50:32:37:d7:f5:9b UHLWIi en0 +fe80::1899:d8f6:dc 50:32:37:d7:f5:9b UHLWI en0 +kellys-macbook-pro f0:18:98:3:d8:39 UHLWI en0 +bedroom.local d0:3:4b:3b:28:d5 UHLWI en0 +kellys-airport-exp 48:d7:5:f1:86:e8 UHLWI en0 +hp9cb654545bb9.loc 9c:b6:54:5a:5a:7c UHLWI en0 +fe80::feae:34ff:fe fc:ae:34:a1:3a:80 UHLWIir en0 +fe80::%awdl0 link#12 UCI awdl0 +fe80::b41f:b7ff:fe b6:1f:b7:57:a5:4f UHLI lo0 +fe80::%utun0 kbrazil-mac.local UcI utun0 +kbrazil-mac.local link#18 UHLI lo0 +fe80::%utun1 kbrazil-mac.local UcI utun1 +kbrazil-mac.local link#21 UHLI lo0 +fe80::%utun2 kbrazil-mac.local UcI utun2 +kbrazil-mac.local link#22 UHLI lo0 +fe80::%utun3 kbrazil-mac.local UcI utun3 +kbrazil-mac.local link#23 UHLI lo0 +ff01::%lo0 localhost UmCI lo0 +ff01::%en5 link#8 UmCI en5 +ff01::%en0 link#10 UmCI en0 +ff01::%awdl0 link#12 UmCI awdl0 +ff01::%utun0 kbrazil-mac.local UmCI utun0 +ff01::%utun1 kbrazil-mac.local UmCI utun1 +ff01::%utun2 kbrazil-mac.local UmCI utun2 +ff01::%utun3 kbrazil-mac.local UmCI utun3 +ff02::%lo0 localhost UmCI lo0 +ff02::%en5 link#8 UmCI en5 +ff02::%en0 link#10 UmCI en0 +ff02::%awdl0 link#12 UmCI awdl0 +ff02::%utun0 kbrazil-mac.local UmCI utun0 +ff02::%utun1 kbrazil-mac.local UmCI utun1 +ff02::%utun2 kbrazil-mac.local UmCI utun2 +ff02::%utun3 kbrazil-mac.local UmCI utun3 diff --git a/tests/fixtures/osx-10.14.6/netstat-rnl.json b/tests/fixtures/osx-10.14.6/netstat-rnl.json new file mode 100644 index 00000000..bb7f9502 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/netstat-rnl.json @@ -0,0 +1 @@ +[{"destination": "default", "gateway": "192.168.1.254", "route_flags": "UGSc", "route_refs": 83, "use": 24, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "127", "gateway": "127.0.0.1", "route_flags": "UCS", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "127.0.0.1", "gateway": "127.0.0.1", "route_flags": "UH", "route_refs": 18, "use": 1266231, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "169.254", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1", "gateway": "link#10", "route_flags": "UCS", "route_refs": 12, "use": 0, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1.64", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWIi", "route_refs": 2, "use": 470, "mtu": 1500, "netif": "en0", "expire": "753", "kind": "route"}, {"destination": "192.168.1.72", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWIi", "route_refs": 1, "use": 8878, "mtu": 1500, "netif": "en0", "expire": "1105", "kind": "route"}, {"destination": "192.168.1.75", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWIi", "route_refs": 1, "use": 600, "mtu": 1500, "netif": "en0", "expire": "673", "kind": "route"}, {"destination": "192.168.1.80", "gateway": "0:90:a9:ed:e4:35", "route_flags": "UHLWIi", "route_refs": 1, "use": 265604, "mtu": 1500, "netif": "en0", "expire": "931", "kind": "route"}, {"destination": "192.168.1.88", "gateway": "c8:d0:83:cd:e3:2d", "route_flags": "UHLWIi", "route_refs": 1, "use": 4310, "mtu": 1500, "netif": "en0", "expire": "278", "kind": "route"}, {"destination": "192.168.1.89", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWIi", "route_refs": 1, "use": 4588, "mtu": 1500, "netif": "en0", "expire": "1132", "kind": "route"}, {"destination": "192.168.1.186", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWIi", "route_refs": 1, "use": 6123, "mtu": 1500, "netif": "en0", "expire": "1181", "kind": "route"}, {"destination": "192.168.1.216", "gateway": "3c:37:86:15:ad:f7", "route_flags": "UHLWI", "route_refs": 0, "use": 16, "mtu": 1500, "netif": "en0", "expire": "565", "kind": "route"}, {"destination": "192.168.1.221/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1.221", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLWI", "route_refs": 0, "use": 36, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "192.168.1.242", "gateway": "50:14:79:12:42:3e", "route_flags": "UHLWI", "route_refs": 0, "use": 0, "mtu": 1500, "netif": "en0", "expire": "1182", "kind": "route"}, {"destination": "192.168.1.251", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 54, "mtu": 1500, "netif": "en0", "expire": "1157", "kind": "route"}, {"destination": "192.168.1.253", "gateway": "3c:37:86:15:dd:b3", "route_flags": "UHLWI", "route_refs": 0, "use": 3300, "mtu": 1500, "netif": "en0", "expire": "839", "kind": "route"}, {"destination": "192.168.1.254/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1.254", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "route_refs": 29, "use": 69464, "mtu": 1500, "netif": "en0", "expire": "1200", "kind": "route"}, {"destination": "192.168.1.255", "gateway": "ff:ff:ff:ff:ff:ff", "route_flags": "UHLWbI", "route_refs": 0, "use": 4, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.71", "gateway": "link#20", "route_flags": "UC", "route_refs": 3, "use": 0, "mtu": 1500, "netif": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.71.160", "gateway": "link#20", "route_flags": "UHLWIi", "route_refs": 1, "use": 1708, "mtu": 1500, "netif": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.71.255", "gateway": "ff:ff:ff:ff:ff:ff", "route_flags": "UHLWbI", "route_refs": 0, "use": 4, "mtu": 1500, "netif": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.101", "gateway": "link#19", "route_flags": "UC", "route_refs": 2, "use": 0, "mtu": 1500, "netif": "vmnet1", "expire": "!", "kind": "route"}, {"destination": "192.168.101.255", "gateway": "ff:ff:ff:ff:ff:ff", "route_flags": "UHLWbI", "route_refs": 0, "use": 4, "mtu": 1500, "netif": "vmnet1", "expire": "!", "kind": "route"}, {"destination": "224.0.0/4", "gateway": "link#10", "route_flags": "UmCS", "route_refs": 2, "use": 0, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "224.0.0.251", "gateway": "1:0:5e:0:0:fb", "route_flags": "UHmLWI", "route_refs": 0, "use": 312, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "239.255.255.250", "gateway": "1:0:5e:7f:ff:fa", "route_flags": "UHmLWI", "route_refs": 0, "use": 9918, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "255.255.255.255/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 0, "use": 0, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "default", "gateway": "fe80::feae:34ff:fea1:3a80%en0", "route_flags": "UGc", "route_refs": 7, "use": 0, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun0", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 2000, "netif": "utun0", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun1", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun1", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun2", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun2", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun3", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun3", "kind": "route"}, {"destination": "::1", "gateway": "::1", "route_flags": "UHL", "route_refs": 1, "use": 4513, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40::/64", "gateway": "link#10", "route_flags": "UC", "route_refs": 2, "use": 0, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "2600:1700:bab0:d40::1", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIi", "route_refs": 12, "use": 68412, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "2600:1700:bab0:d40::39", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:1874:4566:6499:f3d1", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:5894:f4c5:a982:26be", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:c9de:af8a:762c:422c", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:edd2:2cbf:f03a:d14f", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:f078:690e:f0ba:dfb", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::%lo0/64", "gateway": "fe80::1%lo0", "route_flags": "UcI", "route_refs": 1, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::1%lo0", "gateway": "link#1", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::%en5/64", "gateway": "link#8", "route_flags": "UCI", "route_refs": 2, "use": 0, "mtu": 1500, "netif": "en5", "kind": "route"}, {"destination": "fe80::aede:48ff:fe00:1122%en5", "gateway": "ac:de:48:0:11:22", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::aede:48ff:fe33:4455%en5", "gateway": "ac:de:48:33:44:55", "route_flags": "UHLWIi", "route_refs": 77, "use": 826, "mtu": 1500, "netif": "en5", "kind": "route"}, {"destination": "fe80::%en0/64", "gateway": "link#10", "route_flags": "UCI", "route_refs": 13, "use": 0, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::df:eea7:d8e0:237a%en0", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 293, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::472:ae33:7f74:8baf%en0", "gateway": "b4:18:d1:9d:bc:2d", "route_flags": "UHLWI", "route_refs": 0, "use": 2, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::c73:1ab9:79c2:c193%en0", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWI", "route_refs": 0, "use": 1597, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::ced:5f18:1d1e:2d6b%en0", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 14, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::cf9:ca6f:7d7a:50a2%en0", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::10f2:d51c:68e3:bfbb%en0", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWI", "route_refs": 0, "use": 656, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::1406:1bd5:a957:6df2%en0", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWI", "route_refs": 0, "use": 2100, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::1899:d8f6:dca5:207%en0", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWI", "route_refs": 0, "use": 4619, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::1c4d:12ea:5e57:24ad%en0", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWIi", "route_refs": 1, "use": 8, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::1cff:a835:c99b:22c1%en0", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWI", "route_refs": 0, "use": 477, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::4ad7:5ff:fef1:86e8%en0", "gateway": "48:d7:5:f1:86:e8", "route_flags": "UHLWI", "route_refs": 0, "use": 862, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::9eb6:54ff:fe5a:5a7c%en0", "gateway": "9c:b6:54:5a:5a:7c", "route_flags": "UHLWI", "route_refs": 0, "use": 322, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::feae:34ff:fea1:3a80%en0", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "route_refs": 7, "use": 27100, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::%awdl0/64", "gateway": "link#12", "route_flags": "UCI", "route_refs": 1, "use": 0, "mtu": 1484, "netif": "awdl0", "kind": "route"}, {"destination": "fe80::b41f:b7ff:fe57:a54f%awdl0", "gateway": "b6:1f:b7:57:a5:4f", "route_flags": "UHLI", "route_refs": 1, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun0/64", "gateway": "fe80::30fe:52f1:103c:c66c%utun0", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 2000, "netif": "utun0", "kind": "route"}, {"destination": "fe80::30fe:52f1:103c:c66c%utun0", "gateway": "link#18", "route_flags": "UHLI", "route_refs": 1, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun1/64", "gateway": "fe80::aaf6:1785:571a:57a9%utun1", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 1380, "netif": "utun1", "kind": "route"}, {"destination": "fe80::aaf6:1785:571a:57a9%utun1", "gateway": "link#21", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun2/64", "gateway": "fe80::ce02:efdc:708:5411%utun2", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 1380, "netif": "utun2", "kind": "route"}, {"destination": "fe80::ce02:efdc:708:5411%utun2", "gateway": "link#22", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun3/64", "gateway": "fe80::1188:a032:c478:4b13%utun3", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 1380, "netif": "utun3", "kind": "route"}, {"destination": "fe80::1188:a032:c478:4b13%utun3", "gateway": "link#23", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "ff01::%lo0/32", "gateway": "::1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "ff01::%en5/32", "gateway": "link#8", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "netif": "en5", "kind": "route"}, {"destination": "ff01::%en0/32", "gateway": "link#10", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "ff01::%awdl0/32", "gateway": "link#12", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1484, "netif": "awdl0", "kind": "route"}, {"destination": "ff01::%utun0/32", "gateway": "fe80::30fe:52f1:103c:c66c%utun0", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 2000, "netif": "utun0", "kind": "route"}, {"destination": "ff01::%utun1/32", "gateway": "fe80::aaf6:1785:571a:57a9%utun1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun1", "kind": "route"}, {"destination": "ff01::%utun2/32", "gateway": "fe80::ce02:efdc:708:5411%utun2", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun2", "kind": "route"}, {"destination": "ff01::%utun3/32", "gateway": "fe80::1188:a032:c478:4b13%utun3", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun3", "kind": "route"}, {"destination": "ff02::%lo0/32", "gateway": "::1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "ff02::%en5/32", "gateway": "link#8", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "netif": "en5", "kind": "route"}, {"destination": "ff02::%en0/32", "gateway": "link#10", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "ff02::%awdl0/32", "gateway": "link#12", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1484, "netif": "awdl0", "kind": "route"}, {"destination": "ff02::%utun0/32", "gateway": "fe80::30fe:52f1:103c:c66c%utun0", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 2000, "netif": "utun0", "kind": "route"}, {"destination": "ff02::%utun1/32", "gateway": "fe80::aaf6:1785:571a:57a9%utun1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun1", "kind": "route"}, {"destination": "ff02::%utun2/32", "gateway": "fe80::ce02:efdc:708:5411%utun2", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun2", "kind": "route"}, {"destination": "ff02::%utun3/32", "gateway": "fe80::1188:a032:c478:4b13%utun3", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun3", "kind": "route"}] diff --git a/tests/fixtures/osx-10.14.6/netstat-rnl.out b/tests/fixtures/osx-10.14.6/netstat-rnl.out new file mode 100644 index 00000000..74cd1781 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/netstat-rnl.out @@ -0,0 +1,96 @@ +Routing tables + +Internet: +Destination Gateway Flags Refs Use Mtu Netif Expire +default 192.168.1.254 UGSc 83 24 1500 en0 +127 127.0.0.1 UCS 0 0 16384 lo0 +127.0.0.1 127.0.0.1 UH 18 1266231 16384 lo0 +169.254 link#10 UCS 1 0 1500 en0 ! +192.168.1 link#10 UCS 12 0 1500 en0 ! +192.168.1.64 e0:33:8e:68:38:d6 UHLWIi 2 470 1500 en0 753 +192.168.1.72 f0:18:98:3:d8:39 UHLWIi 1 8878 1500 en0 1105 +192.168.1.75 4c:56:9d:5f:b7:4c UHLWIi 1 600 1500 en0 673 +192.168.1.80 0:90:a9:ed:e4:35 UHLWIi 1 265604 1500 en0 931 +192.168.1.88 c8:d0:83:cd:e3:2d UHLWIi 1 4310 1500 en0 278 +192.168.1.89 d0:3:4b:3b:28:d5 UHLWIi 1 4588 1500 en0 1132 +192.168.1.186 50:32:37:d7:f5:9b UHLWIi 1 6123 1500 en0 1181 +192.168.1.216 3c:37:86:15:ad:f7 UHLWI 0 16 1500 en0 565 +192.168.1.221/32 link#10 UCS 1 0 1500 en0 ! +192.168.1.221 a4:83:e7:2d:62:8f UHLWI 0 36 16384 lo0 +192.168.1.242 50:14:79:12:42:3e UHLWI 0 0 1500 en0 1182 +192.168.1.251 14:60:cb:10:ec:17 UHLWI 0 54 1500 en0 1157 +192.168.1.253 3c:37:86:15:dd:b3 UHLWI 0 3300 1500 en0 839 +192.168.1.254/32 link#10 UCS 1 0 1500 en0 ! +192.168.1.254 fc:ae:34:a1:3a:80 UHLWIir 29 69464 1500 en0 1200 +192.168.1.255 ff:ff:ff:ff:ff:ff UHLWbI 0 4 1500 en0 ! +192.168.71 link#20 UC 3 0 1500 vmnet8 ! +192.168.71.160 link#20 UHLWIi 1 1708 1500 vmnet8 ! +192.168.71.255 ff:ff:ff:ff:ff:ff UHLWbI 0 4 1500 vmnet8 ! +192.168.101 link#19 UC 2 0 1500 vmnet1 ! +192.168.101.255 ff:ff:ff:ff:ff:ff UHLWbI 0 4 1500 vmnet1 ! +224.0.0/4 link#10 UmCS 2 0 1500 en0 ! +224.0.0.251 1:0:5e:0:0:fb UHmLWI 0 312 1500 en0 +239.255.255.250 1:0:5e:7f:ff:fa UHmLWI 0 9918 1500 en0 +255.255.255.255/32 link#10 UCS 0 0 1500 en0 ! + +Internet6: +Destination Gateway Flags Refs Use Mtu Netif Expire +default fe80::feae:34ff:fea1:3a80%en0 UGc 7 0 1500 en0 +default fe80::%utun0 UGcI 0 0 2000 utun0 +default fe80::%utun1 UGcI 0 0 1380 utun1 +default fe80::%utun2 UGcI 0 0 1380 utun2 +default fe80::%utun3 UGcI 0 0 1380 utun3 +::1 ::1 UHL 1 4513 16384 lo0 +2600:1700:bab0:d40::/64 link#10 UC 2 0 1500 en0 +2600:1700:bab0:d40::1 fc:ae:34:a1:3a:80 UHLWIi 12 68412 1500 en0 +2600:1700:bab0:d40::39 a4:83:e7:2d:62:8f UHL 0 0 16384 lo0 +2600:1700:bab0:d40:1874:4566:6499:f3d1 a4:83:e7:2d:62:8f UHL 0 0 16384 lo0 +2600:1700:bab0:d40:5894:f4c5:a982:26be a4:83:e7:2d:62:8f UHL 0 0 16384 lo0 +2600:1700:bab0:d40:c9de:af8a:762c:422c a4:83:e7:2d:62:8f UHL 0 0 16384 lo0 +2600:1700:bab0:d40:edd2:2cbf:f03a:d14f a4:83:e7:2d:62:8f UHL 0 0 16384 lo0 +2600:1700:bab0:d40:f078:690e:f0ba:dfb a4:83:e7:2d:62:8f UHL 0 0 16384 lo0 +fe80::%lo0/64 fe80::1%lo0 UcI 1 0 16384 lo0 +fe80::1%lo0 link#1 UHLI 0 0 16384 lo0 +fe80::%en5/64 link#8 UCI 2 0 1500 en5 +fe80::aede:48ff:fe00:1122%en5 ac:de:48:0:11:22 UHLI 0 0 16384 lo0 +fe80::aede:48ff:fe33:4455%en5 ac:de:48:33:44:55 UHLWIi 77 826 1500 en5 +fe80::%en0/64 link#10 UCI 13 0 1500 en0 +fe80::df:eea7:d8e0:237a%en0 14:60:cb:10:ec:17 UHLWI 0 293 1500 en0 +fe80::472:ae33:7f74:8baf%en0 b4:18:d1:9d:bc:2d UHLWI 0 2 1500 en0 +fe80::c73:1ab9:79c2:c193%en0 4c:56:9d:5f:b7:4c UHLWI 0 1597 1500 en0 +fe80::ced:5f18:1d1e:2d6b%en0 14:60:cb:10:ec:17 UHLWI 0 14 1500 en0 +fe80::cf9:ca6f:7d7a:50a2%en0 a4:83:e7:2d:62:8f UHLI 0 0 16384 lo0 +fe80::10f2:d51c:68e3:bfbb%en0 e0:33:8e:68:38:d6 UHLWI 0 656 1500 en0 +fe80::1406:1bd5:a957:6df2%en0 50:32:37:d7:f5:9b UHLWI 0 2100 1500 en0 +fe80::1899:d8f6:dca5:207%en0 50:32:37:d7:f5:9b UHLWI 0 4619 1500 en0 +fe80::1c4d:12ea:5e57:24ad%en0 f0:18:98:3:d8:39 UHLWIi 1 8 1500 en0 +fe80::1cff:a835:c99b:22c1%en0 d0:3:4b:3b:28:d5 UHLWI 0 477 1500 en0 +fe80::4ad7:5ff:fef1:86e8%en0 48:d7:5:f1:86:e8 UHLWI 0 862 1500 en0 +fe80::9eb6:54ff:fe5a:5a7c%en0 9c:b6:54:5a:5a:7c UHLWI 0 322 1500 en0 +fe80::feae:34ff:fea1:3a80%en0 fc:ae:34:a1:3a:80 UHLWIir 7 27100 1500 en0 +fe80::%awdl0/64 link#12 UCI 1 0 1484 awdl0 +fe80::b41f:b7ff:fe57:a54f%awdl0 b6:1f:b7:57:a5:4f UHLI 1 0 16384 lo0 +fe80::%utun0/64 fe80::30fe:52f1:103c:c66c%utun0 UcI 2 0 2000 utun0 +fe80::30fe:52f1:103c:c66c%utun0 link#18 UHLI 1 0 16384 lo0 +fe80::%utun1/64 fe80::aaf6:1785:571a:57a9%utun1 UcI 2 0 1380 utun1 +fe80::aaf6:1785:571a:57a9%utun1 link#21 UHLI 0 0 16384 lo0 +fe80::%utun2/64 fe80::ce02:efdc:708:5411%utun2 UcI 2 0 1380 utun2 +fe80::ce02:efdc:708:5411%utun2 link#22 UHLI 0 0 16384 lo0 +fe80::%utun3/64 fe80::1188:a032:c478:4b13%utun3 UcI 2 0 1380 utun3 +fe80::1188:a032:c478:4b13%utun3 link#23 UHLI 0 0 16384 lo0 +ff01::%lo0/32 ::1 UmCI 0 0 16384 lo0 +ff01::%en5/32 link#8 UmCI 0 0 1500 en5 +ff01::%en0/32 link#10 UmCI 0 0 1500 en0 +ff01::%awdl0/32 link#12 UmCI 0 0 1484 awdl0 +ff01::%utun0/32 fe80::30fe:52f1:103c:c66c%utun0 UmCI 0 0 2000 utun0 +ff01::%utun1/32 fe80::aaf6:1785:571a:57a9%utun1 UmCI 0 0 1380 utun1 +ff01::%utun2/32 fe80::ce02:efdc:708:5411%utun2 UmCI 0 0 1380 utun2 +ff01::%utun3/32 fe80::1188:a032:c478:4b13%utun3 UmCI 0 0 1380 utun3 +ff02::%lo0/32 ::1 UmCI 0 0 16384 lo0 +ff02::%en5/32 link#8 UmCI 0 0 1500 en5 +ff02::%en0/32 link#10 UmCI 0 0 1500 en0 +ff02::%awdl0/32 link#12 UmCI 0 0 1484 awdl0 +ff02::%utun0/32 fe80::30fe:52f1:103c:c66c%utun0 UmCI 0 0 2000 utun0 +ff02::%utun1/32 fe80::aaf6:1785:571a:57a9%utun1 UmCI 0 0 1380 utun1 +ff02::%utun2/32 fe80::ce02:efdc:708:5411%utun2 UmCI 0 0 1380 utun2 +ff02::%utun3/32 fe80::1188:a032:c478:4b13%utun3 UmCI 0 0 1380 utun3 diff --git a/tests/test_netstat.py b/tests/test_netstat.py index 3bbe8bf7..38634343 100644 --- a/tests/test_netstat.py +++ b/tests/test_netstat.py @@ -52,6 +52,13 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-Abn.out'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_Abn = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-r.out'), 'r', encoding='utf-8') as f: + self.osx_14_6_netstat_r = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-rnl.out'), 'r', encoding='utf-8') as f: + self.osx_14_6_netstat_rnl = f.read() + # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat.json'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_json = json.loads(f.read()) @@ -95,6 +102,12 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-Abn.json'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_Abn_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-r.json'), 'r', encoding='utf-8') as f: + self.osx_14_6_netstat_r_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-rnl.json'), 'r', encoding='utf-8') as f: + self.osx_14_6_netstat_rnl_json = json.loads(f.read()) + def test_netstat_centos_7_7(self): """ Test 'netstat' on Centos 7.7 @@ -179,6 +192,18 @@ class MyTests(unittest.TestCase): """ self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat_Abn, quiet=True), self.osx_14_6_netstat_Abn_json) + def test_netstat_r_osx_16_4(self): + """ + Test 'netstat -r' on OSX 16.4 + """ + self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat_r, quiet=True), self.osx_14_6_netstat_r_json) + + def test_netstat_rnl_osx_16_4(self): + """ + Test 'netstat -rnl' on OSX 16.4 + """ + self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat_rnl, quiet=True), self.osx_14_6_netstat_rnl_json) + if __name__ == '__main__': unittest.main() From ec2cd2d708a57c0458657416bedcb4340cb40901 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 12:00:26 -0700 Subject: [PATCH 43/52] add netstat -r support for linux --- docs/parsers/netstat.md | 11 +++--- jc/parsers/netstat.py | 13 +++++--- jc/parsers/netstat_linux.py | 37 +++++++++++++++++++++ jc/parsers/netstat_osx.py | 1 + tests/fixtures/centos-7.7/netstat-r.out | 5 +++ tests/fixtures/centos-7.7/netstat-rne.out | 5 +++ tests/fixtures/centos-7.7/netstat-rnee.out | 5 +++ tests/fixtures/osx-10.14.6/netstat-r.json | 2 +- tests/fixtures/osx-10.14.6/netstat-rnl.json | 2 +- 9 files changed, 70 insertions(+), 11 deletions(-) create mode 100644 tests/fixtures/centos-7.7/netstat-r.out create mode 100644 tests/fixtures/centos-7.7/netstat-rne.out create mode 100644 tests/fixtures/centos-7.7/netstat-rnee.out diff --git a/docs/parsers/netstat.md b/docs/parsers/netstat.md index 62cc6154..a230849a 100644 --- a/docs/parsers/netstat.md +++ b/docs/parsers/netstat.md @@ -374,16 +374,19 @@ Returns: "sndbuf": integer, "rxbytes": integer, "txbytes": integer, - - "destination": string, "gateway": string, "route_flags": string, "route_refs": integer, "use": integer, "mtu": integer, - "netif": string, - "expire": string + "expire": string, + "genmask": string, + "mss": integer, + "window": integer, + "irtt": integer, + "iface": string, + "metric": integer } ] diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index a34e27e0..b750c195 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -381,16 +381,19 @@ def process(proc_data): "sndbuf": integer, "rxbytes": integer, "txbytes": integer, - - "destination": string, "gateway": string, "route_flags": string, "route_refs": integer, "use": integer, "mtu": integer, - "netif": string, - "expire": string + "expire": string, + "genmask": string, + "mss": integer, + "window": integer, + "irtt": integer, + "iface": string, + "metric": integer } ] """ @@ -398,7 +401,7 @@ def process(proc_data): # integer changes int_list = ['recv_q', 'send_q', 'pid', 'refcnt', 'inode', 'unit', 'vendor', 'class', 'osx_flags', 'subcla', 'pcbcount', 'rcvbuf', 'sndbuf', 'rxbytes', 'txbytes', - 'route_refs', 'use', 'mtu'] + 'route_refs', 'use', 'mtu', 'mss', 'window', 'irtt', 'metric'] for key in int_list: if key in entry: try: diff --git a/jc/parsers/netstat_linux.py b/jc/parsers/netstat_linux.py index 2d55d42a..d090731e 100644 --- a/jc/parsers/netstat_linux.py +++ b/jc/parsers/netstat_linux.py @@ -14,6 +14,15 @@ def normalize_headers(header): return header +def normalize_route_headers(header): + header = header.lower() + header = header.replace('flags', 'route_flags') + header = header.replace('ref', 'route_refs') + header = header.replace('-', '_') + + return header + + def parse_network(headers, entry): # Count words in header # if len of line is one less than len of header, then insert None in field 5 @@ -62,6 +71,14 @@ def parse_socket(header_text, headers, entry): return output_line +def parse_route(headers, entry): + entry = entry.split(maxsplit=len(headers) - 1) + output_line = dict(zip(headers, entry)) + output_line['kind'] = 'route' + + return output_line + + def parse_post(raw_data): # clean up trailing whitespace on each item in each entry # flags --- = null @@ -139,6 +156,7 @@ def parse(cleandata): network = False socket = False bluetooth = False + routing_table = False headers = None for line in cleandata: @@ -147,18 +165,28 @@ def parse(cleandata): network = True socket = False bluetooth = False + routing_table = False continue if line.startswith('Active UNIX'): network = False socket = True bluetooth = False + routing_table = False continue if line.startswith('Active Bluetooth'): network = False socket = False bluetooth = True + routing_table = False + continue + + if line.startswith('Kernel IP routing table'): + network = False + socket = False + bluetooth = False + routing_table = True continue if line.startswith('Proto'): @@ -166,6 +194,11 @@ def parse(cleandata): headers = header_text.split() continue + if line.startswith('Destination '): + header_text = normalize_route_headers(line) + headers = header_text.split() + continue + if network: raw_output.append(parse_network(headers, line)) continue @@ -178,4 +211,8 @@ def parse(cleandata): # not implemented continue + if routing_table: + raw_output.append(parse_route(headers, line)) + continue + return parse_post(raw_output) diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py index 0febb801..634880bd 100644 --- a/jc/parsers/netstat_osx.py +++ b/jc/parsers/netstat_osx.py @@ -17,6 +17,7 @@ def normalize_route_headers(header): header = header.lower() header = header.replace('flags', 'route_flags') header = header.replace('refs', 'route_refs') + header = header.replace('netif', 'iface') header = header.replace('-', '_') return header diff --git a/tests/fixtures/centos-7.7/netstat-r.out b/tests/fixtures/centos-7.7/netstat-r.out new file mode 100644 index 00000000..5deb575c --- /dev/null +++ b/tests/fixtures/centos-7.7/netstat-r.out @@ -0,0 +1,5 @@ +Kernel IP routing table +Destination Gateway Genmask Flags MSS Window irtt Iface +default gateway 0.0.0.0 UG 0 0 0 ens33 +172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker0 +192.168.71.0 0.0.0.0 255.255.255.0 U 0 0 0 ens33 diff --git a/tests/fixtures/centos-7.7/netstat-rne.out b/tests/fixtures/centos-7.7/netstat-rne.out new file mode 100644 index 00000000..4622a5c9 --- /dev/null +++ b/tests/fixtures/centos-7.7/netstat-rne.out @@ -0,0 +1,5 @@ +Kernel IP routing table +Destination Gateway Genmask Flags Metric Ref Use Iface +0.0.0.0 192.168.71.2 0.0.0.0 UG 100 0 0 ens33 +172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker0 +192.168.71.0 0.0.0.0 255.255.255.0 U 100 0 0 ens33 diff --git a/tests/fixtures/centos-7.7/netstat-rnee.out b/tests/fixtures/centos-7.7/netstat-rnee.out new file mode 100644 index 00000000..c8af9463 --- /dev/null +++ b/tests/fixtures/centos-7.7/netstat-rnee.out @@ -0,0 +1,5 @@ +Kernel IP routing table +Destination Gateway Genmask Flags Metric Ref Use Iface MSS Window irtt +0.0.0.0 192.168.71.2 0.0.0.0 UG 100 0 0 ens33 0 0 0 +172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker 0 0 0 +192.168.71.0 0.0.0.0 255.255.255.0 U 100 0 0 ens33 0 0 0 diff --git a/tests/fixtures/osx-10.14.6/netstat-r.json b/tests/fixtures/osx-10.14.6/netstat-r.json index 7b70df05..69e0146a 100644 --- a/tests/fixtures/osx-10.14.6/netstat-r.json +++ b/tests/fixtures/osx-10.14.6/netstat-r.json @@ -1 +1 @@ -[{"destination": "default", "gateway": "dsldevice.attlocal", "route_flags": "UGSc", "route_refs": 85, "use": 24, "netif": "en0", "kind": "route"}, {"destination": "127", "gateway": "localhost", "route_flags": "UCS", "route_refs": 0, "use": 0, "netif": "lo0", "kind": "route"}, {"destination": "localhost", "gateway": "localhost", "route_flags": "UH", "route_refs": 20, "use": 1266183, "netif": "lo0", "kind": "route"}, {"destination": "169.254", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1", "gateway": "link#10", "route_flags": "UCS", "route_refs": 11, "use": 0, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "kellys-iphone.attl", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWIi", "route_refs": 2, "use": 466, "netif": "en0", "expire": "866", "kind": "route"}, {"destination": "kellys-mbp.attloca", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWIi", "route_refs": 2, "use": 8877, "netif": "en0", "expire": "187", "kind": "route"}, {"destination": "ipad.attlocal.net", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWI", "route_refs": 0, "use": 600, "netif": "en0", "expire": "786", "kind": "route"}, {"destination": "mycloudex2ultra.at", "gateway": "0:90:a9:ed:e4:35", "route_flags": "UHLWIi", "route_refs": 1, "use": 265596, "netif": "en0", "expire": "1044", "kind": "route"}, {"destination": "family-room-5.attl", "gateway": "c8:d0:83:cd:e3:2d", "route_flags": "UHLWIi", "route_refs": 1, "use": 4308, "netif": "en0", "expire": "391", "kind": "route"}, {"destination": "bedroom.attlocal.n", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWIi", "route_refs": 1, "use": 4586, "netif": "en0", "expire": "36", "kind": "route"}, {"destination": "upstairs.attlocal.", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWIi", "route_refs": 1, "use": 6117, "netif": "en0", "expire": "1161", "kind": "route"}, {"destination": "rbr50.attlocal.net", "gateway": "3c:37:86:15:ad:f7", "route_flags": "UHLWI", "route_refs": 0, "use": 16, "netif": "en0", "expire": "678", "kind": "route"}, {"destination": "192.168.1.221/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLWI", "route_refs": 0, "use": 36, "netif": "lo0", "kind": "route"}, {"destination": "irobot-f5788f2e24e", "gateway": "50:14:79:12:42:3e", "route_flags": "UHLWI", "route_refs": 0, "use": 0, "netif": "en0", "expire": "1173", "kind": "route"}, {"destination": "victoriasiphone.at", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 54, "netif": "en0", "expire": "64", "kind": "route"}, {"destination": "rbs50.attlocal.net", "gateway": "3c:37:86:15:dd:b3", "route_flags": "UHLWI", "route_refs": 0, "use": 3300, "netif": "en0", "expire": "952", "kind": "route"}, {"destination": "192.168.1.254/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "dsldevice.attlocal", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "route_refs": 30, "use": 69452, "netif": "en0", "expire": "1180", "kind": "route"}, {"destination": "192.168.71", "gateway": "link#20", "route_flags": "UC", "route_refs": 2, "use": 0, "netif": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.71.160", "gateway": "link#20", "route_flags": "UHLWIi", "route_refs": 1, "use": 1708, "netif": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.101", "gateway": "link#19", "route_flags": "UC", "route_refs": 1, "use": 0, "netif": "vmnet1", "expire": "!", "kind": "route"}, {"destination": "224.0.0/4", "gateway": "link#10", "route_flags": "UmCS", "route_refs": 2, "use": 0, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "224.0.0.251", "gateway": "1:0:5e:0:0:fb", "route_flags": "UHmLWI", "route_refs": 0, "use": 312, "netif": "en0", "kind": "route"}, {"destination": "239.255.255.250", "gateway": "1:0:5e:7f:ff:fa", "route_flags": "UHmLWI", "route_refs": 0, "use": 9914, "netif": "en0", "kind": "route"}, {"destination": "255.255.255.255/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 0, "use": 0, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "default", "gateway": "fe80::feae:34ff:fe", "route_flags": "UGc", "netif": "en0", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun0", "route_flags": "UGcI", "netif": "utun0", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun1", "route_flags": "UGcI", "netif": "utun1", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun2", "route_flags": "UGcI", "netif": "utun2", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun3", "route_flags": "UGcI", "netif": "utun3", "kind": "route"}, {"destination": "localhost", "gateway": "localhost", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40", "gateway": "link#10", "route_flags": "UC", "netif": "en0", "kind": "route"}, {"destination": "dsldevice6.attloca", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIi", "netif": "en0", "kind": "route"}, {"destination": "2600:1700:bab0:d40", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "netif": "lo0", "kind": "route"}, {"destination": "fe80::%lo0", "gateway": "fe80::1%lo0", "route_flags": "UcI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::1%lo0", "gateway": "link#1", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::%en5", "gateway": "link#8", "route_flags": "UCI", "netif": "en5", "kind": "route"}, {"destination": "fe80::aede:48ff:fe", "gateway": "ac:de:48:0:11:22", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::aede:48ff:fe", "gateway": "ac:de:48:33:44:55", "route_flags": "UHLWIi", "netif": "en5", "kind": "route"}, {"destination": "fe80::%en0", "gateway": "link#10", "route_flags": "UCI", "netif": "en0", "kind": "route"}, {"destination": "fe80::df:eea7:d8e0", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "fe80::472:ae33:7f7", "gateway": "b4:18:d1:9d:bc:2d", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "ipad.local", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "fe80::ced:5f18:1d1", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::10f2:d51c:68", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "upstairs.local", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWIi", "netif": "en0", "kind": "route"}, {"destination": "fe80::1899:d8f6:dc", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "kellys-macbook-pro", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "bedroom.local", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "kellys-airport-exp", "gateway": "48:d7:5:f1:86:e8", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "hp9cb654545bb9.loc", "gateway": "9c:b6:54:5a:5a:7c", "route_flags": "UHLWI", "netif": "en0", "kind": "route"}, {"destination": "fe80::feae:34ff:fe", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "netif": "en0", "kind": "route"}, {"destination": "fe80::%awdl0", "gateway": "link#12", "route_flags": "UCI", "netif": "awdl0", "kind": "route"}, {"destination": "fe80::b41f:b7ff:fe", "gateway": "b6:1f:b7:57:a5:4f", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun0", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "netif": "utun0", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "link#18", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun1", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "netif": "utun1", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "link#21", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun2", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "netif": "utun2", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "link#22", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun3", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "netif": "utun3", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "link#23", "route_flags": "UHLI", "netif": "lo0", "kind": "route"}, {"destination": "ff01::%lo0", "gateway": "localhost", "route_flags": "UmCI", "netif": "lo0", "kind": "route"}, {"destination": "ff01::%en5", "gateway": "link#8", "route_flags": "UmCI", "netif": "en5", "kind": "route"}, {"destination": "ff01::%en0", "gateway": "link#10", "route_flags": "UmCI", "netif": "en0", "kind": "route"}, {"destination": "ff01::%awdl0", "gateway": "link#12", "route_flags": "UmCI", "netif": "awdl0", "kind": "route"}, {"destination": "ff01::%utun0", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun0", "kind": "route"}, {"destination": "ff01::%utun1", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun1", "kind": "route"}, {"destination": "ff01::%utun2", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun2", "kind": "route"}, {"destination": "ff01::%utun3", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun3", "kind": "route"}, {"destination": "ff02::%lo0", "gateway": "localhost", "route_flags": "UmCI", "netif": "lo0", "kind": "route"}, {"destination": "ff02::%en5", "gateway": "link#8", "route_flags": "UmCI", "netif": "en5", "kind": "route"}, {"destination": "ff02::%en0", "gateway": "link#10", "route_flags": "UmCI", "netif": "en0", "kind": "route"}, {"destination": "ff02::%awdl0", "gateway": "link#12", "route_flags": "UmCI", "netif": "awdl0", "kind": "route"}, {"destination": "ff02::%utun0", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun0", "kind": "route"}, {"destination": "ff02::%utun1", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun1", "kind": "route"}, {"destination": "ff02::%utun2", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun2", "kind": "route"}, {"destination": "ff02::%utun3", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "netif": "utun3", "kind": "route"}] +[{"destination": "default", "gateway": "dsldevice.attlocal", "route_flags": "UGSc", "route_refs": 85, "use": 24, "iface": "en0", "kind": "route"}, {"destination": "127", "gateway": "localhost", "route_flags": "UCS", "route_refs": 0, "use": 0, "iface": "lo0", "kind": "route"}, {"destination": "localhost", "gateway": "localhost", "route_flags": "UH", "route_refs": 20, "use": 1266183, "iface": "lo0", "kind": "route"}, {"destination": "169.254", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "iface": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1", "gateway": "link#10", "route_flags": "UCS", "route_refs": 11, "use": 0, "iface": "en0", "expire": "!", "kind": "route"}, {"destination": "kellys-iphone.attl", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWIi", "route_refs": 2, "use": 466, "iface": "en0", "expire": "866", "kind": "route"}, {"destination": "kellys-mbp.attloca", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWIi", "route_refs": 2, "use": 8877, "iface": "en0", "expire": "187", "kind": "route"}, {"destination": "ipad.attlocal.net", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWI", "route_refs": 0, "use": 600, "iface": "en0", "expire": "786", "kind": "route"}, {"destination": "mycloudex2ultra.at", "gateway": "0:90:a9:ed:e4:35", "route_flags": "UHLWIi", "route_refs": 1, "use": 265596, "iface": "en0", "expire": "1044", "kind": "route"}, {"destination": "family-room-5.attl", "gateway": "c8:d0:83:cd:e3:2d", "route_flags": "UHLWIi", "route_refs": 1, "use": 4308, "iface": "en0", "expire": "391", "kind": "route"}, {"destination": "bedroom.attlocal.n", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWIi", "route_refs": 1, "use": 4586, "iface": "en0", "expire": "36", "kind": "route"}, {"destination": "upstairs.attlocal.", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWIi", "route_refs": 1, "use": 6117, "iface": "en0", "expire": "1161", "kind": "route"}, {"destination": "rbr50.attlocal.net", "gateway": "3c:37:86:15:ad:f7", "route_flags": "UHLWI", "route_refs": 0, "use": 16, "iface": "en0", "expire": "678", "kind": "route"}, {"destination": "192.168.1.221/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "iface": "en0", "expire": "!", "kind": "route"}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLWI", "route_refs": 0, "use": 36, "iface": "lo0", "kind": "route"}, {"destination": "irobot-f5788f2e24e", "gateway": "50:14:79:12:42:3e", "route_flags": "UHLWI", "route_refs": 0, "use": 0, "iface": "en0", "expire": "1173", "kind": "route"}, {"destination": "victoriasiphone.at", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 54, "iface": "en0", "expire": "64", "kind": "route"}, {"destination": "rbs50.attlocal.net", "gateway": "3c:37:86:15:dd:b3", "route_flags": "UHLWI", "route_refs": 0, "use": 3300, "iface": "en0", "expire": "952", "kind": "route"}, {"destination": "192.168.1.254/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "iface": "en0", "expire": "!", "kind": "route"}, {"destination": "dsldevice.attlocal", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "route_refs": 30, "use": 69452, "iface": "en0", "expire": "1180", "kind": "route"}, {"destination": "192.168.71", "gateway": "link#20", "route_flags": "UC", "route_refs": 2, "use": 0, "iface": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.71.160", "gateway": "link#20", "route_flags": "UHLWIi", "route_refs": 1, "use": 1708, "iface": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.101", "gateway": "link#19", "route_flags": "UC", "route_refs": 1, "use": 0, "iface": "vmnet1", "expire": "!", "kind": "route"}, {"destination": "224.0.0/4", "gateway": "link#10", "route_flags": "UmCS", "route_refs": 2, "use": 0, "iface": "en0", "expire": "!", "kind": "route"}, {"destination": "224.0.0.251", "gateway": "1:0:5e:0:0:fb", "route_flags": "UHmLWI", "route_refs": 0, "use": 312, "iface": "en0", "kind": "route"}, {"destination": "239.255.255.250", "gateway": "1:0:5e:7f:ff:fa", "route_flags": "UHmLWI", "route_refs": 0, "use": 9914, "iface": "en0", "kind": "route"}, {"destination": "255.255.255.255/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 0, "use": 0, "iface": "en0", "expire": "!", "kind": "route"}, {"destination": "default", "gateway": "fe80::feae:34ff:fe", "route_flags": "UGc", "iface": "en0", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun0", "route_flags": "UGcI", "iface": "utun0", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun1", "route_flags": "UGcI", "iface": "utun1", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun2", "route_flags": "UGcI", "iface": "utun2", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun3", "route_flags": "UGcI", "iface": "utun3", "kind": "route"}, {"destination": "localhost", "gateway": "localhost", "route_flags": "UHL", "iface": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40", "gateway": "link#10", "route_flags": "UC", "iface": "en0", "kind": "route"}, {"destination": "dsldevice6.attloca", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIi", "iface": "en0", "kind": "route"}, {"destination": "2600:1700:bab0:d40", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "iface": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "iface": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "iface": "lo0", "kind": "route"}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "iface": "lo0", "kind": "route"}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "iface": "lo0", "kind": "route"}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "iface": "lo0", "kind": "route"}, {"destination": "fe80::%lo0", "gateway": "fe80::1%lo0", "route_flags": "UcI", "iface": "lo0", "kind": "route"}, {"destination": "fe80::1%lo0", "gateway": "link#1", "route_flags": "UHLI", "iface": "lo0", "kind": "route"}, {"destination": "fe80::%en5", "gateway": "link#8", "route_flags": "UCI", "iface": "en5", "kind": "route"}, {"destination": "fe80::aede:48ff:fe", "gateway": "ac:de:48:0:11:22", "route_flags": "UHLI", "iface": "lo0", "kind": "route"}, {"destination": "fe80::aede:48ff:fe", "gateway": "ac:de:48:33:44:55", "route_flags": "UHLWIi", "iface": "en5", "kind": "route"}, {"destination": "fe80::%en0", "gateway": "link#10", "route_flags": "UCI", "iface": "en0", "kind": "route"}, {"destination": "fe80::df:eea7:d8e0", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "iface": "en0", "kind": "route"}, {"destination": "fe80::472:ae33:7f7", "gateway": "b4:18:d1:9d:bc:2d", "route_flags": "UHLWI", "iface": "en0", "kind": "route"}, {"destination": "ipad.local", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWI", "iface": "en0", "kind": "route"}, {"destination": "fe80::ced:5f18:1d1", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "iface": "en0", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLI", "iface": "lo0", "kind": "route"}, {"destination": "fe80::10f2:d51c:68", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWI", "iface": "en0", "kind": "route"}, {"destination": "upstairs.local", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWIi", "iface": "en0", "kind": "route"}, {"destination": "fe80::1899:d8f6:dc", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWI", "iface": "en0", "kind": "route"}, {"destination": "kellys-macbook-pro", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWI", "iface": "en0", "kind": "route"}, {"destination": "bedroom.local", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWI", "iface": "en0", "kind": "route"}, {"destination": "kellys-airport-exp", "gateway": "48:d7:5:f1:86:e8", "route_flags": "UHLWI", "iface": "en0", "kind": "route"}, {"destination": "hp9cb654545bb9.loc", "gateway": "9c:b6:54:5a:5a:7c", "route_flags": "UHLWI", "iface": "en0", "kind": "route"}, {"destination": "fe80::feae:34ff:fe", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "iface": "en0", "kind": "route"}, {"destination": "fe80::%awdl0", "gateway": "link#12", "route_flags": "UCI", "iface": "awdl0", "kind": "route"}, {"destination": "fe80::b41f:b7ff:fe", "gateway": "b6:1f:b7:57:a5:4f", "route_flags": "UHLI", "iface": "lo0", "kind": "route"}, {"destination": "fe80::%utun0", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "iface": "utun0", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "link#18", "route_flags": "UHLI", "iface": "lo0", "kind": "route"}, {"destination": "fe80::%utun1", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "iface": "utun1", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "link#21", "route_flags": "UHLI", "iface": "lo0", "kind": "route"}, {"destination": "fe80::%utun2", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "iface": "utun2", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "link#22", "route_flags": "UHLI", "iface": "lo0", "kind": "route"}, {"destination": "fe80::%utun3", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "iface": "utun3", "kind": "route"}, {"destination": "kbrazil-mac.local", "gateway": "link#23", "route_flags": "UHLI", "iface": "lo0", "kind": "route"}, {"destination": "ff01::%lo0", "gateway": "localhost", "route_flags": "UmCI", "iface": "lo0", "kind": "route"}, {"destination": "ff01::%en5", "gateway": "link#8", "route_flags": "UmCI", "iface": "en5", "kind": "route"}, {"destination": "ff01::%en0", "gateway": "link#10", "route_flags": "UmCI", "iface": "en0", "kind": "route"}, {"destination": "ff01::%awdl0", "gateway": "link#12", "route_flags": "UmCI", "iface": "awdl0", "kind": "route"}, {"destination": "ff01::%utun0", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun0", "kind": "route"}, {"destination": "ff01::%utun1", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun1", "kind": "route"}, {"destination": "ff01::%utun2", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun2", "kind": "route"}, {"destination": "ff01::%utun3", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun3", "kind": "route"}, {"destination": "ff02::%lo0", "gateway": "localhost", "route_flags": "UmCI", "iface": "lo0", "kind": "route"}, {"destination": "ff02::%en5", "gateway": "link#8", "route_flags": "UmCI", "iface": "en5", "kind": "route"}, {"destination": "ff02::%en0", "gateway": "link#10", "route_flags": "UmCI", "iface": "en0", "kind": "route"}, {"destination": "ff02::%awdl0", "gateway": "link#12", "route_flags": "UmCI", "iface": "awdl0", "kind": "route"}, {"destination": "ff02::%utun0", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun0", "kind": "route"}, {"destination": "ff02::%utun1", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun1", "kind": "route"}, {"destination": "ff02::%utun2", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun2", "kind": "route"}, {"destination": "ff02::%utun3", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun3", "kind": "route"}] diff --git a/tests/fixtures/osx-10.14.6/netstat-rnl.json b/tests/fixtures/osx-10.14.6/netstat-rnl.json index bb7f9502..02a09eae 100644 --- a/tests/fixtures/osx-10.14.6/netstat-rnl.json +++ b/tests/fixtures/osx-10.14.6/netstat-rnl.json @@ -1 +1 @@ -[{"destination": "default", "gateway": "192.168.1.254", "route_flags": "UGSc", "route_refs": 83, "use": 24, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "127", "gateway": "127.0.0.1", "route_flags": "UCS", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "127.0.0.1", "gateway": "127.0.0.1", "route_flags": "UH", "route_refs": 18, "use": 1266231, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "169.254", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1", "gateway": "link#10", "route_flags": "UCS", "route_refs": 12, "use": 0, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1.64", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWIi", "route_refs": 2, "use": 470, "mtu": 1500, "netif": "en0", "expire": "753", "kind": "route"}, {"destination": "192.168.1.72", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWIi", "route_refs": 1, "use": 8878, "mtu": 1500, "netif": "en0", "expire": "1105", "kind": "route"}, {"destination": "192.168.1.75", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWIi", "route_refs": 1, "use": 600, "mtu": 1500, "netif": "en0", "expire": "673", "kind": "route"}, {"destination": "192.168.1.80", "gateway": "0:90:a9:ed:e4:35", "route_flags": "UHLWIi", "route_refs": 1, "use": 265604, "mtu": 1500, "netif": "en0", "expire": "931", "kind": "route"}, {"destination": "192.168.1.88", "gateway": "c8:d0:83:cd:e3:2d", "route_flags": "UHLWIi", "route_refs": 1, "use": 4310, "mtu": 1500, "netif": "en0", "expire": "278", "kind": "route"}, {"destination": "192.168.1.89", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWIi", "route_refs": 1, "use": 4588, "mtu": 1500, "netif": "en0", "expire": "1132", "kind": "route"}, {"destination": "192.168.1.186", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWIi", "route_refs": 1, "use": 6123, "mtu": 1500, "netif": "en0", "expire": "1181", "kind": "route"}, {"destination": "192.168.1.216", "gateway": "3c:37:86:15:ad:f7", "route_flags": "UHLWI", "route_refs": 0, "use": 16, "mtu": 1500, "netif": "en0", "expire": "565", "kind": "route"}, {"destination": "192.168.1.221/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1.221", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLWI", "route_refs": 0, "use": 36, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "192.168.1.242", "gateway": "50:14:79:12:42:3e", "route_flags": "UHLWI", "route_refs": 0, "use": 0, "mtu": 1500, "netif": "en0", "expire": "1182", "kind": "route"}, {"destination": "192.168.1.251", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 54, "mtu": 1500, "netif": "en0", "expire": "1157", "kind": "route"}, {"destination": "192.168.1.253", "gateway": "3c:37:86:15:dd:b3", "route_flags": "UHLWI", "route_refs": 0, "use": 3300, "mtu": 1500, "netif": "en0", "expire": "839", "kind": "route"}, {"destination": "192.168.1.254/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1.254", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "route_refs": 29, "use": 69464, "mtu": 1500, "netif": "en0", "expire": "1200", "kind": "route"}, {"destination": "192.168.1.255", "gateway": "ff:ff:ff:ff:ff:ff", "route_flags": "UHLWbI", "route_refs": 0, "use": 4, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.71", "gateway": "link#20", "route_flags": "UC", "route_refs": 3, "use": 0, "mtu": 1500, "netif": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.71.160", "gateway": "link#20", "route_flags": "UHLWIi", "route_refs": 1, "use": 1708, "mtu": 1500, "netif": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.71.255", "gateway": "ff:ff:ff:ff:ff:ff", "route_flags": "UHLWbI", "route_refs": 0, "use": 4, "mtu": 1500, "netif": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.101", "gateway": "link#19", "route_flags": "UC", "route_refs": 2, "use": 0, "mtu": 1500, "netif": "vmnet1", "expire": "!", "kind": "route"}, {"destination": "192.168.101.255", "gateway": "ff:ff:ff:ff:ff:ff", "route_flags": "UHLWbI", "route_refs": 0, "use": 4, "mtu": 1500, "netif": "vmnet1", "expire": "!", "kind": "route"}, {"destination": "224.0.0/4", "gateway": "link#10", "route_flags": "UmCS", "route_refs": 2, "use": 0, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "224.0.0.251", "gateway": "1:0:5e:0:0:fb", "route_flags": "UHmLWI", "route_refs": 0, "use": 312, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "239.255.255.250", "gateway": "1:0:5e:7f:ff:fa", "route_flags": "UHmLWI", "route_refs": 0, "use": 9918, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "255.255.255.255/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 0, "use": 0, "mtu": 1500, "netif": "en0", "expire": "!", "kind": "route"}, {"destination": "default", "gateway": "fe80::feae:34ff:fea1:3a80%en0", "route_flags": "UGc", "route_refs": 7, "use": 0, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun0", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 2000, "netif": "utun0", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun1", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun1", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun2", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun2", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun3", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun3", "kind": "route"}, {"destination": "::1", "gateway": "::1", "route_flags": "UHL", "route_refs": 1, "use": 4513, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40::/64", "gateway": "link#10", "route_flags": "UC", "route_refs": 2, "use": 0, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "2600:1700:bab0:d40::1", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIi", "route_refs": 12, "use": 68412, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "2600:1700:bab0:d40::39", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:1874:4566:6499:f3d1", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:5894:f4c5:a982:26be", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:c9de:af8a:762c:422c", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:edd2:2cbf:f03a:d14f", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:f078:690e:f0ba:dfb", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::%lo0/64", "gateway": "fe80::1%lo0", "route_flags": "UcI", "route_refs": 1, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::1%lo0", "gateway": "link#1", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::%en5/64", "gateway": "link#8", "route_flags": "UCI", "route_refs": 2, "use": 0, "mtu": 1500, "netif": "en5", "kind": "route"}, {"destination": "fe80::aede:48ff:fe00:1122%en5", "gateway": "ac:de:48:0:11:22", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::aede:48ff:fe33:4455%en5", "gateway": "ac:de:48:33:44:55", "route_flags": "UHLWIi", "route_refs": 77, "use": 826, "mtu": 1500, "netif": "en5", "kind": "route"}, {"destination": "fe80::%en0/64", "gateway": "link#10", "route_flags": "UCI", "route_refs": 13, "use": 0, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::df:eea7:d8e0:237a%en0", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 293, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::472:ae33:7f74:8baf%en0", "gateway": "b4:18:d1:9d:bc:2d", "route_flags": "UHLWI", "route_refs": 0, "use": 2, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::c73:1ab9:79c2:c193%en0", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWI", "route_refs": 0, "use": 1597, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::ced:5f18:1d1e:2d6b%en0", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 14, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::cf9:ca6f:7d7a:50a2%en0", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::10f2:d51c:68e3:bfbb%en0", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWI", "route_refs": 0, "use": 656, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::1406:1bd5:a957:6df2%en0", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWI", "route_refs": 0, "use": 2100, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::1899:d8f6:dca5:207%en0", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWI", "route_refs": 0, "use": 4619, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::1c4d:12ea:5e57:24ad%en0", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWIi", "route_refs": 1, "use": 8, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::1cff:a835:c99b:22c1%en0", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWI", "route_refs": 0, "use": 477, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::4ad7:5ff:fef1:86e8%en0", "gateway": "48:d7:5:f1:86:e8", "route_flags": "UHLWI", "route_refs": 0, "use": 862, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::9eb6:54ff:fe5a:5a7c%en0", "gateway": "9c:b6:54:5a:5a:7c", "route_flags": "UHLWI", "route_refs": 0, "use": 322, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::feae:34ff:fea1:3a80%en0", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "route_refs": 7, "use": 27100, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "fe80::%awdl0/64", "gateway": "link#12", "route_flags": "UCI", "route_refs": 1, "use": 0, "mtu": 1484, "netif": "awdl0", "kind": "route"}, {"destination": "fe80::b41f:b7ff:fe57:a54f%awdl0", "gateway": "b6:1f:b7:57:a5:4f", "route_flags": "UHLI", "route_refs": 1, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun0/64", "gateway": "fe80::30fe:52f1:103c:c66c%utun0", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 2000, "netif": "utun0", "kind": "route"}, {"destination": "fe80::30fe:52f1:103c:c66c%utun0", "gateway": "link#18", "route_flags": "UHLI", "route_refs": 1, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun1/64", "gateway": "fe80::aaf6:1785:571a:57a9%utun1", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 1380, "netif": "utun1", "kind": "route"}, {"destination": "fe80::aaf6:1785:571a:57a9%utun1", "gateway": "link#21", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun2/64", "gateway": "fe80::ce02:efdc:708:5411%utun2", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 1380, "netif": "utun2", "kind": "route"}, {"destination": "fe80::ce02:efdc:708:5411%utun2", "gateway": "link#22", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "fe80::%utun3/64", "gateway": "fe80::1188:a032:c478:4b13%utun3", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 1380, "netif": "utun3", "kind": "route"}, {"destination": "fe80::1188:a032:c478:4b13%utun3", "gateway": "link#23", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "ff01::%lo0/32", "gateway": "::1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "ff01::%en5/32", "gateway": "link#8", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "netif": "en5", "kind": "route"}, {"destination": "ff01::%en0/32", "gateway": "link#10", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "ff01::%awdl0/32", "gateway": "link#12", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1484, "netif": "awdl0", "kind": "route"}, {"destination": "ff01::%utun0/32", "gateway": "fe80::30fe:52f1:103c:c66c%utun0", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 2000, "netif": "utun0", "kind": "route"}, {"destination": "ff01::%utun1/32", "gateway": "fe80::aaf6:1785:571a:57a9%utun1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun1", "kind": "route"}, {"destination": "ff01::%utun2/32", "gateway": "fe80::ce02:efdc:708:5411%utun2", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun2", "kind": "route"}, {"destination": "ff01::%utun3/32", "gateway": "fe80::1188:a032:c478:4b13%utun3", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun3", "kind": "route"}, {"destination": "ff02::%lo0/32", "gateway": "::1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 16384, "netif": "lo0", "kind": "route"}, {"destination": "ff02::%en5/32", "gateway": "link#8", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "netif": "en5", "kind": "route"}, {"destination": "ff02::%en0/32", "gateway": "link#10", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "netif": "en0", "kind": "route"}, {"destination": "ff02::%awdl0/32", "gateway": "link#12", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1484, "netif": "awdl0", "kind": "route"}, {"destination": "ff02::%utun0/32", "gateway": "fe80::30fe:52f1:103c:c66c%utun0", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 2000, "netif": "utun0", "kind": "route"}, {"destination": "ff02::%utun1/32", "gateway": "fe80::aaf6:1785:571a:57a9%utun1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun1", "kind": "route"}, {"destination": "ff02::%utun2/32", "gateway": "fe80::ce02:efdc:708:5411%utun2", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun2", "kind": "route"}, {"destination": "ff02::%utun3/32", "gateway": "fe80::1188:a032:c478:4b13%utun3", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "netif": "utun3", "kind": "route"}] +[{"destination": "default", "gateway": "192.168.1.254", "route_flags": "UGSc", "route_refs": 83, "use": 24, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "127", "gateway": "127.0.0.1", "route_flags": "UCS", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "127.0.0.1", "gateway": "127.0.0.1", "route_flags": "UH", "route_refs": 18, "use": 1266231, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "169.254", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1", "gateway": "link#10", "route_flags": "UCS", "route_refs": 12, "use": 0, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1.64", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWIi", "route_refs": 2, "use": 470, "mtu": 1500, "iface": "en0", "expire": "753", "kind": "route"}, {"destination": "192.168.1.72", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWIi", "route_refs": 1, "use": 8878, "mtu": 1500, "iface": "en0", "expire": "1105", "kind": "route"}, {"destination": "192.168.1.75", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWIi", "route_refs": 1, "use": 600, "mtu": 1500, "iface": "en0", "expire": "673", "kind": "route"}, {"destination": "192.168.1.80", "gateway": "0:90:a9:ed:e4:35", "route_flags": "UHLWIi", "route_refs": 1, "use": 265604, "mtu": 1500, "iface": "en0", "expire": "931", "kind": "route"}, {"destination": "192.168.1.88", "gateway": "c8:d0:83:cd:e3:2d", "route_flags": "UHLWIi", "route_refs": 1, "use": 4310, "mtu": 1500, "iface": "en0", "expire": "278", "kind": "route"}, {"destination": "192.168.1.89", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWIi", "route_refs": 1, "use": 4588, "mtu": 1500, "iface": "en0", "expire": "1132", "kind": "route"}, {"destination": "192.168.1.186", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWIi", "route_refs": 1, "use": 6123, "mtu": 1500, "iface": "en0", "expire": "1181", "kind": "route"}, {"destination": "192.168.1.216", "gateway": "3c:37:86:15:ad:f7", "route_flags": "UHLWI", "route_refs": 0, "use": 16, "mtu": 1500, "iface": "en0", "expire": "565", "kind": "route"}, {"destination": "192.168.1.221/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1.221", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLWI", "route_refs": 0, "use": 36, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "192.168.1.242", "gateway": "50:14:79:12:42:3e", "route_flags": "UHLWI", "route_refs": 0, "use": 0, "mtu": 1500, "iface": "en0", "expire": "1182", "kind": "route"}, {"destination": "192.168.1.251", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 54, "mtu": 1500, "iface": "en0", "expire": "1157", "kind": "route"}, {"destination": "192.168.1.253", "gateway": "3c:37:86:15:dd:b3", "route_flags": "UHLWI", "route_refs": 0, "use": 3300, "mtu": 1500, "iface": "en0", "expire": "839", "kind": "route"}, {"destination": "192.168.1.254/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.1.254", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "route_refs": 29, "use": 69464, "mtu": 1500, "iface": "en0", "expire": "1200", "kind": "route"}, {"destination": "192.168.1.255", "gateway": "ff:ff:ff:ff:ff:ff", "route_flags": "UHLWbI", "route_refs": 0, "use": 4, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route"}, {"destination": "192.168.71", "gateway": "link#20", "route_flags": "UC", "route_refs": 3, "use": 0, "mtu": 1500, "iface": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.71.160", "gateway": "link#20", "route_flags": "UHLWIi", "route_refs": 1, "use": 1708, "mtu": 1500, "iface": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.71.255", "gateway": "ff:ff:ff:ff:ff:ff", "route_flags": "UHLWbI", "route_refs": 0, "use": 4, "mtu": 1500, "iface": "vmnet8", "expire": "!", "kind": "route"}, {"destination": "192.168.101", "gateway": "link#19", "route_flags": "UC", "route_refs": 2, "use": 0, "mtu": 1500, "iface": "vmnet1", "expire": "!", "kind": "route"}, {"destination": "192.168.101.255", "gateway": "ff:ff:ff:ff:ff:ff", "route_flags": "UHLWbI", "route_refs": 0, "use": 4, "mtu": 1500, "iface": "vmnet1", "expire": "!", "kind": "route"}, {"destination": "224.0.0/4", "gateway": "link#10", "route_flags": "UmCS", "route_refs": 2, "use": 0, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route"}, {"destination": "224.0.0.251", "gateway": "1:0:5e:0:0:fb", "route_flags": "UHmLWI", "route_refs": 0, "use": 312, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "239.255.255.250", "gateway": "1:0:5e:7f:ff:fa", "route_flags": "UHmLWI", "route_refs": 0, "use": 9918, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "255.255.255.255/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 0, "use": 0, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route"}, {"destination": "default", "gateway": "fe80::feae:34ff:fea1:3a80%en0", "route_flags": "UGc", "route_refs": 7, "use": 0, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun0", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 2000, "iface": "utun0", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun1", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun1", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun2", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun2", "kind": "route"}, {"destination": "default", "gateway": "fe80::%utun3", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun3", "kind": "route"}, {"destination": "::1", "gateway": "::1", "route_flags": "UHL", "route_refs": 1, "use": 4513, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40::/64", "gateway": "link#10", "route_flags": "UC", "route_refs": 2, "use": 0, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "2600:1700:bab0:d40::1", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIi", "route_refs": 12, "use": 68412, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "2600:1700:bab0:d40::39", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:1874:4566:6499:f3d1", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:5894:f4c5:a982:26be", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:c9de:af8a:762c:422c", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:edd2:2cbf:f03a:d14f", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "2600:1700:bab0:d40:f078:690e:f0ba:dfb", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "fe80::%lo0/64", "gateway": "fe80::1%lo0", "route_flags": "UcI", "route_refs": 1, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "fe80::1%lo0", "gateway": "link#1", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "fe80::%en5/64", "gateway": "link#8", "route_flags": "UCI", "route_refs": 2, "use": 0, "mtu": 1500, "iface": "en5", "kind": "route"}, {"destination": "fe80::aede:48ff:fe00:1122%en5", "gateway": "ac:de:48:0:11:22", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "fe80::aede:48ff:fe33:4455%en5", "gateway": "ac:de:48:33:44:55", "route_flags": "UHLWIi", "route_refs": 77, "use": 826, "mtu": 1500, "iface": "en5", "kind": "route"}, {"destination": "fe80::%en0/64", "gateway": "link#10", "route_flags": "UCI", "route_refs": 13, "use": 0, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "fe80::df:eea7:d8e0:237a%en0", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 293, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "fe80::472:ae33:7f74:8baf%en0", "gateway": "b4:18:d1:9d:bc:2d", "route_flags": "UHLWI", "route_refs": 0, "use": 2, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "fe80::c73:1ab9:79c2:c193%en0", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWI", "route_refs": 0, "use": 1597, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "fe80::ced:5f18:1d1e:2d6b%en0", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 14, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "fe80::cf9:ca6f:7d7a:50a2%en0", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "fe80::10f2:d51c:68e3:bfbb%en0", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWI", "route_refs": 0, "use": 656, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "fe80::1406:1bd5:a957:6df2%en0", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWI", "route_refs": 0, "use": 2100, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "fe80::1899:d8f6:dca5:207%en0", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWI", "route_refs": 0, "use": 4619, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "fe80::1c4d:12ea:5e57:24ad%en0", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWIi", "route_refs": 1, "use": 8, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "fe80::1cff:a835:c99b:22c1%en0", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWI", "route_refs": 0, "use": 477, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "fe80::4ad7:5ff:fef1:86e8%en0", "gateway": "48:d7:5:f1:86:e8", "route_flags": "UHLWI", "route_refs": 0, "use": 862, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "fe80::9eb6:54ff:fe5a:5a7c%en0", "gateway": "9c:b6:54:5a:5a:7c", "route_flags": "UHLWI", "route_refs": 0, "use": 322, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "fe80::feae:34ff:fea1:3a80%en0", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "route_refs": 7, "use": 27100, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "fe80::%awdl0/64", "gateway": "link#12", "route_flags": "UCI", "route_refs": 1, "use": 0, "mtu": 1484, "iface": "awdl0", "kind": "route"}, {"destination": "fe80::b41f:b7ff:fe57:a54f%awdl0", "gateway": "b6:1f:b7:57:a5:4f", "route_flags": "UHLI", "route_refs": 1, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "fe80::%utun0/64", "gateway": "fe80::30fe:52f1:103c:c66c%utun0", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 2000, "iface": "utun0", "kind": "route"}, {"destination": "fe80::30fe:52f1:103c:c66c%utun0", "gateway": "link#18", "route_flags": "UHLI", "route_refs": 1, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "fe80::%utun1/64", "gateway": "fe80::aaf6:1785:571a:57a9%utun1", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 1380, "iface": "utun1", "kind": "route"}, {"destination": "fe80::aaf6:1785:571a:57a9%utun1", "gateway": "link#21", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "fe80::%utun2/64", "gateway": "fe80::ce02:efdc:708:5411%utun2", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 1380, "iface": "utun2", "kind": "route"}, {"destination": "fe80::ce02:efdc:708:5411%utun2", "gateway": "link#22", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "fe80::%utun3/64", "gateway": "fe80::1188:a032:c478:4b13%utun3", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 1380, "iface": "utun3", "kind": "route"}, {"destination": "fe80::1188:a032:c478:4b13%utun3", "gateway": "link#23", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "ff01::%lo0/32", "gateway": "::1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "ff01::%en5/32", "gateway": "link#8", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "iface": "en5", "kind": "route"}, {"destination": "ff01::%en0/32", "gateway": "link#10", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "ff01::%awdl0/32", "gateway": "link#12", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1484, "iface": "awdl0", "kind": "route"}, {"destination": "ff01::%utun0/32", "gateway": "fe80::30fe:52f1:103c:c66c%utun0", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 2000, "iface": "utun0", "kind": "route"}, {"destination": "ff01::%utun1/32", "gateway": "fe80::aaf6:1785:571a:57a9%utun1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun1", "kind": "route"}, {"destination": "ff01::%utun2/32", "gateway": "fe80::ce02:efdc:708:5411%utun2", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun2", "kind": "route"}, {"destination": "ff01::%utun3/32", "gateway": "fe80::1188:a032:c478:4b13%utun3", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun3", "kind": "route"}, {"destination": "ff02::%lo0/32", "gateway": "::1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route"}, {"destination": "ff02::%en5/32", "gateway": "link#8", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "iface": "en5", "kind": "route"}, {"destination": "ff02::%en0/32", "gateway": "link#10", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "iface": "en0", "kind": "route"}, {"destination": "ff02::%awdl0/32", "gateway": "link#12", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1484, "iface": "awdl0", "kind": "route"}, {"destination": "ff02::%utun0/32", "gateway": "fe80::30fe:52f1:103c:c66c%utun0", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 2000, "iface": "utun0", "kind": "route"}, {"destination": "ff02::%utun1/32", "gateway": "fe80::aaf6:1785:571a:57a9%utun1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun1", "kind": "route"}, {"destination": "ff02::%utun2/32", "gateway": "fe80::ce02:efdc:708:5411%utun2", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun2", "kind": "route"}, {"destination": "ff02::%utun3/32", "gateway": "fe80::1188:a032:c478:4b13%utun3", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun3", "kind": "route"}] From 2ca1587a49511899bf719e0b0c7de32158fc491d Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 12:44:51 -0700 Subject: [PATCH 44/52] add linux netstat -r tests --- tests/fixtures/centos-7.7/netstat-r.json | 1 + tests/fixtures/centos-7.7/netstat-rne.json | 1 + tests/fixtures/centos-7.7/netstat-rnee.json | 1 + tests/fixtures/ubuntu-18.04/netstat-r.json | 1 + tests/fixtures/ubuntu-18.04/netstat-r.out | 5 ++ tests/fixtures/ubuntu-18.04/netstat-rne.json | 1 + tests/fixtures/ubuntu-18.04/netstat-rne.out | 5 ++ tests/fixtures/ubuntu-18.04/netstat-rnee.json | 1 + tests/fixtures/ubuntu-18.04/netstat-rnee.out | 5 ++ tests/test_netstat.py | 81 +++++++++++++++++++ 10 files changed, 102 insertions(+) create mode 100644 tests/fixtures/centos-7.7/netstat-r.json create mode 100644 tests/fixtures/centos-7.7/netstat-rne.json create mode 100644 tests/fixtures/centos-7.7/netstat-rnee.json create mode 100644 tests/fixtures/ubuntu-18.04/netstat-r.json create mode 100644 tests/fixtures/ubuntu-18.04/netstat-r.out create mode 100644 tests/fixtures/ubuntu-18.04/netstat-rne.json create mode 100644 tests/fixtures/ubuntu-18.04/netstat-rne.out create mode 100644 tests/fixtures/ubuntu-18.04/netstat-rnee.json create mode 100644 tests/fixtures/ubuntu-18.04/netstat-rnee.out diff --git a/tests/fixtures/centos-7.7/netstat-r.json b/tests/fixtures/centos-7.7/netstat-r.json new file mode 100644 index 00000000..bd3bea76 --- /dev/null +++ b/tests/fixtures/centos-7.7/netstat-r.json @@ -0,0 +1 @@ +[{"destination": "default", "gateway": "gateway", "genmask": "0.0.0.0", "route_flags": "UG", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route"}, {"destination": "172.17.0.0", "gateway": "0.0.0.0", "genmask": "255.255.0.0", "route_flags": "U", "mss": 0, "window": 0, "irtt": 0, "iface": "docker0", "kind": "route"}, {"destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route"}] diff --git a/tests/fixtures/centos-7.7/netstat-rne.json b/tests/fixtures/centos-7.7/netstat-rne.json new file mode 100644 index 00000000..1e7e0bcc --- /dev/null +++ b/tests/fixtures/centos-7.7/netstat-rne.json @@ -0,0 +1 @@ +[{"destination": "0.0.0.0", "gateway": "192.168.71.2", "genmask": "0.0.0.0", "route_flags": "UG", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "kind": "route"}, {"destination": "172.17.0.0", "gateway": "0.0.0.0", "genmask": "255.255.0.0", "route_flags": "U", "metric": 0, "route_refs": 0, "use": 0, "iface": "docker0", "kind": "route"}, {"destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "kind": "route"}] diff --git a/tests/fixtures/centos-7.7/netstat-rnee.json b/tests/fixtures/centos-7.7/netstat-rnee.json new file mode 100644 index 00000000..3093e895 --- /dev/null +++ b/tests/fixtures/centos-7.7/netstat-rnee.json @@ -0,0 +1 @@ +[{"destination": "0.0.0.0", "gateway": "192.168.71.2", "genmask": "0.0.0.0", "route_flags": "UG", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "kind": "route"}, {"destination": "172.17.0.0", "gateway": "0.0.0.0", "genmask": "255.255.0.0", "route_flags": "U", "metric": 0, "route_refs": 0, "use": 0, "iface": "docker", "mss": 0, "window": 0, "irtt": 0, "kind": "route"}, {"destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "kind": "route"}] diff --git a/tests/fixtures/ubuntu-18.04/netstat-r.json b/tests/fixtures/ubuntu-18.04/netstat-r.json new file mode 100644 index 00000000..618fca58 --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/netstat-r.json @@ -0,0 +1 @@ +[{"destination": "default", "gateway": "_gateway", "genmask": "0.0.0.0", "route_flags": "UG", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route"}, {"destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route"}, {"destination": "_gateway", "gateway": "0.0.0.0", "genmask": "255.255.255.255", "route_flags": "UH", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route"}] diff --git a/tests/fixtures/ubuntu-18.04/netstat-r.out b/tests/fixtures/ubuntu-18.04/netstat-r.out new file mode 100644 index 00000000..877fceb8 --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/netstat-r.out @@ -0,0 +1,5 @@ +Kernel IP routing table +Destination Gateway Genmask Flags MSS Window irtt Iface +default _gateway 0.0.0.0 UG 0 0 0 ens33 +192.168.71.0 0.0.0.0 255.255.255.0 U 0 0 0 ens33 +_gateway 0.0.0.0 255.255.255.255 UH 0 0 0 ens33 diff --git a/tests/fixtures/ubuntu-18.04/netstat-rne.json b/tests/fixtures/ubuntu-18.04/netstat-rne.json new file mode 100644 index 00000000..5acccd57 --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/netstat-rne.json @@ -0,0 +1 @@ +[{"destination": "0.0.0.0", "gateway": "192.168.71.2", "genmask": "0.0.0.0", "route_flags": "UG", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "kind": "route"}, {"destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "metric": 0, "route_refs": 0, "use": 0, "iface": "ens33", "kind": "route"}, {"destination": "192.168.71.2", "gateway": "0.0.0.0", "genmask": "255.255.255.255", "route_flags": "UH", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "kind": "route"}] diff --git a/tests/fixtures/ubuntu-18.04/netstat-rne.out b/tests/fixtures/ubuntu-18.04/netstat-rne.out new file mode 100644 index 00000000..8cd80602 --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/netstat-rne.out @@ -0,0 +1,5 @@ +Kernel IP routing table +Destination Gateway Genmask Flags Metric Ref Use Iface +0.0.0.0 192.168.71.2 0.0.0.0 UG 100 0 0 ens33 +192.168.71.0 0.0.0.0 255.255.255.0 U 0 0 0 ens33 +192.168.71.2 0.0.0.0 255.255.255.255 UH 100 0 0 ens33 diff --git a/tests/fixtures/ubuntu-18.04/netstat-rnee.json b/tests/fixtures/ubuntu-18.04/netstat-rnee.json new file mode 100644 index 00000000..47a4d04b --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/netstat-rnee.json @@ -0,0 +1 @@ +[{"destination": "0.0.0.0", "gateway": "192.168.71.2", "genmask": "0.0.0.0", "route_flags": "UG", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "kind": "route"}, {"destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "metric": 0, "route_refs": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "kind": "route"}, {"destination": "192.168.71.2", "gateway": "0.0.0.0", "genmask": "255.255.255.255", "route_flags": "UH", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "kind": "route"}] diff --git a/tests/fixtures/ubuntu-18.04/netstat-rnee.out b/tests/fixtures/ubuntu-18.04/netstat-rnee.out new file mode 100644 index 00000000..be841a85 --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/netstat-rnee.out @@ -0,0 +1,5 @@ +Kernel IP routing table +Destination Gateway Genmask Flags Metric Ref Use Iface MSS Window irtt +0.0.0.0 192.168.71.2 0.0.0.0 UG 100 0 0 ens33 0 0 0 +192.168.71.0 0.0.0.0 255.255.255.0 U 0 0 0 ens33 0 0 0 +192.168.71.2 0.0.0.0 255.255.255.255 UH 100 0 0 ens33 0 0 0 diff --git a/tests/test_netstat.py b/tests/test_netstat.py index 38634343..82b201df 100644 --- a/tests/test_netstat.py +++ b/tests/test_netstat.py @@ -9,7 +9,11 @@ THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): + # # input + # + + # netstat with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat.out'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat = f.read() @@ -52,6 +56,24 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-Abn.out'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_Abn = f.read() + # netstat -r + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-r.out'), 'r', encoding='utf-8') as f: + self.centos_7_7_netstat_r = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-rne.out'), 'r', encoding='utf-8') as f: + self.centos_7_7_netstat_rne = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-rnee.out'), 'r', encoding='utf-8') as f: + self.centos_7_7_netstat_rnee = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-r.out'), 'r', encoding='utf-8') as f: + self.ubuntu_18_4_netstat_r = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-rne.out'), 'r', encoding='utf-8') as f: + self.ubuntu_18_4_netstat_rne = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-rnee.out'), 'r', encoding='utf-8') as f: + self.ubuntu_18_4_netstat_rnee = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-r.out'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_r = f.read() @@ -59,7 +81,11 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-rnl.out'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_rnl = f.read() + # # output + # + + # netstat with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat.json'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_json = json.loads(f.read()) @@ -102,6 +128,25 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-Abn.json'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_Abn_json = json.loads(f.read()) + # netsat -r + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-r.json'), 'r', encoding='utf-8') as f: + self.centos_7_7_netstat_r_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-rne.json'), 'r', encoding='utf-8') as f: + self.centos_7_7_netstat_rne_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-rnee.json'), 'r', encoding='utf-8') as f: + self.centos_7_7_netstat_rnee_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-r.json'), 'r', encoding='utf-8') as f: + self.ubuntu_18_4_netstat_r_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-rne.json'), 'r', encoding='utf-8') as f: + self.ubuntu_18_4_netstat_rne_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-rnee.json'), 'r', encoding='utf-8') as f: + self.ubuntu_18_4_netstat_rnee_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-r.json'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_r_json = json.loads(f.read()) @@ -192,6 +237,42 @@ class MyTests(unittest.TestCase): """ self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat_Abn, quiet=True), self.osx_14_6_netstat_Abn_json) + def test_netstat_r_centos_7_7(self): + """ + Test 'netstat -r' on Centos 7.7 + """ + self.assertEqual(jc.parsers.netstat.parse(self.centos_7_7_netstat_r, quiet=True), self.centos_7_7_netstat_r_json) + + def test_netstat_rne_centos_7_7(self): + """ + Test 'netstat -rne' on Centos 7.7 + """ + self.assertEqual(jc.parsers.netstat.parse(self.centos_7_7_netstat_rne, quiet=True), self.centos_7_7_netstat_rne_json) + + def test_netstat_rnee_centos_7_7(self): + """ + Test 'netstat -rnee' on Centos 7.7 + """ + self.assertEqual(jc.parsers.netstat.parse(self.centos_7_7_netstat_rnee, quiet=True), self.centos_7_7_netstat_rnee_json) + + def test_netstat_r_ubuntu_18_4(self): + """ + Test 'netstat -r' on Ubuntu 18.4 + """ + self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_r, quiet=True), self.ubuntu_18_4_netstat_r_json) + + def test_netstat_rne_ubuntu_18_4(self): + """ + Test 'netstat -rne' on Ubuntu 18.4 + """ + self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_rne, quiet=True), self.ubuntu_18_4_netstat_rne_json) + + def test_netstat_rnee_ubuntu_18_4(self): + """ + Test 'netstat -rnee' on Ubuntu 18.4 + """ + self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_rnee, quiet=True), self.ubuntu_18_4_netstat_rnee_json) + def test_netstat_r_osx_16_4(self): """ Test 'netstat -r' on OSX 16.4 From 0a879681be68fe2e6e5c013ab0fe18de99b04f7e Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 12:56:27 -0700 Subject: [PATCH 45/52] add netstat -r to docs --- README.md | 37 +++++++++ docs/parsers/netstat.md | 171 +++++++--------------------------------- jc/parsers/netstat.py | 171 +++++++--------------------------------- 3 files changed, 97 insertions(+), 282 deletions(-) diff --git a/README.md b/README.md index 714a3a3b..c9881a07 100644 --- a/README.md +++ b/README.md @@ -1667,6 +1667,43 @@ $ mount | jc --mount -p # or: jc -p mount }, ... ] + +$ netstat -r | jc --netstat -p # or: jc -p netstat -r +[ + { + "destination": "default", + "gateway": "gateway", + "genmask": "0.0.0.0", + "route_flags": "UG", + "mss": 0, + "window": 0, + "irtt": 0, + "iface": "ens33", + "kind": "route" + }, + { + "destination": "172.17.0.0", + "gateway": "0.0.0.0", + "genmask": "255.255.0.0", + "route_flags": "U", + "mss": 0, + "window": 0, + "irtt": 0, + "iface": "docker0", + "kind": "route" + }, + { + "destination": "192.168.71.0", + "gateway": "0.0.0.0", + "genmask": "255.255.255.0", + "route_flags": "U", + "mss": 0, + "window": 0, + "irtt": 0, + "iface": "ens33", + "kind": "route" + } +] ``` ### ntpq ``` diff --git a/docs/parsers/netstat.md b/docs/parsers/netstat.md index a230849a..cc5e8ab1 100644 --- a/docs/parsers/netstat.md +++ b/docs/parsers/netstat.md @@ -16,7 +16,7 @@ Compatibility: Examples: - $ sudo netstat -apee | jc --netstat -p + # netstat -apee | jc --netstat -p [ { "proto": "tcp", @@ -166,152 +166,41 @@ Examples: ... ] - $ sudo netstat -apee | jc --netstat -p -r + $ netstat -r | jc --netstat -p [ { - "proto": "tcp", - "recv_q": "0", - "send_q": "0", - "local_address": "localhost", - "foreign_address": "0.0.0.0", - "state": "LISTEN", - "user": "systemd-resolve", - "inode": "26958", - "program_name": "systemd-resolve", - "kind": "network", - "pid": "887", - "local_port": "domain", - "foreign_port": "*", - "transport_protocol": "tcp", - "network_protocol": "ipv4" + "destination": "default", + "gateway": "gateway", + "genmask": "0.0.0.0", + "route_flags": "UG", + "mss": 0, + "window": 0, + "irtt": 0, + "iface": "ens33", + "kind": "route" }, { - "proto": "tcp", - "recv_q": "0", - "send_q": "0", - "local_address": "0.0.0.0", - "foreign_address": "0.0.0.0", - "state": "LISTEN", - "user": "root", - "inode": "30499", - "program_name": "sshd", - "kind": "network", - "pid": "1186", - "local_port": "ssh", - "foreign_port": "*", - "transport_protocol": "tcp", - "network_protocol": "ipv4" + "destination": "172.17.0.0", + "gateway": "0.0.0.0", + "genmask": "255.255.0.0", + "route_flags": "U", + "mss": 0, + "window": 0, + "irtt": 0, + "iface": "docker0", + "kind": "route" }, { - "proto": "tcp", - "recv_q": "0", - "send_q": "0", - "local_address": "localhost", - "foreign_address": "localhost", - "state": "ESTABLISHED", - "user": "root", - "inode": "46829", - "program_name": "sshd: root", - "kind": "network", - "pid": "2242", - "local_port": "ssh", - "foreign_port": "52186", - "transport_protocol": "tcp", - "network_protocol": "ipv4" - }, - { - "proto": "tcp", - "recv_q": "0", - "send_q": "0", - "local_address": "localhost", - "foreign_address": "localhost", - "state": "ESTABLISHED", - "user": "root", - "inode": "46828", - "program_name": "ssh", - "kind": "network", - "pid": "2241", - "local_port": "52186", - "foreign_port": "ssh", - "transport_protocol": "tcp", - "network_protocol": "ipv4" - }, - { - "proto": "tcp6", - "recv_q": "0", - "send_q": "0", - "local_address": "[::]", - "foreign_address": "[::]", - "state": "LISTEN", - "user": "root", - "inode": "30510", - "program_name": "sshd", - "kind": "network", - "pid": "1186", - "local_port": "ssh", - "foreign_port": "*", - "transport_protocol": "tcp", - "network_protocol": "ipv6" - }, - { - "proto": "udp", - "recv_q": "0", - "send_q": "0", - "local_address": "localhost", - "foreign_address": "0.0.0.0", - "state": null, - "user": "systemd-resolve", - "inode": "26957", - "program_name": "systemd-resolve", - "kind": "network", - "pid": "887", - "local_port": "domain", - "foreign_port": "*", - "transport_protocol": "udp", - "network_protocol": "ipv4" - }, - { - "proto": "raw6", - "recv_q": "0", - "send_q": "0", - "local_address": "[::]", - "foreign_address": "[::]", - "state": "7", - "user": "systemd-network", - "inode": "27001", - "program_name": "systemd-network", - "kind": "network", - "pid": "867", - "local_port": "ipv6-icmp", - "foreign_port": "*", - "transport_protocol": null, - "network_protocol": "ipv6" - }, - { - "proto": "unix", - "refcnt": "2", - "flags": null, - "type": "DGRAM", - "state": null, - "inode": "33322", - "program_name": "systemd", - "path": "/run/user/1000/systemd/notify", - "kind": "socket", - "pid": " 1607" - }, - { - "proto": "unix", - "refcnt": "2", - "flags": "ACC", - "type": "SEQPACKET", - "state": "LISTENING", - "inode": "20835", - "program_name": "init", - "path": "/run/udev/control", - "kind": "socket", - "pid": " 1" - }, - ... + "destination": "192.168.71.0", + "gateway": "0.0.0.0", + "genmask": "255.255.255.0", + "route_flags": "U", + "mss": 0, + "window": 0, + "irtt": 0, + "iface": "ens33", + "kind": "route" + } ] ## info diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index b750c195..ed182218 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -15,7 +15,7 @@ Compatibility: Examples: - $ sudo netstat -apee | jc --netstat -p + # netstat -apee | jc --netstat -p [ { "proto": "tcp", @@ -165,152 +165,41 @@ Examples: ... ] - $ sudo netstat -apee | jc --netstat -p -r + $ netstat -r | jc --netstat -p [ { - "proto": "tcp", - "recv_q": "0", - "send_q": "0", - "local_address": "localhost", - "foreign_address": "0.0.0.0", - "state": "LISTEN", - "user": "systemd-resolve", - "inode": "26958", - "program_name": "systemd-resolve", - "kind": "network", - "pid": "887", - "local_port": "domain", - "foreign_port": "*", - "transport_protocol": "tcp", - "network_protocol": "ipv4" + "destination": "default", + "gateway": "gateway", + "genmask": "0.0.0.0", + "route_flags": "UG", + "mss": 0, + "window": 0, + "irtt": 0, + "iface": "ens33", + "kind": "route" }, { - "proto": "tcp", - "recv_q": "0", - "send_q": "0", - "local_address": "0.0.0.0", - "foreign_address": "0.0.0.0", - "state": "LISTEN", - "user": "root", - "inode": "30499", - "program_name": "sshd", - "kind": "network", - "pid": "1186", - "local_port": "ssh", - "foreign_port": "*", - "transport_protocol": "tcp", - "network_protocol": "ipv4" + "destination": "172.17.0.0", + "gateway": "0.0.0.0", + "genmask": "255.255.0.0", + "route_flags": "U", + "mss": 0, + "window": 0, + "irtt": 0, + "iface": "docker0", + "kind": "route" }, { - "proto": "tcp", - "recv_q": "0", - "send_q": "0", - "local_address": "localhost", - "foreign_address": "localhost", - "state": "ESTABLISHED", - "user": "root", - "inode": "46829", - "program_name": "sshd: root", - "kind": "network", - "pid": "2242", - "local_port": "ssh", - "foreign_port": "52186", - "transport_protocol": "tcp", - "network_protocol": "ipv4" - }, - { - "proto": "tcp", - "recv_q": "0", - "send_q": "0", - "local_address": "localhost", - "foreign_address": "localhost", - "state": "ESTABLISHED", - "user": "root", - "inode": "46828", - "program_name": "ssh", - "kind": "network", - "pid": "2241", - "local_port": "52186", - "foreign_port": "ssh", - "transport_protocol": "tcp", - "network_protocol": "ipv4" - }, - { - "proto": "tcp6", - "recv_q": "0", - "send_q": "0", - "local_address": "[::]", - "foreign_address": "[::]", - "state": "LISTEN", - "user": "root", - "inode": "30510", - "program_name": "sshd", - "kind": "network", - "pid": "1186", - "local_port": "ssh", - "foreign_port": "*", - "transport_protocol": "tcp", - "network_protocol": "ipv6" - }, - { - "proto": "udp", - "recv_q": "0", - "send_q": "0", - "local_address": "localhost", - "foreign_address": "0.0.0.0", - "state": null, - "user": "systemd-resolve", - "inode": "26957", - "program_name": "systemd-resolve", - "kind": "network", - "pid": "887", - "local_port": "domain", - "foreign_port": "*", - "transport_protocol": "udp", - "network_protocol": "ipv4" - }, - { - "proto": "raw6", - "recv_q": "0", - "send_q": "0", - "local_address": "[::]", - "foreign_address": "[::]", - "state": "7", - "user": "systemd-network", - "inode": "27001", - "program_name": "systemd-network", - "kind": "network", - "pid": "867", - "local_port": "ipv6-icmp", - "foreign_port": "*", - "transport_protocol": null, - "network_protocol": "ipv6" - }, - { - "proto": "unix", - "refcnt": "2", - "flags": null, - "type": "DGRAM", - "state": null, - "inode": "33322", - "program_name": "systemd", - "path": "/run/user/1000/systemd/notify", - "kind": "socket", - "pid": " 1607" - }, - { - "proto": "unix", - "refcnt": "2", - "flags": "ACC", - "type": "SEQPACKET", - "state": "LISTENING", - "inode": "20835", - "program_name": "init", - "path": "/run/udev/control", - "kind": "socket", - "pid": " 1" - }, - ... + "destination": "192.168.71.0", + "gateway": "0.0.0.0", + "genmask": "255.255.255.0", + "route_flags": "U", + "mss": 0, + "window": 0, + "irtt": 0, + "iface": "ens33", + "kind": "route" + } ] """ From 8be8d2393b276a9249e1c573ce19cf630f0942fd Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 13:38:25 -0700 Subject: [PATCH 46/52] add netstat -i support for OSX --- jc/parsers/netstat.py | 19 +++++++++-- jc/parsers/netstat_osx.py | 40 ++++++++++++++++++++++ tests/fixtures/osx-10.14.6/netstat-i.out | 43 ++++++++++++++++++++++++ 3 files changed, 99 insertions(+), 3 deletions(-) create mode 100644 tests/fixtures/osx-10.14.6/netstat-i.out diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index ed182218..5acb123b 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -201,6 +201,9 @@ Examples: "kind": "route" } ] + + $ netstat -i | jc --netstat -p + """ @@ -282,7 +285,15 @@ def process(proc_data): "window": integer, "irtt": integer, "iface": string, - "metric": integer + "metric": integer, + + "network": string, + "address": string, + "ipkts": integer, - = null + "ierrs": integer, - = null + "opkts": integer, - = null + "oerrs": integer, - = null + "coll": integer, - = null } ] """ @@ -290,7 +301,8 @@ def process(proc_data): # integer changes int_list = ['recv_q', 'send_q', 'pid', 'refcnt', 'inode', 'unit', 'vendor', 'class', 'osx_flags', 'subcla', 'pcbcount', 'rcvbuf', 'sndbuf', 'rxbytes', 'txbytes', - 'route_refs', 'use', 'mtu', 'mss', 'window', 'irtt', 'metric'] + 'route_refs', 'use', 'mtu', 'mss', 'window', 'irtt', 'metric', 'ipkts', + 'ierrs', 'opkts', 'oerrs', 'coll'] for key in int_list: if key in entry: try: @@ -345,7 +357,8 @@ def parse(data, raw=False, quiet=False): or cleandata[0] == 'Registered kernel control modules' \ or cleandata[0] == 'Active kernel event sockets' \ or cleandata[0] == 'Active kernel control sockets' \ - or cleandata[0] == 'Routing tables': + or cleandata[0] == 'Routing tables' \ + or cleandata[0] == 'Name Mtu Network Address Ipkts Ierrs Opkts Oerrs Coll': import jc.parsers.netstat_osx raw_output = jc.parsers.netstat_osx.parse(cleandata) diff --git a/jc/parsers/netstat_osx.py b/jc/parsers/netstat_osx.py index 634880bd..1bd17bef 100644 --- a/jc/parsers/netstat_osx.py +++ b/jc/parsers/netstat_osx.py @@ -23,6 +23,14 @@ def normalize_route_headers(header): return header +def normalize_interface_headers(header): + header = header.lower() + header = header.replace('name', 'iface') + header = header.replace('-', '_') + + return header + + def parse_item(headers, entry, kind): entry = entry.split(maxsplit=len(headers) - 1) @@ -32,6 +40,10 @@ def parse_item(headers, entry, kind): if kind == 'network' and 'socket' in headers and 'udp' in str(entry): entry.insert(7, None) + # fixup interface records with no address field entry + if kind == 'interface' and len(entry) == 8: + entry.insert(3, None) + output_line = dict(zip(headers, entry)) output_line['kind'] = kind @@ -97,6 +109,7 @@ def parse(cleandata): active_kernel_event = False active_kernel_control = False routing_table = False + interface_table = False for line in cleandata: @@ -108,6 +121,7 @@ def parse(cleandata): active_kernel_event = False active_kernel_control = False routing_table = False + interface_table = False continue if line.startswith('Active Multipath Internet connections'): @@ -118,6 +132,7 @@ def parse(cleandata): active_kernel_event = False active_kernel_control = False routing_table = False + interface_table = False continue if line.startswith('Active LOCAL (UNIX) domain sockets'): @@ -128,6 +143,7 @@ def parse(cleandata): active_kernel_event = False active_kernel_control = False routing_table = False + interface_table = False continue if line.startswith('Registered kernel control modules'): @@ -138,6 +154,7 @@ def parse(cleandata): active_kernel_event = False active_kernel_control = False routing_table = False + interface_table = False continue if line.startswith('Active kernel event sockets'): @@ -148,6 +165,7 @@ def parse(cleandata): active_kernel_event = True active_kernel_control = False routing_table = False + interface_table = False continue if line.startswith('Active kernel control sockets'): @@ -158,6 +176,7 @@ def parse(cleandata): active_kernel_event = False active_kernel_control = True routing_table = False + interface_table = False continue if line.startswith('Routing tables'): @@ -168,8 +187,20 @@ def parse(cleandata): active_kernel_event = False active_kernel_control = False routing_table = True + interface_table = False continue + if line.startswith('Name Mtu '): + network = False + multipath = False + socket = False + reg_kernel_control = False + active_kernel_event = False + active_kernel_control = False + routing_table = False + interface_table = True + # don't continue since there is no real header row for this table + # get headers if network and (line.startswith('Socket ') or line.startswith('Proto ')): header_text = normalize_headers(line) @@ -201,6 +232,11 @@ def parse(cleandata): headers = header_text.split() continue + if interface_table and line.startswith('Name Mtu '): + header_text = normalize_interface_headers(line) + headers = header_text.split() + continue + # get items if network: raw_output.append(parse_item(headers, line, 'network')) @@ -230,4 +266,8 @@ def parse(cleandata): raw_output.append(parse_item(headers, line, 'route')) continue + if interface_table: + raw_output.append(parse_item(headers, line, 'interface')) + continue + return parse_post(raw_output) diff --git a/tests/fixtures/osx-10.14.6/netstat-i.out b/tests/fixtures/osx-10.14.6/netstat-i.out new file mode 100644 index 00000000..c91f4a93 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/netstat-i.out @@ -0,0 +1,43 @@ +Name Mtu Network Address Ipkts Ierrs Opkts Oerrs Coll +lo0 16384 1580150 0 1580150 0 0 +lo0 16384 127 localhost 1580150 - 1580150 - - +lo0 16384 localhost ::1 1580150 - 1580150 - - +lo0 16384 fe80::1%lo0 fe80:1::1 1580150 - 1580150 - - +gif0* 1280 0 0 0 0 0 +stf0* 1280 0 0 0 0 0 +VHC12 0 0 0 0 0 0 +XHC1* 0 0 0 0 0 0 +XHC0* 0 0 0 0 0 0 +XHC20 0 0 0 0 0 0 +en5 1500 ac:de:48:00:11:22 140215 0 137522 721 0 +en5 1500 fe80::aede: fe80:8::aede:48ff 140215 - 137522 - - +ap1* 1500 a6:83:e7:2d:62:8f 0 0 0 0 0 +en0 1500 a4:83:e7:2d:62:8f 23300545 0 26448755 464 0 +en0 1500 kbrazil-mac fe80:a::cf9:ca6f: 23300545 - 26448755 - - +en0 1500 192.168.1 kbrazil-mac.att 23300545 - 26448755 - - +en0 1500 kbrazil-mac 2600:1700:bab0:d4 23300545 - 26448755 - - +en0 1500 kbrazil-mac 2600:1700:bab0:d4 23300545 - 26448755 - - +en0 1500 kbrazil-mac 2600:1700:bab0:d4 23300545 - 26448755 - - +en0 1500 kbrazil-mac 2600:1700:bab0:d4 23300545 - 26448755 - - +en0 1500 kbrazil-mac 2600:1700:bab0:d4 23300545 - 26448755 - - +en0 1500 kbrazil-mac 2600:1700:bab0:d4 23300545 - 26448755 - - +p2p0 2304 06:83:e7:2d:62:8f 0 0 0 0 0 +awdl0 1484 b6:1f:b7:57:a5:4f 0 0 5097 0 0 +awdl0 1484 fe80::b41f: fe80:c::b41f:b7ff 0 - 5097 - - +en1 1500 ea:00:fd:08:57:01 0 0 0 0 0 +en2 1500 ea:00:fd:08:57:00 0 0 0 0 0 +en3 1500 ea:00:fd:08:57:05 0 0 0 0 0 +en4 1500 ea:00:fd:08:57:04 0 0 0 0 0 +bridg 1500 ea:00:fd:08:57:01 0 0 0 0 0 +utun0 2000 0 0 159 0 0 +utun0 2000 kbrazil-mac fe80:12::30fe:52f 0 - 159 - - +utun1 1380 0 0 2 0 0 +utun1 1380 kbrazil-mac fe80:15::aaf6:178 0 - 2 - - +utun2 1380 0 0 2 0 0 +utun2 1380 kbrazil-mac fe80:16::ce02:efd 0 - 2 - - +utun3 1380 0 0 2 0 0 +utun3 1380 kbrazil-mac fe80:17::1188:a03 0 - 2 - - +vmnet 1500 00:50:56:c0:00:01 0 0 0 0 0 +vmnet 1500 192.168.101 192.168.101.1 0 - 0 - - +vmnet 1500 00:50:56:c0:00:08 1853 0 0 0 0 +vmnet 1500 192.168.71 192.168.71.1 1853 - 0 - - From 04f92cd1330759e4bad1c0304b9e1c28e8d32d59 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 14:04:11 -0700 Subject: [PATCH 47/52] add linux support for netstat -i --- README.md | 32 ++++++++++++++++ docs/parsers/netstat.md | 50 ++++++++++++++++++++++++- jc/parsers/netstat.py | 44 ++++++++++++++++++++-- jc/parsers/netstat_linux.py | 39 +++++++++++++++++++ tests/fixtures/centos-7.7/netstat-i.out | 5 +++ 5 files changed, 166 insertions(+), 4 deletions(-) create mode 100644 tests/fixtures/centos-7.7/netstat-i.out diff --git a/README.md b/README.md index c9881a07..4096cadd 100644 --- a/README.md +++ b/README.md @@ -1704,6 +1704,38 @@ $ netstat -r | jc --netstat -p # or: jc -p netstat -r "kind": "route" } ] + +$ netstat -i | jc --netstat -p # or: jc -p netstat -i +[ + { + "iface": "ens33", + "mtu": 1500, + "rx_ok": 476, + "rx_err": 0, + "rx_drp": 0, + "rx_ovr": 0, + "tx_ok": 312, + "tx_err": 0, + "tx_drp": 0, + "tx_ovr": 0, + "flg": "BMRU", + "kind": "interface" + }, + { + "iface": "lo", + "mtu": 65536, + "rx_ok": 0, + "rx_err": 0, + "rx_drp": 0, + "rx_ovr": 0, + "tx_ok": 0, + "tx_err": 0, + "tx_drp": 0, + "tx_ovr": 0, + "flg": "LRU", + "kind": "interface" + } +] ``` ### ntpq ``` diff --git a/docs/parsers/netstat.md b/docs/parsers/netstat.md index cc5e8ab1..ad4f787f 100644 --- a/docs/parsers/netstat.md +++ b/docs/parsers/netstat.md @@ -203,6 +203,38 @@ Examples: } ] + $ netstat -i | jc --netstat -p + [ + { + "iface": "ens33", + "mtu": 1500, + "rx_ok": 476, + "rx_err": 0, + "rx_drp": 0, + "rx_ovr": 0, + "tx_ok": 312, + "tx_err": 0, + "tx_drp": 0, + "tx_ovr": 0, + "flg": "BMRU", + "kind": "interface" + }, + { + "iface": "lo", + "mtu": 65536, + "rx_ok": 0, + "rx_err": 0, + "rx_drp": 0, + "rx_ovr": 0, + "tx_ok": 0, + "tx_err": 0, + "tx_drp": 0, + "tx_ovr": 0, + "flg": "LRU", + "kind": "interface" + } + ] + ## info ```python info(self, /, *args, **kwargs) @@ -275,7 +307,23 @@ Returns: "window": integer, "irtt": integer, "iface": string, - "metric": integer + "metric": integer, + "network": string, + "address": string, + "ipkts": integer, - = null + "ierrs": integer, - = null + "opkts": integer, - = null + "oerrs": integer, - = null + "coll": integer, - = null + "rx_ok": integer, + "rx_err": integer, + "rx_drp": integer, + "rx_ovr": integer, + "tx_ok": integer, + "tx_err": integer, + "tx_drp": integer, + "tx_ovr": integer, + "flg": string } ] diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index 5acb123b..75f1edcd 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -203,7 +203,36 @@ Examples: ] $ netstat -i | jc --netstat -p - + [ + { + "iface": "ens33", + "mtu": 1500, + "rx_ok": 476, + "rx_err": 0, + "rx_drp": 0, + "rx_ovr": 0, + "tx_ok": 312, + "tx_err": 0, + "tx_drp": 0, + "tx_ovr": 0, + "flg": "BMRU", + "kind": "interface" + }, + { + "iface": "lo", + "mtu": 65536, + "rx_ok": 0, + "rx_err": 0, + "rx_drp": 0, + "rx_ovr": 0, + "tx_ok": 0, + "tx_err": 0, + "tx_drp": 0, + "tx_ovr": 0, + "flg": "LRU", + "kind": "interface" + } + ] """ @@ -286,7 +315,6 @@ def process(proc_data): "irtt": integer, "iface": string, "metric": integer, - "network": string, "address": string, "ipkts": integer, - = null @@ -294,6 +322,15 @@ def process(proc_data): "opkts": integer, - = null "oerrs": integer, - = null "coll": integer, - = null + "rx_ok": integer, + "rx_err": integer, + "rx_drp": integer, + "rx_ovr": integer, + "tx_ok": integer, + "tx_err": integer, + "tx_drp": integer, + "tx_ovr": integer, + "flg": string } ] """ @@ -302,7 +339,8 @@ def process(proc_data): int_list = ['recv_q', 'send_q', 'pid', 'refcnt', 'inode', 'unit', 'vendor', 'class', 'osx_flags', 'subcla', 'pcbcount', 'rcvbuf', 'sndbuf', 'rxbytes', 'txbytes', 'route_refs', 'use', 'mtu', 'mss', 'window', 'irtt', 'metric', 'ipkts', - 'ierrs', 'opkts', 'oerrs', 'coll'] + 'ierrs', 'opkts', 'oerrs', 'coll', 'rx_ok', 'rx_err', 'rx_drp', 'rx_ovr', + 'tx_ok', 'tx_err', 'tx_drp', 'tx_ovr'] for key in int_list: if key in entry: try: diff --git a/jc/parsers/netstat_linux.py b/jc/parsers/netstat_linux.py index d090731e..92e0ffa3 100644 --- a/jc/parsers/netstat_linux.py +++ b/jc/parsers/netstat_linux.py @@ -23,6 +23,13 @@ def normalize_route_headers(header): return header +def normalize_interface_headers(header): + header = header.lower() + header = header.replace('-', '_') + + return header + + def parse_network(headers, entry): # Count words in header # if len of line is one less than len of header, then insert None in field 5 @@ -79,6 +86,14 @@ def parse_route(headers, entry): return output_line +def parse_interface(headers, entry): + entry = entry.split(maxsplit=len(headers) - 1) + output_line = dict(zip(headers, entry)) + output_line['kind'] = 'interface' + + return output_line + + def parse_post(raw_data): # clean up trailing whitespace on each item in each entry # flags --- = null @@ -157,6 +172,7 @@ def parse(cleandata): socket = False bluetooth = False routing_table = False + interface_table = False headers = None for line in cleandata: @@ -166,6 +182,7 @@ def parse(cleandata): socket = False bluetooth = False routing_table = False + interface_table = False continue if line.startswith('Active UNIX'): @@ -173,6 +190,7 @@ def parse(cleandata): socket = True bluetooth = False routing_table = False + interface_table = False continue if line.startswith('Active Bluetooth'): @@ -180,6 +198,7 @@ def parse(cleandata): socket = False bluetooth = True routing_table = False + interface_table = False continue if line.startswith('Kernel IP routing table'): @@ -187,8 +206,18 @@ def parse(cleandata): socket = False bluetooth = False routing_table = True + interface_table = False continue + if line.startswith('Kernel Interface table'): + network = False + socket = False + bluetooth = False + routing_table = False + interface_table = True + continue + + # get headers if line.startswith('Proto'): header_text = normalize_headers(line) headers = header_text.split() @@ -199,6 +228,12 @@ def parse(cleandata): headers = header_text.split() continue + if line.startswith('Iface '): + header_text = normalize_interface_headers(line) + headers = header_text.split() + continue + + # parse items if network: raw_output.append(parse_network(headers, line)) continue @@ -215,4 +250,8 @@ def parse(cleandata): raw_output.append(parse_route(headers, line)) continue + if interface_table: + raw_output.append(parse_interface(headers, line)) + continue + return parse_post(raw_output) diff --git a/tests/fixtures/centos-7.7/netstat-i.out b/tests/fixtures/centos-7.7/netstat-i.out new file mode 100644 index 00000000..1ecc33ad --- /dev/null +++ b/tests/fixtures/centos-7.7/netstat-i.out @@ -0,0 +1,5 @@ +Kernel Interface table +Iface MTU RX-OK RX-ERR RX-DRP RX-OVR TX-OK TX-ERR TX-DRP TX-OVR Flg +docker0 1500 0 0 0 0 0 0 0 0 BMU +ens33 1500 476 0 0 0 312 0 0 0 BMRU +lo 65536 0 0 0 0 0 0 0 0 LRU From 8dd9a9f9cbc70a19176f909f6ac76b2bcf670736 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 15:12:10 -0700 Subject: [PATCH 48/52] add netstat -i tests --- tests/fixtures/centos-7.7/netstat-i.json | 1 + tests/fixtures/osx-10.14.6/netstat-i.json | 1 + tests/fixtures/ubuntu-18.04/netstat-i.json | 1 + tests/fixtures/ubuntu-18.04/netstat-i.out | 4 +++ tests/test_netstat.py | 38 ++++++++++++++++++++++ 5 files changed, 45 insertions(+) create mode 100644 tests/fixtures/centos-7.7/netstat-i.json create mode 100644 tests/fixtures/osx-10.14.6/netstat-i.json create mode 100644 tests/fixtures/ubuntu-18.04/netstat-i.json create mode 100644 tests/fixtures/ubuntu-18.04/netstat-i.out diff --git a/tests/fixtures/centos-7.7/netstat-i.json b/tests/fixtures/centos-7.7/netstat-i.json new file mode 100644 index 00000000..0308b011 --- /dev/null +++ b/tests/fixtures/centos-7.7/netstat-i.json @@ -0,0 +1 @@ +[{"iface": "docker0", "mtu": 1500, "rx_ok": 0, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 0, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "BMU", "kind": "interface"}, {"iface": "ens33", "mtu": 1500, "rx_ok": 476, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 312, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "BMRU", "kind": "interface"}, {"iface": "lo", "mtu": 65536, "rx_ok": 0, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 0, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "LRU", "kind": "interface"}] diff --git a/tests/fixtures/osx-10.14.6/netstat-i.json b/tests/fixtures/osx-10.14.6/netstat-i.json new file mode 100644 index 00000000..c152e526 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/netstat-i.json @@ -0,0 +1 @@ +[{"iface": "lo0", "mtu": 16384, "network": "", "address": null, "ipkts": 1580150, "ierrs": 0, "opkts": 1580150, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "lo0", "mtu": 16384, "network": "127", "address": "localhost", "ipkts": 1580150, "ierrs": null, "opkts": 1580150, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "lo0", "mtu": 16384, "network": "localhost", "address": "::1", "ipkts": 1580150, "ierrs": null, "opkts": 1580150, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "lo0", "mtu": 16384, "network": "fe80::1%lo0", "address": "fe80:1::1", "ipkts": 1580150, "ierrs": null, "opkts": 1580150, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "gif0*", "mtu": 1280, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "stf0*", "mtu": 1280, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "VHC12", "mtu": 0, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "XHC1*", "mtu": 0, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "XHC0*", "mtu": 0, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "XHC20", "mtu": 0, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "en5", "mtu": 1500, "network": "", "address": "ac:de:48:00:11:22", "ipkts": 140215, "ierrs": 0, "opkts": 137522, "oerrs": 721, "coll": 0, "kind": "interface"}, {"iface": "en5", "mtu": 1500, "network": "fe80::aede:", "address": "fe80:8::aede:48ff", "ipkts": 140215, "ierrs": null, "opkts": 137522, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "ap1*", "mtu": 1500, "network": "", "address": "a6:83:e7:2d:62:8f", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "", "address": "a4:83:e7:2d:62:8f", "ipkts": 23300545, "ierrs": 0, "opkts": 26448755, "oerrs": 464, "coll": 0, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "fe80:a::cf9:ca6f:", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "192.168.1", "address": "kbrazil-mac.att", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "2600:1700:bab0:d4", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "2600:1700:bab0:d4", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "2600:1700:bab0:d4", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "2600:1700:bab0:d4", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "2600:1700:bab0:d4", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "2600:1700:bab0:d4", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "p2p0", "mtu": 2304, "network": "", "address": "06:83:e7:2d:62:8f", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "awdl0", "mtu": 1484, "network": "", "address": "b6:1f:b7:57:a5:4f", "ipkts": 0, "ierrs": 0, "opkts": 5097, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "awdl0", "mtu": 1484, "network": "fe80::b41f:", "address": "fe80:c::b41f:b7ff", "ipkts": 0, "ierrs": null, "opkts": 5097, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en1", "mtu": 1500, "network": "", "address": "ea:00:fd:08:57:01", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "en2", "mtu": 1500, "network": "", "address": "ea:00:fd:08:57:00", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "en3", "mtu": 1500, "network": "", "address": "ea:00:fd:08:57:05", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "en4", "mtu": 1500, "network": "", "address": "ea:00:fd:08:57:04", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "bridg", "mtu": 1500, "network": "", "address": "ea:00:fd:08:57:01", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "utun0", "mtu": 2000, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 159, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "utun0", "mtu": 2000, "network": "kbrazil-mac", "address": "fe80:12::30fe:52f", "ipkts": 0, "ierrs": null, "opkts": 159, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "utun1", "mtu": 1380, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 2, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "utun1", "mtu": 1380, "network": "kbrazil-mac", "address": "fe80:15::aaf6:178", "ipkts": 0, "ierrs": null, "opkts": 2, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "utun2", "mtu": 1380, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 2, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "utun2", "mtu": 1380, "network": "kbrazil-mac", "address": "fe80:16::ce02:efd", "ipkts": 0, "ierrs": null, "opkts": 2, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "utun3", "mtu": 1380, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 2, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "utun3", "mtu": 1380, "network": "kbrazil-mac", "address": "fe80:17::1188:a03", "ipkts": 0, "ierrs": null, "opkts": 2, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "vmnet", "mtu": 1500, "network": "", "address": "00:50:56:c0:00:01", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "vmnet", "mtu": 1500, "network": "192.168.101", "address": "192.168.101.1", "ipkts": 0, "ierrs": null, "opkts": 0, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "vmnet", "mtu": 1500, "network": "", "address": "00:50:56:c0:00:08", "ipkts": 1853, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "vmnet", "mtu": 1500, "network": "192.168.71", "address": "192.168.71.1", "ipkts": 1853, "ierrs": null, "opkts": 0, "oerrs": null, "coll": null, "kind": "interface"}] diff --git a/tests/fixtures/ubuntu-18.04/netstat-i.json b/tests/fixtures/ubuntu-18.04/netstat-i.json new file mode 100644 index 00000000..d006c394 --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/netstat-i.json @@ -0,0 +1 @@ +[{"iface": "ens33", "mtu": 1500, "rx_ok": 245, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 197, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "BMRU", "kind": "interface"}, {"iface": "lo", "mtu": 65536, "rx_ok": 94, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 94, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "LRU", "kind": "interface"}] diff --git a/tests/fixtures/ubuntu-18.04/netstat-i.out b/tests/fixtures/ubuntu-18.04/netstat-i.out new file mode 100644 index 00000000..dd692429 --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/netstat-i.out @@ -0,0 +1,4 @@ +Kernel Interface table +Iface MTU RX-OK RX-ERR RX-DRP RX-OVR TX-OK TX-ERR TX-DRP TX-OVR Flg +ens33 1500 245 0 0 0 197 0 0 0 BMRU +lo 65536 94 0 0 0 94 0 0 0 LRU diff --git a/tests/test_netstat.py b/tests/test_netstat.py index 82b201df..05f7124c 100644 --- a/tests/test_netstat.py +++ b/tests/test_netstat.py @@ -81,6 +81,16 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-rnl.out'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_rnl = f.read() + # netstat -i + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-i.out'), 'r', encoding='utf-8') as f: + self.centos_7_7_netstat_i = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-i.out'), 'r', encoding='utf-8') as f: + self.ubuntu_18_4_netstat_i = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-i.out'), 'r', encoding='utf-8') as f: + self.osx_14_6_netstat_i = f.read() + # # output # @@ -153,6 +163,16 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-rnl.json'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_rnl_json = json.loads(f.read()) + # netstat -i + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-i.json'), 'r', encoding='utf-8') as f: + self.centos_7_7_netstat_i_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-i.json'), 'r', encoding='utf-8') as f: + self.ubuntu_18_4_netstat_i_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-i.json'), 'r', encoding='utf-8') as f: + self.osx_14_6_netstat_i_json = json.loads(f.read()) + def test_netstat_centos_7_7(self): """ Test 'netstat' on Centos 7.7 @@ -285,6 +305,24 @@ class MyTests(unittest.TestCase): """ self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat_rnl, quiet=True), self.osx_14_6_netstat_rnl_json) + def test_netstat_i_centos_7_7(self): + """ + Test 'netstat -i' on Centos 7.7 + """ + self.assertEqual(jc.parsers.netstat.parse(self.centos_7_7_netstat_i, quiet=True), self.centos_7_7_netstat_i_json) + + def test_netstat_i_ubuntu_18_4(self): + """ + Test 'netstat -i' on Ubuntu 18.4 + """ + self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_i, quiet=True), self.ubuntu_18_4_netstat_i_json) + + def test_netstat_i_osx_16_4(self): + """ + Test 'netstat -i' on OSX 16.4 + """ + self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat_i, quiet=True), self.osx_14_6_netstat_i_json) + if __name__ == '__main__': unittest.main() From ede21bca13c4b46899721f01d979c8b063f861a3 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 16:05:04 -0700 Subject: [PATCH 49/52] add OSX support for stat --- jc/parsers/stat.py | 168 +++++++++++++++++++++++++++------------------ 1 file changed, 100 insertions(+), 68 deletions(-) diff --git a/jc/parsers/stat.py b/jc/parsers/stat.py index 7961b592..6a22e104 100644 --- a/jc/parsers/stat.py +++ b/jc/parsers/stat.py @@ -6,7 +6,7 @@ Usage: Compatibility: - 'linux' + 'linux', 'darwin' Examples: @@ -100,17 +100,18 @@ Examples: .. ] """ +import shlex import jc.utils class info(): - version = '1.1' + version = '1.2' description = 'stat command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd - compatible = ['linux'] + compatible = ['linux', 'darwin'] magic_commands = ['stat'] @@ -149,12 +150,16 @@ def process(proc_data): "access_time": string, # - = null "modify_time": string, # - = null "change_time": string, # - = null - "birth_time": string # - = null + "birth_time": string, # - = null + "device": integer, + "rdev": integer, + "block_size": integer, + "osx_flags": integer } ] """ for entry in proc_data: - int_list = ['size', 'blocks', 'io_blocks', 'inode', 'links', 'uid', 'gid'] + int_list = ['size', 'blocks', 'io_blocks', 'inode', 'links', 'uid', 'gid', 'device', 'rdev', 'block_size', 'osx_flags'] for key in int_list: if key in entry: try: @@ -198,81 +203,108 @@ def parse(data, raw=False, quiet=False): cleandata = list(filter(None, cleandata)) if cleandata: - # stats output contains 8 lines - for line in cleandata: - # line #1 - if line.find('File:') == 2: - output_line = {} - line_list = line.split(maxsplit=1) - output_line['file'] = line_list[1] + # linux output + if cleandata[0].startswith(' File: '): + # stats output contains 8 lines + for line in cleandata: - # populate link_to field if -> found - if ' -> ' in output_line['file']: - filename = output_line['file'].split(' -> ')[0].strip('\u2018').rstrip('\u2019') - link = output_line['file'].split(' -> ')[1].strip('\u2018').rstrip('\u2019') - output_line['file'] = filename - output_line['link_to'] = link - else: - filename = output_line['file'].split(' -> ')[0].strip('\u2018').rstrip('\u2019') - output_line['file'] = filename + # line #1 + if line.find('File:') == 2: + output_line = {} + line_list = line.split(maxsplit=1) + output_line['file'] = line_list[1] - continue + # populate link_to field if -> found + if ' -> ' in output_line['file']: + filename = output_line['file'].split(' -> ')[0].strip('\u2018').rstrip('\u2019') + link = output_line['file'].split(' -> ')[1].strip('\u2018').rstrip('\u2019') + output_line['file'] = filename + output_line['link_to'] = link + else: + filename = output_line['file'].split(' -> ')[0].strip('\u2018').rstrip('\u2019') + output_line['file'] = filename - # line #2 - if line.find('Size:') == 2: - line_list = line.split(maxsplit=7) - output_line['size'] = line_list[1] - output_line['blocks'] = line_list[3] - output_line['io_blocks'] = line_list[6] - output_line['type'] = line_list[7] - continue + continue - # line #3 - if line.startswith('Device:'): - line_list = line.split() - output_line['device'] = line_list[1] - output_line['inode'] = line_list[3] - output_line['links'] = line_list[5] - continue + # line #2 + if line.find('Size:') == 2: + line_list = line.split(maxsplit=7) + output_line['size'] = line_list[1] + output_line['blocks'] = line_list[3] + output_line['io_blocks'] = line_list[6] + output_line['type'] = line_list[7] + continue - # line #4 - if line.startswith('Access: ('): - line = line.replace('(', ' ').replace(')', ' ').replace('/', ' ') - line_list = line.split() - output_line['access'] = line_list[1] - output_line['flags'] = line_list[2] - output_line['uid'] = line_list[4] - output_line['user'] = line_list[5] - output_line['gid'] = line_list[7] - output_line['group'] = line_list[8] - continue + # line #3 + if line.startswith('Device:'): + line_list = line.split() + output_line['device'] = line_list[1] + output_line['inode'] = line_list[3] + output_line['links'] = line_list[5] + continue - # line #5 - if line.startswith('Access: 2'): - line_list = line.split(maxsplit=1) - output_line['access_time'] = line_list[1] - continue + # line #4 + if line.startswith('Access: ('): + line = line.replace('(', ' ').replace(')', ' ').replace('/', ' ') + line_list = line.split() + output_line['access'] = line_list[1] + output_line['flags'] = line_list[2] + output_line['uid'] = line_list[4] + output_line['user'] = line_list[5] + output_line['gid'] = line_list[7] + output_line['group'] = line_list[8] + continue - # line #6 - if line.startswith('Modify:'): - line_list = line.split(maxsplit=1) - output_line['modify_time'] = line_list[1] - continue + # line #5 + if line.startswith('Access: 2'): + line_list = line.split(maxsplit=1) + output_line['access_time'] = line_list[1] + continue - # line #7 - if line.startswith('Change:'): - line_list = line.split(maxsplit=1) - output_line['change_time'] = line_list[1] - continue + # line #6 + if line.startswith('Modify:'): + line_list = line.split(maxsplit=1) + output_line['modify_time'] = line_list[1] + continue - # line #8 - if line.find('Birth:') == 1: - line_list = line.split(maxsplit=1) - output_line['birth_time'] = line_list[1] + # line #7 + if line.startswith('Change:'): + line_list = line.split(maxsplit=1) + output_line['change_time'] = line_list[1] + continue + + # line #8 + if line.find('Birth:') == 1: + line_list = line.split(maxsplit=1) + output_line['birth_time'] = line_list[1] + + raw_output.append(output_line) + continue + + # OSX output + else: + for line in cleandata: + value = shlex.split(line) + output_line = { + 'device': value[0], + 'inode': value[1], + 'flags': value[2], + 'links': value[3], + 'user': value[4], + 'group': value[5], + 'rdev': value[6], + 'size': value[7], + 'access_time': value[8], + 'modify_time': value[9], + 'change_time': value[10], + 'birth_time': value[11], + 'block_size': value[12], + 'blocks': value[13], + 'osx_flags': value[14] + } raw_output.append(output_line) - continue if raw: return raw_output From c1f6f2b9508e558ab88b4a0a61e93a6cf5460bea Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 16:21:40 -0700 Subject: [PATCH 50/52] osx fixes and tests --- docs/parsers/stat.md | 8 ++- jc/parsers/stat.py | 5 +- tests/fixtures/osx-10.14.6/stat.json | 1 + tests/fixtures/osx-10.14.6/stat.out | 94 ++++++++++++++++++++++++++++ tests/test_stat.py | 12 ++++ 5 files changed, 116 insertions(+), 4 deletions(-) create mode 100644 tests/fixtures/osx-10.14.6/stat.json create mode 100644 tests/fixtures/osx-10.14.6/stat.out diff --git a/docs/parsers/stat.md b/docs/parsers/stat.md index 9b97e41b..b9909009 100644 --- a/docs/parsers/stat.md +++ b/docs/parsers/stat.md @@ -7,7 +7,7 @@ Usage: Compatibility: - 'linux' + 'linux', 'darwin' Examples: @@ -141,7 +141,11 @@ Returns: "access_time": string, # - = null "modify_time": string, # - = null "change_time": string, # - = null - "birth_time": string # - = null + "birth_time": string, # - = null + "osx_device": integer, + "rdev": integer, + "block_size": integer, + "osx_flags": integer } ] diff --git a/jc/parsers/stat.py b/jc/parsers/stat.py index 6a22e104..981711d6 100644 --- a/jc/parsers/stat.py +++ b/jc/parsers/stat.py @@ -151,7 +151,7 @@ def process(proc_data): "modify_time": string, # - = null "change_time": string, # - = null "birth_time": string, # - = null - "device": integer, + "osx_device": integer, "rdev": integer, "block_size": integer, "osx_flags": integer @@ -159,7 +159,7 @@ def process(proc_data): ] """ for entry in proc_data: - int_list = ['size', 'blocks', 'io_blocks', 'inode', 'links', 'uid', 'gid', 'device', 'rdev', 'block_size', 'osx_flags'] + int_list = ['size', 'blocks', 'io_blocks', 'inode', 'links', 'uid', 'gid', 'osx_device', 'rdev', 'block_size', 'osx_flags'] for key in int_list: if key in entry: try: @@ -287,6 +287,7 @@ def parse(data, raw=False, quiet=False): for line in cleandata: value = shlex.split(line) output_line = { + 'file': value[15], 'device': value[0], 'inode': value[1], 'flags': value[2], diff --git a/tests/fixtures/osx-10.14.6/stat.json b/tests/fixtures/osx-10.14.6/stat.json new file mode 100644 index 00000000..a8c89a86 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/stat.json @@ -0,0 +1 @@ +[{"file": "airport-I.json", "device": "16777221", "inode": 73839387, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 307, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 11 13:47:39 2020", "change_time": "Mar 11 13:47:39 2020", "birth_time": "Mar 11 13:47:39 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "airport-I.out", "device": "16777221", "inode": 73839388, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 348, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 11 13:47:39 2020", "change_time": "Mar 11 13:47:39 2020", "birth_time": "Mar 11 13:47:39 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "airport-s.json", "device": "16777221", "inode": 73839389, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 2152, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 11 13:47:39 2020", "change_time": "Mar 11 13:47:39 2020", "birth_time": "Mar 11 13:47:39 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "airport-s.out", "device": "16777221", "inode": 73839390, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 1423, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 11 13:47:39 2020", "change_time": "Mar 11 13:47:39 2020", "birth_time": "Mar 11 13:47:39 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "arp-a.json", "device": "16777221", "inode": 67165840, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 1541, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "arp-a.out", "device": "16777221", "inode": 67165841, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 968, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "arp-a2.json", "device": "16777221", "inode": 73923691, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 2582, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 12 17:09:29 2020", "change_time": "Mar 12 17:09:29 2020", "birth_time": "Mar 12 17:09:29 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "arp-a2.out", "device": "16777221", "inode": 73923692, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 1597, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 12 17:09:29 2020", "change_time": "Mar 12 17:09:29 2020", "birth_time": "Mar 12 17:09:29 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "df-h.json", "device": "16777221", "inode": 67165842, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 1686, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "df-h.out", "device": "16777221", "inode": 67165843, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 1276, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "df.json", "device": "16777221", "inode": 67165844, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 1764, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "df.out", "device": "16777221", "inode": 67165845, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 1384, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "dig-aaaa.json", "device": "16777221", "inode": 67165846, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 438, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "dig-aaaa.out", "device": "16777221", "inode": 67165847, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 536, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "dig-axfr.json", "device": "16777221", "inode": 74782481, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 5984, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 26 17:16:11 2020", "change_time": "Mar 26 17:16:11 2020", "birth_time": "Mar 26 17:16:11 2020", "block_size": 4096, "blocks": 16, "osx_flags": 0}, {"file": "dig-axfr.out", "device": "16777221", "inode": 74782482, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 3511, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 26 17:16:11 2020", "change_time": "Mar 26 17:16:11 2020", "birth_time": "Mar 26 17:16:11 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "dig-x.json", "device": "16777221", "inode": 67165848, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 442, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "dig-x.out", "device": "16777221", "inode": 67165849, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 529, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "dig.json", "device": "16777221", "inode": 67165850, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 1266, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "dig.out", "device": "16777221", "inode": 67165851, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 1182, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "du.json", "device": "16777221", "inode": 67165852, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 295780, "access_time": "May 22 16:15:02 2020", "modify_time": "Apr 20 16:30:21 2020", "change_time": "Apr 20 16:30:21 2020", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 584, "osx_flags": 0}, {"file": "du.out", "device": "16777221", "inode": 67165853, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 221925, "access_time": "May 22 16:15:02 2020", "modify_time": "Apr 20 16:29:31 2020", "change_time": "Apr 20 16:29:31 2020", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 512, "osx_flags": 0}, {"file": "file.json", "device": "16777221", "inode": 73839391, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 3589, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 11 13:47:39 2020", "change_time": "Mar 11 13:47:39 2020", "birth_time": "Mar 11 13:47:39 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "file.out", "device": "16777221", "inode": 73839392, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 2890, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 11 13:47:39 2020", "change_time": "Mar 11 13:47:39 2020", "birth_time": "Mar 11 13:47:39 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "file2.json", "device": "16777221", "inode": 73878467, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 4715, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 12 08:24:33 2020", "change_time": "Mar 12 08:24:33 2020", "birth_time": "Mar 12 08:24:33 2020", "block_size": 4096, "blocks": 16, "osx_flags": 0}, {"file": "file2.out", "device": "16777221", "inode": 73878468, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 4780, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 12 08:24:33 2020", "change_time": "Mar 12 08:24:33 2020", "birth_time": "Mar 12 08:24:33 2020", "block_size": 4096, "blocks": 16, "osx_flags": 0}, {"file": "group.json", "device": "16777221", "inode": 72981498, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 9646, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 3 11:47:13 2020", "change_time": "Mar 3 11:47:13 2020", "birth_time": "Mar 3 11:47:13 2020", "block_size": 4096, "blocks": 24, "osx_flags": 0}, {"file": "group.out", "device": "16777221", "inode": 72981499, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 2823, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 3 11:47:13 2020", "change_time": "Mar 3 11:47:13 2020", "birth_time": "Mar 3 11:47:13 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "id.json", "device": "16777221", "inode": 71197409, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 759, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 5 17:00:38 2020", "change_time": "Feb 5 17:00:38 2020", "birth_time": "Feb 5 17:00:38 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "id.out", "device": "16777221", "inode": 71197410, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 386, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 5 17:00:38 2020", "change_time": "Feb 5 17:00:38 2020", "birth_time": "Feb 5 17:00:38 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ifconfig.json", "device": "16777221", "inode": 67165854, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 10823, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 24, "osx_flags": 0}, {"file": "ifconfig.out", "device": "16777221", "inode": 67165855, "flags": "-rwxr-xr-x", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 3779, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ifconfig2.json", "device": "16777221", "inode": 67165856, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 11375, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 24, "osx_flags": 0}, {"file": "ifconfig2.out", "device": "16777221", "inode": 67165857, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 3979, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "last.json", "device": "16777221", "inode": 72981500, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 45274, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 3 11:47:13 2020", "change_time": "Mar 3 11:47:13 2020", "birth_time": "Mar 3 11:47:13 2020", "block_size": 4096, "blocks": 96, "osx_flags": 0}, {"file": "last.out", "device": "16777221", "inode": 72981501, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 25827, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 3 11:47:13 2020", "change_time": "Mar 3 11:47:13 2020", "birth_time": "Mar 3 11:47:13 2020", "block_size": 4096, "blocks": 56, "osx_flags": 0}, {"file": "ls-R-newlines.json", "device": "16777221", "inode": 72714988, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 852, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 27 11:25:11 2020", "change_time": "Feb 27 11:25:11 2020", "birth_time": "Feb 27 11:25:11 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ls-R-newlines.out", "device": "16777221", "inode": 72714989, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 278, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 27 11:25:11 2020", "change_time": "Feb 27 11:25:11 2020", "birth_time": "Feb 27 11:25:11 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ls-R.json", "device": "16777221", "inode": 72389524, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 469418, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 19 07:07:23 2020", "change_time": "Feb 19 07:07:23 2020", "birth_time": "Feb 19 07:07:23 2020", "block_size": 4096, "blocks": 920, "osx_flags": 0}, {"file": "ls-R.out", "device": "16777221", "inode": 72389525, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 133787, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 19 07:07:23 2020", "change_time": "Feb 19 07:07:23 2020", "birth_time": "Feb 19 07:07:23 2020", "block_size": 4096, "blocks": 264, "osx_flags": 0}, {"file": "ls-al.json", "device": "16777221", "inode": 67165858, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 4653, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 16, "osx_flags": 0}, {"file": "ls-al.out", "device": "16777221", "inode": 67165859, "flags": "-rwxr-xr-x", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 2111, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ls-alR.json", "device": "16777221", "inode": 72389526, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 959674, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 19 07:07:23 2020", "change_time": "Feb 19 07:07:23 2020", "birth_time": "Feb 19 07:07:23 2020", "block_size": 4096, "blocks": 1880, "osx_flags": 0}, {"file": "ls-alR.out", "device": "16777221", "inode": 72389527, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 364578, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 19 07:07:23 2020", "change_time": "Feb 19 07:07:23 2020", "birth_time": "Feb 19 07:07:23 2020", "block_size": 4096, "blocks": 720, "osx_flags": 0}, {"file": "ls-alh.json", "device": "16777221", "inode": 67165860, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 4684, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 16, "osx_flags": 0}, {"file": "ls-alh.out", "device": "16777221", "inode": 67165861, "flags": "-rwxr-xr-x", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 2111, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ls-glob.json", "device": "16777221", "inode": 81196212, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 91544, "access_time": "May 22 16:15:02 2020", "modify_time": "May 9 11:47:44 2020", "change_time": "May 9 11:47:44 2020", "birth_time": "May 9 11:47:44 2020", "block_size": 4096, "blocks": 184, "osx_flags": 0}, {"file": "ls-glob.out", "device": "16777221", "inode": 72389529, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 19369, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 19 07:07:23 2020", "change_time": "Feb 19 07:07:23 2020", "birth_time": "Feb 19 07:07:23 2020", "block_size": 4096, "blocks": 40, "osx_flags": 0}, {"file": "ls-l-newlines.json", "device": "16777221", "inode": 72714990, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 1162, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 27 11:25:11 2020", "change_time": "Feb 27 11:25:11 2020", "birth_time": "Feb 27 11:25:11 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ls-l-newlines.out", "device": "16777221", "inode": 72714991, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 583, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 27 11:25:11 2020", "change_time": "Feb 27 11:25:11 2020", "birth_time": "Feb 27 11:25:11 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ls-lR-empty-folder.json", "device": "16777221", "inode": 73352647, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 355547, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 8 14:54:48 2020", "change_time": "Mar 8 14:54:48 2020", "birth_time": "Mar 8 14:54:48 2020", "block_size": 4096, "blocks": 696, "osx_flags": 0}, {"file": "ls-lR-empty-folder.out", "device": "16777221", "inode": 73352648, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 128740, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 8 14:54:48 2020", "change_time": "Mar 8 14:54:48 2020", "birth_time": "Mar 8 14:54:48 2020", "block_size": 4096, "blocks": 256, "osx_flags": 0}, {"file": "ls-lR-newlines.json", "device": "16777221", "inode": 72714992, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 1450, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 27 11:25:11 2020", "change_time": "Feb 27 11:25:11 2020", "birth_time": "Feb 27 11:25:11 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ls-lR-newlines.out", "device": "16777221", "inode": 72714993, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 656, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 27 11:25:11 2020", "change_time": "Feb 27 11:25:11 2020", "birth_time": "Feb 27 11:25:11 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ls-newlines.json", "device": "16777221", "inode": 72714994, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 498, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 27 11:25:11 2020", "change_time": "Feb 27 11:25:11 2020", "birth_time": "Feb 27 11:25:11 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ls-newlines.out", "device": "16777221", "inode": 72714995, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 260, "access_time": "May 22 16:15:02 2020", "modify_time": "Feb 27 11:25:11 2020", "change_time": "Feb 27 11:25:11 2020", "birth_time": "Feb 27 11:25:11 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ls.json", "device": "16777221", "inode": 67165862, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 585, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ls.out", "device": "16777221", "inode": 67165863, "flags": "-rwxr-xr-x", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 193, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "mount.json", "device": "16777221", "inode": 67165864, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 672, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "mount.out", "device": "16777221", "inode": 67165865, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 349, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "mount2.json", "device": "16777221", "inode": 67165866, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 841, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "mount2.out", "device": "16777221", "inode": 67165867, "flags": "-rwxr-xr-x", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 464, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "netstat-Abn.json", "device": "16777221", "inode": 81980380, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 150591, "access_time": "May 22 16:15:02 2020", "modify_time": "May 21 09:43:36 2020", "change_time": "May 21 09:43:36 2020", "birth_time": "May 20 17:15:44 2020", "block_size": 4096, "blocks": 296, "osx_flags": 0}, {"file": "netstat-Abn.out", "device": "16777221", "inode": 81980353, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 76835, "access_time": "May 22 16:15:02 2020", "modify_time": "May 20 17:14:20 2020", "change_time": "May 20 17:14:20 2020", "birth_time": "May 20 17:14:20 2020", "block_size": 4096, "blocks": 152, "osx_flags": 0}, {"file": "netstat-An.json", "device": "16777221", "inode": 81980369, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 141993, "access_time": "May 22 16:15:02 2020", "modify_time": "May 21 09:43:47 2020", "change_time": "May 21 09:43:47 2020", "birth_time": "May 20 17:15:33 2020", "block_size": 4096, "blocks": 280, "osx_flags": 0}, {"file": "netstat-An.out", "device": "16777221", "inode": 81980351, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 71005, "access_time": "May 22 16:15:02 2020", "modify_time": "May 20 17:14:13 2020", "change_time": "May 20 17:14:13 2020", "birth_time": "May 20 17:14:13 2020", "block_size": 4096, "blocks": 144, "osx_flags": 0}, {"file": "netstat-i.json", "device": "16777221", "inode": 82077065, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 7246, "access_time": "May 22 16:15:02 2020", "modify_time": "May 22 14:14:08 2020", "change_time": "May 22 14:14:08 2020", "birth_time": "May 22 14:14:08 2020", "block_size": 4096, "blocks": 16, "osx_flags": 0}, {"file": "netstat-i.out", "device": "16777221", "inode": 82075287, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 3354, "access_time": "May 22 16:15:02 2020", "modify_time": "May 22 13:14:34 2020", "change_time": "May 22 13:14:34 2020", "birth_time": "May 22 13:14:34 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "netstat-r.json", "device": "16777221", "inode": 82066550, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 11432, "access_time": "May 22 16:15:02 2020", "modify_time": "May 22 11:58:28 2020", "change_time": "May 22 11:58:28 2020", "birth_time": "May 22 11:04:27 2020", "block_size": 4096, "blocks": 24, "osx_flags": 0}, {"file": "netstat-r.out", "device": "16777221", "inode": 82066473, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 6178, "access_time": "May 22 16:15:02 2020", "modify_time": "May 22 11:01:56 2020", "change_time": "May 22 11:01:56 2020", "birth_time": "May 22 11:00:19 2020", "block_size": 4096, "blocks": 16, "osx_flags": 0}, {"file": "netstat-rnl.json", "device": "16777221", "inode": 82066556, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 15254, "access_time": "May 22 16:15:02 2020", "modify_time": "May 22 11:58:45 2020", "change_time": "May 22 11:58:45 2020", "birth_time": "May 22 11:04:43 2020", "block_size": 4096, "blocks": 32, "osx_flags": 0}, {"file": "netstat-rnl.out", "device": "16777221", "inode": 82066494, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 10055, "access_time": "May 22 16:15:02 2020", "modify_time": "May 22 11:02:12 2020", "change_time": "May 22 11:02:12 2020", "birth_time": "May 22 11:02:12 2020", "block_size": 4096, "blocks": 24, "osx_flags": 0}, {"file": "netstat.json", "device": "16777221", "inode": 81980364, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 140726, "access_time": "May 22 16:15:02 2020", "modify_time": "May 21 09:43:21 2020", "change_time": "May 21 09:43:21 2020", "birth_time": "May 20 17:15:14 2020", "block_size": 4096, "blocks": 280, "osx_flags": 0}, {"file": "netstat.out", "device": "16777221", "inode": 81980151, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 70387, "access_time": "May 22 16:15:02 2020", "modify_time": "May 21 09:43:16 2020", "change_time": "May 21 09:43:16 2020", "birth_time": "May 20 17:05:39 2020", "block_size": 4096, "blocks": 256, "osx_flags": 0}, {"file": "passwd.json", "device": "16777221", "inode": 72981502, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 14855, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 3 11:47:13 2020", "change_time": "Mar 3 11:47:13 2020", "birth_time": "Mar 3 11:47:13 2020", "block_size": 4096, "blocks": 32, "osx_flags": 0}, {"file": "passwd.out", "device": "16777221", "inode": 72981503, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 6804, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 3 11:47:13 2020", "change_time": "Mar 3 11:47:13 2020", "birth_time": "Mar 3 11:47:13 2020", "block_size": 4096, "blocks": 16, "osx_flags": 0}, {"file": "pip-list.json", "device": "16777221", "inode": 67165868, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 224, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "pip-list.out", "device": "16777221", "inode": 67165869, "flags": "-rwxr-xr-x", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 168, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "pip-show.json", "device": "16777221", "inode": 67165870, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 1067, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "pip-show.out", "device": "16777221", "inode": 67165871, "flags": "-rwxr-xr-x", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 910, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "ps-axu.json", "device": "16777221", "inode": 67165872, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 99173, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 200, "osx_flags": 0}, {"file": "ps-axu.out", "device": "16777221", "inode": 67165873, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 60107, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 120, "osx_flags": 0}, {"file": "ps-ef.json", "device": "16777221", "inode": 67165874, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 71162, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 144, "osx_flags": 0}, {"file": "ps-ef.out", "device": "16777221", "inode": 67165875, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 48758, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 96, "osx_flags": 0}, {"file": "uname-a.json", "device": "16777221", "inode": 67165876, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 221, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "uname-a.out", "device": "16777221", "inode": 67165877, "flags": "-rwxr-xr-x", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 131, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "uptime.json", "device": "16777221", "inode": 67165878, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 110, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "uptime.out", "device": "16777221", "inode": 67165879, "flags": "-rwxr-xr-x", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 65, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "w.json", "device": "16777221", "inode": 67165880, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 836, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "w.out", "device": "16777221", "inode": 67165881, "flags": "-rwxr-xr-x", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 570, "access_time": "May 22 16:15:02 2020", "modify_time": "Dec 17 12:12:32 2019", "change_time": "Dec 17 12:12:32 2019", "birth_time": "Dec 17 12:12:32 2019", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "who-a.json", "device": "16777221", "inode": 72981504, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 659, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 3 11:47:13 2020", "change_time": "Mar 3 11:47:13 2020", "birth_time": "Mar 3 11:47:13 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "who-a.out", "device": "16777221", "inode": 72981505, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 419, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 3 11:47:13 2020", "change_time": "Mar 3 11:47:13 2020", "birth_time": "Mar 3 11:47:13 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "who.json", "device": "16777221", "inode": 72981506, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 251, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 3 11:47:13 2020", "change_time": "Mar 3 11:47:13 2020", "birth_time": "Mar 3 11:47:13 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}, {"file": "who.out", "device": "16777221", "inode": 72981507, "flags": "-rw-r--r--", "links": 1, "user": "kbrazil", "group": "staff", "rdev": 0, "size": 128, "access_time": "May 22 16:15:02 2020", "modify_time": "Mar 3 11:47:13 2020", "change_time": "Mar 3 11:47:13 2020", "birth_time": "Mar 3 11:47:13 2020", "block_size": 4096, "blocks": 8, "osx_flags": 0}] diff --git a/tests/fixtures/osx-10.14.6/stat.out b/tests/fixtures/osx-10.14.6/stat.out new file mode 100644 index 00000000..870f75a4 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/stat.out @@ -0,0 +1,94 @@ +16777221 73839387 -rw-r--r-- 1 kbrazil staff 0 307 "May 22 16:15:02 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" 4096 8 0 airport-I.json +16777221 73839388 -rw-r--r-- 1 kbrazil staff 0 348 "May 22 16:15:02 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" 4096 8 0 airport-I.out +16777221 73839389 -rw-r--r-- 1 kbrazil staff 0 2152 "May 22 16:15:02 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" 4096 8 0 airport-s.json +16777221 73839390 -rw-r--r-- 1 kbrazil staff 0 1423 "May 22 16:15:02 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" 4096 8 0 airport-s.out +16777221 67165840 -rw-r--r-- 1 kbrazil staff 0 1541 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 arp-a.json +16777221 67165841 -rw-r--r-- 1 kbrazil staff 0 968 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 arp-a.out +16777221 73923691 -rw-r--r-- 1 kbrazil staff 0 2582 "May 22 16:15:02 2020" "Mar 12 17:09:29 2020" "Mar 12 17:09:29 2020" "Mar 12 17:09:29 2020" 4096 8 0 arp-a2.json +16777221 73923692 -rw-r--r-- 1 kbrazil staff 0 1597 "May 22 16:15:02 2020" "Mar 12 17:09:29 2020" "Mar 12 17:09:29 2020" "Mar 12 17:09:29 2020" 4096 8 0 arp-a2.out +16777221 67165842 -rw-r--r-- 1 kbrazil staff 0 1686 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 df-h.json +16777221 67165843 -rw-r--r-- 1 kbrazil staff 0 1276 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 df-h.out +16777221 67165844 -rw-r--r-- 1 kbrazil staff 0 1764 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 df.json +16777221 67165845 -rw-r--r-- 1 kbrazil staff 0 1384 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 df.out +16777221 67165846 -rw-r--r-- 1 kbrazil staff 0 438 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 dig-aaaa.json +16777221 67165847 -rw-r--r-- 1 kbrazil staff 0 536 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 dig-aaaa.out +16777221 74782481 -rw-r--r-- 1 kbrazil staff 0 5984 "May 22 16:15:02 2020" "Mar 26 17:16:11 2020" "Mar 26 17:16:11 2020" "Mar 26 17:16:11 2020" 4096 16 0 dig-axfr.json +16777221 74782482 -rw-r--r-- 1 kbrazil staff 0 3511 "May 22 16:15:02 2020" "Mar 26 17:16:11 2020" "Mar 26 17:16:11 2020" "Mar 26 17:16:11 2020" 4096 8 0 dig-axfr.out +16777221 67165848 -rw-r--r-- 1 kbrazil staff 0 442 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 dig-x.json +16777221 67165849 -rw-r--r-- 1 kbrazil staff 0 529 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 dig-x.out +16777221 67165850 -rw-r--r-- 1 kbrazil staff 0 1266 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 dig.json +16777221 67165851 -rw-r--r-- 1 kbrazil staff 0 1182 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 dig.out +16777221 67165852 -rw-r--r-- 1 kbrazil staff 0 295780 "May 22 16:15:02 2020" "Apr 20 16:30:21 2020" "Apr 20 16:30:21 2020" "Dec 17 12:12:32 2019" 4096 584 0 du.json +16777221 67165853 -rw-r--r-- 1 kbrazil staff 0 221925 "May 22 16:15:02 2020" "Apr 20 16:29:31 2020" "Apr 20 16:29:31 2020" "Dec 17 12:12:32 2019" 4096 512 0 du.out +16777221 73839391 -rw-r--r-- 1 kbrazil staff 0 3589 "May 22 16:15:02 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" 4096 8 0 file.json +16777221 73839392 -rw-r--r-- 1 kbrazil staff 0 2890 "May 22 16:15:02 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" 4096 8 0 file.out +16777221 73878467 -rw-r--r-- 1 kbrazil staff 0 4715 "May 22 16:15:02 2020" "Mar 12 08:24:33 2020" "Mar 12 08:24:33 2020" "Mar 12 08:24:33 2020" 4096 16 0 file2.json +16777221 73878468 -rw-r--r-- 1 kbrazil staff 0 4780 "May 22 16:15:02 2020" "Mar 12 08:24:33 2020" "Mar 12 08:24:33 2020" "Mar 12 08:24:33 2020" 4096 16 0 file2.out +16777221 72981498 -rw-r--r-- 1 kbrazil staff 0 9646 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 24 0 group.json +16777221 72981499 -rw-r--r-- 1 kbrazil staff 0 2823 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 8 0 group.out +16777221 71197409 -rw-r--r-- 1 kbrazil staff 0 759 "May 22 16:15:02 2020" "Feb 5 17:00:38 2020" "Feb 5 17:00:38 2020" "Feb 5 17:00:38 2020" 4096 8 0 id.json +16777221 71197410 -rw-r--r-- 1 kbrazil staff 0 386 "May 22 16:15:02 2020" "Feb 5 17:00:38 2020" "Feb 5 17:00:38 2020" "Feb 5 17:00:38 2020" 4096 8 0 id.out +16777221 67165854 -rw-r--r-- 1 kbrazil staff 0 10823 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 24 0 ifconfig.json +16777221 67165855 -rwxr-xr-x 1 kbrazil staff 0 3779 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 ifconfig.out +16777221 67165856 -rw-r--r-- 1 kbrazil staff 0 11375 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 24 0 ifconfig2.json +16777221 67165857 -rw-r--r-- 1 kbrazil staff 0 3979 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 ifconfig2.out +16777221 72981500 -rw-r--r-- 1 kbrazil staff 0 45274 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 96 0 last.json +16777221 72981501 -rw-r--r-- 1 kbrazil staff 0 25827 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 56 0 last.out +16777221 72714988 -rw-r--r-- 1 kbrazil staff 0 852 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-R-newlines.json +16777221 72714989 -rw-r--r-- 1 kbrazil staff 0 278 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-R-newlines.out +16777221 72389524 -rw-r--r-- 1 kbrazil staff 0 469418 "May 22 16:15:02 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" 4096 920 0 ls-R.json +16777221 72389525 -rw-r--r-- 1 kbrazil staff 0 133787 "May 22 16:15:02 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" 4096 264 0 ls-R.out +16777221 67165858 -rw-r--r-- 1 kbrazil staff 0 4653 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 16 0 ls-al.json +16777221 67165859 -rwxr-xr-x 1 kbrazil staff 0 2111 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 ls-al.out +16777221 72389526 -rw-r--r-- 1 kbrazil staff 0 959674 "May 22 16:15:02 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" 4096 1880 0 ls-alR.json +16777221 72389527 -rw-r--r-- 1 kbrazil staff 0 364578 "May 22 16:15:02 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" 4096 720 0 ls-alR.out +16777221 67165860 -rw-r--r-- 1 kbrazil staff 0 4684 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 16 0 ls-alh.json +16777221 67165861 -rwxr-xr-x 1 kbrazil staff 0 2111 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 ls-alh.out +16777221 81196212 -rw-r--r-- 1 kbrazil staff 0 91544 "May 22 16:15:02 2020" "May 9 11:47:44 2020" "May 9 11:47:44 2020" "May 9 11:47:44 2020" 4096 184 0 ls-glob.json +16777221 72389529 -rw-r--r-- 1 kbrazil staff 0 19369 "May 22 16:15:02 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" 4096 40 0 ls-glob.out +16777221 72714990 -rw-r--r-- 1 kbrazil staff 0 1162 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-l-newlines.json +16777221 72714991 -rw-r--r-- 1 kbrazil staff 0 583 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-l-newlines.out +16777221 73352647 -rw-r--r-- 1 kbrazil staff 0 355547 "May 22 16:15:02 2020" "Mar 8 14:54:48 2020" "Mar 8 14:54:48 2020" "Mar 8 14:54:48 2020" 4096 696 0 ls-lR-empty-folder.json +16777221 73352648 -rw-r--r-- 1 kbrazil staff 0 128740 "May 22 16:15:02 2020" "Mar 8 14:54:48 2020" "Mar 8 14:54:48 2020" "Mar 8 14:54:48 2020" 4096 256 0 ls-lR-empty-folder.out +16777221 72714992 -rw-r--r-- 1 kbrazil staff 0 1450 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-lR-newlines.json +16777221 72714993 -rw-r--r-- 1 kbrazil staff 0 656 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-lR-newlines.out +16777221 72714994 -rw-r--r-- 1 kbrazil staff 0 498 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-newlines.json +16777221 72714995 -rw-r--r-- 1 kbrazil staff 0 260 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-newlines.out +16777221 67165862 -rw-r--r-- 1 kbrazil staff 0 585 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 ls.json +16777221 67165863 -rwxr-xr-x 1 kbrazil staff 0 193 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 ls.out +16777221 67165864 -rw-r--r-- 1 kbrazil staff 0 672 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 mount.json +16777221 67165865 -rw-r--r-- 1 kbrazil staff 0 349 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 mount.out +16777221 67165866 -rw-r--r-- 1 kbrazil staff 0 841 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 mount2.json +16777221 67165867 -rwxr-xr-x 1 kbrazil staff 0 464 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 mount2.out +16777221 81980380 -rw-r--r-- 1 kbrazil staff 0 150591 "May 22 16:15:02 2020" "May 21 09:43:36 2020" "May 21 09:43:36 2020" "May 20 17:15:44 2020" 4096 296 0 netstat-Abn.json +16777221 81980353 -rw-r--r-- 1 kbrazil staff 0 76835 "May 22 16:15:02 2020" "May 20 17:14:20 2020" "May 20 17:14:20 2020" "May 20 17:14:20 2020" 4096 152 0 netstat-Abn.out +16777221 81980369 -rw-r--r-- 1 kbrazil staff 0 141993 "May 22 16:15:02 2020" "May 21 09:43:47 2020" "May 21 09:43:47 2020" "May 20 17:15:33 2020" 4096 280 0 netstat-An.json +16777221 81980351 -rw-r--r-- 1 kbrazil staff 0 71005 "May 22 16:15:02 2020" "May 20 17:14:13 2020" "May 20 17:14:13 2020" "May 20 17:14:13 2020" 4096 144 0 netstat-An.out +16777221 82077065 -rw-r--r-- 1 kbrazil staff 0 7246 "May 22 16:15:02 2020" "May 22 14:14:08 2020" "May 22 14:14:08 2020" "May 22 14:14:08 2020" 4096 16 0 netstat-i.json +16777221 82075287 -rw-r--r-- 1 kbrazil staff 0 3354 "May 22 16:15:02 2020" "May 22 13:14:34 2020" "May 22 13:14:34 2020" "May 22 13:14:34 2020" 4096 8 0 netstat-i.out +16777221 82066550 -rw-r--r-- 1 kbrazil staff 0 11432 "May 22 16:15:02 2020" "May 22 11:58:28 2020" "May 22 11:58:28 2020" "May 22 11:04:27 2020" 4096 24 0 netstat-r.json +16777221 82066473 -rw-r--r-- 1 kbrazil staff 0 6178 "May 22 16:15:02 2020" "May 22 11:01:56 2020" "May 22 11:01:56 2020" "May 22 11:00:19 2020" 4096 16 0 netstat-r.out +16777221 82066556 -rw-r--r-- 1 kbrazil staff 0 15254 "May 22 16:15:02 2020" "May 22 11:58:45 2020" "May 22 11:58:45 2020" "May 22 11:04:43 2020" 4096 32 0 netstat-rnl.json +16777221 82066494 -rw-r--r-- 1 kbrazil staff 0 10055 "May 22 16:15:02 2020" "May 22 11:02:12 2020" "May 22 11:02:12 2020" "May 22 11:02:12 2020" 4096 24 0 netstat-rnl.out +16777221 81980364 -rw-r--r-- 1 kbrazil staff 0 140726 "May 22 16:15:02 2020" "May 21 09:43:21 2020" "May 21 09:43:21 2020" "May 20 17:15:14 2020" 4096 280 0 netstat.json +16777221 81980151 -rw-r--r-- 1 kbrazil staff 0 70387 "May 22 16:15:02 2020" "May 21 09:43:16 2020" "May 21 09:43:16 2020" "May 20 17:05:39 2020" 4096 256 0 netstat.out +16777221 72981502 -rw-r--r-- 1 kbrazil staff 0 14855 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 32 0 passwd.json +16777221 72981503 -rw-r--r-- 1 kbrazil staff 0 6804 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 16 0 passwd.out +16777221 67165868 -rw-r--r-- 1 kbrazil staff 0 224 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 pip-list.json +16777221 67165869 -rwxr-xr-x 1 kbrazil staff 0 168 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 pip-list.out +16777221 67165870 -rw-r--r-- 1 kbrazil staff 0 1067 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 pip-show.json +16777221 67165871 -rwxr-xr-x 1 kbrazil staff 0 910 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 pip-show.out +16777221 67165872 -rw-r--r-- 1 kbrazil staff 0 99173 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 200 0 ps-axu.json +16777221 67165873 -rw-r--r-- 1 kbrazil staff 0 60107 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 120 0 ps-axu.out +16777221 67165874 -rw-r--r-- 1 kbrazil staff 0 71162 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 144 0 ps-ef.json +16777221 67165875 -rw-r--r-- 1 kbrazil staff 0 48758 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 96 0 ps-ef.out +16777221 67165876 -rw-r--r-- 1 kbrazil staff 0 221 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 uname-a.json +16777221 67165877 -rwxr-xr-x 1 kbrazil staff 0 131 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 uname-a.out +16777221 67165878 -rw-r--r-- 1 kbrazil staff 0 110 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 uptime.json +16777221 67165879 -rwxr-xr-x 1 kbrazil staff 0 65 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 uptime.out +16777221 67165880 -rw-r--r-- 1 kbrazil staff 0 836 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 w.json +16777221 67165881 -rwxr-xr-x 1 kbrazil staff 0 570 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 w.out +16777221 72981504 -rw-r--r-- 1 kbrazil staff 0 659 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 8 0 who-a.json +16777221 72981505 -rw-r--r-- 1 kbrazil staff 0 419 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 8 0 who-a.out +16777221 72981506 -rw-r--r-- 1 kbrazil staff 0 251 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 8 0 who.json +16777221 72981507 -rw-r--r-- 1 kbrazil staff 0 128 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 8 0 who.out diff --git a/tests/test_stat.py b/tests/test_stat.py index 976fc0c0..b559a8b0 100644 --- a/tests/test_stat.py +++ b/tests/test_stat.py @@ -16,6 +16,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/stat.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_stat = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/stat.out'), 'r', encoding='utf-8') as f: + self.osx_10_14_6_stat = f.read() + # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/stat.json'), 'r', encoding='utf-8') as f: self.centos_7_7_stat_json = json.loads(f.read()) @@ -23,6 +26,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/stat.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_stat_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/stat.json'), 'r', encoding='utf-8') as f: + self.osx_10_14_6_stat_json = json.loads(f.read()) + def test_stat_centos_7_7(self): """ Test 'stat /bin/*' on Centos 7.7 @@ -35,6 +41,12 @@ class MyTests(unittest.TestCase): """ self.assertEqual(jc.parsers.stat.parse(self.ubuntu_18_4_stat, quiet=True), self.ubuntu_18_4_stat_json) + def test_stat_osx_10_14_6(self): + """ + Test 'stat /foo/*' on OSX 10.14.6 + """ + self.assertEqual(jc.parsers.stat.parse(self.osx_10_14_6_stat, quiet=True), self.osx_10_14_6_stat_json) + if __name__ == '__main__': unittest.main() From 2e9a0a9c1221dd01bd683ecbc4871d03738da671 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 16:21:55 -0700 Subject: [PATCH 51/52] add features --- changelog.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 5b71e925..4b9f91b6 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,9 +2,10 @@ jc changelog 202005xx v1.11.0 - Add dmidecode command parser +- Update stat command parser to add OSX support - Update netstat command parser to add OSX support -- Add netstat -r command parser -- Add netstat -i command parser +- Update netstat command parser to add -r (route) functionality for linux and OSX +- Update netstat command parser to add -i (interface) functionality for linux and OSX 20200511 v1.10.12 - Remove shebang from jc/cli.py for Fedora packaging From 84f48aa369a458f534523ecc1e3aaaf403d06f1c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 22 May 2020 16:30:22 -0700 Subject: [PATCH 52/52] version bump --- changelog.txt | 2 +- jc/cli.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/changelog.txt b/changelog.txt index 4b9f91b6..24061b56 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,6 @@ jc changelog -202005xx v1.11.0 +20200522 v1.11.0 - Add dmidecode command parser - Update stat command parser to add OSX support - Update netstat command parser to add OSX support diff --git a/jc/cli.py b/jc/cli.py index 8ef97b5f..7a042196 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -17,7 +17,7 @@ import jc.utils class info(): - version = '1.10.12' + version = '1.11.0' description = 'jc cli output JSON conversion tool' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' diff --git a/setup.py b/setup.py index c2f69254..c4c0cb25 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.10.12', + version='1.11.0', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',