diff --git a/plaso/data/formatters/macos.yaml b/plaso/data/formatters/macos.yaml index 2adae06b42..1845fff829 100644 --- a/plaso/data/formatters/macos.yaml +++ b/plaso/data/formatters/macos.yaml @@ -1,6 +1,52 @@ # Plaso Mac OS related event formatters. --- type: 'conditional' +data_type: 'apple:ips_recovery_logd' +message: +- 'Application Name: {application_name}' +- 'Application Version: {application_version}' +- 'Bug Type: {bug_type}' +- 'Crash Reporter_key: {crash_reporter_key}' +- 'Device Model: {device_model}' +- 'Exception Type: {exception_type}' +- 'Incident Identifier: {incident_identifier}' +- 'Operating system version: {operating_system_version}' +- 'Parent Process: {parent_process}' +- 'Parent Process Identifier: {parent_process_identifier}' +- 'Process Identifier: {process_identifier}' +- 'Process Launch Time: {process_launch_time}' +- 'User Identifier: {user_identifier}' +short_message: +- 'Bug Type: {bug_type}' +- 'Device Model: {device_model}' +- 'Incident Identifier: {incident_identifier}' +- 'Operating system version: {operating_system_version}' +short_source: 'RecoveryLogd' +source: 'Apple Recovery IPS' +--- +type: 'conditional' +data_type: 'apple:ips_stacks' +message: +- 'Bug Type: {bug_type}' +- 'Crash Reporter_key: {crash_reporter_key}' +- 'Device Model: {device_model}' +- 'Event Time: {event_time}' +- 'Kernel Version: {kernel_version}' +- 'Incident Identifier: {incident_identifier}' +- 'Process List: {process_list}' +- 'Operating system version: {operating_system_version}' +- 'Reason: {reason}' +short_message: +- 'Bug Type: {bug_type}' +- 'Crash Reporter_key: {crash_reporter_key}' +- 'Device Model: {device_model}' +- 'Incident Identifier: {incident_identifier}' +- 'Operating system version: {operating_system_version}' +- 'Reason: {reason}' +short_source: 'StacksIPS' +source: 'Apple Stacks IPS' +--- +type: 'conditional' data_type: 'imessage:event:chat' enumeration_helpers: - input_attribute: 'message_type' diff --git a/plaso/data/timeliner.yaml b/plaso/data/timeliner.yaml index 2022e8a8c4..786808cf6b 100644 --- a/plaso/data/timeliner.yaml +++ b/plaso/data/timeliner.yaml @@ -95,6 +95,20 @@ attribute_mappings: description: 'Recorded Time' place_holder_event: true --- +data_type: 'apple:ips_recovery_logd' +attribute_mappings: +- name: 'event_time' + description: 'Event Time' +- name: 'process_launch_time' + description: 'Process Launch Time' +place_holder_event: true +--- +data_type: 'apple:ips_stacks' +attribute_mappings: +- name: 'event_time' + description: 'Event Time' +place_holder_event: true +--- data_type: 'av:defender:detection_history' attribute_mappings: - name: 'recorded_time' diff --git a/plaso/parsers/__init__.py b/plaso/parsers/__init__.py index 30394c553f..725db48efa 100644 --- a/plaso/parsers/__init__.py +++ b/plaso/parsers/__init__.py @@ -16,6 +16,7 @@ from plaso.parsers import firefox_cache from plaso.parsers import fish_history from plaso.parsers import fseventsd +from plaso.parsers import ips_parser from plaso.parsers import java_idx from plaso.parsers import jsonl_parser from plaso.parsers import locate @@ -56,6 +57,7 @@ from plaso.parsers import bencode_plugins from plaso.parsers import czip_plugins from plaso.parsers import esedb_plugins +from plaso.parsers import ips_plugins from plaso.parsers import jsonl_plugins from plaso.parsers import olecf_plugins from plaso.parsers import plist_plugins diff --git a/plaso/parsers/ips_parser.py b/plaso/parsers/ips_parser.py new file mode 100644 index 0000000000..ec141e8207 --- /dev/null +++ b/plaso/parsers/ips_parser.py @@ -0,0 +1,98 @@ +# -*- coding: utf-8 -*- +"""Parser for IPS formatted log files.""" + +import json + +from dfvfs.helpers import text_file + +from plaso.lib import errors +from plaso.parsers import interface +from plaso.parsers import manager + + +class IPSFile(object): + """IPS log file. + + Attributes: + content (dict[str, object]): JSON serialized IPS log file content. + header (dict[str, object]): JSON serialized IPS log file header. + """ + + def __init__(self): + """Initializes an IPS log file.""" + super(IPSFile, self).__init__() + self.content = None + self.header = None + + def Open(self, text_file_object): + """Opens an IPS log file. + + Args: + text_file_object (text_file.TextFile): text file object. + Raises: + ValueError: if the file object is missing. + """ + if not text_file_object: + raise ValueError('Missing text file object.') + + self.header = json.loads(text_file_object.readline()) + self.content = json.loads('\n'.join(text_file_object.readlines())) + + +class IPSParser(interface.FileEntryParser): + """Parses IPS formatted log files.""" + + NAME = 'ips' + DATA_FORMAT = 'IPS log file' + + _plugin_classes = {} + + def ParseFileEntry(self, parser_mediator, file_entry): + """Parses an IPS formatted log file entry. + + Args: + parser_mediator (ParserMediator): parser mediator. + file_entry (dfvfs.FileEntry): file entry to be parsed. + """ + file_object = file_entry.GetFileObject() + text_file_object = text_file.TextFile(file_object) + + try: + ips_file_object = IPSFile() + ips_file_object.Open(text_file_object) + + except ValueError: + raise errors.WrongParser('Invalid IPS file.') + + for plugin_name, plugin in self._plugins_per_name.items(): + if parser_mediator.abort: + break + + profiling_name = '/'.join([self.NAME, plugin.NAME]) + + parser_mediator.SampleFormatCheckStartTiming(profiling_name) + + try: + result = plugin.CheckRequiredKeys(ips_file_object) + finally: + parser_mediator.SampleFormatCheckStopTiming(profiling_name) + + if not result: + continue + + parser_mediator.SampleStartTiming(profiling_name) + + try: + plugin.UpdateChainAndProcess( + parser_mediator, ips_file=ips_file_object) + + except Exception as exception: # pylint: disable=broad-except + parser_mediator.ProduceExtractionWarning(( + 'plugin: {0:s} unable to parse IPS file with error: {1!s}').format( + plugin_name, exception)) + + finally: + parser_mediator.SampleStopTiming(profiling_name) + + +manager.ParsersManager.RegisterParser(IPSParser) diff --git a/plaso/parsers/ips_plugins/__init__.py b/plaso/parsers/ips_plugins/__init__.py new file mode 100644 index 0000000000..26cefbd109 --- /dev/null +++ b/plaso/parsers/ips_plugins/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +"""Imports for the ips log parser plugins.""" + +from plaso.parsers.ips_plugins import recovery_logd +from plaso.parsers.ips_plugins import stacks_ips diff --git a/plaso/parsers/ips_plugins/interface.py b/plaso/parsers/ips_plugins/interface.py new file mode 100644 index 0000000000..06d9d8bb1d --- /dev/null +++ b/plaso/parsers/ips_plugins/interface.py @@ -0,0 +1,128 @@ +# -*- coding: utf-8 -*- +"""Interface for IPS log file parser plugins.""" + +import abc +import pyparsing + +from dfdatetime import time_elements as dfdatetime_time_elements + +from plaso.parsers import plugins + + +class IPSPlugin(plugins.BasePlugin): + """IPS file parser plugin.""" + + NAME = 'ips_plugin' + DATA_FORMAT = 'ips log file' + + ENCODING = 'utf-8' + + REQUIRED_HEADER_KEYS = frozenset() + REQUIRED_CONTENT_KEYS = frozenset() + + _TWO_DIGITS = pyparsing.Word(pyparsing.nums, exact=2).set_parse_action( + lambda tokens: int(tokens[0], 10)) + + _FOUR_DIGITS = pyparsing.Word(pyparsing.nums, exact=4).set_parse_action( + lambda tokens: int(tokens[0], 10)) + + _VARYING_DIGITS = pyparsing.Word(pyparsing.nums) + + TIMESTAMP_GRAMMAR = ( + _FOUR_DIGITS.set_results_name('year') + pyparsing.Suppress('-') + + _TWO_DIGITS.set_results_name('month') + pyparsing.Suppress('-') + + _TWO_DIGITS.set_results_name('day') + + _TWO_DIGITS.set_results_name('hours') + pyparsing.Suppress(':') + + _TWO_DIGITS.set_results_name('minutes') + pyparsing.Suppress(':') + + _TWO_DIGITS.set_results_name('seconds') + pyparsing.Suppress('.') + + _VARYING_DIGITS.set_results_name('fraction') + + pyparsing.Word( + pyparsing.nums + '+' + '-').set_results_name('time_zone_delta')) + + def _ParseTimestampValue(self, parser_mediator, timestamp_text): + """Parses a timestamp string. + + Args: + parser_mediator (ParserMediator): parser mediator. + timestamp_text (str): the timestamp to parse. + + Returns: + dfdatetime.TimeElements: date and time or None if not available. + """ + # dfDateTime takes the time zone offset as number of minutes relative from + # UTC. So for Easter Standard Time (EST), which is UTC-5:00 the sign needs + # to be converted, to +300 minutes. + + parsed_timestamp = self.TIMESTAMP_GRAMMAR.parseString(timestamp_text) + + try: + time_delta_hours = int(parsed_timestamp['time_zone_delta'][:3], 10) + time_delta_minutes = int(parsed_timestamp['time_zone_delta'][3:], 10) + except (TypeError, ValueError): + parser_mediator.ProduceExtractionWarning( + 'unsupported time zone offset value') + return None + + time_zone_offset = (time_delta_hours * 60) + time_delta_minutes + + try: + fraction = parsed_timestamp['fraction'] + fraction_float = float(f'0.{fraction:s}') + milliseconds = round(fraction_float * 1000) + + time_elements_tuple = ( + parsed_timestamp['year'], parsed_timestamp['month'], + parsed_timestamp['day'], parsed_timestamp['hours'], + parsed_timestamp['minutes'], parsed_timestamp['seconds'], + milliseconds) + + time_element_object = dfdatetime_time_elements.TimeElementsInMilliseconds( + time_elements_tuple=time_elements_tuple, + time_zone_offset=time_zone_offset) + + except (TypeError, ValueError): + parser_mediator.ProduceExtractionWarning('unsupported date time value') + return None + + return time_element_object + + def CheckRequiredKeys(self, ips_file): + """Checks the IPS header and content have the keys required for the plugin. + + Args: + ips_file (IPSFile): the file for which the structure is checked. + + Returns: + bool: True if the file has the required keys defined by the plugin, or + False if it does not, or if the plugin does not define required + keys. The header and content can have more keys than the minimum + required and still return True. + """ + if not self.REQUIRED_HEADER_KEYS or not self.REQUIRED_CONTENT_KEYS: + return False + + has_required_keys = True + for required_header_key in self.REQUIRED_HEADER_KEYS: + if required_header_key not in ips_file.header.keys(): + has_required_keys = False + break + + for required_content_key in self.REQUIRED_CONTENT_KEYS: + if required_content_key not in ips_file.content.keys(): + has_required_keys = False + break + + return has_required_keys + + # pylint: disable=arguments-differ + @abc.abstractmethod + def Process(self, parser_mediator, ips_file=None, **unused_kwargs): + """Extracts events from an IPS log file. + + Args: + parser_mediator (ParserMediator): parser mediator. + ips_file (Optional[IPSFile]): database. + + Raises: + ValueError: If the file value is missing. + """ diff --git a/plaso/parsers/ips_plugins/recovery_logd.py b/plaso/parsers/ips_plugins/recovery_logd.py new file mode 100644 index 0000000000..3aa2b86a9b --- /dev/null +++ b/plaso/parsers/ips_plugins/recovery_logd.py @@ -0,0 +1,103 @@ +# -*- coding: utf-8 -*- +"""IPS log file parser plugin for Apple crash recovery report.""" + +from plaso.containers import events +from plaso.parsers import ips_parser +from plaso.parsers.ips_plugins import interface + + +class AppleRecoveryLogdEvent(events.EventData): + """Apple crash recovery event data. + + Attributes: + application_name (str): name of the application. + application_version (str): version of the application. + bug_type (str): type of bug. + crash_reporter_key (str): Key of the crash reporter. + device_model (str): model of the device. + event_time (dfdatetime.DateTimeValues): date and time of the crash report. + exception_type (str): type of the exception that caused the crash. + incident_identifier (str): uuid for crash. + operating_system_version (str): version of the operating system. + parent_process_identifier (int): process identifier of the parent process. + parent_process (str): parent process. + process_identifier (int): process identifier. + process_launch_time (dfdatetime.DateTimeValues): date and time when the + process started. + user_identifier (int): user identifier of the process. + """ + DATA_TYPE = 'apple:ips_recovery_logd' + + def __init__(self): + """Initializes event data.""" + super(AppleRecoveryLogdEvent, self).__init__(data_type=self.DATA_TYPE) + self.application_name = None + self.application_version = None + self.bug_type = None + self.crash_reporter_key = None + self.device_model = None + self.event_time = None + self.exception_type = None + self.incident_identifier = None + self.operating_system_version = None + self.parent_process_identifier = None + self.parent_process = None + self.process_identifier = None + self.process_launch_time = None + self.user_identifier = None + + +class AppleRecoveryLogdIPSPlugin(interface.IPSPlugin): + """Parses Apple Crash logs from IPS file.""" + + NAME = 'apple_recovery_ips' + DATA_FORMAT = 'IPS recovery logd crash log' + + REQUIRED_HEADER_KEYS = frozenset([ + 'app_name', 'app_version', 'bug_type', 'incident_id', 'os_version', + 'timestamp']) + REQUIRED_CONTENT_KEYS = frozenset([ + 'captureTime', 'modelCode', 'pid', 'procLaunch']) + + # pylint: disable=unused-argument + def Process(self, parser_mediator, ips_file=None, **unused_kwargs): + """Extracts events from an Apple Crash IPS log file. + + Args: + parser_mediator (ParserMediator): parser mediator. + ips_file (Optional[IpsFile]): database. + + Raises: + ValueError: If the file value is missing. + """ + if ips_file is None: + raise ValueError('Missing ips_file value') + + ips_exception = ips_file.content.get('exception', {}) + + event_data = AppleRecoveryLogdEvent() + event_data.application_name = ips_file.header.get('app_name') + event_data.application_version = ips_file.header.get('app_version') + event_data.bug_type = ips_file.header.get('bug_type') + event_data.crash_reporter_key = ips_file.content.get('crashReporterKey') + event_data.device_model = ips_file.content.get('modelCode') + event_data.exception_type = ips_exception.get('type') + event_data.incident_identifier = ips_file.header.get('incident_id') + event_data.operating_system_version = ips_file.header.get('os_version') + event_data.parent_process = ips_file.content.get('parentProc') + event_data.parent_process_identifier = ips_file.content.get('parentPid') + event_data.process_identifier = ips_file.content.get('pid') + event_data.user_identifier = ips_file.content.get('userID') + + event_timestamp = ips_file.content.get('captureTime') + event_data.event_time = self._ParseTimestampValue( + parser_mediator, event_timestamp) + + launch_timestamp = ips_file.content.get('procLaunch') + event_data.process_launch_time = self._ParseTimestampValue( + parser_mediator, launch_timestamp) + + parser_mediator.ProduceEventData(event_data) + + +ips_parser.IPSParser.RegisterPlugin(AppleRecoveryLogdIPSPlugin) diff --git a/plaso/parsers/ips_plugins/stacks_ips.py b/plaso/parsers/ips_plugins/stacks_ips.py new file mode 100644 index 0000000000..ba1f4a83c4 --- /dev/null +++ b/plaso/parsers/ips_plugins/stacks_ips.py @@ -0,0 +1,89 @@ +# -*- coding: utf-8 -*- +"""IPS log file parser plugin for Apple stacks report.""" + +from plaso.containers import events +from plaso.parsers import ips_parser +from plaso.parsers.ips_plugins import interface + + +class AppleStacksIPSEvent(events.EventData): + """Apple stacks crash report. + + Attributes: + bug_type (str): type of bug. + crash_reporter_key (str): Key of the crash reporter. + device_model (str): model of the device. + event_time (dfdatetime.DateTimeValues): date and time of the crash report. + incident_identifier (str): uuid for crash. + kernel_version (str): kernel version. + operating_system_version (str): version of the operating system. + process_list (str): list of process names running at the time of the crash. + reason (str): reason for the crash. + """ + + DATA_TYPE = 'apple:ips_stacks' + + def __init__(self): + """Initializes event data.""" + super(AppleStacksIPSEvent, self).__init__(data_type=self.DATA_TYPE) + self.bug_type = None + self.crash_reporter_key = None + self.device_model = None + self.event_time = None + self.incident_identifier = None + self.kernel_version = None + self.operating_system_version = None + self.process_list = None + self.reason = None + + +class AppleStacksIPSPlugin(interface.IPSPlugin): + """Parses Apple stacks crash IPS file.""" + + NAME = 'apple_stacks_ips' + DATA_FORMAT = 'IPS stacks crash log' + + REQUIRED_HEADER_KEYS = frozenset([ + 'bug_type', 'incident_id', 'os_version', 'timestamp']) + REQUIRED_CONTENT_KEYS = frozenset([ + 'build', 'crashReporterKey', 'kernel', 'product', 'reason']) + + # pylint: disable=unused-argument + def Process(self, parser_mediator, ips_file=None, **unused_kwargs): + """Extracts information from an Apple stacks crash IPS log file. + + Args: + parser_mediator (ParserMediator): parser mediator. + ips_file (Optional[IpsFile]): database. + + Raises: + ValueError: If the file value is missing. + """ + if ips_file is None: + raise ValueError('Missing ips_file value') + + event_data = AppleStacksIPSEvent() + event_data.bug_type = ips_file.header.get('bug_type') + event_data.crash_reporter_key = ips_file.content.get('crashReporterKey') + event_data.device_model = ips_file.content.get('product') + event_data.kernel_version = ips_file.content.get('kernel') + event_data.incident_identifier = ips_file.header.get('incident_id') + event_data.operating_system_version = ips_file.header.get('os_version') + event_data.reason = ips_file.content.get('reason') + + process_list = [ + i.get('procname') for i in ips_file.content.get( + 'processByPid').values()] + process_list = list(set(process_list)) + process_list.sort() + + event_data.process_list = ', '.join(process_list) + + event_timestamp = ips_file.header.get('timestamp') + event_data.event_time = self._ParseTimestampValue( + parser_mediator, event_timestamp) + + parser_mediator.ProduceEventData(event_data) + + +ips_parser.IPSParser.RegisterPlugin(AppleStacksIPSPlugin) diff --git a/test_data/ips_files/recoverylogd-2023-06-08-144913.ips b/test_data/ips_files/recoverylogd-2023-06-08-144913.ips new file mode 100755 index 0000000000..fc91cac8df --- /dev/null +++ b/test_data/ips_files/recoverylogd-2023-06-08-144913.ips @@ -0,0 +1,200 @@ +{"app_name":"recoverylogd","timestamp":"2023-06-08 14:49:13.00 +0000","app_version":"","slice_uuid":"a919f2b7-9cdf-32df-bcd8-15c081136761","build_version":"","platform":5,"share_with_app_devs":0,"is_first_party":1,"bug_type":"309","os_version":"Bridge OS 7.5 (20P5058)","roots_installed":0,"incident_id":"9505C5CC-07DE-4E81-BCCE-60D07C96D1B1","name":"recoverylogd"} +{ + "uptime" : 53, + "procRole" : "Unspecified", + "version" : 2, + "userID" : 501, + "deployVersion" : 210, + "modelCode" : "iBridge2,14", + "coalitionID" : 71, + "osVersion" : { + "isEmbedded" : true, + "train" : "Bridge OS 7.5", + "releaseType" : "User", + "build" : "20P5058" + }, + "captureTime" : "2023-06-08 14:49:13.5196 +0000", + "incident" : "9505C5CC-07DE-4E81-BCCE-60D07C96D1B1", + "pid" : 74, + "cpuType" : "ARM-64", + "roots_installed" : 0, + "bug_type" : "309", + "procLaunch" : "2023-06-08 14:49:12.5070 +0000", + "procStartAbsTime" : 1256451778, + "procExitAbsTime" : 1280646229, + "procName" : "recoverylogd", + "procPath" : "\/usr\/libexec\/recoverylogd", + "parentProc" : "launchd", + "parentPid" : 1, + "coalitionName" : "com.apple.recoverylogd", + "crashReporterKey" : "c0dec0dec0dec0dec0dec0dec0dec0dec0de0001", + "throttleTimeout" : 10, + "codeSigningID" : "com.apple.recoverylogd", + "codeSigningTeamID" : "", + "codeSigningFlags" : 570434305, + "codeSigningValidationCategory" : 1, + "codeSigningTrustLevel" : 0, + "exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGABRT"}, + "termination" : {"flags":518,"code":2,"namespace":"LIBSYSTEM","indicator":"Application Triggered Fault"}, + "asi" : {"libsystem_c.dylib":["assertion failure: \"fd != -1\" -> %lld"]}, + "faultingThread" : 5, + "threads" : [{"id":1274,"queue":"com.apple.main-thread","frames":[{"imageOffset":3336,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":1},{"imageOffset":32128,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":1},{"imageOffset":32832,"symbol":"mach_msg_overwrite","symbolLocation":484,"imageIndex":1},{"imageOffset":32336,"symbol":"mach_msg","symbolLocation":20,"imageIndex":1},{"imageOffset":499316,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":2},{"imageOffset":476328,"symbol":"__CFRunLoopRun","symbolLocation":1208,"imageIndex":2},{"imageOffset":474044,"symbol":"CFRunLoopRunSpecific","symbolLocation":584,"imageIndex":2},{"imageOffset":478008,"symbol":"CFRunLoopRun","symbolLocation":60,"imageIndex":2},{"imageOffset":14936,"imageIndex":0},{"imageOffset":5960,"symbol":"start","symbolLocation":1836,"imageIndex":3}]},{"id":1276,"queue":"com.apple.network.connection-312","frames":[{"imageOffset":21548,"symbol":"objc_release_x19","symbolLocation":60,"imageIndex":4},{"imageOffset":1342708,"symbol":"nw_protocol_options_get_protocol_handle","symbolLocation":64,"imageIndex":5},{"imageOffset":2485880,"symbol":"__nw_parameters_copy_protocol_value_from_level_block_invoke.338","symbolLocation":28,"imageIndex":5},{"imageOffset":5215308,"symbol":"nw_array_apply","symbolLocation":124,"imageIndex":5},{"imageOffset":2483804,"symbol":"nw_parameters_copy_protocol_value_from_level","symbolLocation":464,"imageIndex":5},{"imageOffset":2482088,"symbol":"nw_parameters_copy_protocol_value","symbolLocation":120,"imageIndex":5},{"imageOffset":3918972,"symbol":"nw_http2_transport_send_settings(nw_protocol_http2_transport*)","symbolLocation":140,"imageIndex":5},{"imageOffset":3762148,"symbol":"nw_protocol_http2_transport_connected(nw_protocol*, nw_protocol*)","symbolLocation":648,"imageIndex":5},{"imageOffset":6556324,"symbol":"nw_socket_connect(nw_protocol*, nw_protocol*)","symbolLocation":816,"imageIndex":5},{"imageOffset":3757820,"symbol":"nw_protocol_http2_transport_connect(nw_protocol*, nw_protocol*)","symbolLocation":160,"imageIndex":5},{"imageOffset":7909636,"symbol":"nw_endpoint_flow_connect","symbolLocation":160,"imageIndex":5},{"imageOffset":7884268,"symbol":"nw_endpoint_flow_setup_protocols","symbolLocation":4632,"imageIndex":5},{"imageOffset":7851796,"symbol":"-[NWConcrete_nw_endpoint_flow startWithHandler:]","symbolLocation":3700,"imageIndex":5},{"imageOffset":3270932,"symbol":"nw_endpoint_handler_path_change","symbolLocation":8608,"imageIndex":5},{"imageOffset":3297760,"symbol":"nw_endpoint_handler_start","symbolLocation":1016,"imageIndex":5},{"imageOffset":2742624,"symbol":"__nw_connection_start_block_invoke","symbolLocation":744,"imageIndex":5},{"imageOffset":9132,"symbol":"_dispatch_call_block_and_release","symbolLocation":24,"imageIndex":6},{"imageOffset":15420,"symbol":"_dispatch_client_callout","symbolLocation":16,"imageIndex":6},{"imageOffset":43260,"symbol":"_dispatch_lane_serial_drain","symbolLocation":644,"imageIndex":6},{"imageOffset":46084,"symbol":"_dispatch_lane_invoke","symbolLocation":444,"imageIndex":6},{"imageOffset":50540,"symbol":"_dispatch_workloop_invoke","symbolLocation":1684,"imageIndex":6},{"imageOffset":86960,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":632,"imageIndex":6},{"imageOffset":11884,"symbol":"_pthread_wqthread","symbolLocation":284,"imageIndex":7},{"imageOffset":41956,"symbol":"start_wqthread","symbolLocation":8,"imageIndex":7}]},{"id":1277,"queue":"com.apple.xpc.remote.internal","frames":[{"imageOffset":17552,"symbol":"kevent_qos","symbolLocation":8,"imageIndex":1},{"imageOffset":149296,"symbol":"_dispatch_kq_poll","symbolLocation":168,"imageIndex":6},{"imageOffset":148268,"symbol":"_dispatch_kq_drain","symbolLocation":168,"imageIndex":6},{"imageOffset":146740,"symbol":"_dispatch_event_loop_poke","symbolLocation":152,"imageIndex":6},{"imageOffset":126612,"symbol":"dispatch_mach_cancel","symbolLocation":96,"imageIndex":6},{"imageOffset":58792,"symbol":"_xpc_connection_cancel","symbolLocation":136,"imageIndex":8},{"imageOffset":66888,"symbol":"xpc_connection_cancel","symbolLocation":76,"imageIndex":8},{"imageOffset":10248,"symbol":"-[OS_remote_device dealloc]","symbolLocation":32,"imageIndex":9},{"imageOffset":17772,"symbol":"__destroy_helper_block_e8_32s40s","symbolLocation":24,"imageIndex":9},{"imageOffset":4136,"symbol":"_call_dispose_helpers_excp","symbolLocation":40,"imageIndex":10},{"imageOffset":7780,"symbol":"_Block_release","symbolLocation":300,"imageIndex":10},{"imageOffset":15420,"symbol":"_dispatch_client_callout","symbolLocation":16,"imageIndex":6},{"imageOffset":43260,"symbol":"_dispatch_lane_serial_drain","symbolLocation":644,"imageIndex":6},{"imageOffset":46036,"symbol":"_dispatch_lane_invoke","symbolLocation":396,"imageIndex":6},{"imageOffset":86960,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":632,"imageIndex":6},{"imageOffset":11884,"symbol":"_pthread_wqthread","symbolLocation":284,"imageIndex":7},{"imageOffset":41956,"symbol":"start_wqthread","symbolLocation":8,"imageIndex":7}]},{"id":1278,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1279,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"triggered":true,"id":1280,"threadState":{"x":[{"value":18},{"value":2},{"value":0},{"value":0},{"value":6103622120},{"value":0},{"value":0},{"value":0},{"value":32},{"value":16890699336612380808},{"value":18446744065477793195},{"value":16793600},{"value":16793600},{"value":16793600},{"value":4294967295},{"value":574},{"value":521},{"value":0},{"value":0},{"value":0},{"value":6103622120},{"value":0},{"value":0},{"value":2},{"value":18},{"value":6103625952},{"value":6103622672},{"value":4368396336},{"value":4388346368}],"flavor":"ARM_THREAD_STATE64","lr":{"value":8231427696},"cpsr":{"value":1073741824},"fp":{"value":6103621888},"sp":{"value":6103621824},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":8231244132,"matchesCrashFrame":1},"far":{"value":8276446856}},"queue":"com.apple.RemoteServiceDiscovery.listener-demux","frames":[{"imageOffset":4452,"symbol":"__abort_with_payload","symbolLocation":8,"imageIndex":1},{"imageOffset":188016,"symbol":"abort_with_payload_wrapper_internal","symbolLocation":100,"imageIndex":1},{"imageOffset":188064,"symbol":"abort_with_payload","symbolLocation":12,"imageIndex":1},{"imageOffset":95408,"symbol":"_os_crash_msg","symbolLocation":112,"imageIndex":11},{"imageOffset":43768,"symbol":"__remote_service_listen_with_device_block_invoke_2.cold.1","symbolLocation":80,"imageIndex":9},{"imageOffset":28112,"symbol":"__remote_service_listen_with_device_block_invoke_2","symbolLocation":396,"imageIndex":9},{"imageOffset":55368,"symbol":"__XPC_CONNECTION_EVENT_HANDLER_CALLOUT__","symbolLocation":16,"imageIndex":8},{"imageOffset":72224,"symbol":"_xpc_connection_call_event_handler","symbolLocation":68,"imageIndex":8},{"imageOffset":73216,"symbol":"_xpc_connection_mach_event","symbolLocation":936,"imageIndex":8},{"imageOffset":15600,"symbol":"_dispatch_client_callout4","symbolLocation":16,"imageIndex":6},{"imageOffset":124388,"symbol":"_dispatch_mach_msg_invoke","symbolLocation":380,"imageIndex":6},{"imageOffset":42956,"symbol":"_dispatch_lane_serial_drain","symbolLocation":340,"imageIndex":6},{"imageOffset":127408,"symbol":"_dispatch_mach_invoke","symbolLocation":448,"imageIndex":6},{"imageOffset":42956,"symbol":"_dispatch_lane_serial_drain","symbolLocation":340,"imageIndex":6},{"imageOffset":46036,"symbol":"_dispatch_lane_invoke","symbolLocation":396,"imageIndex":6},{"imageOffset":86960,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":632,"imageIndex":6},{"imageOffset":11884,"symbol":"_pthread_wqthread","symbolLocation":284,"imageIndex":7},{"imageOffset":41956,"symbol":"start_wqthread","symbolLocation":8,"imageIndex":7}]},{"id":1281,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1289,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1290,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1293,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1294,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1295,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1296,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1297,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1298,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1299,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1300,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1302,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1303,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1304,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1305,"queue":"com.apple.xpc.remote.internal","frames":[{"imageOffset":724760,"symbol":"__CFStringCheckAndReplace","symbolLocation":0,"imageIndex":2},{"imageOffset":394264,"symbol":"-[__NSCFString replaceCharactersInRange:withString:]","symbolLocation":36,"imageIndex":2},{"imageOffset":63300,"symbol":"-[NSConcreteMutableAttributedString replaceCharactersInRange:withString:]","symbolLocation":172,"imageIndex":12},{"imageOffset":61240,"symbol":"-[NSConcreteMutableAttributedString initWithString:]","symbolLocation":148,"imageIndex":12},{"imageOffset":9092,"symbol":"NWOLCopyFormattedStringIPv6Address","symbolLocation":420,"imageIndex":13},{"imageOffset":8060,"symbol":"OSLogCopyFormattedString","symbolLocation":276,"imageIndex":13},{"imageOffset":16768,"symbol":"_os_log_fmt_plugin_annotated","symbolLocation":624,"imageIndex":14},{"imageOffset":53464,"symbol":"os_log_fmt_compose","symbolLocation":1212,"imageIndex":14},{"imageOffset":74368,"symbol":"_os_log_impl_flatten_and_send","symbolLocation":588,"imageIndex":14},{"imageOffset":87000,"symbol":"os_log_pack_compose","symbolLocation":84,"imageIndex":14},{"imageOffset":4650000,"symbol":"__nwlog_snprintf_pack","symbolLocation":120,"imageIndex":5},{"imageOffset":7168376,"symbol":"-[NWOSAddressEndpoint createDescription:]","symbolLocation":880,"imageIndex":5},{"imageOffset":861868,"symbol":"__nw_endpoint_get_description_block_invoke","symbolLocation":36,"imageIndex":5},{"imageOffset":861644,"symbol":"nw_endpoint_get_description","symbolLocation":132,"imageIndex":5},{"imageOffset":2160948,"symbol":"nw_parameters_copy_description_internal","symbolLocation":2060,"imageIndex":5},{"imageOffset":2109056,"symbol":"-[NWConcrete_nw_listener initWithParameters:multicastDescriptor:]","symbolLocation":308,"imageIndex":5},{"imageOffset":2116196,"symbol":"nw_listener_create_with_connection","symbolLocation":164,"imageIndex":5},{"imageOffset":20356,"symbol":"_xpc_remote_connection_setup_nw_listener","symbolLocation":60,"imageIndex":15},{"imageOffset":18400,"symbol":"_xpc_remote_connection_connect_complete","symbolLocation":564,"imageIndex":15},{"imageOffset":10672,"symbol":"_xpc_remote_connection_connect","symbolLocation":224,"imageIndex":15},{"imageOffset":15420,"symbol":"_dispatch_client_callout","symbolLocation":16,"imageIndex":6},{"imageOffset":73244,"symbol":"_dispatch_lane_barrier_sync_invoke_and_complete","symbolLocation":52,"imageIndex":6},{"imageOffset":9900,"symbol":"xpc_remote_connection_activate","symbolLocation":104,"imageIndex":15},{"imageOffset":15404,"imageIndex":0},{"imageOffset":9132,"symbol":"_dispatch_call_block_and_release","symbolLocation":24,"imageIndex":6},{"imageOffset":15420,"symbol":"_dispatch_client_callout","symbolLocation":16,"imageIndex":6},{"imageOffset":43260,"symbol":"_dispatch_lane_serial_drain","symbolLocation":644,"imageIndex":6},{"imageOffset":46036,"symbol":"_dispatch_lane_invoke","symbolLocation":396,"imageIndex":6},{"imageOffset":86960,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":632,"imageIndex":6},{"imageOffset":11884,"symbol":"_pthread_wqthread","symbolLocation":284,"imageIndex":7},{"imageOffset":41956,"symbol":"start_wqthread","symbolLocation":8,"imageIndex":7}]},{"id":1306,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1307,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1308,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1309,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1310,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1311,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1312,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1313,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1314,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1315,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]},{"id":1316,"frames":[{"imageOffset":41948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":7}]}], + "usedImages" : [ + { + "source" : "P", + "arch" : "arm64", + "base" : 4366106624, + "size" : 32768, + "uuid" : "a919f2b7-9cdf-32df-bcd8-15c081136761", + "path" : "\/usr\/libexec\/recoverylogd", + "name" : "recoverylogd" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8231239680, + "size" : 212980, + "uuid" : "98705a09-585a-3262-b5aa-2b984fc6d5ae", + "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib", + "name" : "libsystem_kernel.dylib" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8125759488, + "size" : 3981312, + "uuid" : "7f736652-9845-36f1-bd9a-f88525b8dd22", + "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/CoreFoundation", + "name" : "CoreFoundation" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8198832128, + "size" : 475232, + "uuid" : "d30d7897-3eb3-3856-9c97-e319290c6da2", + "path" : "\/usr\/lib\/dyld", + "name" : "dyld" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8088682496, + "size" : 244896, + "uuid" : "40fd3634-be8a-38e0-a0f4-36eff34c7e1f", + "path" : "\/usr\/lib\/libobjc.A.dylib", + "name" : "libobjc.A.dylib" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8146731008, + "size" : 10993664, + "uuid" : "510acc06-c94c-30d5-8805-18b735db7534", + "path" : "\/System\/Library\/Frameworks\/Network.framework\/Network", + "name" : "Network" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8229568512, + "size" : 278528, + "uuid" : "ae69a930-1e85-30ce-abf9-0b3fb6e75ed7", + "path" : "\/usr\/lib\/system\/libdispatch.dylib", + "name" : "libdispatch.dylib" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8231993344, + "size" : 49140, + "uuid" : "2da80828-9e13-30cc-87c5-e295f27fe65d", + "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib", + "name" : "libsystem_pthread.dylib" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8232255488, + "size" : 262144, + "uuid" : "99241615-b5ae-30c2-8b3a-5e963582c16a", + "path" : "\/usr\/lib\/system\/libxpc.dylib", + "name" : "libxpc.dylib" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8190246912, + "size" : 65536, + "uuid" : "0e6cffde-53e1-3ae9-802a-b5ed15edb41f", + "path" : "\/System\/Library\/PrivateFrameworks\/RemoteServiceDiscovery.framework\/RemoteServiceDiscovery", + "name" : "RemoteServiceDiscovery" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8230158336, + "size" : 16377, + "uuid" : "3fbfac47-d375-3ed6-a7b1-64a069f40efa", + "path" : "\/usr\/lib\/system\/libsystem_blocks.dylib", + "name" : "libsystem_blocks.dylib" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8230174720, + "size" : 507892, + "uuid" : "32355db1-7f2a-3cff-bb60-c47cfb4985f1", + "path" : "\/usr\/lib\/system\/libsystem_c.dylib", + "name" : "libsystem_c.dylib" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8139096064, + "size" : 4489216, + "uuid" : "70531334-5478-3c45-8f09-a1aa4493e88e", + "path" : "\/System\/Library\/Frameworks\/Foundation.framework\/Foundation", + "name" : "Foundation" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8222507008, + "size" : 16384, + "uuid" : "e796c51d-bfb9-37ca-8a40-c52cd2bd3b6b", + "path" : "\/usr\/lib\/log\/liblog_network.dylib", + "name" : "liblog_network.dylib" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8232108032, + "size" : 114688, + "uuid" : "de906bc9-fa94-301e-8fcc-cd8eb0ab2baf", + "path" : "\/usr\/lib\/system\/libsystem_trace.dylib", + "name" : "libsystem_trace.dylib" + }, + { + "source" : "P", + "arch" : "arm64", + "base" : 8190312448, + "size" : 81920, + "uuid" : "6ef88ecf-3045-3b0c-b75b-19e9a5e425f3", + "path" : "\/System\/Library\/PrivateFrameworks\/RemoteXPC.framework\/RemoteXPC", + "name" : "RemoteXPC" + } +], + "sharedCache" : { + "base" : 8088584192, + "size" : 249495552, + "uuid" : "215181d6-5c52-307e-ab71-e76e5b399ee5" +}, + "vmSummary" : "ReadOnly portion of Libraries: Total=62.0M resident=0K(0%) swapped_out_or_unallocated=62.0M(100%)\nWritable regions: Total=49.7M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=49.7M(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nActivity Tracing 256K 1 \nDispatch continuations 2048K 1 \nKernel Alloc Once 32K 1 \nMALLOC 29.5M 192 \nMALLOC guard page 128K 8 \nSTACK GUARD 512K 32 \nStack 17.5M 32 \n__CTF 824 1 \n__DATA 424K 78 \n__DATA_CONST 4908K 78 \n__DATA_DIRTY 214K 66 \n__LINKEDIT 22.1M 2 \n__OBJC_RO 2652K 1 \n__OBJC_RW 85K 1 \n__TEXT 40.0M 79 \ndyld private memory 272K 2 \nlibnetwork 256K 16 \nmapped file 16K 1 \nshared memory 32K 2 \n=========== ======= ======= \nTOTAL 120.6M 594 \n", + "legacyInfo" : { + "threadTriggered" : { + "queue" : "com.apple.RemoteServiceDiscovery.listener-demux" + } +}, + "logWritingSignature" : "4aeec10fecbef56f4bb1a2cd39c4387a016b43fc" +} diff --git a/test_data/ips_files/stacks-2023-02-10-100716.ips b/test_data/ips_files/stacks-2023-02-10-100716.ips new file mode 100755 index 0000000000..66e3666c06 --- /dev/null +++ b/test_data/ips_files/stacks-2023-02-10-100716.ips @@ -0,0 +1,8466 @@ +{"bug_type":"288","timestamp":"2023-02-10 10:07:16.00 -0500","os_version":"iPhone OS 16.1 (20B82)","roots_installed":0,"incident_id":"7749B4FF-840A-46F8-BE88-2B19FF8ABFF3"} +{ + "build" : "iPhone OS 16.1 (20B82)", + "product" : "iPad11,1", + "kernel" : "Darwin Kernel Version 22.1.0: Thu Oct 6 19:33:53 PDT 2022; root:xnu-8792.42.7~1\/RELEASE_ARM64_T8020", + "tuning" : { + + }, + "incident" : "7749B4FF-840A-46F8-BE88-2B19FF8ABFF3", + "crashReporterKey" : "5766d7cc74220076933d9cd16b3b7ade2754d67c", + "date" : "2023-02-10 10:07:16.74 -0500", + "reason" : "sysdiagnose (stackshot only) trigger: Power + Volume Up", + "frontmostPids" : [ + 31 + ], + "exception" : "0xbaaaaaad", + "absoluteTime" : 20216783475, + "roots_installed" : 0, + "bug_type" : "288", + "memoryStatus" : {"compressorSize":29110,"compressions":229441,"decompressions":88749,"busyBufferCount":0,"memoryPressureDetails":{"pagesWanted":0,"pagesReclaimed":0},"pageSize":16384,"memoryPressure":false,"memoryPages":{"active":51759,"throttled":0,"fileBacked":53322,"wired":33827,"purgeable":2105,"inactive":48717,"free":13306,"speculative":3518}}, + "processByPid" : { + "0" : { + "pid" : 0, + "residentMemoryBytes" : 101007360, + "timesDidThrottle" : 0, + "systemTimeTask" : 0, + "pageIns" : 0, + "pageFaults" : 2765, + "userTimeTask" : 4241.9290422499998, + "procname" : "kernel_task", + "copyOnWriteFaults" : 0, + "threadById" : { + "172" : { + "continuation" : [ + 0, + 68851607096 + ], + "userTime" : 0.00043849999999999998, + "systemTime" : 0, + "id" : 172, + "basePriority" : 95, + "name" : "VM_io_reprioritize_thread", + "user_usec" : 438, + "schedPriority" : 95, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889530040 + ] + }, + "1706" : { + "continuation" : [ + 0, + 68852762428 + ], + "userTime" : 0.44029295800000001, + "systemTime" : 0, + "id" : 1706, + "basePriority" : 81, + "name" : "dlil_input_en0", + "user_usec" : 440292, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645532267 + ] + }, + "684" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.6504095830000001, + "systemTime" : 0, + "id" : 684, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 1650409, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044818499 + ] + }, + "624" : { + "userTime" : 0.0069094580000000003, + "systemTime" : 0, + "name" : "RTBuddyV2(SIO)", + "id" : 624, + "basePriority" : 81, + "user_usec" : 6909, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68857287048 + ], + [ + 0, + 68850517952 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044817619 + ] + }, + "589" : { + "continuation" : [ + 0, + 68852280732 + ], + "userTime" : 9.8330000000000006e-06, + "systemTime" : 0, + "id" : 589, + "basePriority" : 81, + "user_usec" : 9, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889692408 + ] + }, + "1854" : { + "continuation" : [ + 0, + 68852801132 + ], + "userTime" : 1.8499999999999999e-05, + "systemTime" : 0, + "id" : 1854, + "basePriority" : 82, + "name" : "ifnet_start_en2", + "user_usec" : 18, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645550835 + ] + }, + "781" : { + "continuation" : [ + 0, + 68851115720 + ], + "userTime" : 1.9207620409999999, + "systemTime" : 0, + "id" : 781, + "basePriority" : 92, + "name" : "thread call kernel-high #1", + "user_usec" : 1920762, + "schedPriority" : 92, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889367680 + ] + }, + "1707" : { + "continuation" : [ + 0, + 68852801132 + ], + "userTime" : 0.037516415999999997, + "systemTime" : 0, + "id" : 1707, + "basePriority" : 82, + "name" : "skywalk_doorbell_en0_tx", + "user_usec" : 37516, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645530163 + ] + }, + "2052" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 5.7910000000000001e-06, + "systemTime" : 0, + "id" : 2052, + "basePriority" : 81, + "name" : "IOSkywalkNetworkBSDClient", + "user_usec" : 5, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044778371 + ] + }, + "114" : { + "continuation" : [ + 0, + 68851656140 + ], + "userTime" : 0.133890125, + "systemTime" : 0, + "id" : 114, + "basePriority" : 31, + "name" : "VM_pageout_garbage_collect", + "user_usec" : 133890, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68851656140 + ] + }, + "175" : { + "continuation" : [ + 0, + 68855315520 + ], + "userTime" : 3.5829999999999998e-06, + "systemTime" : 0, + "id" : 175, + "basePriority" : 81, + "user_usec" : 3, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889953376 + ] + }, + "145" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0034030409999999999, + "systemTime" : 0, + "id" : 145, + "basePriority" : 81, + "name" : "AppleCredentialManager", + "user_usec" : 3403, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044808899 + ] + }, + "657" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.2208000000000001e-05, + "systemTime" : 0, + "id" : 657, + "basePriority" : 81, + "name" : "AppleSMCPMU", + "user_usec" : 12, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044817779 + ] + }, + "115" : { + "id" : 115, + "schedPriority" : 63, + "system_usec" : 0, + "kernelFrames" : [ + [ + 0, + 68850958644 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "user_usec" : 0, + "basePriority" : 63, + "userTime" : 0, + "waitEvent" : [ + 0, + 68889820176 + ], + "continuation" : [ + 0, + 68850890040 + ], + "systemTime" : 0, + "name" : "daemon.core-analytics-events" + }, + "2040" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.875e-06, + "systemTime" : 0, + "id" : 2040, + "basePriority" : 81, + "name" : "IOSlowAdaptiveClockingDomain", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044791411 + ] + }, + "176" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 4.3749999999999996e-06, + "systemTime" : 0, + "id" : 176, + "basePriority" : 81, + "name" : "AppleARMBacklight", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044809699 + ] + }, + "116" : { + "continuation" : [ + 0, + 68851731308 + ], + "userTime" : 6.083e-06, + "systemTime" : 0, + "id" : 116, + "basePriority" : 91, + "name" : "VM_reclaim", + "user_usec" : 6, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68845061808 + ] + }, + "850" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 2.0458e-05, + "systemTime" : 0, + "id" : 850, + "basePriority" : 81, + "name" : "AppleCS46L10MikeyBus", + "user_usec" : 20, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044822499 + ] + }, + "273" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.9160000000000003e-06, + "systemTime" : 0, + "id" : 273, + "basePriority" : 81, + "name" : "AppleT8020PMGR", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044809779 + ] + }, + "659" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.6660000000000008e-06, + "systemTime" : 0, + "id" : 659, + "basePriority" : 81, + "user_usec" : 7, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044817859 + ] + }, + "117" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.041610665999999998, + "systemTime" : 0, + "id" : 117, + "basePriority" : 81, + "name" : "ASIOKit", + "user_usec" : 41610, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044808739 + ] + }, + "755" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 2.5409999999999999e-06, + "systemTime" : 0, + "id" : 755, + "basePriority" : 81, + "name" : "AppleOLYHALPortInterfacePCIeAMFM", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044820739 + ] + }, + "1709" : { + "continuation" : [ + 0, + 68856206620 + ], + "userTime" : 0.094371290999999996, + "systemTime" : 0, + "id" : 1709, + "basePriority" : 81, + "name" : "skywalk_fsw_reap_en0", + "user_usec" : 94371, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469145490696747 + ] + }, + "725" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.5076579159999999, + "systemTime" : 0, + "id" : 725, + "basePriority" : 81, + "name" : "IOSurfaceRoot", + "user_usec" : 3507657, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044819619 + ] + }, + "851" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.2093430829999998, + "systemTime" : 0, + "id" : 851, + "basePriority" : 81, + "name" : "AppleHIDTransportDeviceSPI", + "user_usec" : 3209343, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044822579 + ] + }, + "2041" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 9.7499999999999998e-06, + "systemTime" : 0, + "id" : 2041, + "basePriority" : 81, + "name" : "IOSlowAdaptiveClockingDomain", + "user_usec" : 9, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044787651 + ] + }, + "821" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 6.7909999999999999e-06, + "systemTime" : 0, + "id" : 821, + "basePriority" : 81, + "name" : "AppleAOPAudioController", + "user_usec" : 6, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044822179 + ] + }, + "1844" : { + "continuation" : [ + 0, + 68852762428 + ], + "userTime" : 1.1708e-05, + "systemTime" : 0, + "id" : 1844, + "basePriority" : 81, + "name" : "dlil_input_anpi0", + "user_usec" : 11, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645520171 + ] + }, + "882" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.8330000000000004e-06, + "systemTime" : 0, + "id" : 882, + "basePriority" : 81, + "user_usec" : 3, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044822899 + ] + }, + "149" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.9999999999999998e-06, + "systemTime" : 0, + "id" : 149, + "basePriority" : 81, + "name" : "AUC", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044808979 + ] + }, + "822" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 4.3329999999999998e-06, + "systemTime" : 0, + "id" : 822, + "basePriority" : 81, + "name" : "AppleSPUProfileDriver", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044822259 + ] + }, + "311" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.6166000000000001e-05, + "systemTime" : 0, + "id" : 311, + "basePriority" : 81, + "name" : "AppleBluetoothModule", + "user_usec" : 16, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044811939 + ] + }, + "276" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.5829999999999998e-06, + "systemTime" : 0, + "id" : 276, + "basePriority" : 81, + "user_usec" : 3, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044809859 + ] + }, + "758" : { + "userTime" : 0.001030333, + "systemTime" : 0, + "name" : "AppleS8000AESAccelerator", + "id" : 758, + "basePriority" : 81, + "user_usec" : 1030, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68857287048 + ], + [ + 0, + 68850517952 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044820819 + ] + }, + "2030" : { + "continuation" : [ + 0, + 68852762428 + ], + "userTime" : 0.003417458, + "systemTime" : 0, + "id" : 2030, + "basePriority" : 81, + "name" : "dlil_input_awdl0", + "user_usec" : 3417, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645555963 + ] + }, + "950" : { + "continuation" : [ + 0, + 68851342388 + ], + "userTime" : 0.53595416600000001, + "systemTime" : 0, + "id" : 950, + "basePriority" : 91, + "name" : "VM_cswap_trigger", + "user_usec" : 535954, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889504420 + ] + }, + "789" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.2910000000000002e-06, + "systemTime" : 0, + "id" : 789, + "basePriority" : 81, + "name" : "AppleEmbeddedGPSControl", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044821699 + ] + }, + "2056" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 6.1249999999999998e-06, + "systemTime" : 0, + "id" : 2056, + "basePriority" : 81, + "user_usec" : 6, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044778531 + ] + }, + "313" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 5.0409999999999997e-06, + "systemTime" : 0, + "id" : 313, + "basePriority" : 81, + "name" : "AppleSocHot", + "user_usec" : 5, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044812019 + ] + }, + "825" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 4.8749999999999999e-06, + "systemTime" : 0, + "id" : 825, + "basePriority" : 81, + "name" : "AppleSPUProfileFirmwareDriver", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044822339 + ] + }, + "951" : { + "id" : 951, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "schedFlags" : [ + "TH_SFLAG_UNKNOWN_0x20000" + ], + "user_usec" : 1222209, + "basePriority" : 91, + "userTime" : 1.2222098749999999, + "waitEvent" : [ + 0, + 68889530176 + ], + "continuation" : [ + 0, + 68851673088 + ], + "systemTime" : 0, + "name" : "VM_compressor" + }, + "1846" : { + "continuation" : [ + 0, + 68852801132 + ], + "userTime" : 0.0013165410000000001, + "systemTime" : 0, + "id" : 1846, + "basePriority" : 82, + "name" : "ifnet_start_anpi0", + "user_usec" : 1316, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645518067 + ] + }, + "2031" : { + "continuation" : [ + 0, + 68852801132 + ], + "userTime" : 0.00058975, + "systemTime" : 0, + "id" : 2031, + "basePriority" : 82, + "name" : "skywalk_doorbell_awdl0_tx", + "user_usec" : 589, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645553859 + ] + }, + "279" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.5829999999999998e-06, + "systemTime" : 0, + "id" : 279, + "basePriority" : 81, + "name" : "AppleSamsungSerial", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044809939 + ] + }, + "952" : { + "id" : 952, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "schedFlags" : [ + "TH_SFLAG_UNKNOWN_0x20000" + ], + "user_usec" : 199592, + "basePriority" : 91, + "userTime" : 0.199592666, + "waitEvent" : [ + 0, + 68889530177 + ], + "continuation" : [ + 0, + 68851673088 + ], + "systemTime" : 0, + "name" : "VM_compressor" + }, + "2057" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.208e-06, + "systemTime" : 0, + "id" : 2057, + "basePriority" : 81, + "user_usec" : 8, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044778771 + ] + }, + "1834" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.4166e-05, + "systemTime" : 0, + "id" : 1834, + "basePriority" : 81, + "name" : "IOAccessoryPortUSB", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044780051 + ] + }, + "315" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.7500000000000001e-06, + "systemTime" : 0, + "id" : 315, + "basePriority" : 81, + "name" : "AppleT8015TempSensor", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044812099 + ] + }, + "953" : { + "continuation" : [ + 0, + 68851392200 + ], + "userTime" : 0.075704999999999995, + "systemTime" : 0, + "id" : 953, + "basePriority" : 91, + "name" : "VM_swapout", + "user_usec" : 75705, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68851392200 + ] + }, + "472" : { + "userTime" : 0.0039836250000000002, + "systemTime" : 0, + "name" : "RTBuddyV2(GFX)", + "id" : 472, + "basePriority" : 81, + "user_usec" : 3983, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68857287048 + ], + [ + 0, + 68850517952 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044815299 + ] + }, + "1982" : { + "continuation" : [ + 0, + 68856206620 + ], + "userTime" : 0.035644207999999997, + "systemTime" : 0, + "id" : 1982, + "basePriority" : 81, + "name" : "skywalk_fsw_reap_en2", + "user_usec" : 35644, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469145490699627 + ] + }, + "954" : { + "continuation" : [ + 0, + 68851389420 + ], + "userTime" : 0.0055439160000000003, + "systemTime" : 0, + "id" : 954, + "basePriority" : 91, + "name" : "VM_swapfile_create", + "user_usec" : 5543, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889522528 + ] + }, + "412" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.6659999999999997e-06, + "systemTime" : 0, + "id" : 412, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 8, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044813779 + ] + }, + "377" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.1659999999999994e-06, + "systemTime" : 0, + "id" : 377, + "basePriority" : 81, + "name" : "AppleT8015TempSensor", + "user_usec" : 8, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044813059 + ] + }, + "2058" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 6.9580000000000001e-06, + "systemTime" : 0, + "id" : 2058, + "basePriority" : 81, + "user_usec" : 6, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044778851 + ] + }, + "889" : { + "userTime" : 1.0832999999999999e-05, + "systemTime" : 0, + "system_usec" : 0, + "id" : 889, + "basePriority" : 81, + "user_usec" : 10, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68871564956 + ], + [ + 0, + 68871534348 + ], + [ + 0, + 68857302072 + ], + [ + 0, + 68871533916 + ], + [ + 0, + 68879561544 + ], + [ + 0, + 68850517952 + ] + ], + "schedPriority" : 81, + "state" : [ + "TH_WAIT" + ], + "waitEvent" : [ + 1, + 13560469141640703107 + ] + }, + "859" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 4.3329999999999998e-06, + "systemTime" : 0, + "id" : 859, + "basePriority" : 81, + "name" : "AppleSMCHighVoltageCharger", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044822659 + ] + }, + "985" : { + "continuation" : [ + 0, + 68886513024 + ], + "userTime" : 0.0011166660000000001, + "systemTime" : 0, + "id" : 985, + "basePriority" : 31, + "name" : "purgatory_cleaner", + "user_usec" : 1116, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469133910580859 + ] + }, + "1848" : { + "continuation" : [ + 0, + 68856206620 + ], + "userTime" : 0.042937833000000002, + "systemTime" : 0, + "id" : 1848, + "basePriority" : 81, + "name" : "skywalk_fsw_reap_anpi0", + "user_usec" : 42937, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469145490698187 + ] + }, + "955" : { + "continuation" : [ + 0, + 68851382564 + ], + "userTime" : 6.3749999999999999e-06, + "systemTime" : 0, + "id" : 955, + "basePriority" : 91, + "name" : "VM_swapfile_gc", + "user_usec" : 6, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889522532 + ] + }, + "413" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 6.2910000000000004e-06, + "systemTime" : 0, + "id" : 413, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 6, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044813859 + ] + }, + "348" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.8750000000000002e-06, + "systemTime" : 0, + "id" : 348, + "basePriority" : 81, + "name" : "AppleOLYHAL", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044812579 + ] + }, + "2033" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 6.9160000000000004e-06, + "systemTime" : 0, + "id" : 2033, + "basePriority" : 81, + "name" : "IOSlowAdaptiveClockingDomain", + "user_usec" : 6, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044787571 + ] + }, + "414" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.4708e-05, + "systemTime" : 0, + "id" : 414, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044813939 + ] + }, + "319" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 4.0829999999999997e-06, + "systemTime" : 0, + "id" : 319, + "basePriority" : 81, + "name" : "AppleT8015TempSensor", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044812179 + ] + }, + "446" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.2910000000000002e-06, + "systemTime" : 0, + "id" : 446, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044815139 + ] + }, + "988" : { + "continuation" : [ + 0, + 68886513024 + ], + "userTime" : 8.1659999999999994e-06, + "systemTime" : 0, + "id" : 988, + "basePriority" : 31, + "name" : "purgatory_cleaner", + "user_usec" : 8, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469133910548091 + ] + }, + "417" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 9.8749999999999995e-06, + "systemTime" : 0, + "id" : 417, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 9, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044814019 + ] + }, + "418" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.0409999999999998e-06, + "systemTime" : 0, + "id" : 418, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 8, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044814099 + ] + }, + "670" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0002375, + "systemTime" : 0, + "id" : 670, + "basePriority" : 81, + "name" : "RTBuddyCrashlogEndpoint(AOP)", + "user_usec" : 237, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044818259 + ] + }, + "610" : { + "continuation" : [ + 0, + 68855390364 + ], + "userTime" : 0.21247812499999999, + "systemTime" : 0, + "id" : 610, + "basePriority" : 81, + "name" : "VM_freezer", + "user_usec" : 212478, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889774188 + ] + }, + "575" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.6249999999999998e-06, + "systemTime" : 0, + "id" : 575, + "basePriority" : 81, + "name" : "AppleSEPARTService", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044816899 + ] + }, + "611" : { + "continuation" : [ + 0, + 68855344676 + ], + "userTime" : 1.3833e-05, + "systemTime" : 0, + "id" : 611, + "basePriority" : 95, + "name" : "VM_memorystatus_1", + "user_usec" : 13, + "schedPriority" : 95, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469124888601615 + ] + }, + "160" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00071429100000000004, + "systemTime" : 0, + "id" : 160, + "basePriority" : 81, + "name" : "AppleSSE", + "user_usec" : 714, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044809379 + ] + }, + "546" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.15e-05, + "systemTime" : 0, + "id" : 546, + "basePriority" : 81, + "name" : "AGXFirmwareKextG11PRTBuddy", + "user_usec" : 11, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044816419 + ] + }, + "612" : { + "continuation" : [ + 0, + 68855344676 + ], + "userTime" : 1.2458e-05, + "systemTime" : 0, + "id" : 612, + "basePriority" : 95, + "name" : "VM_memorystatus_2", + "user_usec" : 12, + "schedPriority" : 95, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469124888601663 + ] + }, + "517" : { + "userTime" : 0.012215708, + "systemTime" : 0, + "name" : "RTBuddyV2(ANS2)", + "id" : 517, + "basePriority" : 81, + "user_usec" : 12215, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68857287048 + ], + [ + 0, + 68850517952 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044815859 + ] + }, + "101" : { + "continuation" : [ + 0, + 68851672788 + ], + "userTime" : 2.800830666, + "systemTime" : 0, + "id" : 101, + "basePriority" : 91, + "name" : "VM_pageout_scan", + "user_usec" : 2800830, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889542800 + ] + }, + "613" : { + "continuation" : [ + 0, + 68855344676 + ], + "userTime" : 1.5125e-05, + "systemTime" : 0, + "id" : 613, + "basePriority" : 95, + "name" : "VM_memorystatus_3", + "user_usec" : 15, + "schedPriority" : 95, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469124888601711 + ] + }, + "162" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.003812916, + "systemTime" : 0, + "id" : 162, + "basePriority" : 81, + "name" : "CoreAnalyticsHub", + "user_usec" : 3812, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044809459 + ] + }, + "548" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00030741600000000003, + "systemTime" : 0, + "id" : 548, + "basePriority" : 81, + "name" : "AppleSEPManager", + "user_usec" : 307, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044816499 + ] + }, + "518" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.2082999999999999e-05, + "systemTime" : 0, + "id" : 518, + "basePriority" : 81, + "name" : "AppleDialogSPMIPMU", + "user_usec" : 12, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044815939 + ] + }, + "102" : { + "userTime" : 793.98231091599996, + "systemTime" : 0, + "system_usec" : 0, + "id" : 102, + "basePriority" : 0, + "user_usec" : 793982310, + "kernelFrames" : [ + [ + 0, + 68850967220 + ], + [ + 0, + 68850967808 + ], + [ + 0, + 68850517952 + ] + ], + "schedPriority" : 0, + "name" : "idle #4", + "state" : [ + "TH_RUN", + "TH_IDLE" + ] + }, + "770" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.002131291, + "systemTime" : 0, + "id" : 770, + "basePriority" : 81, + "name" : "InterruptEventSourceBridge", + "user_usec" : 2131, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044821459 + ] + }, + "740" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 4.2910000000000001e-06, + "systemTime" : 0, + "id" : 740, + "basePriority" : 81, + "name" : "IOGPU Default WorkLoop", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044820099 + ] + }, + "103" : { + "continuation" : [ + 0, + 68850948180 + ], + "userTime" : 0.29530091600000002, + "systemTime" : 0, + "id" : 103, + "basePriority" : 95, + "name" : "sched_maintenance_thread", + "user_usec" : 295300, + "schedPriority" : 95, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68850948180 + ] + }, + "771" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 4.0409999999999999e-06, + "systemTime" : 0, + "id" : 771, + "basePriority" : 81, + "name" : "InterruptEventSourceBridge", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044821779 + ] + }, + "615" : { + "continuation" : [ + 0, + 68853652932 + ], + "userTime" : 1.8457999999999998e-05, + "systemTime" : 0, + "id" : 615, + "basePriority" : 81, + "name" : "CFIL_STATS_REPORT", + "user_usec" : 18, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "waitEvent" : [ + 0, + 68889723696 + ] + }, + "741" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.9160000000000003e-06, + "systemTime" : 0, + "id" : 741, + "basePriority" : 81, + "name" : "IOGPU Submission", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044820179 + ] + }, + "104" : { + "continuation" : [ + 0, + 68850968684 + ], + "userTime" : 6.2079999999999997e-06, + "systemTime" : 0, + "id" : 104, + "basePriority" : 95, + "user_usec" : 6, + "system_usec" : 0, + "schedPriority" : 95, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68850968684 + ] + }, + "772" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 6.7499999999999997e-06, + "systemTime" : 0, + "id" : 772, + "basePriority" : 81, + "name" : "VideoInterfaceMerge", + "user_usec" : 6, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044821859 + ] + }, + "2026" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.8832999999999995e-05, + "systemTime" : 0, + "id" : 2026, + "basePriority" : 81, + "name" : "IOUserNetworkTxSubmissionQueue", + "user_usec" : 88, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044787331 + ] + }, + "742" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.216096375, + "systemTime" : 0, + "id" : 742, + "basePriority" : 81, + "name" : "IOGPU Completion", + "user_usec" : 1216096, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044820259 + ] + }, + "712" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0025975830000000001, + "systemTime" : 0, + "id" : 712, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 2597, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044819379 + ] + }, + "291" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.076012125, + "systemTime" : 0, + "id" : 291, + "basePriority" : 81, + "name" : "AppleGen0SPMIController", + "user_usec" : 76012, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044810739 + ] + }, + "105" : { + "continuation" : [ + 0, + 68850890040 + ], + "userTime" : 1.3263893330000001, + "systemTime" : 0, + "id" : 105, + "basePriority" : 80, + "name" : "daemon.deferred-deallocation", + "user_usec" : 1326389, + "schedPriority" : 80, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889829432 + ] + }, + "773" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 6.2745166660000002, + "systemTime" : 0, + "id" : 773, + "basePriority" : 81, + "name" : "VideoModeMailboxHandler", + "user_usec" : 6274516, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044821939 + ] + }, + "743" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0051114999999999997, + "systemTime" : 0, + "id" : 743, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 5111, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044820339 + ] + }, + "713" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0025440409999999999, + "systemTime" : 0, + "id" : 713, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 2544, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044819459 + ] + }, + "292" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00092891600000000001, + "systemTime" : 0, + "id" : 292, + "basePriority" : 81, + "name" : "AppleT8020LPDPTXPHY", + "user_usec" : 928, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044810819 + ] + }, + "2027" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0011633749999999999, + "systemTime" : 0, + "id" : 2027, + "basePriority" : 81, + "name" : "IOUserNetworkWLAN", + "user_usec" : 1163, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044787411 + ] + }, + "106" : { + "continuation" : [ + 0, + 68850890040 + ], + "userTime" : 0.003469916, + "systemTime" : 0, + "id" : 106, + "basePriority" : 93, + "name" : "daemon.thread-stack", + "user_usec" : 3469, + "schedPriority" : 93, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889831408 + ] + }, + "774" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 6.0171492500000001, + "systemTime" : 0, + "id" : 774, + "basePriority" : 81, + "name" : "InterruptEventSourceBridge", + "user_usec" : 6017149, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044822019 + ] + }, + "1257" : { + "id" : 1257, + "schedPriority" : 47, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "schedFlags" : [ + "TH_SFLAG_EAGERPREEMPT" + ], + "user_usec" : 127196, + "basePriority" : 47, + "userTime" : 0.127196958, + "waitEvent" : [ + 0, + 68889368320 + ], + "continuation" : [ + 0, + 68851115720 + ], + "systemTime" : 0, + "name" : "thread call qos-ui #1" + }, + "744" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.24343504099999999, + "systemTime" : 0, + "id" : 744, + "basePriority" : 81, + "name" : "InterruptEventSourceBridge", + "user_usec" : 243435, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044820419 + ] + }, + "679" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0017910409999999999, + "systemTime" : 0, + "id" : 679, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 1791, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044818339 + ] + }, + "107" : { + "id" : 107, + "schedPriority" : 80, + "system_usec" : 0, + "kernelFrames" : [ + [ + 0, + 68850958644 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "user_usec" : 0, + "basePriority" : 80, + "userTime" : 0, + "waitEvent" : [ + 0, + 68889831232 + ], + "continuation" : [ + 0, + 68850890040 + ], + "systemTime" : 0, + "name" : "daemon.thread-exception" + }, + "745" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 2.0829999999999998e-06, + "systemTime" : 0, + "id" : 745, + "basePriority" : 81, + "name" : "AGXAcceleratorG11P_B0", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044820499 + ] + }, + "871" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.7079999999999999e-06, + "systemTime" : 0, + "id" : 871, + "basePriority" : 81, + "name" : "AppleMAX98728Amp", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044822819 + ] + }, + "168" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.7079999999999999e-06, + "systemTime" : 0, + "id" : 168, + "basePriority" : 81, + "name" : "AppleUSBHostResources", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044809539 + ] + }, + "294" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.2499999999999998e-06, + "systemTime" : 0, + "id" : 294, + "basePriority" : 81, + "name" : "AppleAgileDPDisplaySACController", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044810899 + ] + }, + "2028" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.006152416, + "systemTime" : 0, + "id" : 2028, + "basePriority" : 81, + "name" : "IOUserNetworkWLAN", + "user_usec" : 6152, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044787491 + ] + }, + "390" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 6.083e-06, + "systemTime" : 0, + "id" : 390, + "basePriority" : 81, + "name" : "AppleSocHot", + "user_usec" : 6, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044813219 + ] + }, + "108" : { + "id" : 108, + "schedPriority" : 80, + "system_usec" : 0, + "kernelFrames" : [ + [ + 0, + 68850958644 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "user_usec" : 0, + "basePriority" : 80, + "userTime" : 0, + "waitEvent" : [ + 0, + 68889831280 + ], + "continuation" : [ + 0, + 68850890040 + ], + "systemTime" : 0, + "name" : "daemon.thread-backtrace" + }, + "746" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 2.225300125, + "systemTime" : 0, + "id" : 746, + "basePriority" : 81, + "name" : "AGXAcceleratorG11P_B0", + "user_usec" : 2225300, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044820579 + ] + }, + "1380" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.17658754099999999, + "systemTime" : 0, + "id" : 1380, + "basePriority" : 81, + "name" : "IOUserNetworkWLAN", + "user_usec" : 176587, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044824019 + ] + }, + "295" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 5.9126245830000004, + "name" : "AppleCLCD", + "id" : 295, + "basePriority" : 81, + "user_usec" : 5912624, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_RUN" + ], + "systemTime" : 0 + }, + "300" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00089379100000000001, + "systemTime" : 0, + "id" : 300, + "basePriority" : 81, + "name" : "AppleJPEGDriver", + "user_usec" : 893, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044811299 + ] + }, + "109" : { + "continuation" : [ + 0, + 68851114656 + ], + "userTime" : 0.052070416000000001, + "systemTime" : 0, + "id" : 109, + "basePriority" : 94, + "name" : "thread_call_daemon", + "user_usec" : 52070, + "schedPriority" : 94, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889370240 + ] + }, + "747" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.000254083, + "systemTime" : 0, + "id" : 747, + "basePriority" : 81, + "name" : "AGXAcceleratorG11P_B0", + "user_usec" : 254, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044820659 + ] + }, + "296" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 10.811760082999999, + "systemTime" : 0, + "id" : 296, + "basePriority" : 81, + "name" : "IOAsynchronousScheduler", + "user_usec" : 10811760, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044811059 + ] + }, + "301" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.5410000000000001e-06, + "systemTime" : 0, + "id" : 301, + "basePriority" : 81, + "name" : "AppleMCA2Switch", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044811379 + ] + }, + "392" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 6.9160000000000004e-06, + "systemTime" : 0, + "id" : 392, + "basePriority" : 81, + "name" : "AppleT8020MTRTempSensor", + "user_usec" : 6, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044813299 + ] + }, + "362" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 9.2080000000000006e-06, + "systemTime" : 0, + "id" : 362, + "basePriority" : 81, + "name" : "AppleSMCSensorDispatcher", + "user_usec" : 9, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044812819 + ] + }, + "1381" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.040010791, + "systemTime" : 0, + "id" : 1381, + "basePriority" : 81, + "name" : "IOUserNetworkWLAN", + "user_usec" : 1040010, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044824099 + ] + }, + "718" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.001349041, + "systemTime" : 0, + "id" : 718, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 1349, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044819539 + ] + }, + "297" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0045146250000000004, + "systemTime" : 0, + "id" : 297, + "basePriority" : 81, + "name" : "InterruptEventSourceBridge", + "user_usec" : 4514, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044811139 + ] + }, + "302" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.4999999999999999e-06, + "systemTime" : 0, + "id" : 302, + "basePriority" : 81, + "name" : "AppleMCA2Cluster_T8020", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044811459 + ] + }, + "814" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 4.1250000000000003e-06, + "systemTime" : 0, + "id" : 814, + "basePriority" : 81, + "name" : "AppleAOPVoiceTriggerController", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044822099 + ] + }, + "393" : { + "userTime" : 656.59398012500003, + "systemTime" : 0, + "system_usec" : 0, + "id" : 393, + "basePriority" : 0, + "user_usec" : 656593980, + "kernelFrames" : [ + [ + 0, + 68850967220 + ], + [ + 0, + 68850967808 + ], + [ + 0, + 68850517952 + ] + ], + "schedPriority" : 0, + "name" : "idle #3", + "state" : [ + "TH_RUN", + "TH_IDLE" + ] + }, + "940" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.1659999999999999e-06, + "systemTime" : 0, + "id" : 940, + "basePriority" : 81, + "name" : "AppleImage4", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044823299 + ] + }, + "363" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.2707999999999999e-05, + "systemTime" : 0, + "id" : 363, + "basePriority" : 81, + "name" : "AppleDieTempController", + "user_usec" : 12, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044812899 + ] + }, + "303" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.625e-06, + "systemTime" : 0, + "id" : 303, + "basePriority" : 81, + "name" : "AppleMCA2Cluster_T8020", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044811539 + ] + }, + "2521" : { + "continuation" : [ + 0, + 68852762428 + ], + "userTime" : 1.4541e-05, + "systemTime" : 0, + "id" : 2521, + "basePriority" : 81, + "name" : "dlil_input_utun1", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645565035 + ] + }, + "490" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.1457999999999999e-05, + "systemTime" : 0, + "id" : 490, + "basePriority" : 81, + "name" : "AppleCBTL1612", + "user_usec" : 11, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044815619 + ] + }, + "334" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.7910000000000002e-06, + "systemTime" : 0, + "id" : 334, + "basePriority" : 81, + "name" : "AppleT8015TempSensor", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044812419 + ] + }, + "1222" : { + "id" : 1222, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "schedFlags" : [ + "TH_SFLAG_EAGERPREEMPT" + ], + "user_usec" : 101861, + "basePriority" : 31, + "userTime" : 0.10186129100000001, + "waitEvent" : [ + 0, + 68889366400 + ], + "continuation" : [ + 0, + 68851115720 + ], + "systemTime" : 0, + "name" : "thread call user #1" + }, + "299" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.19275766599999999, + "systemTime" : 0, + "id" : 299, + "basePriority" : 81, + "name" : "AppleM2ScalerCSCDriver", + "user_usec" : 192757, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044811219 + ] + }, + "972" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0063343330000000002, + "systemTime" : 0, + "id" : 972, + "basePriority" : 81, + "name" : "AppleSEPManager", + "user_usec" : 6334, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044823459 + ] + }, + "304" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.6660000000000001e-06, + "systemTime" : 0, + "id" : 304, + "basePriority" : 81, + "name" : "AppleMCA2Cluster_T8020", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044811619 + ] + }, + "942" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 2.5830000000000001e-06, + "systemTime" : 0, + "id" : 942, + "basePriority" : 81, + "name" : "AppleMobileApNonce", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044823379 + ] + }, + "400" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.0916e-05, + "systemTime" : 0, + "id" : 400, + "basePriority" : 81, + "name" : "AppleVTempDispatcher", + "user_usec" : 10, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044813459 + ] + }, + "2005" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.2500000000000001e-05, + "systemTime" : 0, + "id" : 2005, + "basePriority" : 81, + "name" : "IOSkywalkNetworkBSDClient", + "user_usec" : 12, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044790771 + ] + }, + "9980" : { + "continuation" : [ + 0, + 68851115720 + ], + "userTime" : 0.00056970800000000004, + "systemTime" : 0, + "id" : 9980, + "basePriority" : 93, + "name" : "thread call high #11", + "user_usec" : 569, + "schedPriority" : 93, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889365120 + ] + }, + "305" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.4580000000000002e-06, + "systemTime" : 0, + "id" : 305, + "basePriority" : 81, + "name" : "AppleMCA2Cluster_T8020", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044811699 + ] + }, + "973" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 5.0409999999999997e-06, + "systemTime" : 0, + "id" : 973, + "basePriority" : 81, + "name" : "AppleSEPManager", + "user_usec" : 5, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044823539 + ] + }, + "2522" : { + "continuation" : [ + 0, + 68852801132 + ], + "userTime" : 4.1499999999999999e-05, + "systemTime" : 0, + "id" : 2522, + "basePriority" : 82, + "name" : "ifnet_start_utun1", + "user_usec" : 41, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645562931 + ] + }, + "366" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.833e-06, + "systemTime" : 0, + "id" : 366, + "basePriority" : 81, + "name" : "AppleT8015TempSensor", + "user_usec" : 8, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044812979 + ] + }, + "4370" : { + "continuation" : [ + 0, + 68855894760 + ], + "userTime" : 0.000269583, + "systemTime" : 0, + "id" : 4370, + "basePriority" : 81, + "name" : "TRACKER_GC", + "user_usec" : 269, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "waitEvent" : [ + 0, + 68889996584 + ] + }, + "1045" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.000868333, + "systemTime" : 0, + "id" : 1045, + "basePriority" : 81, + "name" : "AppleMultitouchHIDService", + "user_usec" : 868, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044824899 + ] + }, + "848" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00091637499999999998, + "systemTime" : 0, + "id" : 848, + "basePriority" : 81, + "name" : "AppleCS46L10Audio", + "user_usec" : 916, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044822419 + ] + }, + "306" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0026743330000000001, + "systemTime" : 0, + "id" : 306, + "basePriority" : 81, + "name" : "AppleLEAPController", + "user_usec" : 2674, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044811779 + ] + }, + "432" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.0458e-05, + "systemTime" : 0, + "id" : 432, + "basePriority" : 81, + "name" : "AppleMCA2Controller_T8020", + "user_usec" : 10, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044814739 + ] + }, + "402" : { + "userTime" : 621.40421341599995, + "systemTime" : 0, + "system_usec" : 0, + "id" : 402, + "basePriority" : 0, + "user_usec" : 621404213, + "kernelFrames" : [ + [ + 0, + 68850967220 + ], + [ + 0, + 68850967808 + ], + [ + 0, + 68850517952 + ] + ], + "schedPriority" : 0, + "name" : "idle #0", + "state" : [ + "TH_RUN", + "TH_IDLE" + ] + }, + "2670" : { + "continuation" : [ + 0, + 68856338380 + ], + "userTime" : 1.1416e-05, + "systemTime" : 0, + "id" : 2670, + "basePriority" : 81, + "name" : "skywalk_utun4_rx_0", + "user_usec" : 11, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469133905528819 + ] + }, + "307" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0055922080000000004, + "systemTime" : 0, + "id" : 307, + "basePriority" : 81, + "name" : "IOPCIConfigurator", + "user_usec" : 5592, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044811859 + ] + }, + "433" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.060315291, + "systemTime" : 0, + "id" : 433, + "basePriority" : 81, + "name" : "AppleMCA2Controller_T8020", + "user_usec" : 60315, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044814819 + ] + }, + "590" : { + "continuation" : [ + 0, + 68852279336 + ], + "userTime" : 0.28577033299999999, + "systemTime" : 0, + "id" : 590, + "basePriority" : 81, + "user_usec" : 285770, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889692360 + ] + }, + "434" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.4580000000000004e-06, + "systemTime" : 0, + "id" : 434, + "basePriority" : 81, + "name" : "AppleMCA2Controller_T8020", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044814899 + ] + }, + "11572" : { + "userTime" : 0.051590749999999998, + "systemTime" : 0, + "system_usec" : 0, + "id" : 11572, + "basePriority" : 81, + "user_usec" : 51590, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68850867468 + ], + [ + 0, + 68855314560 + ], + [ + 0, + 68887050412 + ], + [ + 0, + 68850517952 + ] + ], + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469137769340059 + ] + }, + "399" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.6249999999999998e-06, + "systemTime" : 0, + "id" : 399, + "basePriority" : 81, + "name" : "AppleSocHot", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044813379 + ] + }, + "404" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 9.166e-06, + "systemTime" : 0, + "id" : 404, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 9, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044813539 + ] + }, + "339" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 4.0409999999999999e-06, + "systemTime" : 0, + "id" : 339, + "basePriority" : 81, + "name" : "AppleT8015TempSensor", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044812499 + ] + }, + "947" : { + "continuation" : [ + 0, + 68851679704 + ], + "userTime" : 0.124024333, + "systemTime" : 0, + "id" : 947, + "basePriority" : 91, + "name" : "VM_pageout_external_iothread", + "user_usec" : 124024, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889530240 + ] + }, + "405" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.9160000000000001e-06, + "systemTime" : 0, + "id" : 405, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044813619 + ] + }, + "1047" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00083212499999999997, + "systemTime" : 0, + "id" : 1047, + "basePriority" : 81, + "name" : "AppleMultitouchHIDService", + "user_usec" : 832, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044824659 + ] + }, + "436" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.1208e-05, + "systemTime" : 0, + "id" : 436, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 11, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044814979 + ] + }, + "948" : { + "continuation" : [ + 0, + 68851677048 + ], + "userTime" : 1.1666e-05, + "systemTime" : 0, + "id" : 948, + "basePriority" : 31, + "name" : "VM_pressure", + "user_usec" : 11, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68851677048 + ] + }, + "949" : { + "continuation" : [ + 0, + 68851607636 + ], + "userTime" : 1.708e-06, + "systemTime" : 0, + "id" : 949, + "basePriority" : 91, + "name" : "VM_object_reaper_thread", + "user_usec" : 1, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889948560 + ] + }, + "407" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.0875e-05, + "systemTime" : 0, + "id" : 407, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 10, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044813699 + ] + }, + "533" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.000101916, + "systemTime" : 0, + "id" : 533, + "basePriority" : 81, + "name" : "RTBuddyCrashlogEndpoint(ANS2)", + "user_usec" : 101, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044816339 + ] + }, + "1048" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00088599999999999996, + "systemTime" : 0, + "id" : 1048, + "basePriority" : 81, + "name" : "AppleMultitouchHIDService", + "user_usec" : 886, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044823699 + ] + }, + "600" : { + "continuation" : [ + 0, + 68854964872 + ], + "userTime" : 8.2500000000000006e-06, + "systemTime" : 0, + "id" : 600, + "basePriority" : 81, + "user_usec" : 8, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889398688 + ] + }, + "439" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.9580000000000007e-06, + "systemTime" : 0, + "id" : 439, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044815059 + ] + }, + "9972" : { + "continuation" : [ + 0, + 68851115720 + ], + "userTime" : 0.001438291, + "systemTime" : 0, + "id" : 9972, + "basePriority" : 93, + "name" : "thread call high #43", + "user_usec" : 1438, + "schedPriority" : 93, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889365120 + ] + }, + "661" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.043098125000000001, + "systemTime" : 0, + "id" : 661, + "basePriority" : 81, + "name" : "H11ANEIn", + "user_usec" : 43098, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141637199011 + ] + }, + "631" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.000141958, + "systemTime" : 0, + "id" : 631, + "basePriority" : 81, + "name" : "RTBuddyCrashlogEndpoint(SIO)", + "user_usec" : 141, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044817699 + ] + }, + "601" : { + "continuation" : [ + 0, + 68855315520 + ], + "userTime" : 0.019143457999999999, + "systemTime" : 0, + "id" : 601, + "basePriority" : 81, + "user_usec" : 19143, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889968144 + ] + }, + "150" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 4.5410000000000002e-06, + "systemTime" : 0, + "id" : 150, + "basePriority" : 81, + "name" : "IOAsynchronousScheduler", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044809059 + ] + }, + "662" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.3957999999999999e-05, + "systemTime" : 0, + "id" : 662, + "basePriority" : 81, + "name" : "RTBuddyService", + "user_usec" : 13, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044817939 + ] + }, + "506" : { + "userTime" : 0.025527749999999998, + "systemTime" : 0, + "name" : "RTBuddyV2(SMC)", + "id" : 506, + "basePriority" : 81, + "user_usec" : 25527, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68857287048 + ], + [ + 0, + 68850517952 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044815699 + ] + }, + "597" : { + "continuation" : [ + 0, + 68855610312 + ], + "userTime" : 0.0010763750000000001, + "systemTime" : 0, + "id" : 597, + "basePriority" : 81, + "user_usec" : 1076, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889995032 + ] + }, + "602" : { + "continuation" : [ + 0, + 68855315520 + ], + "userTime" : 1.1333e-05, + "systemTime" : 0, + "id" : 602, + "basePriority" : 81, + "user_usec" : 11, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68853419244 + ] + }, + "9973" : { + "id" : 9973, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "schedFlags" : [ + "TH_SFLAG_EAGERPREEMPT" + ], + "user_usec" : 378877, + "basePriority" : 81, + "userTime" : 0.37887741600000002, + "waitEvent" : [ + 0, + 68889365760 + ], + "continuation" : [ + 0, + 68851115720 + ], + "systemTime" : 0, + "name" : "thread call kernel #2" + }, + "121" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.848084166, + "systemTime" : 0, + "id" : 121, + "basePriority" : 95, + "name" : "IOPMrootDomain", + "user_usec" : 1848084, + "schedPriority" : 95, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044808819 + ] + }, + "2662" : { + "continuation" : [ + 0, + 68852762428 + ], + "userTime" : 9.5000000000000005e-06, + "systemTime" : 0, + "id" : 2662, + "basePriority" : 81, + "name" : "dlil_input_utun2", + "user_usec" : 9, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645536555 + ] + }, + "598" : { + "continuation" : [ + 0, + 68854964872 + ], + "userTime" : 1.1708e-05, + "systemTime" : 0, + "id" : 598, + "basePriority" : 81, + "user_usec" : 11, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889398688 + ] + }, + "1012" : { + "continuation" : [ + 0, + 68886513024 + ], + "userTime" : 0.15965550000000001, + "systemTime" : 0, + "id" : 1012, + "basePriority" : 31, + "name" : "purgatory_cleaner", + "user_usec" : 159655, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469133910711931 + ] + }, + "694" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.002884541, + "systemTime" : 0, + "id" : 694, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 2884, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044818579 + ] + }, + "152" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.039628749999999997, + "systemTime" : 0, + "id" : 152, + "basePriority" : 81, + "name" : "AppleSandDollar", + "user_usec" : 39628, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044809139 + ] + }, + "664" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.1041e-05, + "systemTime" : 0, + "id" : 664, + "basePriority" : 81, + "name" : "AppleSMCChargerPS", + "user_usec" : 11, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044818019 + ] + }, + "1376" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00016779100000000001, + "systemTime" : 0, + "id" : 1376, + "basePriority" : 81, + "name" : "IOUserNetworkTxSubmissionQueue", + "user_usec" : 167, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044823939 + ] + }, + "760" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 2.875e-06, + "systemTime" : 0, + "id" : 760, + "basePriority" : 81, + "name" : "IOMFBPIODMAManager", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044820899 + ] + }, + "604" : { + "continuation" : [ + 0, + 68855315520 + ], + "userTime" : 1.0125e-05, + "systemTime" : 0, + "id" : 604, + "basePriority" : 81, + "user_usec" : 10, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889387616 + ] + }, + "730" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 6.7499999999999997e-06, + "systemTime" : 0, + "id" : 730, + "basePriority" : 81, + "name" : "AVE_Drv", + "user_usec" : 6, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044819699 + ] + }, + "2663" : { + "continuation" : [ + 0, + 68852801132 + ], + "userTime" : 6.6915999999999994e-05, + "systemTime" : 0, + "id" : 2663, + "basePriority" : 82, + "name" : "ifnet_start_utun2", + "user_usec" : 66, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645534451 + ] + }, + "665" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.0409999999999998e-06, + "systemTime" : 0, + "id" : 665, + "basePriority" : 81, + "name" : "AppleSmartBatteryManager", + "user_usec" : 8, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044818099 + ] + }, + "509" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.6166000000000001e-05, + "systemTime" : 0, + "id" : 509, + "basePriority" : 81, + "name" : "RTBuddyCrashlogEndpoint(SMC)", + "user_usec" : 86, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044815779 + ] + }, + "1000" : { + "userTime" : 1.0040999999999999e-05, + "systemTime" : 0, + "system_usec" : 0, + "id" : 1000, + "basePriority" : 81, + "user_usec" : 10, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68851677584 + ], + [ + 0, + 68867718312 + ], + [ + 0, + 68850517952 + ] + ], + "schedPriority" : 81, + "state" : [ + "TH_WAIT" + ], + "waitEvent" : [ + 0, + 68889774392 + ] + }, + "761" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.028032125, + "systemTime" : 0, + "id" : 761, + "basePriority" : 81, + "name" : "AppleConvergedIPCOLYBTControl", + "user_usec" : 1028032, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044820979 + ] + }, + "605" : { + "continuation" : [ + 0, + 68852766784 + ], + "userTime" : 0.018375290999999998, + "systemTime" : 0, + "id" : 605, + "basePriority" : 81, + "user_usec" : 18375, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889961568 + ] + }, + "1377" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00019550000000000001, + "systemTime" : 0, + "id" : 1377, + "basePriority" : 81, + "name" : "IOUserNetworkTxSubmissionQueue", + "user_usec" : 195, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044824419 + ] + }, + "701" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.002478666, + "systemTime" : 0, + "id" : 701, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 2478, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044818899 + ] + }, + "280" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00073616600000000001, + "systemTime" : 0, + "id" : 280, + "basePriority" : 81, + "name" : "AppleSamsungSPIController", + "user_usec" : 736, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044810019 + ] + }, + "1568" : { + "continuation" : [ + 0, + 68852762428 + ], + "userTime" : 2.1250000000000002e-05, + "systemTime" : 0, + "id" : 1568, + "basePriority" : 81, + "name" : "dlil_input_utun0", + "user_usec" : 21, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645526219 + ] + }, + "762" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0054004580000000003, + "systemTime" : 0, + "id" : 762, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 5400, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044821139 + ] + }, + "606" : { + "continuation" : [ + 0, + 68852745348 + ], + "userTime" : 2.4666000000000001e-05, + "systemTime" : 0, + "id" : 606, + "basePriority" : 81, + "user_usec" : 24, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889961944 + ] + }, + "732" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00094554100000000005, + "systemTime" : 0, + "id" : 732, + "basePriority" : 81, + "name" : "AppleMultiFunctionManager", + "user_usec" : 945, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044819779 + ] + }, + "2300" : { + "continuation" : [ + 0, + 68855907376 + ], + "userTime" : 0.00377525, + "systemTime" : 0, + "id" : 2300, + "basePriority" : 81, + "name" : "SOFLOW_GC", + "user_usec" : 3775, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "waitEvent" : [ + 0, + 68889998908 + ] + }, + "697" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0029724159999999999, + "systemTime" : 0, + "id" : 697, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 2972, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044818659 + ] + }, + "155" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.625e-06, + "systemTime" : 0, + "id" : 155, + "basePriority" : 81, + "name" : "AppleIPDormancyHandler", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044809219 + ] + }, + "281" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0035851659999999999, + "systemTime" : 0, + "id" : 281, + "basePriority" : 81, + "name" : "AppleSamsungSPIController", + "user_usec" : 3585, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044810099 + ] + }, + "1001" : { + "userTime" : 0.00039579099999999999, + "systemTime" : 0, + "system_usec" : 0, + "id" : 1001, + "basePriority" : 81, + "schedFlags" : [ + "TH_SFLAG_UNKNOWN_0x80000" + ], + "user_usec" : 395, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68850867012 + ], + [ + 0, + 68857284908 + ], + [ + 0, + 68867644668 + ], + [ + 0, + 68857302072 + ], + [ + 0, + 68850517952 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141636028771 + ] + }, + "763" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0027422079999999999, + "systemTime" : 0, + "id" : 763, + "basePriority" : 81, + "name" : "InterruptEventSourceBridge", + "user_usec" : 2742, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044821219 + ] + }, + "607" : { + "userTime" : 8.2901069159999992, + "systemTime" : 0, + "name" : "AppleANS2CGNVMeController", + "id" : 607, + "basePriority" : 81, + "user_usec" : 8290106, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68857287048 + ], + [ + 0, + 68850517952 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044817299 + ] + }, + "1378" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00022404099999999999, + "systemTime" : 0, + "id" : 1378, + "basePriority" : 81, + "name" : "IOUserNetworkTxSubmissionQueue", + "user_usec" : 224, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044824499 + ] + }, + "698" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.034504915999999997, + "systemTime" : 0, + "id" : 698, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 34504, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044818739 + ] + }, + "282" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.082646041000000003, + "systemTime" : 0, + "id" : 282, + "basePriority" : 81, + "name" : "AppleSamsungSPIController", + "user_usec" : 82646, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044810179 + ] + }, + "1569" : { + "continuation" : [ + 0, + 68852801132 + ], + "userTime" : 3.2833000000000002e-05, + "systemTime" : 0, + "id" : 1569, + "basePriority" : 82, + "name" : "ifnet_start_utun0", + "user_usec" : 32, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645524115 + ] + }, + "1691" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 5.6659999999999996e-06, + "systemTime" : 0, + "id" : 1691, + "basePriority" : 81, + "user_usec" : 5, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044791811 + ] + }, + "764" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.9541e-05, + "systemTime" : 0, + "id" : 764, + "basePriority" : 81, + "name" : "PCCMailboxHandler", + "user_usec" : 39, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044821299 + ] + }, + "608" : { + "userTime" : 8.2500000000000006e-06, + "systemTime" : 0, + "name" : "AppleANS2CGNVMeController", + "id" : 608, + "basePriority" : 81, + "user_usec" : 8, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68857287048 + ], + [ + 0, + 68850517952 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044817379 + ] + }, + "2665" : { + "continuation" : [ + 0, + 68852762428 + ], + "userTime" : 1.5166e-05, + "systemTime" : 0, + "id" : 2665, + "basePriority" : 81, + "name" : "dlil_input_utun3", + "user_usec" : 15, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645545627 + ] + }, + "704" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0015869160000000001, + "systemTime" : 0, + "id" : 704, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 1586, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044818979 + ] + }, + "699" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.46241025000000002, + "systemTime" : 0, + "id" : 699, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 462410, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044818819 + ] + }, + "669" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.54589849999999995, + "systemTime" : 0, + "id" : 669, + "basePriority" : 81, + "name" : "RTBuddyV2", + "user_usec" : 545898, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044818179 + ] + }, + "283" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.7500000000000001e-06, + "systemTime" : 0, + "id" : 283, + "basePriority" : 81, + "name" : "AppleS5L8940XI2CController", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044810259 + ] + }, + "765" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 2.458e-06, + "systemTime" : 0, + "id" : 765, + "basePriority" : 81, + "name" : "InterruptEventSourceBridge", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044821379 + ] + }, + "609" : { + "continuation" : [ + 0, + 68855315520 + ], + "userTime" : 1.0416e-05, + "systemTime" : 0, + "id" : 609, + "basePriority" : 81, + "user_usec" : 10, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68890001032 + ] + }, + "735" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.8750000000000002e-06, + "systemTime" : 0, + "id" : 735, + "basePriority" : 81, + "name" : "InterruptEventSourceBridge", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044819859 + ] + }, + "1379" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00022762499999999999, + "systemTime" : 0, + "id" : 1379, + "basePriority" : 81, + "name" : "IOUserNetworkTxSubmissionQueue", + "user_usec" : 227, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044824579 + ] + }, + "705" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0015774579999999999, + "systemTime" : 0, + "id" : 705, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 1577, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044819059 + ] + }, + "284" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.57588724999999996, + "systemTime" : 0, + "id" : 284, + "basePriority" : 81, + "name" : "AppleS5L8940XI2CController", + "user_usec" : 575887, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044810339 + ] + }, + "158" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.18347216599999999, + "systemTime" : 0, + "id" : 158, + "basePriority" : 81, + "name" : "AppleKeyStore", + "user_usec" : 183472, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044809299 + ] + }, + "1692" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.5333e-05, + "systemTime" : 0, + "id" : 1692, + "basePriority" : 81, + "user_usec" : 15, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044791971 + ] + }, + "350" : { + "continuation" : [ + 0, + 68850967736 + ], + "userTime" : 630.82866137500002, + "name" : "idle #1", + "id" : 350, + "basePriority" : 0, + "user_usec" : 630828661, + "system_usec" : 0, + "schedPriority" : 0, + "state" : [ + "TH_RUN", + "TH_IDLE" + ], + "systemTime" : 0 + }, + "736" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.875e-06, + "systemTime" : 0, + "id" : 736, + "basePriority" : 81, + "name" : "InterruptEventSourceBridge", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044819939 + ] + }, + "2666" : { + "continuation" : [ + 0, + 68852801132 + ], + "userTime" : 6.3207999999999995e-05, + "systemTime" : 0, + "id" : 2666, + "basePriority" : 82, + "name" : "ifnet_start_utun3", + "user_usec" : 63, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645543523 + ] + }, + "706" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.001367875, + "systemTime" : 0, + "id" : 706, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 1367, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044819139 + ] + }, + "285" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.042110250000000002, + "systemTime" : 0, + "id" : 285, + "basePriority" : 81, + "name" : "AppleS5L8940XI2CController", + "user_usec" : 42110, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044810419 + ] + }, + "1016" : { + "continuation" : [ + 0, + 68886513024 + ], + "userTime" : 0.0022814580000000001, + "systemTime" : 0, + "id" : 1016, + "basePriority" : 31, + "name" : "purgatory_cleaner", + "user_usec" : 2281, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469133910597243 + ] + }, + "737" : { + "userTime" : 2.1660000000000001e-06, + "systemTime" : 0, + "system_usec" : 0, + "id" : 737, + "basePriority" : 81, + "user_usec" : 2, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68850867012 + ], + [ + 0, + 68855314648 + ], + [ + 0, + 68885581484 + ], + [ + 0, + 68850517952 + ] + ], + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68892099052 + ] + }, + "707" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.001577333, + "systemTime" : 0, + "id" : 707, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 1577, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044819219 + ] + }, + "286" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.036704374999999997, + "systemTime" : 0, + "id" : 286, + "basePriority" : 81, + "name" : "AppleS5L8940XI2CController", + "user_usec" : 36704, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044810499 + ] + }, + "1693" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.9579999999999996e-06, + "systemTime" : 0, + "id" : 1693, + "basePriority" : 81, + "user_usec" : 8, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044792051 + ] + }, + "768" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0017105829999999999, + "systemTime" : 0, + "id" : 768, + "basePriority" : 81, + "name" : "InterruptEventSourceBridge", + "user_usec" : 1710, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044821539 + ] + }, + "2667" : { + "continuation" : [ + 0, + 68852762428 + ], + "userTime" : 1.2833000000000001e-05, + "systemTime" : 0, + "id" : 2667, + "basePriority" : 81, + "name" : "dlil_input_utun4", + "user_usec" : 12, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645548651 + ] + }, + "738" : { + "userTime" : 0.038135291000000002, + "systemTime" : 0, + "system_usec" : 0, + "id" : 738, + "basePriority" : 81, + "user_usec" : 38135, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68850867468 + ], + [ + 0, + 68855314560 + ], + [ + 0, + 68885530940 + ], + [ + 0, + 68850517952 + ] + ], + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68892093432 + ] + }, + "1355" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.416e-06, + "systemTime" : 0, + "id" : 1355, + "basePriority" : 81, + "name" : "IOSkywalkNetworkBSDClient", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044823859 + ] + }, + "287" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.6660000000000001e-06, + "systemTime" : 0, + "id" : 287, + "basePriority" : 81, + "name" : "AppleMultitouchTimestampSync", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044810579 + ] + }, + "383" : { + "continuation" : [ + 0, + 68850967736 + ], + "userTime" : 647.26616870800001, + "name" : "idle #2", + "id" : 383, + "basePriority" : 0, + "user_usec" : 647266168, + "system_usec" : 0, + "schedPriority" : 0, + "state" : [ + "TH_RUN", + "TH_IDLE" + ], + "systemTime" : 0 + }, + "769" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 5.2079999999999999e-06, + "systemTime" : 0, + "id" : 769, + "basePriority" : 81, + "name" : "VideoInterfaceIOAV", + "user_usec" : 5, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044821619 + ] + }, + "739" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.3330000000000001e-06, + "systemTime" : 0, + "id" : 739, + "basePriority" : 81, + "name" : "AppleSmartIODMAController", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044820019 + ] + }, + "865" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 6.9160000000000004e-06, + "systemTime" : 0, + "id" : 865, + "basePriority" : 81, + "name" : "AppleCS42L83Audio", + "user_usec" : 6, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044822739 + ] + }, + "709" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0024195000000000002, + "systemTime" : 0, + "id" : 709, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 2419, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044819299 + ] + }, + "323" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.7500000000000001e-06, + "systemTime" : 0, + "id" : 323, + "basePriority" : 81, + "name" : "AppleARMSlowAdaptiveClockingManager", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044812259 + ] + }, + "961" : { + "continuation" : [ + 0, + 68886513024 + ], + "userTime" : 0.0022100409999999998, + "systemTime" : 0, + "id" : 961, + "basePriority" : 31, + "name" : "purgatory_cleaner", + "user_usec" : 2210, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469133910515323 + ] + }, + "1694" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 4.3329999999999998e-06, + "systemTime" : 0, + "id" : 1694, + "basePriority" : 81, + "user_usec" : 4, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044792131 + ] + }, + "9966" : { + "userTime" : 1.1785760409999999, + "systemTime" : 0, + "system_usec" : 0, + "id" : 9966, + "basePriority" : 93, + "user_usec" : 1178576, + "kernelFrames" : [ + [ + 0, + 68850534484 + ], + [ + 0, + 68855452728 + ], + [ + 0, + 68869788224 + ], + [ + 0, + 68869790588 + ], + [ + 0, + 68869790392 + ], + [ + 0, + 68857322492 + ], + [ + 0, + 68851116324 + ], + [ + 0, + 68850517952 + ] + ], + "schedPriority" : 93, + "name" : "thread call high #37", + "state" : [ + "TH_RUN" + ] + }, + "2668" : { + "continuation" : [ + 0, + 68852801132 + ], + "userTime" : 0.000118, + "systemTime" : 0, + "id" : 2668, + "basePriority" : 82, + "name" : "skywalk_doorbell_utun4_tx", + "user_usec" : 118, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645546547 + ] + }, + "354" : { + "userTime" : 797.34841220800001, + "systemTime" : 0, + "system_usec" : 0, + "id" : 354, + "basePriority" : 0, + "user_usec" : 797348412, + "kernelFrames" : [ + [ + 0, + 68850967220 + ], + [ + 0, + 68850967808 + ], + [ + 0, + 68850517952 + ] + ], + "schedPriority" : 0, + "name" : "idle #5", + "state" : [ + "TH_RUN", + "TH_IDLE" + ] + }, + "480" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.000166541, + "systemTime" : 0, + "id" : 480, + "basePriority" : 81, + "name" : "RTBuddyCrashlogEndpoint(GFX)", + "user_usec" : 166, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044815379 + ] + }, + "450" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.5830000000000001e-06, + "systemTime" : 0, + "id" : 450, + "basePriority" : 81, + "name" : "BTDebug", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044815219 + ] + }, + "289" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0064365830000000001, + "systemTime" : 0, + "id" : 289, + "basePriority" : 81, + "name" : "AppleT8011USBArbitrator", + "user_usec" : 6436, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044810659 + ] + }, + "385" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.2910000000000007e-06, + "systemTime" : 0, + "id" : 385, + "basePriority" : 81, + "name" : "AppleT8015TempSensor", + "user_usec" : 8, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044813139 + ] + }, + "897" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 2.2750000000000001e-05, + "systemTime" : 0, + "id" : 897, + "basePriority" : 81, + "name" : "AppleNubSynopsysOTGDevice", + "user_usec" : 22, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044822979 + ] + }, + "481" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.6829443749999999, + "systemTime" : 0, + "id" : 481, + "basePriority" : 81, + "name" : "AppleTCS3490", + "user_usec" : 1682944, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044815459 + ] + }, + "1695" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 4.8749999999999999e-06, + "systemTime" : 0, + "id" : 1695, + "basePriority" : 81, + "user_usec" : 4, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044775891 + ] + }, + "2669" : { + "continuation" : [ + 0, + 68856206620 + ], + "userTime" : 0.037976124999999999, + "systemTime" : 0, + "id" : 2669, + "basePriority" : 81, + "name" : "skywalk_fsw_reap_utun4", + "user_usec" : 37976, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469145490702507 + ] + }, + "356" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.9790999999999996e-05, + "systemTime" : 0, + "id" : 356, + "basePriority" : 81, + "name" : "AppleM68Buttons", + "user_usec" : 79, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044812659 + ] + }, + "482" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.6338362909999999, + "systemTime" : 0, + "id" : 482, + "basePriority" : 81, + "name" : "AppleTCS3490", + "user_usec" : 1633836, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044815539 + ] + }, + "1019" : { + "continuation" : [ + 0, + 68886513024 + ], + "userTime" : 0.0033198749999999999, + "systemTime" : 0, + "id" : 1019, + "basePriority" : 31, + "name" : "purgatory_cleaner", + "user_usec" : 3319, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469133910564475 + ] + }, + "422" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.9579999999999996e-06, + "systemTime" : 0, + "id" : 422, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 8, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044814179 + ] + }, + "357" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.9579999999999996e-06, + "systemTime" : 0, + "id" : 357, + "basePriority" : 81, + "name" : "AppleT8015TempSensor", + "user_usec" : 8, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044812739 + ] + }, + "1696" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 5.6659999999999996e-06, + "systemTime" : 0, + "id" : 1696, + "basePriority" : 81, + "user_usec" : 5, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044775971 + ] + }, + "995" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 9.6250000000000002e-06, + "systemTime" : 0, + "id" : 995, + "basePriority" : 81, + "user_usec" : 9, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044823619 + ] + }, + "423" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.8750000000000006e-06, + "systemTime" : 0, + "id" : 423, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 8, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044814259 + ] + }, + "9943" : { + "continuation" : [ + 0, + 68851115720 + ], + "userTime" : 0.0035908749999999999, + "systemTime" : 0, + "id" : 9943, + "basePriority" : 93, + "name" : "thread call high #14", + "user_usec" : 3590, + "schedPriority" : 93, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889365120 + ] + }, + "328" : { + "continuation" : [ + 0, + 68873892224 + ], + "userTime" : 12.799340791000001, + "systemTime" : 0, + "id" : 328, + "basePriority" : 95, + "name" : "AppleCLPC", + "user_usec" : 12799340, + "schedPriority" : 95, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141637195491 + ] + }, + "454" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.18492475, + "systemTime" : 0, + "id" : 454, + "basePriority" : 97, + "name" : "AppleH10CamIn", + "user_usec" : 184924, + "schedPriority" : 97, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141637193971 + ] + }, + "580" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.3125000000000001e-05, + "systemTime" : 0, + "id" : 580, + "basePriority" : 81, + "name" : "RTBuddyService", + "user_usec" : 13, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044816979 + ] + }, + "424" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.4159999999999998e-06, + "systemTime" : 0, + "id" : 424, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044814339 + ] + }, + "550" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0002475, + "systemTime" : 0, + "id" : 550, + "basePriority" : 81, + "name" : "AppleSEPManager", + "user_usec" : 247, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044816579 + ] + }, + "520" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.194083333, + "systemTime" : 0, + "id" : 520, + "basePriority" : 81, + "name" : "AppleSMC", + "user_usec" : 194083, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044816019 + ] + }, + "1702" : { + "continuation" : [ + 0, + 68852762428 + ], + "userTime" : 1.4083000000000001e-05, + "systemTime" : 0, + "id" : 1702, + "basePriority" : 81, + "name" : "dlil_input_ap1", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645529243 + ] + }, + "329" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 4.0409999999999999e-06, + "systemTime" : 0, + "id" : 329, + "basePriority" : 81, + "name" : "AppleT8015TempSensor", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044812339 + ] + }, + "967" : { + "userTime" : 0.050596124999999999, + "systemTime" : 0, + "system_usec" : 0, + "id" : 967, + "basePriority" : 81, + "user_usec" : 50596, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68871564956 + ], + [ + 0, + 68871545088 + ], + [ + 0, + 68857302072 + ], + [ + 0, + 68871543980 + ], + [ + 0, + 68871425084 + ], + [ + 0, + 68871425584 + ], + [ + 0, + 68850517952 + ] + ], + "schedPriority" : 81, + "state" : [ + "TH_WAIT" + ], + "waitEvent" : [ + 1, + 13560469141640740003 + ] + }, + "551" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00059254100000000003, + "systemTime" : 0, + "id" : 551, + "basePriority" : 81, + "name" : "AppleSEPManager", + "user_usec" : 592, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044816659 + ] + }, + "425" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.2500000000000006e-06, + "systemTime" : 0, + "id" : 425, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 8, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044814419 + ] + }, + "521" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.0166000000000001e-05, + "systemTime" : 0, + "id" : 521, + "basePriority" : 81, + "name" : "RTBuddyService", + "user_usec" : 10, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044816099 + ] + }, + "1850" : { + "continuation" : [ + 0, + 68852762428 + ], + "userTime" : 9.8749999999999995e-06, + "systemTime" : 0, + "id" : 1850, + "basePriority" : 81, + "name" : "dlil_input_en1", + "user_usec" : 9, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645562011 + ] + }, + "998" : { + "userTime" : 1.9040999999999999e-05, + "systemTime" : 0, + "name" : "AppleH10CamIn_MemoryPressureMonitorThread", + "id" : 998, + "basePriority" : 97, + "user_usec" : 19, + "system_usec" : 0, + "schedPriority" : 97, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68851677584 + ], + [ + 0, + 68867420100 + ], + [ + 0, + 68850517952 + ] + ], + "state" : [ + "TH_WAIT" + ], + "waitEvent" : [ + 0, + 68889774392 + ] + }, + "582" : { + "userTime" : 0.029981791000000001, + "systemTime" : 0, + "name" : "RTBuddyV2(AOP)", + "id" : 582, + "basePriority" : 81, + "user_usec" : 29981, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68857287048 + ], + [ + 0, + 68850517952 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044817059 + ] + }, + "426" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.5830000000000001e-06, + "systemTime" : 0, + "id" : 426, + "basePriority" : 81, + "name" : "AppleT8020DART", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044814499 + ] + }, + "552" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.001331416, + "systemTime" : 0, + "id" : 552, + "basePriority" : 81, + "name" : "AppleSEPManager", + "user_usec" : 1331, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044816739 + ] + }, + "1703" : { + "continuation" : [ + 0, + 68852801132 + ], + "userTime" : 7.8329999999999994e-06, + "systemTime" : 0, + "id" : 1703, + "basePriority" : 82, + "name" : "skywalk_doorbell_ap1_tx", + "user_usec" : 7, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645527139 + ] + }, + "427" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.4124999999999999e-05, + "systemTime" : 0, + "id" : 427, + "basePriority" : 81, + "name" : "AppleMCA2Controller_T8020", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044814579 + ] + }, + "1907" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.9160000000000003e-06, + "systemTime" : 0, + "id" : 1907, + "basePriority" : 81, + "user_usec" : 3, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044786211 + ] + }, + "939" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 2.2910000000000002e-06, + "systemTime" : 0, + "id" : 939, + "basePriority" : 81, + "name" : "AppleEffaceableBlockDevice", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044823219 + ] + }, + "523" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 6.4579999999999998e-06, + "systemTime" : 0, + "id" : 523, + "basePriority" : 81, + "name" : "RTBuddyService", + "user_usec" : 6, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044816179 + ] + }, + "1851" : { + "continuation" : [ + 0, + 68852801132 + ], + "userTime" : 1.1457999999999999e-05, + "systemTime" : 0, + "id" : 1851, + "basePriority" : 82, + "name" : "ifnet_start_en1", + "user_usec" : 11, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645559907 + ] + }, + "620" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.3750000000000003e-06, + "systemTime" : 0, + "id" : 620, + "basePriority" : 81, + "name" : "ApplePMPThermal", + "user_usec" : 8, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044817459 + ] + }, + "585" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 1.075e-05, + "systemTime" : 0, + "id" : 585, + "basePriority" : 81, + "name" : "RTBuddyService", + "user_usec" : 10, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044817139 + ] + }, + "429" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 8.1659999999999994e-06, + "systemTime" : 0, + "id" : 429, + "basePriority" : 81, + "name" : "AppleAVD", + "user_usec" : 8, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044814659 + ] + }, + "1908" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 5.7080000000000002e-06, + "systemTime" : 0, + "id" : 1908, + "basePriority" : 81, + "user_usec" : 5, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044786291 + ] + }, + "2062" : { + "continuation" : [ + 0, + 68852762428 + ], + "userTime" : 1.0875e-05, + "systemTime" : 0, + "id" : 2062, + "basePriority" : 81, + "name" : "dlil_input_llw0", + "user_usec" : 10, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645558987 + ] + }, + "525" : { + "userTime" : 0.016607832999999999, + "systemTime" : 0, + "name" : "RTBuddyV2(PMP)", + "id" : 525, + "basePriority" : 81, + "user_usec" : 16607, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68857287048 + ], + [ + 0, + 68850517952 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044816259 + ] + }, + "1483" : { + "continuation" : [ + 0, + 68851115720 + ], + "userTime" : 0.80480474999999996, + "systemTime" : 0, + "id" : 1483, + "basePriority" : 92, + "name" : "thread call kernel-high #2", + "user_usec" : 804804, + "schedPriority" : 92, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 68889367680 + ] + }, + "682" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.85076624999999995, + "systemTime" : 0, + "id" : 682, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 850766, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044818419 + ] + }, + "110" : { + "id" : 110, + "schedPriority" : 81, + "system_usec" : 0, + "kernelFrames" : [ + [ + 0, + 68850944084 + ], + [ + 0, + 68850937588 + ], + [ + 0, + 68850867012 + ], + [ + 0, + 68857111100 + ], + [ + 0, + 68850517952 + ] + ], + "schedFlags" : [ + "TH_SFLAG_UNKNOWN_0x80000" + ], + "user_usec" : 93518, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "basePriority" : 81, + "userTime" : 0.093518500000000004, + "waitEvent" : [ + 0, + 68890003072 + ], + "systemTime" : 0, + "name" : "IOServiceTerminateThread" + }, + "2050" : { + "continuation" : [ + 0, + 68856206620 + ], + "userTime" : 0.041217125, + "systemTime" : 0, + "id" : 2050, + "basePriority" : 81, + "name" : "skywalk_fsw_reap_awdl0", + "user_usec" : 41217, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469145490701067 + ] + }, + "622" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.0036583330000000002, + "systemTime" : 0, + "id" : 622, + "basePriority" : 81, + "name" : "ApplePMP", + "user_usec" : 3658, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044817539 + ] + }, + "1909" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.62337066600000002, + "systemTime" : 0, + "id" : 1909, + "basePriority" : 81, + "name" : "IOTimeSyncTimeSyncTimePort", + "user_usec" : 623370, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044786371 + ] + }, + "587" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 0.00015100000000000001, + "systemTime" : 0, + "id" : 587, + "basePriority" : 81, + "name" : "RTBuddyCrashlogEndpoint(PMP)", + "user_usec" : 151, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044817219 + ] + }, + "171" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 3.7910000000000002e-06, + "systemTime" : 0, + "id" : 171, + "basePriority" : 81, + "user_usec" : 3, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044809619 + ] + }, + "557" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.4159999999999998e-06, + "systemTime" : 0, + "id" : 557, + "basePriority" : 81, + "name" : "RTBuddyService", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044816819 + ] + }, + "2063" : { + "continuation" : [ + 0, + 68852801132 + ], + "userTime" : 9.1249999999999999e-06, + "systemTime" : 0, + "id" : 2063, + "basePriority" : 82, + "name" : "skywalk_doorbell_llw0_tx", + "user_usec" : 9, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645556883 + ] + }, + "1853" : { + "continuation" : [ + 0, + 68852762428 + ], + "userTime" : 1.4958e-05, + "systemTime" : 0, + "id" : 1853, + "basePriority" : 81, + "name" : "dlil_input_en2", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469141645552939 + ] + }, + "1675" : { + "continuation" : [ + 0, + 68857286684 + ], + "userTime" : 7.25e-06, + "systemTime" : 0, + "id" : 1675, + "basePriority" : 81, + "name" : "IOSkywalkNetworkBSDClient", + "user_usec" : 7, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 13560469130044791891 + ] + } + }, + "timesThrottled" : 0 +}, + "1" : {"resampled_images":[["d0a18abe-c311-373c-a68c-caae8cff12b6",4300947456,""],["cb3ff411-4762-34d2-86a4-eca13f9fb6c3",4303306752,""]],"timesThrottled":0,"pageIns":479,"timesDidThrottle":0,"procname":"launchd","copyOnWriteFaults":439,"threadById":{"978":{"id":978,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":1056,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.001056583,"waitEvent":[1,13560469137774527131],"continuation":[0,68855315520],"systemTime":0,"schedPriority":31},"11795":{"id":11795,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":51557,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.051557749999999999,"waitEvent":[1,13560469137786164203],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37}},"pageFaults":10759,"userTimeTask":7.9458273330000004,"pid":1,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":18334280}, + "31" : { + "timesThrottled" : 0, + "turnstileInfo" : [ + "thread 11062: blocked on 11655, hops: 2, priority: 4" + ], + "pageIns" : 17840, + "waitInfo" : [ + "thread 1055: mach_msg receive on port set 0xbc3076d67e83ab7b", + "thread 2173: mach_msg receive on port set 0xbc3076d67e83b35b", + "thread 2183: mach_msg receive on port set 0xbc3076d67e83b3eb", + "thread 2473: mach_msg receive on port set 0xbc3076d67e83bb3b", + "thread 2523: mach_msg receive on port set 0xbc3076d67e83bcbb", + "thread 2565: semaphore port 0xbc3076d76453091b owned by pid 31", + "thread 2597: mach_msg receive on port set 0xbc3076d67e83befb", + "thread 11062: mach_msg receive on port 0xbc3076d76414d45b name 0x2f94b" + ], + "timesDidThrottle" : 0, + "frontmost" : 1, + "procname" : "SpringBoard", + "copyOnWriteFaults" : 375, + "threadById" : { + "2173" : { + "id" : 2173, + "schedPriority" : 47, + "system_usec" : 0, + "qosRequested" : "QOS_CLASS_USER_INTERACTIVE", + "state" : [ + "TH_WAIT" + ], + "user_usec" : 994076, + "basePriority" : 47, + "userFrames" : [ + [ + 2, + 1124416328 + ], + [ + 2, + 1124491848 + ], + [ + 2, + 1124417676 + ], + [ + 2, + 114862832 + ], + [ + 2, + 114867508 + ], + [ + 2, + 114888404 + ], + [ + 2, + 18555700 + ], + [ + 2, + 18555420 + ], + [ + 2, + 154813244 + ], + [ + 2, + 18659336 + ], + [ + 2, + 1396668108 + ], + [ + 2, + 1396665252 + ] + ], + "qosEffective" : "QOS_CLASS_USER_INTERACTIVE", + "userTime" : 0.99407679100000002, + "continuation" : [ + 0, + 68850618692 + ], + "systemTime" : 0, + "name" : "com.apple.uikit.eventfetch-thread" + }, + "12051" : { + "id" : 12051, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "qosRequested" : "QOS_CLASS_USER_INTERACTIVE", + "user_usec" : 168152, + "basePriority" : 47, + "userFrames" : [ + [ + 2, + 1124417616 + ], + [ + 2, + 1396665240 + ] + ], + "qosEffective" : "QOS_CLASS_USER_INTERACTIVE", + "userTime" : 0.168152, + "waitEvent" : [ + 1, + 13560469137794374947 + ], + "continuation" : [ + 0, + 68854897416 + ], + "systemTime" : 0, + "schedPriority" : 47 + }, + "2473" : { + "id" : 2473, + "schedPriority" : 47, + "system_usec" : 0, + "qosRequested" : "QOS_CLASS_USER_INTERACTIVE", + "state" : [ + "TH_WAIT" + ], + "user_usec" : 87330, + "basePriority" : 47, + "userFrames" : [ + [ + 2, + 1124416328 + ], + [ + 2, + 1124491848 + ], + [ + 2, + 1124417676 + ], + [ + 2, + 114862832 + ], + [ + 2, + 114867508 + ], + [ + 2, + 114888404 + ], + [ + 2, + 18555700 + ], + [ + 2, + 18555336 + ], + [ + 2, + 1180872712 + ], + [ + 2, + 18659336 + ], + [ + 2, + 1396668108 + ], + [ + 2, + 1396665252 + ] + ], + "qosEffective" : "QOS_CLASS_USER_INTERACTIVE", + "userTime" : 0.087330000000000005, + "continuation" : [ + 0, + 68850618692 + ], + "systemTime" : 0, + "name" : "SBWiFiManager callback thread" + }, + "12105" : { + "id" : 12105, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "qosRequested" : "QOS_CLASS_USER_INITIATED", + "user_usec" : 60596, + "basePriority" : 37, + "userFrames" : [ + [ + 2, + 1124417616 + ], + [ + 2, + 1396665240 + ] + ], + "qosEffective" : "QOS_CLASS_USER_INITIATED", + "userTime" : 0.060596666, + "waitEvent" : [ + 1, + 13560469137796955099 + ], + "continuation" : [ + 0, + 68854897416 + ], + "systemTime" : 0, + "schedPriority" : 37 + }, + "2597" : { + "id" : 2597, + "schedPriority" : 31, + "system_usec" : 0, + "qosRequested" : "QOS_CLASS_DEFAULT", + "state" : [ + "TH_WAIT" + ], + "user_usec" : 981, + "basePriority" : 31, + "userFrames" : [ + [ + 2, + 1124416328 + ], + [ + 2, + 1124491848 + ], + [ + 2, + 1124417676 + ], + [ + 2, + 114862832 + ], + [ + 2, + 114867508 + ], + [ + 2, + 114888404 + ], + [ + 2, + 18555700 + ], + [ + 2, + 18555336 + ], + [ + 2, + 1987081700 + ], + [ + 2, + 18659336 + ], + [ + 2, + 1396668108 + ], + [ + 2, + 1396665252 + ] + ], + "qosEffective" : "QOS_CLASS_DEFAULT", + "userTime" : 0.000981083, + "continuation" : [ + 0, + 68850618692 + ], + "systemTime" : 0, + "name" : "WFWiFiStateMonitor callback thread" + }, + "11966" : { + "id" : 11966, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "qosRequested" : "QOS_CLASS_UTILITY", + "user_usec" : 71352, + "basePriority" : 20, + "userFrames" : [ + [ + 2, + 1124417616 + ], + [ + 2, + 1396665240 + ] + ], + "qosEffective" : "QOS_CLASS_UTILITY", + "userTime" : 0.071352957999999994, + "waitEvent" : [ + 1, + 13560469137792804835 + ], + "continuation" : [ + 0, + 68854897416 + ], + "systemTime" : 0, + "schedPriority" : 20 + }, + "2565" : { + "id" : 2565, + "schedPriority" : 53, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "user_usec" : 1584117, + "basePriority" : 53, + "userFrames" : [ + [ + 2, + 1124416196 + ], + [ + 2, + 237923372 + ], + [ + 2, + 154424228 + ], + [ + 2, + 18659336 + ], + [ + 2, + 1396668108 + ], + [ + 2, + 1396665252 + ] + ], + "userTime" : 1.5841170410000001, + "waitEvent" : [ + 0, + 68849714976 + ], + "continuation" : [ + 0, + 68850996132 + ], + "systemTime" : 0, + "name" : "com.apple.UIKit.inProcessAnimationManager" + }, + "2523" : { + "id" : 2523, + "schedPriority" : 31, + "system_usec" : 0, + "qosRequested" : "QOS_CLASS_DEFAULT", + "state" : [ + "TH_WAIT" + ], + "user_usec" : 44961, + "basePriority" : 31, + "userFrames" : [ + [ + 2, + 1124416328 + ], + [ + 2, + 1124491848 + ], + [ + 2, + 1124417676 + ], + [ + 2, + 114862832 + ], + [ + 2, + 114867508 + ], + [ + 2, + 114888404 + ], + [ + 2, + 115166468 + ], + [ + 2, + 557651224 + ], + [ + 2, + 18659336 + ], + [ + 2, + 1396668108 + ], + [ + 2, + 1396665252 + ] + ], + "qosEffective" : "QOS_CLASS_DEFAULT", + "userTime" : 0.044961082999999999, + "continuation" : [ + 0, + 68850618692 + ], + "systemTime" : 0, + "name" : "CommonUtilities-WiFi-Thread" + }, + "11062" : { + "id" : 11062, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "qosRequested" : "QOS_CLASS_BACKGROUND", + "user_usec" : 202427, + "basePriority" : 4, + "userFrames" : [ + [ + 2, + 1124416328 + ], + [ + 2, + 1124491848 + ], + [ + 2, + 1124417676 + ], + [ + 2, + 238031716 + ], + [ + 2, + 238032620 + ], + [ + 2, + 1397007076 + ], + [ + 2, + 18953028 + ], + [ + 2, + 18506860 + ], + [ + 2, + 114490720 + ], + [ + 2, + 114918224 + ], + [ + 2, + 668504984 + ], + [ + 2, + 668465204 + ], + [ + 2, + 668447260 + ], + [ + 2, + 668417904 + ], + [ + 2, + 668392748 + ], + [ + 2, + 288024232 + ], + [ + 2, + 1179728408 + ], + [ + 2, + 237913268 + ], + [ + 2, + 237920220 + ], + [ + 2, + 237992844 + ], + [ + 2, + 237994628 + ], + [ + 2, + 1396665788 + ], + [ + 2, + 1396665240 + ] + ], + "qosEffective" : "QOS_CLASS_BACKGROUND", + "userTime" : 0.20242712500000001, + "continuation" : [ + 0, + 68850618692 + ], + "systemTime" : 0, + "schedPriority" : 4 + }, + "1055" : { + "id" : 1055, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "qosRequested" : "QOS_CLASS_USER_INTERACTIVE", + "user_usec" : 21585465, + "basePriority" : 47, + "userFrames" : [ + [ + 2, + 1124416328 + ], + [ + 2, + 1124491848 + ], + [ + 2, + 1124417676 + ], + [ + 2, + 114862832 + ], + [ + 2, + 114867508 + ], + [ + 2, + 114888404 + ], + [ + 2, + 1065276264 + ], + [ + 2, + 153547728 + ], + [ + 2, + 153546804 + ], + [ + 2, + 1179565520 + ], + [ + 2, + 624855392 + ], + [ + 1, + 0 + ] + ], + "qosEffective" : "QOS_CLASS_USER_INTERACTIVE", + "userTime" : 21.585465249999999, + "continuation" : [ + 0, + 68850618692 + ], + "systemTime" : 0, + "schedPriority" : 47 + }, + "2183" : { + "continuation" : [ + 0, + 68850618692 + ], + "userTime" : 2.1236345829999999, + "name" : "com.apple.CoreMotion.MotionThread", + "id" : 2183, + "basePriority" : 47, + "user_usec" : 2123634, + "system_usec" : 0, + "schedPriority" : 47, + "userFrames" : [ + [ + 2, + 1124416328 + ], + [ + 2, + 1124491848 + ], + [ + 2, + 1124417676 + ], + [ + 2, + 114862832 + ], + [ + 2, + 114867508 + ], + [ + 2, + 114888404 + ], + [ + 2, + 115166468 + ], + [ + 2, + 304811712 + ], + [ + 2, + 1396668108 + ], + [ + 2, + 1396665252 + ] + ], + "state" : [ + "TH_WAIT" + ], + "systemTime" : 0 + } + }, + "pageFaults" : 159687, + "userTimeTask" : 43.547008833, + "pid" : 31, + "systemTimeTask" : 0, + "flags" : [ + "foreground" + ], + "residentMemoryBytes" : 71419040 +}, + "28" : {"resampled_images":[["4bbf7eaa-f26c-304c-887e-5b3754b835ad",4366647296,""],["a8c4338a-2479-361f-8436-0850cc9a970d",4367400960,""],["2226fa2c-cb0b-348f-add4-1d0a2f9acf1d",4367466496,""],["b60f51f7-e4a7-3182-a53c-5a71b3286f21",4367548416,""],["4b851d7f-a9d9-398a-9af4-01c1fb9d15eb",4367630336,""],["60362d80-4c26-360e-a45f-6299810e9166",4367695872,""],["f409cff8-a57b-3cd0-b4bc-f9a0980f80a2",4367761408,""],["db565a06-f409-33d8-b3f0-91d2587d8c19",4367826944,""],["3f418b89-5b57-32d4-9817-e7852b79c76f",4367908864,""],["fb9b1ae8-2ca4-34fb-a28e-3b888a53fa1a",4367974400,""],["a673a9b5-ec25-3827-9937-10d8ea299bf9",4368039936,""],["27a48d62-91b3-306d-9654-e82f65d332c8",4368154624,""],["a377e452-b537-306e-962d-310733f2cad9",4368220160,""],["260e17f9-911b-3bb5-9258-84d7201ae0cc",4368285696,""],["2fc194d7-8e33-38e3-9169-c08ac32b8b2b",4368384000,""],["b6d68e86-5106-3b09-a63b-100da9cd873e",4368449536,""],["d39710db-8c6a-30d5-bdc1-1720b604e5ee",4368891904,""],["906dc52c-cfd8-3845-9583-9ea03a9bd777",4368957440,""],["244a4080-5af0-35b8-880f-a4a20fbfb8b0",4369022976,""],["76e4f1b5-564e-3eea-84f4-a17d7fc78e7c",4369088512,""],["ef62380b-e56a-379b-890f-9d0c39122fb4",4369154048,""],["a981e585-91de-3e84-8c77-d062f84dbe3d",4369317888,""],["44d6fef1-c56a-3beb-a692-2b4d4aa02ca5",4369383424,""],["17e076af-77d9-3c4b-8390-6f42d1f9acff",4369465344,""],["fc03da8f-b49e-3dc5-b881-eaab494c6b50",4369530880,""],["aa21f7a9-864c-30f3-9842-20ec2fdde72b",4369596416,""],["806fa766-e054-3995-906d-4ac25ec630f3",4369743872,""],["248c8dec-a1f4-3f70-8b2b-d1df0af2dee1",4369825792,""],["560b0bfd-045f-3d8c-820b-921e8b26b69c",4369891328,""],["7341cc08-ff31-3ce5-949a-7fd9b4deca08",4369956864,""],["c2af0f04-874b-3d17-a67f-f33c2aed3447",4370055168,""],["ab440fb7-31a2-3d7d-978c-41e5269f3375",4370120704,""],["117c404b-c34a-381e-aeea-5dc7a5767930",4370186240,""],["6c85dba9-e870-3de3-84c2-9c22d5b72b8c",4370268160,""],["bc536f4b-6438-311e-9cf7-a0bc4c7969f9",4370333696,""]],"timesThrottled":0,"pageIns":986,"waitInfo":["thread 1117: mach_msg receive on port set 0xbc3076d67e83a06b","thread 1424: mach_msg receive on port set 0xbc3076d67e83a24b","thread 1484: mach_msg receive on port set 0xbc3076d67e83a3cb"],"timesDidThrottle":0,"procname":"UserEventAgent","copyOnWriteFaults":118,"threadById":{"1484":{"id":1484,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":1315,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[5,33732],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.001315458,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"1117":{"id":1117,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":237740,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[3,5044],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.23774029099999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"1424":{"id":1424,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":4462,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[4,11492],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0044619999999999998,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"12019":{"id":12019,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":25150,"basePriority":20,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.025150665999999999,"waitEvent":[1,13560469137792796315],"continuation":[0,68854897416],"systemTime":0,"schedPriority":20},"1425":{"id":1425,"schedPriority":31,"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","state":["TH_WAIT"],"user_usec":3468,"basePriority":31,"userFrames":[[2,1124419244],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0034683750000000001,"continuation":[0,68855315520],"systemTime":0,"name":"com.apple.CFSocket.private"},"12128":{"id":12128,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":225,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.00022537499999999999,"waitEvent":[1,13560469137796383363],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37}},"pageFaults":10987,"userTimeTask":7.7608996250000004,"pid":28,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":7422576}, + "41" : {"timesThrottled":0,"pageIns":675,"waitInfo":["thread 1118: mach_msg receive on port set 0xbc3076d67e839dfb","thread 1224: mach_msg receive on port set 0xbc3076d67e839fab","thread 1429: mach_msg receive on port set 0xbc3076d67e83a27b","thread 1452: mach_msg receive on port set 0xbc3076d67e83a30b","thread 1494: mach_msg receive on port set 0xbc3076d67e83a42b"],"timesDidThrottle":0,"procname":"configd","copyOnWriteFaults":70,"threadById":{"1429":{"id":1429,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":41327,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,1986067060],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.041327875,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"11969":{"id":11969,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":763,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.00076387500000000001,"waitEvent":[1,13560469137792787795],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"1452":{"id":1452,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","user_usec":186,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[7,13288],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.000186458,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[7,13288],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":31},"1118":{"id":1118,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":1045207,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[6,21068],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.045207,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"12127":{"id":12127,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":184,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.00018458299999999999,"waitEvent":[1,13560469137796386771],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"1711":{"id":1711,"schedPriority":31,"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","state":["TH_WAIT"],"user_usec":434,"basePriority":31,"userFrames":[[2,1124419244],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.00043429100000000001,"continuation":[0,68855315520],"systemTime":0,"name":"com.apple.CFSocket.private"},"1224":{"id":1224,"schedPriority":31,"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","state":["TH_WAIT"],"user_usec":30669,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[6,103992],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.030669541000000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[6,103992],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"InterfaceNamer thread"},"1494":{"id":1494,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","user_usec":6358,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[8,22536],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0063588749999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[8,22536],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":31}},"pageFaults":7676,"userTimeTask":2.4063210000000002,"pid":41,"systemTimeTask":0,"residentMemoryBytes":3670640}, + "48" : {"timesThrottled":0,"pageIns":848,"waitInfo":["thread 1119: mach_msg receive on port set 0xbc3076d67e83a39b"],"timesDidThrottle":0,"procname":"wifid","copyOnWriteFaults":105,"threadById":{"1119":{"id":1119,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":125592,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[9,663792],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.12559266599999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"11674":{"id":11674,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":80311,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.080311915999999997,"waitEvent":[1,13560469137779101651],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"11789":{"id":11789,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":87789,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.08778975,"waitEvent":[1,13560469137787640467],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"11876":{"id":11876,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":107,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.000107958,"waitEvent":[1,13560469137778978443],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"11874":{"id":11874,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":28575,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.028575415999999999,"waitEvent":[1,13560469137793009963],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31}},"pageFaults":12677,"userTimeTask":9.1621337080000007,"pid":48,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":6406768}, + "29" : {"pid":29,"residentMemoryBytes":8372888,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":71,"pageFaults":9085,"userTimeTask":7.6920522910000004,"procname":"logd","copyOnWriteFaults":39,"threadById":{"11720":{"id":11720,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":102785,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.102785416,"waitEvent":[1,13560469137794144915],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"1201":{"id":1201,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":21,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.1208000000000001e-05,"waitEvent":[1,13560469137774554091],"continuation":[0,68855315520],"systemTime":0,"schedPriority":31},"11965":{"id":11965,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":48237,"basePriority":20,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.048237165999999998,"waitEvent":[1,13560469137792818467],"continuation":[0,68854897416],"systemTime":0,"schedPriority":20}},"timesThrottled":0}, + "50" : {"timesThrottled":0,"pageIns":383,"waitInfo":["thread 1121: mach_msg receive on port set 0xbc3076d67e83a5db"],"timesDidThrottle":0,"procname":"keybagd","copyOnWriteFaults":46,"threadById":{"10381":{"id":10381,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":9,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":9.0410000000000003e-06,"waitEvent":[1,13560469137785151803],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1121":{"id":1121,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","user_usec":52745,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[10,88968],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.052745832999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[10,88968],[2,624855392]],"systemTime":0,"schedPriority":31}},"pageFaults":841,"userTimeTask":0.080539416000000003,"pid":50,"systemTimeTask":0,"residentMemoryBytes":1786440}, + "49" : {"resampled_images":[["d8787825-7d0b-30ab-bff4-8c7062a8aca3",4304535552,""]],"timesThrottled":0,"pageIns":71,"timesDidThrottle":0,"procname":"remoted","copyOnWriteFaults":40,"threadById":{"1202":{"id":1202,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":28671,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.028671499999999999,"waitEvent":[1,13560469137784338763],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":31},"1211":{"id":1211,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":31,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":3.1832999999999998e-05,"waitEvent":[1,13560469137774568611],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":31}},"pageFaults":550,"userTimeTask":0.061703041,"pid":49,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1442336}, + "52" : {"resampled_images":[["d04c054e-aa1d-3553-8fb4-d3ee73c811b8",4306681856,""]],"timesThrottled":0,"pageIns":293,"timesDidThrottle":0,"procname":"amfid","copyOnWriteFaults":38,"threadById":{"1218":{"id":1218,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":18,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.8457999999999998e-05,"waitEvent":[1,13560469137774559899],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":31},"1591":{"id":1591,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":56,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":5.6416000000000003e-05,"waitEvent":[1,13560469137786101027],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":31}},"pageFaults":664,"userTimeTask":0.027297833000000001,"pid":52,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1278496}, + "33" : {"timesThrottled":0,"pageIns":5646,"waitInfo":["thread 1125: mach_msg receive on port set 0xbc3076d67e839ebb","thread 1466: semaphore port 0xbc3076d764b3c52b owned by pid 33","thread 1468: semaphore port 0xbc3076d764b3891b owned by pid 33","thread 1478: semaphore port 0xbc3076d764b2e6cb owned by pid 33","thread 1507: semaphore port 0xbc3076d764ae7f8b owned by pid 33","thread 1508: mach_msg receive on port set 0xbc3076d67e83a51b","thread 1615: mach_msg receive on port set 0xbc3076d67e83a72b","thread 1621: semaphore port 0xbc3076d764ad160b owned by pid 33","thread 1622: semaphore port 0xbc3076d764ace90b owned by pid 33","thread 1644: semaphore port 0xbc3076d764abef3b owned by pid 33","thread 2048: mach_msg receive on port set 0xbc3076d67e83a9cb","thread 2067: semaphore port 0xbc3076d7647a2cfb owned by pid 33","thread 3507: pthread condvar 0x905913258","thread 12116: semaphore port 0xbc3076d764b410fb owned by pid 33","thread 12120: semaphore port 0xbc3076d764b410fb owned by pid 33"],"timesDidThrottle":0,"procname":"mediaserverd","copyOnWriteFaults":216,"threadById":{"1615":{"id":1615,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","state":["TH_WAIT"],"user_usec":121,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[12,2916840],[12,4313816],[2,1396668108],[2,1396665252]],"userTime":0.000121625,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[12,2916840],[12,4313816],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":31},"1507":{"id":1507,"schedPriority":58,"system_usec":0,"state":["TH_WAIT"],"notice":"Unmapped pages caused truncated backtrace; re-sampled 7 frames","user_usec":19,"basePriority":58,"userFrames":[[2,1124416196],[2,237923372],[2,301405268],[2,300768312],[2,1396668108],[2,1396665252]],"userTime":1.9290999999999999e-05,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"resampledUserFrames":[[2,1124416196],[2,237921656],[2,237923372],[2,301405268],[2,300768312],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"FigTransportConnectionUSB.messagesending"},"11137":{"continuation":[0,68854897416],"userTime":0.040855541000000002,"systemTime":0,"id":11137,"basePriority":63,"user_usec":40855,"system_usec":0,"schedPriority":63,"userFrames":[[2,1124417616],[2,1396665240]],"state":["TH_WAIT"],"waitEvent":[1,13560469137786308907]},"12124":{"id":12124,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","user_usec":11795,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.011795416,"waitEvent":[1,13560469137792964219],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1644":{"id":1644,"schedPriority":55,"system_usec":0,"state":["TH_WAIT"],"notice":"Unmapped pages caused truncated backtrace; re-sampled 6 frames","user_usec":31,"basePriority":55,"userFrames":[[2,1124416196],[2,1423450048],[2,1423452040],[2,1396668108],[2,1396665252]],"userTime":3.1708000000000002e-05,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"resampledUserFrames":[[2,1124416196],[2,1423448200],[2,1423450048],[2,1423452040],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"AUToneMeister messenger"},"1478":{"id":1478,"name":"caulk.messenger.shared:21","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","system_usec":0,"user_usec":11827,"basePriority":31,"userFrames":[[2,1124416196],[2,1423450048],[2,1423452040],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.011827541,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"systemTime":0,"schedPriority":31},"1622":{"id":1622,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 8 frames","user_usec":5,"basePriority":31,"userFrames":[[2,1124416196],[2,1423443264],[2,1923902832],[2,1923902396],[2,1923902112],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":5.2909999999999998e-06,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"resampledUserFrames":[[2,1124416196],[2,1423448200],[2,1423443264],[2,1923902832],[2,1923902396],[2,1923902112],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":31},"11080":{"continuation":[0,68854897416],"userTime":0.064219290999999998,"systemTime":0,"id":11080,"basePriority":60,"user_usec":64219,"system_usec":0,"schedPriority":60,"userFrames":[[2,1124417616],[2,1396665240]],"state":["TH_WAIT"],"waitEvent":[1,13560469137785144987]},"2067":{"id":2067,"name":"caulk.messenger.shared:25","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","system_usec":0,"user_usec":8,"notice":"Unmapped pages caused truncated backtrace; re-sampled 6 frames","basePriority":37,"userFrames":[[2,1124416196],[2,1423450048],[2,1423452040],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":8.7080000000000003e-06,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"resampledUserFrames":[[2,1124416196],[2,1423448200],[2,1423450048],[2,1423452040],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":37},"12002":{"id":12002,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":34775,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.034775665999999997,"waitEvent":[1,13560469137785230971],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1508":{"id":1508,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","state":["TH_WAIT"],"systemTime":0,"user_usec":2991,"basePriority":58,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,301410248],[2,300768312],[2,1396668108],[2,1396665252]],"userTime":0.002991666,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,301410248],[2,300768312],[2,1396668108],[2,1396665252]],"name":"FigTransportConnectionUSB.server","schedPriority":58},"1468":{"id":1468,"name":"caulk.messenger.shared:17","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","system_usec":0,"user_usec":2405,"basePriority":19,"userFrames":[[2,1124416196],[2,1423450048],[2,1423452040],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.0024057079999999999,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"systemTime":0,"schedPriority":19},"1125":{"id":1125,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":400391,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[11,83972],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.40039154100000002,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"2048":{"continuation":[0,68850618692],"userTime":0.47144970800000002,"name":"com.apple.CoreMotion.MotionThread","id":2048,"basePriority":47,"user_usec":471449,"system_usec":0,"schedPriority":47,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,304811712],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0},"11986":{"id":11986,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":73250,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.073250082999999994,"waitEvent":[1,13560469137796374843],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"3507":{"id":3507,"schedPriority":54,"system_usec":0,"state":["TH_WAIT"],"user_usec":133336,"basePriority":54,"userFrames":[[2,1124418588],[2,300368628],[2,300368440],[2,367755732],[2,300768312],[2,1396668108],[2,1396665252]],"userTime":0.13333600000000001,"waitEvent":[1,13560469133898187099],"continuation":[0,68887633940],"systemTime":0,"name":"com.apple.coremedia.imagequeue.coreanimation.common"},"1466":{"id":1466,"name":"HAL Async Logger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","system_usec":0,"user_usec":218,"notice":"Unmapped pages caused truncated backtrace; re-sampled 6 frames","basePriority":31,"userFrames":[[2,1124416196],[2,819628048],[2,819627156],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.000218958,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"resampledUserFrames":[[2,1124416196],[2,822266336],[2,819628048],[2,819627156],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":31},"1621":{"id":1621,"schedPriority":55,"system_usec":0,"state":["TH_WAIT"],"user_usec":328,"basePriority":55,"userFrames":[[2,1124416196],[2,1423450048],[2,1423452040],[2,1396668108],[2,1396665252]],"userTime":0.00032812500000000002,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"systemTime":0,"name":"caulk.messenger.shared:high"},"12116":{"id":12116,"schedPriority":47,"system_usec":0,"state":["TH_WAIT"],"user_usec":27380,"basePriority":47,"userFrames":[[2,1124416220],[2,237923316],[2,237992000],[2,1396668108],[2,1396665252]],"userTime":0.027380125000000002,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"systemTime":0,"name":"com.apple.coremedia.rootQueue.47"},"12120":{"id":12120,"schedPriority":47,"system_usec":0,"state":["TH_WAIT"],"user_usec":32235,"basePriority":47,"userFrames":[[2,1124416220],[2,237923316],[2,237992000],[2,1396668108],[2,1396665252]],"userTime":0.032235416000000003,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"systemTime":0,"name":"com.apple.coremedia.rootQueue.47"}},"pageFaults":18071,"userTimeTask":11.523071375000001,"pid":33,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":25248568}, + "60" : {"timesThrottled":0,"pageIns":313,"waitInfo":["thread 1126: mach_msg receive on port set 0xbc3076d67e839e8b"],"timesDidThrottle":0,"procname":"thermalmonitord","copyOnWriteFaults":54,"threadById":{"11248":{"id":11248,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":2468,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.0024687910000000001,"waitEvent":[1,13560469137790308307],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"8067":{"id":8067,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":12653,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.012653708,"waitEvent":[1,13560469137786152275],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"10925":{"id":10925,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":6664,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.0066643329999999997,"waitEvent":[1,13560469137775096483],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"11249":{"id":11249,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":0,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0,"waitEvent":[1,13560469137790209347],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1126":{"id":1126,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":2972474,"basePriority":37,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[13,222024],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":2.9724747499999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":37}},"pageFaults":8933,"userTimeTask":3.0612767500000002,"pid":60,"systemTimeTask":0,"residentMemoryBytes":2540104}, + "57" : {"timesThrottled":0,"pageIns":7,"waitInfo":["thread 1127: mach_msg receive on port set 0xbc3076d67e83a2db","thread 1268: semaphore port 0xbc3076d764b9ce2b owned by pid 57"],"timesDidThrottle":0,"procname":"watchdogd","copyOnWriteFaults":38,"threadById":{"1268":{"id":1268,"schedPriority":97,"system_usec":0,"state":["TH_WAIT"],"user_usec":75528,"basePriority":97,"userFrames":[[2,1124416220],[2,237923316],[14,34572],[14,34416],[2,1396668108],[2,1396665252]],"userTime":0.075528708,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"systemTime":0,"name":"watchdogd service monitoring thread"},"1127":{"id":1127,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":18861,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[14,29052],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.018861833000000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"12054":{"id":12054,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":477,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.00047699999999999999,"waitEvent":[1,13560469137790291267],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31}},"pageFaults":530,"userTimeTask":0.293552541,"pid":57,"systemTimeTask":0,"residentMemoryBytes":1393224}, + "55" : {"resampled_images":[["c3c8cab6-b3a6-3e2d-b7b8-7873d4c95d7b",4343332864,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4344102912,""]],"timesThrottled":0,"pageIns":585,"waitInfo":["thread 1128: mach_msg receive on port set 0xbc3076d67e839e5b"],"timesDidThrottle":0,"procname":"mobiletimerd","copyOnWriteFaults":69,"threadById":{"1208":{"id":1208,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":51987,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.051987040999999998,"waitEvent":[1,13560469137785229267],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1291":{"id":1291,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":3198,"basePriority":20,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.003198041,"waitEvent":[1,13560469137785162027],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":20},"1128":{"id":1128,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":68847,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[15,14288],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.068847207999999993,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"2539":{"id":2539,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":31487,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.031487958000000003,"waitEvent":[1,13560469137790755131],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31}},"pageFaults":1969,"userTimeTask":0.25142541600000001,"pid":55,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":3080816}, + "67" : {"timesThrottled":0,"pageIns":2010,"waitInfo":["thread 1129: mach_msg receive on port set 0xbc3076d67e83a81b","thread 1638: mach_msg receive on port set 0xbc3076d67e83a84b","thread 2384: mach_msg receive on port set 0xbc3076d67e83b98b","thread 6854: mach_msg receive on port set 0xbc3076d67e83c46b"],"timesDidThrottle":0,"procname":"locationd","copyOnWriteFaults":158,"threadById":{"11971":{"id":11971,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":53688,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.053688708000000002,"waitEvent":[1,13560469137792792907],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"11830":{"id":11830,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":50168,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.050168125000000001,"waitEvent":[1,13560469137789158019],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"6854":{"continuation":[0,68850618692],"userTime":0.001252083,"name":"com.apple.NSURLConnectionLoader","id":6854,"basePriority":33,"user_usec":1252,"system_usec":0,"schedPriority":33,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0},"1638":{"continuation":[0,68850618692],"userTime":0.94213591600000002,"name":"com.apple.CoreMotion.MotionThread","id":1638,"basePriority":47,"user_usec":942135,"system_usec":0,"schedPriority":47,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[16,7022464],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0},"11973":{"id":11973,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":47882,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.047882750000000002,"waitEvent":[1,13560469137787313443],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"11669":{"id":11669,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":202515,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.20251566600000001,"waitEvent":[1,13560469137796519547],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"11632":{"id":11632,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":135733,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.13573329100000001,"waitEvent":[1,13560469137788522451],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"11972":{"id":11972,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":24366,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.024366708000000001,"waitEvent":[1,13560469137792813355],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"1129":{"id":1129,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":1483185,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[16,20137344],[16,20140204],[16,20155692],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.4831852080000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"12075":{"id":12075,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":0,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0,"waitEvent":[1,13560469137794185547],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"2384":{"id":2384,"schedPriority":31,"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","state":["TH_WAIT"],"user_usec":52246,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,557651224],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.052246500000000001,"continuation":[0,68850618692],"systemTime":0,"name":"CommonUtilities-WiFi-Thread"}},"pageFaults":7868,"userTimeTask":14.719051625000001,"pid":67,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":11158248}, + "58" : {"timesThrottled":0,"pageIns":610,"waitInfo":["thread 1130: mach_msg receive on port set 0xbc3076d67e83a21b"],"timesDidThrottle":0,"procname":"nfcd","copyOnWriteFaults":64,"threadById":{"1130":{"continuation":[0,68850618692],"userTime":0.052802707999999997,"system_usec":0,"id":1130,"basePriority":50,"user_usec":52802,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[17,1355988],[2,624855392],[1,0]],"schedPriority":50,"state":["TH_WAIT"],"systemTime":0},"10410":{"id":10410,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","user_usec":321,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00032133299999999998,"waitEvent":[1,13560469137797035315],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1707,"userTimeTask":1.0538569579999999,"pid":58,"systemTimeTask":0,"residentMemoryBytes":2835016}, + "69" : {"timesThrottled":0,"pageIns":238,"waitInfo":["thread 1131: mach_msg receive on port set 0xbc3076d67e839f1b"],"timesDidThrottle":0,"procname":"containermanagerd","copyOnWriteFaults":40,"threadById":{"7264":{"id":7264,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":82950,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.082950833000000002,"waitEvent":[1,13560469137792809947],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1131":{"id":1131,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":31830,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,1167125780],[18,16156],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.031830166,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31}},"pageFaults":5070,"userTimeTask":3.7273392080000001,"pid":69,"systemTimeTask":0,"residentMemoryBytes":3031584}, + "71" : {"pid":71,"residentMemoryBytes":2179656,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":591,"pageFaults":1298,"userTimeTask":0.372579875,"procname":"driverkitd","copyOnWriteFaults":49,"threadById":{"10599":{"id":10599,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":18,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.8e-05,"waitEvent":[1,13560469137796481667],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1258":{"id":1258,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":22,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.2166000000000001e-05,"waitEvent":[1,13560469137784656387],"continuation":[0,68855315520],"systemTime":0,"schedPriority":31}},"timesThrottled":0}, + "65" : {"timesThrottled":0,"pageIns":1185,"waitInfo":["thread 1133: mach_msg receive on port set 0xbc3076d67e83aeab","thread 7707: mach_msg receive on port set 0xbc3076d67e83882b"],"timesDidThrottle":0,"procname":"sharingd","copyOnWriteFaults":181,"threadById":{"1133":{"id":1133,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":7499330,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[19,57456],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":7.4993302909999997,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"12021":{"id":12021,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":10312,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.01031225,"waitEvent":[1,13560469137792984403],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"7707":{"continuation":[0,68850618692],"userTime":0.0047280409999999997,"name":"com.apple.NSURLConnectionLoader","id":7707,"basePriority":33,"user_usec":4728,"system_usec":0,"schedPriority":33,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0}},"pageFaults":6955,"userTimeTask":9.4995465410000008,"pid":65,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":12272360}, + "59" : {"timesThrottled":0,"pageIns":1215,"waitInfo":["thread 1134: mach_msg receive on port set 0xbc3076d67e83bc5b","thread 2657: mach_msg receive on port set 0xbc3076d67e83c0ab","thread 6810: mach_msg receive on port set 0xbc3076d67e83a36b"],"timesDidThrottle":0,"procname":"identityservicesd","copyOnWriteFaults":148,"threadById":{"2518":{"id":2518,"schedPriority":20,"system_usec":0,"state":["TH_WAIT"],"notice":"Unmapped pages caused truncated backtrace; re-sampled 4 frames","user_usec":132,"basePriority":20,"userFrames":[[2,1124422784],[2,1396668108],[2,1396665252]],"userTime":0.00013208299999999999,"waitEvent":[1,13560469141654529391],"continuation":[0,68855092288],"resampledUserFrames":[[2,1124422784],[2,495202512],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"TransportThread Sync"},"2515":{"id":2515,"schedPriority":37,"system_usec":0,"state":["TH_WAIT"],"user_usec":30038,"basePriority":37,"userFrames":[[2,1124422784],[2,1396668108],[2,1396665252]],"userTime":0.030038249999999999,"waitEvent":[1,13560469141654529007],"continuation":[0,68855092288],"systemTime":0,"name":"TransportThread Primary"},"1134":{"id":1134,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":2278432,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[20,1252052],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.2784327910000002,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"2516":{"id":2516,"schedPriority":37,"system_usec":0,"state":["TH_WAIT"],"notice":"Unmapped pages caused truncated backtrace; re-sampled 4 frames","user_usec":65,"basePriority":37,"userFrames":[[2,1124422784],[2,1396668108],[2,1396665252]],"userTime":6.5083e-05,"waitEvent":[1,13560469141654529135],"continuation":[0,68855092288],"resampledUserFrames":[[2,1124422784],[2,495202512],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"TransportThread URGENT"},"12050":{"id":12050,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":1510,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.001510541,"waitEvent":[1,13560469137790248931],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"6810":{"continuation":[0,68850618692],"userTime":0.0032168750000000001,"name":"com.apple.NSURLConnectionLoader","id":6810,"basePriority":33,"user_usec":3216,"system_usec":0,"schedPriority":33,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0},"2517":{"id":2517,"schedPriority":31,"system_usec":0,"state":["TH_WAIT"],"notice":"Unmapped pages caused truncated backtrace; re-sampled 4 frames","user_usec":66,"basePriority":31,"userFrames":[[2,1124422784],[2,1396668108],[2,1396665252]],"userTime":6.6874999999999999e-05,"waitEvent":[1,13560469141654529263],"continuation":[0,68855092288],"resampledUserFrames":[[2,1124422784],[2,495202512],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"TransportThread Default"},"2657":{"id":2657,"schedPriority":31,"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","state":["TH_WAIT"],"user_usec":48632,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,557651224],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.048632083,"continuation":[0,68850618692],"systemTime":0,"name":"CommonUtilities-WiFi-Thread"}},"pageFaults":6056,"userTimeTask":4.2436345409999996,"pid":59,"systemTimeTask":0,"residentMemoryBytes":7799528}, + "76" : {"timesThrottled":0,"pageIns":278,"waitInfo":["thread 1135: mach_msg receive on port set 0xbc3076d67e83ad2b"],"timesDidThrottle":0,"procname":"lockdownd","copyOnWriteFaults":53,"threadById":{"10326":{"id":10326,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":81,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":8.1291000000000005e-05,"waitEvent":[1,13560469137793943851],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1135":{"id":1135,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":99008,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[21,58912],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.099007999999999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31}},"pageFaults":1028,"userTimeTask":0.103637083,"pid":76,"systemTimeTask":0,"residentMemoryBytes":2409072}, + "62" : {"timesThrottled":0,"pageIns":2985,"waitInfo":["thread 1136: mach_msg receive on port set 0xbc3076d67e839e2b","thread 1409: mach_msg receive on port set 0xbc3076d67e83a1bb","thread 1485: mach_msg receive on port set 0xbc3076d67e83a3fb","thread 1498: mach_msg receive on port set 0xbc3076d67e83a48b","thread 1499: mach_msg receive on port set 0xbc3076d67e83a4bb","thread 1716: mach_msg receive on port set 0xbc3076d67e83a7eb","thread 1717: mach_msg receive on port set 0xbc3076d67e83a87b","thread 1718: mach_msg receive on port set 0xbc3076d67e83a8db","thread 1722: mach_msg receive on port set 0xbc3076d67e83a90b","thread 1779: mach_msg receive on port set 0xbc3076d67e83ac0b","thread 11594: semaphore port 0xbc3076d764b999fb owned by pid 62","thread 12122: semaphore port 0xbc3076d764b999fb owned by pid 62"],"timesDidThrottle":0,"procname":"backboardd","copyOnWriteFaults":1048,"threadById":{"1485":{"continuation":[0,68850618692],"userTime":9.2696372080000007,"name":"com.apple.coreanimation.render-server","id":1485,"basePriority":55,"user_usec":9269637,"system_usec":0,"schedPriority":55,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,138340888],[2,140735564],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0},"1718":{"id":1718,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","state":["TH_WAIT"],"systemTime":0,"user_usec":516,"basePriority":54,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,140697820],[2,140735564],[2,1396668108],[2,1396665252]],"userTime":0.00051658300000000004,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,140697820],[2,140735564],[2,1396668108],[2,1396665252]],"name":"com.apple.coreanimation.display.wireless2","schedPriority":54},"1498":{"continuation":[0,68850618692],"userTime":58.721682666,"name":"com.apple.coreanimation.display.primary","id":1498,"basePriority":54,"user_usec":58721682,"system_usec":0,"schedPriority":54,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,140697820],[2,140735564],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0},"11368":{"id":11368,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":1509237,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":1.509237041,"waitEvent":[1,13560469137784310059],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"11061":{"id":11061,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":2195614,"basePriority":20,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_UTILITY","userTime":2.1956145409999999,"waitEvent":[1,13560469137787688571],"continuation":[0,68854897416],"systemTime":0,"schedPriority":20},"11366":{"id":11366,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":1651399,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":1.6513990409999999,"waitEvent":[1,13560469137786169315],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"1717":{"id":1717,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","state":["TH_WAIT"],"systemTime":0,"user_usec":545,"basePriority":54,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,140697820],[2,140735564],[2,1396668108],[2,1396665252]],"userTime":0.00054508300000000003,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,140697820],[2,140735564],[2,1396668108],[2,1396665252]],"name":"com.apple.coreanimation.display.wireless1","schedPriority":54},"1409":{"continuation":[0,68850618692],"userTime":4.9874999999999999e-05,"name":"IOHIDService - RunLoopCompatibilityThread","id":1409,"basePriority":63,"user_usec":49,"system_usec":0,"schedPriority":63,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,248246624],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0},"11485":{"id":11485,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":757897,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.757897708,"waitEvent":[1,13560469137792916115],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1779":{"continuation":[0,68850618692],"userTime":0.65803891599999997,"name":"com.apple.coreanimation.asynchronous","id":1779,"basePriority":40,"user_usec":658038,"system_usec":0,"schedPriority":40,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,139483852],[2,140735564],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0},"1722":{"continuation":[0,68850618692],"userTime":0.073945458000000006,"name":"com.apple.CoreMotion.MotionThread","id":1722,"basePriority":47,"user_usec":73945,"system_usec":0,"schedPriority":47,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,304811712],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0},"1716":{"id":1716,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","state":["TH_WAIT"],"systemTime":0,"user_usec":715,"basePriority":54,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,140697820],[2,140735564],[2,1396668108],[2,1396665252]],"userTime":0.00071500000000000003,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,140697820],[2,140735564],[2,1396668108],[2,1396665252]],"name":"com.apple.coreanimation.display.wireless0","schedPriority":54},"1136":{"id":1136,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":777092,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[22,53580],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.777092,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"11594":{"id":11594,"schedPriority":63,"system_usec":0,"state":["TH_WAIT"],"user_usec":1721320,"basePriority":63,"userFrames":[[2,1124416220],[2,237923316],[2,237992000],[2,1396668108],[2,1396665252]],"userTime":1.72132025,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"systemTime":0,"name":"IOHIDEvent Server Connection - Root"},"12122":{"id":12122,"schedPriority":63,"system_usec":0,"state":["TH_WAIT"],"user_usec":1884,"basePriority":63,"userFrames":[[2,1124416220],[2,237923316],[2,237992000],[2,1396668108],[2,1396665252]],"userTime":0.0018841249999999999,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"systemTime":0,"name":"IOHIDEvent Server Connection - Root"},"11484":{"continuation":[0,68854897416],"userTime":0.61938158300000001,"systemTime":0,"id":11484,"basePriority":63,"user_usec":619381,"system_usec":0,"schedPriority":63,"userFrames":[[2,1124417616],[2,1396665240]],"state":["TH_WAIT"],"waitEvent":[1,13560469137792933155]},"1499":{"continuation":[0,68850618692],"userTime":2.2240242079999999,"name":"com.apple.coreanimation.frameinfo.primary","id":1499,"basePriority":54,"user_usec":2224024,"system_usec":0,"schedPriority":54,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,140698404],[2,140735564],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0},"11849":{"id":11849,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":222561,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.22256145799999999,"waitEvent":[1,13560469137786288459],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37}},"pageFaults":102983,"userTimeTask":133.66350449999999,"pid":62,"systemTimeTask":0,"residentMemoryBytes":92455896}, + "64" : {"timesThrottled":0,"pageIns":165,"waitInfo":["thread 1137: mach_msg receive on port set 0xbc3076d67e83a0cb"],"timesDidThrottle":0,"procname":"timed","copyOnWriteFaults":56,"threadById":{"10885":{"id":10885,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":2582,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0025820830000000002,"waitEvent":[1,13560469137777619619],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1137":{"id":1137,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":122489,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[23,26244],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.122489,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31}},"pageFaults":1196,"userTimeTask":0.32102566599999999,"pid":64,"systemTimeTask":0,"residentMemoryBytes":2458144}, + "77" : {"timesThrottled":0,"pageIns":82,"waitInfo":["thread 1138: mach_msg receive on port set 0xbc3076d67e839eeb"],"timesDidThrottle":0,"procname":"distnoted","copyOnWriteFaults":26,"threadById":{"1138":{"id":1138,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","user_usec":35221,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[24,16360],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.035221457999999997,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[24,16360],[2,624855392]],"systemTime":0,"schedPriority":31},"1413":{"id":1413,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","user_usec":763930,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.76393033300000002,"waitEvent":[1,13560469137785029251],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":640,"userTimeTask":0.81102866600000001,"pid":77,"systemTimeTask":0,"residentMemoryBytes":1524216}, + "90" : {"resampled_images":[["e3a528d0-159c-329d-af44-c02e29370455",4375937024,""]],"timesThrottled":0,"pageIns":19,"waitInfo":["thread 1156: pthread condvar 0x104d58200","thread 1214: mach_msg receive on port set 0xbc3076d67e839f7b","thread 1219: pthread condvar 0x4d0c8c040","thread 12132: pthread condvar 0x4d2009440"],"timesDidThrottle":0,"procname":"fseventsd","copyOnWriteFaults":34,"threadById":{"1157":{"id":1157,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":16,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.6375000000000002e-05,"waitEvent":[1,13560469137784641867],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":31},"1219":{"id":1219,"name":"com.apple.fseventsd.disklogger.90","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","system_usec":0,"user_usec":205579,"basePriority":31,"userFrames":[[2,1124418588],[25,56688],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.20557966599999999,"waitEvent":[1,13560469133898169691],"continuation":[0,68887633940],"systemTime":0,"schedPriority":31},"1216":{"id":1216,"system_usec":0,"schedPriority":50,"kernelFrames":[[0,68850944084],[0,68850937588],[0,68855314900],[0,68852520760],[0,68855469196],[0,68855469656],[0,68856460680],[0,68852028024],[0,68850481080],[1,0]],"state":["TH_WAIT"],"user_usec":310707,"basePriority":50,"userFrames":[[2,1124419956],[2,1396668108],[2,1396665252]],"userTime":0.310707291,"waitEvent":[1,13560469118452161883],"systemTime":0,"name":"com.apple.fseventsd.dev.fsevents"},"12132":{"id":12132,"name":"com.apple.fseventsd.client.28","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","system_usec":0,"user_usec":422,"basePriority":31,"userFrames":[[2,1124418588],[25,56752],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.00042204100000000001,"waitEvent":[1,13560469133891709019],"continuation":[0,68887633940],"systemTime":0,"schedPriority":31},"1214":{"id":1214,"schedPriority":31,"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","state":["TH_WAIT"],"user_usec":4353,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[25,30264],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0043532500000000003,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[25,30264],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"com.apple.fseventsd.volume"},"1198":{"id":1198,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":63388,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.063388874999999997,"waitEvent":[1,13560469137778964811],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":31},"1156":{"id":1156,"schedPriority":49,"system_usec":0,"state":["TH_WAIT"],"user_usec":771852,"basePriority":49,"userFrames":[[2,1124418588],[25,70928],[25,72844],[2,1396668108],[2,1396665252]],"userTime":0.77185270800000005,"waitEvent":[1,13560469133891707995],"continuation":[0,68887633940],"systemTime":0,"name":"com.apple.fseventsd.notify"}},"pageFaults":7643,"userTimeTask":2.4831486250000001,"pid":90,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":3211808}, + "87" : {"timesThrottled":0,"pageIns":868,"waitInfo":["thread 1140: mach_msg receive on port set 0xbc3076d67e83a93b","thread 1921: pthread condvar 0x101512ad8","thread 1940: pthread condvar 0x1015176f8"],"timesDidThrottle":0,"procname":"bluetoothd","copyOnWriteFaults":90,"threadById":{"1140":{"id":1140,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":232637,"basePriority":37,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[26,146856],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.232637125,"continuation":[0,68850618692],"systemTime":0,"schedPriority":37},"7713":{"id":7713,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":1264201,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":1.2642013329999999,"waitEvent":[1,13560469137788467531],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"1922":{"id":1922,"schedPriority":63,"system_usec":0,"state":["TH_WAIT"],"user_usec":695356,"basePriority":63,"userFrames":[[2,1124422784],[2,1396668108],[2,1396665252]],"userTime":0.69535604100000004,"waitEvent":[1,13560469141654528111],"continuation":[0,68855092288],"systemTime":0,"name":"hci_rx"},"10415":{"continuation":[0,68854897416],"userTime":0.90891091599999996,"systemTime":0,"id":10415,"basePriority":47,"user_usec":908910,"system_usec":0,"schedPriority":47,"userFrames":[[2,1124417616],[2,1396665240]],"state":["TH_WAIT"],"waitEvent":[1,13560469137792808243]},"1921":{"id":1921,"schedPriority":60,"system_usec":0,"state":["TH_WAIT"],"user_usec":124663,"basePriority":60,"userFrames":[[2,1124418588],[26,547240],[2,1396668108],[2,1396665252]],"userTime":0.124663125,"waitEvent":[1,13560469133891691099],"continuation":[0,68887633940],"systemTime":0,"name":"StackLoop"},"9823":{"id":9823,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":1432248,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":1.4322485,"waitEvent":[1,13560469137788491387],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"1940":{"id":1940,"schedPriority":63,"system_usec":0,"state":["TH_WAIT"],"user_usec":134,"basePriority":63,"userFrames":[[2,1124418588],[26,546124],[26,1462364],[2,1396668108],[2,1396665252]],"userTime":0.00013429100000000001,"waitEvent":[1,13560469133898185563],"continuation":[0,68887633940],"systemTime":0,"name":"TxLoop"},"1924":{"id":1924,"schedPriority":63,"system_usec":0,"state":["TH_WAIT"],"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":34,"basePriority":63,"userFrames":[[2,1124422784],[2,1396668108],[2,1396665252]],"userTime":3.4541e-05,"waitEvent":[1,13560469141654528623],"continuation":[0,68855092288],"resampledUserFrames":[[2,1124422784],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"sco_rx"},"9922":{"id":9922,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","user_usec":1464998,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":1.464998416,"waitEvent":[1,13560469137790350643],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"10414":{"id":10414,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":1770824,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":1.770824333,"waitEvent":[1,13560469137788520747],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"11319":{"id":11319,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":14,"basePriority":37,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":1.4083000000000001e-05,"waitEvent":[1,13560469137793107611],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"1923":{"id":1923,"schedPriority":63,"system_usec":0,"state":["TH_WAIT"],"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":34,"basePriority":63,"userFrames":[[2,1124422784],[2,1396668108],[2,1396665252]],"userTime":3.4749999999999998e-05,"waitEvent":[1,13560469141654528367],"continuation":[0,68855092288],"resampledUserFrames":[[2,1124422784],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"acl_rx"}},"pageFaults":3671,"userTimeTask":12.829473833,"pid":87,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":5210816}, + "68" : {"timesThrottled":0,"pageIns":1155,"waitInfo":["thread 1141: mach_msg receive on port set 0xbc3076d67e83aedb","thread 1959: mach_msg receive on port set 0xbc3076d67e83b05b"],"timesDidThrottle":0,"procname":"imagent","copyOnWriteFaults":152,"threadById":{"1141":{"id":1141,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":663056,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[27,488672],[27,491936],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.663056333,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"1959":{"id":1959,"schedPriority":31,"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","state":["TH_WAIT"],"user_usec":50186,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,557651224],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.050186250000000002,"continuation":[0,68850618692],"systemTime":0,"name":"CommonUtilities-WiFi-Thread"},"11897":{"id":11897,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":10,"basePriority":37,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":1.0166000000000001e-05,"waitEvent":[1,13560469137785194795],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37}},"pageFaults":4427,"userTimeTask":1.1108384579999999,"pid":68,"systemTimeTask":0,"residentMemoryBytes":6095472}, + "83" : {"timesThrottled":0,"pageIns":812,"waitInfo":["thread 1142: mach_msg receive on port set 0xbc3076d67e83a78b"],"timesDidThrottle":0,"procname":"rapportd","copyOnWriteFaults":94,"threadById":{"3638":{"id":3638,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":115251,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.115251541,"waitEvent":[1,13560469137794345979],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"1142":{"id":1142,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":476896,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[28,240068],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.47689620799999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31}},"pageFaults":2790,"userTimeTask":0.79033245799999996,"pid":83,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":3768904}, + "80" : {"pid":80,"residentMemoryBytes":1311264,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":29,"pageFaults":528,"userTimeTask":0.111886208,"procname":"AppleCredentialManagerDaemon","copyOnWriteFaults":38,"threadById":{"3877":{"id":3877,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":75963,"basePriority":20,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.075963875,"waitEvent":[1,13560469137785024139],"continuation":[0,68854897416],"systemTime":0,"schedPriority":20},"1448":{"id":1448,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":25,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.55e-05,"waitEvent":[1,13560469137774586859],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":31}},"timesThrottled":0}, + "89" : {"timesThrottled":0,"pageIns":2025,"waitInfo":["thread 1145: mach_msg receive on port set 0xbc3076d67e83a69b","thread 1543: pthread condvar 0x8069150c0","thread 1572: mach_msg receive on port set 0xbc3076d67e83a6cb","thread 1600: mach_msg receive on port set 0xbc3076d67e83a6fb","thread 1629: mach_msg receive on port set 0xbc3076d67e83a75b"],"timesDidThrottle":0,"procname":"CommCenter","copyOnWriteFaults":106,"threadById":{"1543":{"id":1543,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 7 frames","user_usec":17,"basePriority":31,"userFrames":[[2,1124418588],[2,530094460],[2,530093084],[2,530064672],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.7875000000000001e-05,"waitEvent":[1,13560469133898174811],"continuation":[0,68887633940],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,530094460],[2,530093084],[2,530064672],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":31},"1572":{"id":1572,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","user_usec":65,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[29,15937936],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":6.5208000000000003e-05,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[29,15937936],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":31},"1629":{"id":1629,"schedPriority":31,"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","state":["TH_WAIT"],"user_usec":51512,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,557651224],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.051512124999999999,"continuation":[0,68850618692],"systemTime":0,"name":"CommonUtilities-WiFi-Thread"},"1145":{"id":1145,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":244217,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[29,1546516],[29,1545760],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.24421725,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"12035":{"id":12035,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":387,"basePriority":20,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.00038725000000000001,"waitEvent":[1,13560469137787579387],"continuation":[0,68854897416],"systemTime":0,"schedPriority":20},"1600":{"id":1600,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":10172,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1793155916],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.010172291,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"12034":{"id":12034,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":581,"basePriority":20,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.00058187500000000004,"waitEvent":[1,13560469137788531363],"continuation":[0,68854897416],"systemTime":0,"schedPriority":20}},"pageFaults":4242,"userTimeTask":1.5363290000000001,"pid":89,"systemTimeTask":0,"residentMemoryBytes":5243544}, + "85" : {"timesThrottled":0,"pageIns":43,"waitInfo":["thread 1146: mach_msg receive on port set 0xbc3076d67e839dcb"],"timesDidThrottle":0,"procname":"usermanagerd","copyOnWriteFaults":38,"threadById":{"1146":{"id":1146,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","user_usec":25539,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[30,299940],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.025539458000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[30,299940],[2,624855392]],"systemTime":0,"schedPriority":31},"8314":{"id":8314,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":12989,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.012989791000000001,"waitEvent":[1,13560469137792849531],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31}},"pageFaults":720,"userTimeTask":0.30421700000000002,"pid":85,"systemTimeTask":0,"residentMemoryBytes":1720864}, + "86" : {"resampled_images":[["b5131209-0b45-3b53-8353-0079e4b2b16c",4366499840,""]],"timesThrottled":0,"pageIns":577,"waitInfo":["thread 1148: mach_msg receive on port set 0xbc3076d67e83a03b"],"timesDidThrottle":0,"procname":"fairplayd.A2","copyOnWriteFaults":61,"threadById":{"1209":{"id":1209,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":2323,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.002323875,"waitEvent":[1,13560469137785232675],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"1148":{"id":1148,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":649189,"basePriority":37,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[31,9734024],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.64918970799999998,"continuation":[0,68850618692],"systemTime":0,"schedPriority":37}},"pageFaults":1789,"userTimeTask":0.65376662500000005,"pid":86,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2163232}, + "92" : {"pid":92,"residentMemoryBytes":3047968,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":5,"pageFaults":576,"userTimeTask":2.898753541,"procname":"notifyd","copyOnWriteFaults":23,"threadById":{"10445":{"id":10445,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":574885,"basePriority":20,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.57488537500000003,"waitEvent":[1,13560469137794364723],"continuation":[0,68854897416],"systemTime":0,"schedPriority":20},"1153":{"id":1153,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":16,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.6416e-05,"waitEvent":[1,13560469137774462635],"continuation":[0,68855315520],"systemTime":0,"schedPriority":31}},"timesThrottled":0}, + "30" : {"timesThrottled":0,"pageIns":210,"waitInfo":["thread 1158: mach_msg receive on port set 0xbc3076d67e83a5ab"],"timesDidThrottle":0,"procname":"runningboardd","copyOnWriteFaults":55,"threadById":{"1158":{"id":1158,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":117651,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[32,16128],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.117651458,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"11952":{"id":11952,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":14119,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.014119375,"waitEvent":[1,13560469137787299811],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"11984":{"id":11984,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":37580,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.037580250000000003,"waitEvent":[1,13560469137794082787],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"12044":{"id":12044,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":19072,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.019072333,"waitEvent":[1,13560469137789137571],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"12045":{"id":12045,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":13,"basePriority":37,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":1.325e-05,"waitEvent":[1,13560469137789164835],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37}},"pageFaults":2528,"userTimeTask":10.872949374999999,"pid":30,"systemTimeTask":0,"flags":["boosted","dirty"],"residentMemoryBytes":5374576}, + "32" : {"timesThrottled":0,"pageIns":133,"waitInfo":["thread 1159: mach_msg receive on port set 0xbc3076d67e839fdb"],"timesDidThrottle":0,"procname":"peopled","copyOnWriteFaults":87,"threadById":{"10356":{"id":10356,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":11,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.1375e-05,"waitEvent":[1,13560469137792917819],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1159":{"id":1159,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":151393,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[33,14240],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.15139387500000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":1862,"userTimeTask":0.22007858299999999,"pid":32,"systemTimeTask":0,"residentMemoryBytes":3310152}, + "34" : {"timesThrottled":0,"pageIns":1625,"waitInfo":["thread 1160: mach_msg receive on port set 0xbc3076d67e83b20b"],"timesDidThrottle":0,"procname":"assistantd","copyOnWriteFaults":138,"threadById":{"1160":{"id":1160,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":547789,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[34,724844],[34,23324],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.54778954099999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"11871":{"id":11871,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":18721,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.018721125000000002,"waitEvent":[1,13560469137785068179],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12119":{"id":12119,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":276,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00027654099999999999,"waitEvent":[1,13560469137796944875],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":6288,"userTimeTask":2.5587951659999999,"pid":34,"systemTimeTask":0,"residentMemoryBytes":10732184}, + "56" : {"resampled_images":[["1930a342-3788-3a5b-95c5-6732c4947d12",4308353024,""]],"timesThrottled":0,"pageIns":34,"waitInfo":["thread 1161: mach_msg receive on port set 0xbc3076d67e83a00b"],"timesDidThrottle":0,"procname":"softwareupdated","copyOnWriteFaults":43,"threadById":{"4061":{"id":4061,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8463,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0084632079999999998,"waitEvent":[1,13560469137785187979],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"1161":{"id":1161,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":42442,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[35,39964],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.042442915999999997,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[35,39964],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":580,"userTimeTask":0.066259957999999994,"pid":56,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1540680}, + "37" : {"timesThrottled":0,"pageIns":380,"waitInfo":["thread 1162: mach_msg receive on port set 0xbc3076d67e83b47b"],"timesDidThrottle":0,"procname":"mediaremoted","copyOnWriteFaults":71,"threadById":{"12031":{"id":12031,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":10376,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.010376333,"waitEvent":[1,13560469137778988667],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1162":{"id":1162,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":201924,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[36,275524],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.20192495799999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"12118":{"id":12118,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":263,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00026324999999999997,"waitEvent":[1,13560469137785220747],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":3239,"userTimeTask":0.69356283299999999,"pid":37,"systemTimeTask":0,"residentMemoryBytes":3015240}, + "61" : {"timesThrottled":0,"pageIns":649,"waitInfo":["thread 1164: mach_msg receive on port set 0xbc3076d67e83b2cb"],"timesDidThrottle":0,"procname":"contextstored","copyOnWriteFaults":99,"threadById":{"11695":{"id":11695,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":94180,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.094180916000000003,"waitEvent":[1,13560469137789154611],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"11791":{"id":11791,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5759,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0057590829999999999,"waitEvent":[1,13560469137786314019],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1164":{"id":1164,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":199992,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[37,22632],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.19999275,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"12059":{"id":12059,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":29627,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.029627750000000001,"waitEvent":[1,13560469137797335339],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":4320,"userTimeTask":4.642510208,"pid":61,"systemTimeTask":0,"residentMemoryBytes":6603376}, + "42" : {"resampled_images":[["711e3240-337c-3a2d-bddd-df741365feb6",4306616320,""]],"timesThrottled":0,"pageIns":68,"waitInfo":["thread 1165: mach_msg receive on port set 0xbc3076d67e83c52b"],"timesDidThrottle":0,"procname":"accessoryupdaterd","copyOnWriteFaults":50,"threadById":{"1165":{"id":1165,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":119884,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[38,36308],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.119884666,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[38,36308],[2,624855392]],"systemTime":0,"schedPriority":0},"7153":{"id":7153,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1892,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001892583,"waitEvent":[1,13560469137787725139],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":4962,"userTimeTask":2.71829375,"pid":42,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":5292656}, + "43" : {"timesThrottled":0,"pageIns":108,"waitInfo":["thread 1166: mach_msg receive on port set 0xbc3076d67e83b23b"],"timesDidThrottle":0,"procname":"tccd","copyOnWriteFaults":49,"threadById":{"1166":{"id":1166,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":45764,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[39,86028],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.045764125000000003,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[39,86028],[2,624855392]],"systemTime":0,"schedPriority":4},"12103":{"id":12103,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":84,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.475e-05,"waitEvent":[1,13560469137777541107],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1996,"userTimeTask":2.3066862910000001,"pid":43,"systemTimeTask":0,"residentMemoryBytes":2474608}, + "35" : {"timesThrottled":0,"pageIns":372,"waitInfo":["thread 1167: mach_msg receive on port set 0xbc3076d67e83dc6b"],"timesDidThrottle":0,"procname":"studentd","copyOnWriteFaults":92,"threadById":{"1167":{"id":1167,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":439950,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[40,73920],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.43995066599999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"12130":{"id":12130,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137787604947],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"10609":{"id":10609,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1163,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0011639580000000001,"waitEvent":[1,13560469137796369731],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12129":{"id":12129,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":245,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00024512500000000001,"waitEvent":[1,13560469137792935251],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":2820,"userTimeTask":0.53102279100000005,"pid":35,"systemTimeTask":0,"residentMemoryBytes":3768944}, + "47" : {"pid":47,"residentMemoryBytes":2703904,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":120,"pageFaults":1683,"userTimeTask":2.4661897079999999,"procname":"biomed","copyOnWriteFaults":56,"threadById":{"2104":{"id":2104,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":23,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.3249999999999999e-05,"waitEvent":[1,13560469137784595619],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4},"11655":{"id":11655,"system_usec":0,"state":["TH_RUN"],"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":152210,"kernelFrames":[[0,68885905464],[0,68885907612],[0,68885842548],[0,68885842784],[0,68858062228],[0,68855858856],[0,68855849728],[0,68856460680],[0,68852028024],[0,68850481080],[1,0]],"basePriority":4,"userFrames":[[2,1124422852],[2,1397084900],[2,1397085008],[2,1397010588],[2,1397014492],[2,237920412],[2,238037040],[2,237950316],[2,238040396],[2,237950316],[2,237953556],[2,237997584],[2,1396665848],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.152210125,"systemTime":0,"schedPriority":4},"12115":{"id":12115,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5634,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0056344159999999997,"waitEvent":[1,13560469137796932947],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "36" : {"timesThrottled":0,"pageIns":781,"waitInfo":["thread 1168: mach_msg receive on port set 0xbc3076d67e83a4eb"],"timesDidThrottle":0,"procname":"routined","copyOnWriteFaults":102,"threadById":{"12080":{"id":12080,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":4.2910000000000001e-06,"waitEvent":[1,13560469137796495691],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"11976":{"id":11976,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":77792,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.077792957999999995,"waitEvent":[1,13560469137796958507],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1168":{"id":1168,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":44040,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[41,24328],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.044040124999999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"12078":{"id":12078,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":526,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00052666599999999996,"waitEvent":[1,13560469137796507619],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"11863":{"id":11863,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":53600,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.053600333,"waitEvent":[1,13560469137797023387],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12079":{"id":12079,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21298,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.021298625000000002,"waitEvent":[1,13560469137796517843],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":8947,"userTimeTask":4.6950333329999996,"pid":36,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":8012400}, + "54" : {"resampled_images":[["7367b317-37a6-3f68-a5a4-ffc89bc26a83",4329652224,""]],"timesThrottled":0,"pageIns":30,"waitInfo":["thread 1170: mach_msg receive on port set 0xbc3076d67e8395db"],"timesDidThrottle":0,"procname":"seld","copyOnWriteFaults":48,"threadById":{"1170":{"id":1170,"system_usec":0,"state":["TH_WAIT"],"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":49929,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[42,82912],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.049929665999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[42,82912],[2,624855392]],"systemTime":0,"schedPriority":4},"9931":{"id":9931,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":919,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00091949999999999996,"waitEvent":[1,13560469137789090123],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":884,"userTimeTask":0.089173000000000002,"pid":54,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1737288}, + "88" : {"timesThrottled":0,"pageIns":432,"waitInfo":["thread 1171: mach_msg receive on port set 0xbc3076d67e83b6bb"],"timesDidThrottle":0,"procname":"amsaccountsd","copyOnWriteFaults":74,"threadById":{"1171":{"id":1171,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":133830,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[43,64788],[43,281784],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.13383041600000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"12097":{"id":12097,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.3791000000000001e-05,"waitEvent":[1,13560469137784978395],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":3789,"userTimeTask":1.1653577909999999,"pid":88,"systemTimeTask":0,"residentMemoryBytes":4457032}, + "66" : {"resampled_images":[["f4d1f8dd-d83d-347a-8e2b-9cc1c7b559e8",4367761408,""]],"timesThrottled":0,"pageIns":88,"timesDidThrottle":0,"procname":"ManagedSettingsAgent","copyOnWriteFaults":46,"threadById":{"4037":{"id":4037,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":47,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":4.7166000000000002e-05,"waitEvent":[1,13560469137784589811],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"4488":{"id":4488,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.541e-06,"waitEvent":[1,13560469137797309779],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":814,"userTimeTask":0.085080540999999996,"pid":66,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1573448}, + "70" : {"timesThrottled":0,"pageIns":263,"waitInfo":["thread 1173: mach_msg receive on port set 0xbc3076d67e83c40b"],"timesDidThrottle":0,"procname":"cloudpaird","copyOnWriteFaults":75,"threadById":{"11520":{"id":11520,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":56939,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.056939916,"waitEvent":[1,13560469137794344275],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1173":{"id":1173,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":145119,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[44,277772],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.145119625,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2138,"userTimeTask":0.83766216599999999,"pid":70,"systemTimeTask":0,"residentMemoryBytes":3228232}, + "63" : {"resampled_images":[["348780a2-77ed-3655-801c-d0aba4b7924e",4364091392,""]],"timesThrottled":0,"pageIns":38,"waitInfo":["thread 1174: mach_msg receive on port set 0xbc3076d67e83db1b"],"timesDidThrottle":0,"procname":"askpermissiond","copyOnWriteFaults":44,"threadById":{"1174":{"id":1174,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":50918,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[45,122104],[45,121656],[45,18164],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.050918875000000002,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"12005":{"id":12005,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":338,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00033849999999999999,"waitEvent":[1,13560469137788508819],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12125":{"id":12125,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.7909999999999993e-06,"waitEvent":[1,13560469137796977643],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1020,"userTimeTask":0.096236374999999999,"pid":63,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1393224}, + "39" : {"resampled_images":[["ab54bcc5-b397-3d5f-a6fe-2f8d6dd9317a",4299390976,""]],"timesThrottled":0,"pageIns":30,"timesDidThrottle":0,"procname":"misd","copyOnWriteFaults":40,"threadById":{"1586":{"id":1586,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":131,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000131333,"waitEvent":[1,13560469137786130387],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"1979":{"id":1979,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":22,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.2208000000000002e-05,"waitEvent":[1,13560469137784581099],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":645,"userTimeTask":0.22072725000000001,"pid":39,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1409608}, + "44" : {"pid":44,"residentMemoryBytes":3506800,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":331,"pageFaults":2882,"userTimeTask":1.6618051250000001,"procname":"powerd","copyOnWriteFaults":73,"threadById":{"12022":{"id":12022,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":15,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.5415999999999999e-05,"waitEvent":[1,13560469137792986107],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1408":{"id":1408,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.9916e-05,"waitEvent":[1,13560469137784592715],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "73" : {"timesThrottled":0,"pageIns":63,"waitInfo":["thread 1177: mach_msg receive on port set 0xbc3076d67e83a57b"],"timesDidThrottle":0,"procname":"bluetoothuserd","copyOnWriteFaults":44,"threadById":{"1177":{"id":1177,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":60459,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[46,69248],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.060459249999999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"11895":{"id":11895,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":12,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.2707999999999999e-05,"waitEvent":[1,13560469137787661307],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":890,"userTimeTask":0.071698041000000004,"pid":73,"systemTimeTask":0,"residentMemoryBytes":1704520}, + "72" : {"timesThrottled":0,"pageIns":189,"waitInfo":["thread 1178: mach_msg receive on port set 0xbc3076d67e83bf2b"],"timesDidThrottle":0,"procname":"dasd","copyOnWriteFaults":93,"threadById":{"12108":{"id":12108,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":5.2499999999999997e-06,"waitEvent":[1,13560469137796994683],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1178":{"id":1178,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":267334,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[47,674992],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.26733412499999998,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":8430,"userTimeTask":6.1296335409999996,"pid":72,"systemTimeTask":0,"residentMemoryBytes":5816944}, + "79" : {"resampled_images":[["060b9aac-dc83-3444-8c03-1d9d0dfbb84f",4344758272,""]],"timesThrottled":0,"pageIns":12,"waitInfo":["thread 1179: mach_msg receive on port set 0xbc3076d67e83d9fb"],"timesDidThrottle":0,"procname":"OTACrashCopier","copyOnWriteFaults":44,"threadById":{"1179":{"id":1179,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":40685,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[48,5736],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.040685832999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[48,5736],[2,624855392]],"systemTime":0,"schedPriority":4},"4005":{"id":4005,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":68,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":6.8583000000000004e-05,"waitEvent":[1,13560469137790343827],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":491,"userTimeTask":0.042144165999999997,"pid":79,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1507872}, + "40" : {"resampled_images":[["586eedb6-67bb-378d-8260-d547f9e17ead",4333682688,""]],"timesThrottled":0,"pageIns":151,"waitInfo":["thread 1180: mach_msg receive on port set 0xbc3076d67e83d45b"],"timesDidThrottle":0,"procname":"healthd","copyOnWriteFaults":54,"threadById":{"4083":{"id":4083,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":6.4160000000000001e-06,"waitEvent":[1,13560469137794035339],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1180":{"id":1180,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":68131,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[49,14556],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.068131082999999995,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[49,14556],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":881,"userTimeTask":0.071318166000000002,"pid":40,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1688136}, + "38" : {"resampled_images":[["4021924d-3dc9-3405-8fd9-cc0a5fbf2a1f",4302929920,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4303863808,""],["06597123-c8ef-330e-9ac7-21b887a41540",4304011264,""],["5d7c57a1-d8a0-30ae-a2e3-09b84fcbe597",4304093184,""]],"timesThrottled":0,"pageIns":240,"timesDidThrottle":0,"procname":"axassetsd","copyOnWriteFaults":83,"threadById":{"6726":{"id":6726,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":50,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":5.0124999999999999e-05,"waitEvent":[1,13560469137794250035],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4530":{"id":4530,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":45,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":4.5000000000000003e-05,"waitEvent":[1,13560469137784554139],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":2743,"userTimeTask":1.9691805410000001,"pid":38,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":3949128}, + "75" : {"timesThrottled":0,"pageIns":842,"waitInfo":["thread 1182: mach_msg receive on port set 0xbc3076d67e83b77b"],"timesDidThrottle":0,"procname":"passd","copyOnWriteFaults":99,"threadById":{"1182":{"id":1182,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":119406,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[50,75836],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.11940645799999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"10528":{"id":10528,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7475,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0074751660000000001,"waitEvent":[1,13560469137787654099],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":3812,"userTimeTask":0.91261024999999996,"pid":75,"systemTimeTask":0,"residentMemoryBytes":5194312}, + "45" : {"timesThrottled":0,"pageIns":525,"waitInfo":["thread 1183: mach_msg receive on port set 0xbc3076d67e83bdab"],"timesDidThrottle":0,"procname":"atc","copyOnWriteFaults":127,"threadById":{"11898":{"id":11898,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":206,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00020604099999999999,"waitEvent":[1,13560469137785170939],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1183":{"id":1183,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":272374,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[51,13292],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.27237429099999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":4209,"userTimeTask":0.808858458,"pid":45,"systemTimeTask":0,"residentMemoryBytes":5931592}, + "46" : {"timesThrottled":0,"pageIns":200,"waitInfo":["thread 1184: mach_msg receive on port set 0xbc3076d67e83ae1b"],"timesDidThrottle":0,"procname":"WirelessRadioManagerd","copyOnWriteFaults":61,"threadById":{"10354":{"id":10354,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1716,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0017164999999999999,"waitEvent":[1,13560469137790212755],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1184":{"id":1184,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":694547,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[52,316636],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.69454745799999995,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2349,"userTimeTask":0.81406504099999999,"pid":46,"systemTimeTask":0,"residentMemoryBytes":2343496}, + "82" : {"timesThrottled":0,"pageIns":247,"waitInfo":["thread 1185: mach_msg receive on port set 0xbc3076d67e83b59b"],"timesDidThrottle":0,"procname":"navd","copyOnWriteFaults":80,"threadById":{"1185":{"id":1185,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":174744,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[53,46512],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.174744291,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"12094":{"id":12094,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.8750000000000002e-06,"waitEvent":[1,13560469137790345531],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":2736,"userTimeTask":0.60583008299999996,"pid":82,"systemTimeTask":0,"residentMemoryBytes":3654216}, + "51" : {"resampled_images":[["855fac97-f5fe-3306-b9b6-e15dad5c1100",4308860928,""]],"timesThrottled":0,"pageIns":35,"waitInfo":["thread 1186: mach_msg receive on port set 0xbc3076d67e83d8db"],"timesDidThrottle":0,"procname":"familynotificationd","copyOnWriteFaults":39,"threadById":{"3692":{"id":3692,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":503,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00050362499999999995,"waitEvent":[1,13560469137792999739],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"1186":{"id":1186,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":33083,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[54,17184],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.033083082999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[54,17184],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":669,"userTimeTask":0.033586708,"pid":51,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1245768}, + "93" : {"timesThrottled":0,"pageIns":19,"timesDidThrottle":0,"procname":"cfprefsd","copyOnWriteFaults":36,"threadById":{"12023":{"id":12023,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137794321731],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1248":{"id":1248,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.9958000000000001e-05,"waitEvent":[1,13560469137774377811],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"pageFaults":3643,"userTimeTask":5.8027497080000003,"pid":93,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":2769440}, + "94" : {"resampled_images":[["f52a5b84-201e-3c4d-9f6e-9dbb97b1b8d1",4336336896,""]],"timesThrottled":0,"pageIns":3,"timesDidThrottle":0,"procname":"pfd","copyOnWriteFaults":34,"threadById":{"1449":{"id":1449,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2886,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00288675,"waitEvent":[1,13560469137784957947],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"1450":{"id":1450,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.0041e-05,"waitEvent":[1,13560469137774418251],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":292,"userTimeTask":0.017819333,"pid":94,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1065504}, + "95" : {"resampled_images":[["baccd0ef-8c17-3471-96a2-69518b92ea04",4378509312,""],["bbc74f9d-b2e4-3c70-b9b3-088feb74617a",4383408128,""],["cb3ff411-4762-34d2-86a4-eca13f9fb6c3",4385046528,""]],"timesThrottled":0,"pageIns":672,"timesDidThrottle":0,"procname":"com.apple.DriverKit-AppleBCMWLA","copyOnWriteFaults":26,"threadById":{"11347":{"id":11347,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":119345,"basePriority":31,"userFrames":[[55,5108176],[55,5777016]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.11934575,"waitEvent":[1,13560469137784981803],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"10378":{"id":10378,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":290746,"basePriority":31,"userFrames":[[55,5108176],[55,5777016]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.29074624999999998,"waitEvent":[1,13560469137794352795],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"8788":{"id":8788,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":481101,"basePriority":31,"userFrames":[[55,5108176],[55,5777016]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.481101416,"waitEvent":[1,13560469137785182867],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"12007":{"continuation":[0,68854897416],"userTime":1.9958000000000001e-05,"systemTime":0,"id":12007,"basePriority":63,"user_usec":19,"system_usec":0,"schedPriority":63,"userFrames":[[1,0]],"state":["TH_WAIT"],"waitEvent":[1,13560469137794287915]},"11593":{"id":11593,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":39551,"basePriority":31,"userFrames":[[55,5108176],[55,5777016]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.039551333000000001,"waitEvent":[1,13560469137788529659],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1549":{"userTime":5.4329325830000004,"systemTime":0,"system_usec":0,"id":1549,"basePriority":63,"user_usec":5432932,"userFrames":[[55,288304],[55,5738768],[55,5777028]],"schedPriority":63,"kernelFrames":[[0,68850944084],[0,68850937588],[0,68857705480],[0,68857641460],[0,68851989564],[0,68852028540],[0,68850481080],[1,0]],"state":["TH_WAIT"],"waitEvent":[1,13560469133904666651]},"1299":{"id":1299,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":12,"basePriority":31,"userFrames":[[55,5107036],[55,4384656],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.2208000000000001e-05,"waitEvent":[1,13560469137774406635],"continuation":[0,68855315520],"systemTime":0,"schedPriority":31}},"pageFaults":16458,"userTimeTask":14.075818625,"pid":95,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":21414272}, + "96" : {"resampled_images":[["a0a8a230-2208-371f-badd-7f5149e22a68",4378198016,""],["cb3ff411-4762-34d2-86a4-eca13f9fb6c3",4382179328,""]],"timesThrottled":0,"pageIns":52,"timesDidThrottle":0,"procname":"com.apple.AppleUserHIDDrivers","copyOnWriteFaults":22,"threadById":{"1388":{"id":1388,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":7,"basePriority":31,"userFrames":[[55,5107036],[55,4384656],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":7.5410000000000003e-06,"waitEvent":[1,13560469137774429867],"continuation":[0,68855315520],"systemTime":0,"schedPriority":31},"9830":{"continuation":[0,68854897416],"userTime":0.029833124999999999,"systemTime":0,"id":9830,"basePriority":63,"user_usec":29833,"system_usec":0,"schedPriority":63,"userFrames":[[55,5108176],[55,5777016]],"state":["TH_WAIT"],"waitEvent":[1,13560469137787339395]}},"pageFaults":397,"userTimeTask":0.108704958,"pid":96,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":983344}, + "99" : {"resampled_images":[["1c93f0b0-df41-31cc-92bb-4006c1d6c584",4297687040,""],["ab79707f-af64-3ba5-8899-3b711c6cff5c",6612271104,""],["f896d145-e025-39d6-afd3-bc0a2ad4f839",6623956992,""],["b3d3659c-112d-3305-b1af-d6119b6aed1e",6629629952,""],["c431acb6-fe04-3d28-b677-4de6e1c7d81f",6629834752,""],["5cdc5d9a-e506-3740-b64e-bb30867b4f1b",6725910528,""],["3bf445f9-d58f-3280-b9c9-2feaf4daca6d",6729998336,""],["edb0559f-c996-327f-9b3a-6616e316f24d",6744268800,""],["fea36690-a000-3c55-b700-9120b05aa69b",6849454080,""],["dad0ce08-8f35-3ff4-899e-43dc44eb65a7",6849744896,""],["e90b7ec1-5e3f-30b9-8310-87516869a9a5",6850269184,""],["d0585f53-3f5c-349f-a16b-a9710274e733",6857805824,""],["87ae25ce-3bef-39d9-baa9-0d8cc15a34a0",6859431936,""],["086f6832-0371-34b4-a960-9160cc6395d8",6868180992,""],["e7212fb8-279b-38f8-b03d-0e90256a81d2",6868279296,""],["fc9a1af9-0498-3014-8945-fd8ef960fa6c",6872231936,""],["7c1fc94e-2fba-3296-8189-143fa46ea2be",6895202304,""],["2052acf4-a97f-354f-881e-2618013ee948",6897303552,""],["39fb1f8c-48ef-3dd0-8d74-ff55e8d07c60",6964932608,""],["e34fc078-c1b9-30c4-90b2-ec3c018c721e",6965080064,""],["e9e74869-96c2-35d3-b138-48d0a8564b7b",6966595584,""],["64c24b16-0497-31bb-8db5-3b5f6c74ec6b",6966751232,""],["74e2f223-3704-3f21-aeb0-f681c003e5fb",7104466944,""],["cdca4242-8441-3402-a643-6a03c3eb9c15",7109136384,""],["337984e9-0316-317f-8fb8-4fc7df592fe3",7110176768,""],["e2f0edb9-2474-3c66-b275-b7a3079917f6",7204581376,""],["2a81704b-8c38-376e-aa2c-ab9c0d2a9d29",7224643584,""],["cb3ff411-4762-34d2-86a4-eca13f9fb6c3",7236317184,""],["c8a8095e-45a2-3cb8-9178-524592f58012",7238123520,""],["d9a499de-cc6f-3aa8-9335-200118065018",7279177728,""],["9e91ccf4-fee2-3cc5-882f-22663791d295",7326892032,""],["14ac1e3f-5e12-3b2c-a59b-9d2278be558f",7347073024,""],["64ddb894-7165-3deb-88b0-148f236449a0",7367573504,""],["05b80135-79d2-3a92-baf9-5be73951db0e",7376789504,""],["422b8f67-ccd9-3cec-b6c8-bc8b2b84c194",7426420736,""],["fc048b01-c970-3e91-af7c-fb3efaada453",7494344704,""],["e0f8cb2c-f350-3a7e-b570-4a9147421d48",7501201408,""],["599d45a6-1523-3e96-8da7-739db745ea54",7601086464,""],["3e3ce389-44ef-3b11-8d92-63c322ee4f48",7686758400,""],["ff27fc8f-90ba-3332-ab7a-c5bc2d9ca7b1",7735963648,""],["726d1619-45b8-3a25-9821-2ff3f6a5f4cb",7736188928,""],["1d193b97-307c-3085-abb1-d2046e6bd1df",7778336768,""],["3657362f-ef8a-3803-98fa-72658f827df4",7953076224,""],["22e8243f-3114-3cd1-aa78-34900e00f7da",7958003712,""],["f4974b91-58c6-3bfe-b0a6-28c07c9fe239",7997648896,""],["51df2060-e4fb-3725-8612-22054dc47725",8007294976,""],["8894eafd-2803-31b5-ba03-d771b2922cc1",8007331840,""],["fa871417-be08-3e90-b33c-a6aa89813f3b",8007385088,""],["41f6058d-8f92-3691-ad00-f37a64a36be4",8007483392,""],["40b763c8-a78c-35dd-a61b-996b5296486f",8007528448,""],["140cc26b-91e9-32f4-ad75-096c4e104eb0",8007544832,""],["feb4c3e9-ea84-3ea2-8fc4-99487ce24c9e",8007565312,""],["29a26364-acef-38c2-8b0d-db0dfca0bb65",8007602176,""],["27bc5a82-b694-3973-937b-9f35b6417a9a",8007630848,""],["d8aa6618-018b-3abc-bb7d-884280a7543b",8008192000,""],["1aa3a4b6-f9e7-3056-8c8b-4e4dd81312a4",8008212480,""],["864a071c-805b-3bfa-8ab1-3906610fd8a8",8008261632,""],["3da8df73-8d34-32e3-8bcd-7dc8dbb43a1e",8008491008,""],["f41f42f5-cdc9-368e-9d9a-d82fe61a21ab",8008757248,""],["2f7e2d4e-1ed3-3116-99e2-8132b208bbd3",8008777728,""],["37136f2e-1cfc-300e-8301-6f77e81a241c",8008822784,""],["03f7f179-f6f0-328f-ad68-0c356025da9c",8008830976,""],["fe902e51-c252-34bd-9778-b4017e60b038",8008998912,""],["1a999172-bba7-3b2f-b3c5-584bf3e69509",8009216000,""],["a5d7836a-92dc-31f3-bb23-87e7b0b1e33f",8009256960,""],["abe592dc-355d-3d24-9037-618a359a0683",8010252288,""],["29c2e7ce-48d1-345e-bb7c-fdbc963392c1",8010276864,""],["3596eb5e-8af3-37b9-8658-8b8bb67a57c6",8011018240,""],["2e864997-5ec0-3b04-af96-78f087d798db",8011022336,""],["edd77962-a697-35b5-ada8-fc28718deba7",8011071488,""],["48d2dbf3-dec2-32af-881b-0c6208f9b376",8011169792,""],["5c203665-4214-3185-9934-7a0f4c798dc7",8011206656,""],["afe45d89-2a72-37d2-88d1-aa8e101a1dc1",8012046336,""],["ca7b9eb7-9472-3623-bfb3-ee146858d11d",8012054528,""],["a9303eec-4a0b-3471-86da-a203151a7873",8012062720,""],["09d01caf-6736-3c16-b3a2-cb2f48212eb5",8012161024,""],["ff16372d-3a5b-38e4-a20a-a69974bfd077",8012201984,""],["5ccce33a-311e-3dfe-8422-824cd03e3472",8012406784,""],["518a2e23-50bd-375d-a18c-4c9e7c4a860d",8012775424,""],["b259186a-eea8-3c26-8d5c-b59b0c4f0212",8032788480,""],["6a96ca69-b8c0-3f10-9ab9-36c536e70caa",8032813056,""],["66aecf43-0768-3a71-a821-505b5d607641",8351985664,""],["b74aac71-742e-3f38-929d-d83aa813cc04",8353665024,""],["eabbe81b-c5cd-382d-93a9-abde552789a7",8390029312,""],["6b386b84-1184-3c87-951d-08d66ed41953",8467902464,""],["4434d79b-b599-39d5-94d9-70c1d5af7007",8656982016,""],["1371bd59-4f9d-3453-9ebc-06013e349961",8657268736,""],["3524d361-9775-3c7f-a719-522321ac4ac8",8657321984,""],["57996919-d5f9-384d-9b3d-6adca676f7f9",8785678336,""],["c75df378-abfa-3085-873b-4b0538d09f62",8818921472,""],["54e51720-c6f2-3bbb-b184-939897cca420",8842809344,""],["9fed8616-998d-37c6-b06b-efd40fbefa2d",8843104256,""],["da2483b3-01fd-32c6-99d3-6c47ef055ee9",8886677504,""],["63dec3ac-094d-3d4e-b932-1f9869fb9417",8903421952,""]],"timesThrottled":0,"pageIns":15,"timesDidThrottle":0,"procname":"ACCHWComponentAuthService","copyOnWriteFaults":37,"threadById":{"1294":{"id":1294,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":543,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00054345800000000003,"waitEvent":[1,13560469137785143283],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"1293":{"id":1293,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":12,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.2666e-05,"waitEvent":[1,13560469137774363291],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":324,"userTimeTask":0.0071013329999999996,"pid":99,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1114656}, + "98" : {"resampled_images":[["e9952ee8-7a4a-3301-a9c2-5273bcf65736",4333502464,""]],"timesThrottled":0,"pageIns":103,"waitInfo":["thread 1286: mach_msg receive on port set 0xbc3076d67e83a45b"],"timesDidThrottle":0,"procname":"PowerUIAgent","copyOnWriteFaults":46,"threadById":{"1286":{"id":1286,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","user_usec":42886,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[56,12524],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.042886874999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[56,12524],[2,624855392]],"systemTime":0,"schedPriority":30},"1392":{"id":1392,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":3393,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.0033935409999999999,"waitEvent":[1,13560469137785174347],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37}},"pageFaults":783,"userTimeTask":0.049074916000000003,"pid":98,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1491528}, + "97" : {"resampled_images":[["67f63357-faa5-30c0-9b8d-8197b55c4222",4375822336,""]],"timesThrottled":0,"pageIns":10,"waitInfo":["thread 1288: mach_msg receive on port set 0xbc3076d67e83a18b"],"timesDidThrottle":0,"procname":"apfs_iosd","copyOnWriteFaults":33,"threadById":{"10576":{"id":10576,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.3583e-05,"waitEvent":[1,13560469137796483371],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1288":{"id":1288,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":14981,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[57,15112],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0149815,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[57,15112],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":363,"userTimeTask":0.022178040999999999,"pid":97,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1016312}, + "100" : {"timesThrottled":0,"pageIns":5,"waitInfo":["thread 1290: mach_msg receive on port set 0xbc3076d67e83a12b"],"timesDidThrottle":0,"procname":"MobileGestaltHelper","copyOnWriteFaults":39,"threadById":{"9918":{"id":9918,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4700,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0047005830000000004,"waitEvent":[1,13560469137792992923],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1290":{"id":1290,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13286,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[58,10016],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.013285999999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[58,10016],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":681,"userTimeTask":0.21204237500000001,"pid":100,"systemTimeTask":0,"residentMemoryBytes":1704480}, + "102" : {"resampled_images":[["f72302d0-a77a-3beb-9fd7-6eb5bb04684c",4309024768,""]],"timesThrottled":0,"pageIns":21,"timesDidThrottle":0,"procname":"PerfPowerTelemetryClientRegistr","copyOnWriteFaults":37,"threadById":{"1465":{"id":1465,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.7910000000000002e-06,"waitEvent":[1,13560469137786317819],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1454":{"id":1454,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2354,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0023544999999999998,"waitEvent":[1,13560469137784964763],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"1415":{"id":1415,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":15,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.5333e-05,"waitEvent":[1,13560469137774421155],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":364,"userTimeTask":0.03564175,"pid":102,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1327688}, + "104" : {"timesThrottled":0,"pageIns":847,"waitInfo":["thread 1405: mach_msg receive on port set 0xbc3076d67e83a1eb"],"timesDidThrottle":0,"procname":"lsd","copyOnWriteFaults":59,"threadById":{"10686":{"id":10686,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13186,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.013186875000000001,"waitEvent":[1,13560469137787289587],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1405":{"id":1405,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":111380,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,31299216],[2,31296748],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.111380875,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,31299216],[2,31296748],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":5554,"userTimeTask":1.7615943329999999,"pid":104,"systemTimeTask":0,"residentMemoryBytes":3326576}, + "103" : {"timesThrottled":0,"pageIns":157,"waitInfo":["thread 1410: mach_msg receive on port set 0xbc3076d67e83a60b"],"timesDidThrottle":0,"procname":"awdd","copyOnWriteFaults":47,"threadById":{"11708":{"id":11708,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":684,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00068445799999999998,"waitEvent":[1,13560469137785081811],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1410":{"id":1410,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":53994,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[59,39388],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.053994208000000002,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":1331,"userTimeTask":0.236135083,"pid":103,"systemTimeTask":0,"residentMemoryBytes":2130504}, + "105" : {"timesThrottled":0,"pageIns":1024,"waitInfo":["thread 1427: mach_msg receive on port set 0xbc3076d67e83a63b","thread 3446: mach_msg receive on port set 0xbc3076d67e83d18b"],"timesDidThrottle":0,"procname":"mobileassetd","copyOnWriteFaults":69,"threadById":{"8323":{"id":8323,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":0,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0,"waitEvent":[1,13560469137794264059],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"4535":{"id":4535,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":4814467,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":4.814467541,"waitEvent":[1,13560469137785056251],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1427":{"id":1427,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":89259,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,1170485048],[60,33760],[60,35388],[60,21316],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.089259749999999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"3446":{"id":3446,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","state":["TH_WAIT"],"systemTime":0,"user_usec":673,"basePriority":33,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"userTime":0.00067354100000000005,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"name":"com.apple.NSURLConnectionLoader","schedPriority":33},"1579":{"id":1579,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":4396844,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":4.396844625,"waitEvent":[1,13560469137786126979],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"8322":{"id":8322,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":2660205,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.6602052500000002,"waitEvent":[1,13560469137794284507],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31}},"pageFaults":17855,"userTimeTask":24.739293374999999,"pid":105,"systemTimeTask":0,"flags":["boosted","dirty"],"residentMemoryBytes":5767832}, + "106" : {"timesThrottled":0,"pageIns":412,"waitInfo":["thread 1446: mach_msg receive on port set 0xbc3076d67e83b11b"],"timesDidThrottle":0,"procname":"accountsd","copyOnWriteFaults":80,"threadById":{"11601":{"id":11601,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20901,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.020901540999999999,"waitEvent":[1,13560469137786176131],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1446":{"id":1446,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":68555,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[61,12444],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.068555708000000007,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"11939":{"id":11939,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.4160000000000004e-06,"waitEvent":[1,13560469137778959699],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":10849,"userTimeTask":5.399629375,"pid":106,"systemTimeTask":0,"residentMemoryBytes":7668376}, + "107" : {"resampled_images":[["c0fb598d-dfa9-3396-b9df-347dffb37447",4377640960,""]],"timesThrottled":0,"pageIns":111,"waitInfo":["thread 1458: mach_msg receive on port set 0xbc3076d67e83a66b"],"timesDidThrottle":0,"procname":"nehelper","copyOnWriteFaults":58,"threadById":{"1458":{"id":1458,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":34329,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[62,136960],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.034329166000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[62,136960],[2,624855392]],"systemTime":0,"schedPriority":4},"8385":{"id":8385,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6748,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0067489159999999998,"waitEvent":[1,13560469137789066531],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1907,"userTimeTask":2.424384291,"pid":107,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":3637872}, + "108" : {"timesThrottled":0,"pageIns":268,"waitInfo":["thread 1461: mach_msg receive on port set 0xbc3076d67e83a33b","thread 3771: mach_msg receive on port set 0xbc3076d67e83db4b"],"timesDidThrottle":0,"procname":"symptomsd","copyOnWriteFaults":74,"threadById":{"11944":{"id":11944,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":24673,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.024673416,"waitEvent":[1,13560469137796948283],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12014":{"id":12014,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1586,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001586416,"waitEvent":[1,13560469137796488483],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1461":{"id":1461,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":574134,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[63,13764],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.57413404099999998,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"3771":{"id":3771,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":113828,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,1123093708],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.113828833,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2617,"userTimeTask":4.5984655410000004,"pid":108,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":4358768}, + "109" : {"timesThrottled":0,"pageIns":3296,"waitInfo":["thread 1477: mach_msg receive on port set 0xbc3076d67e83a54b","thread 1767: mach_msg receive on port set 0xbc3076d67e83ab1b"],"timesDidThrottle":0,"procname":"chronod","copyOnWriteFaults":228,"threadById":{"1477":{"continuation":[0,68850618692],"userTime":16.655917833,"system_usec":0,"id":1477,"basePriority":47,"user_usec":16655917,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[2,1206939648],[64,14052],[2,624855392],[1,0]],"schedPriority":47,"state":["TH_WAIT"],"systemTime":0},"1767":{"id":1767,"schedPriority":36,"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","state":["TH_WAIT"],"user_usec":7171,"basePriority":37,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.0071716660000000002,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.uikit.eventfetch-thread"},"12053":{"id":12053,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":28,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.8458000000000001e-05,"waitEvent":[1,13560469137785177755],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"12052":{"id":12052,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":7134,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.007134708,"waitEvent":[1,13560469137785186275],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37}},"pageFaults":11077,"userTimeTask":20.667594999999999,"pid":109,"systemTimeTask":0,"residentMemoryBytes":22610664}, + "110" : {"resampled_images":[["a5457e6e-9472-37a3-968c-6b5900dae820",4296179712,""]],"timesThrottled":0,"pageIns":9,"timesDidThrottle":0,"procname":"WiFiCloudAssetsXPCService","copyOnWriteFaults":44,"threadById":{"2882":{"id":2882,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3227,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0032269999999999998,"waitEvent":[1,13560469137793937035],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"1501":{"id":1501,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":23,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.3374999999999999e-05,"waitEvent":[1,13560469137774459731],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":756,"userTimeTask":0.066004707999999995,"pid":110,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1786440}, + "111" : {"timesThrottled":0,"pageIns":73,"timesDidThrottle":0,"procname":"audioclocksyncd","copyOnWriteFaults":36,"threadById":{"1510":{"id":1510,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":22,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.2416e-05,"waitEvent":[1,13560469137774653435],"continuation":[0,68855315520],"systemTime":0,"schedPriority":31},"7834":{"id":7834,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":432986,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.43298641599999999,"waitEvent":[1,13560469137787584499],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"11245":{"id":11245,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":137,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.00013779100000000001,"waitEvent":[1,13560469137778961403],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31}},"pageFaults":599,"userTimeTask":0.843113958,"pid":111,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":1409608}, + "112" : {"resampled_images":[["946e2f18-e066-3b19-b8d7-6dc7dfbc58ff",4362158080,""]],"timesThrottled":0,"pageIns":62,"waitInfo":["thread 1518: mach_msg receive on port set 0xbc3076d67e83c07b","thread 4177: mach_msg receive on port set 0xbc3076d67e83da5b"],"timesDidThrottle":0,"procname":"fmflocatord","copyOnWriteFaults":63,"threadById":{"4177":{"id":4177,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":691,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00069125000000000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"1518":{"id":1518,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":155841,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[65,110132],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.15584100000000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"7735":{"id":7735,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9807,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0098070829999999994,"waitEvent":[1,13560469137787655803],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1898,"userTimeTask":0.33882441600000002,"pid":112,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":3228232}, + "115" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4304846848,""]],"timesThrottled":0,"pageIns":47,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":59,"threadById":{"1538":{"id":1538,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.4160000000000004e-06,"waitEvent":[1,13560469137774650531],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"1623":{"id":1623,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.7499999999999999e-06,"waitEvent":[1,13560469137786051219],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1342,"userTimeTask":0.096629666000000003,"pid":115,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":6849176}, + "114" : {"pid":114,"residentMemoryBytes":9061016,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":1137,"pageFaults":19420,"userTimeTask":2.5075907910000002,"procname":"MTLCompilerService","copyOnWriteFaults":59,"threadById":{"1535":{"id":1535,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":18,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.8875000000000001e-05,"waitEvent":[1,13560469137774656339],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"8027":{"id":8027,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":328402,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.32840291599999999,"waitEvent":[1,13560469137794192363],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "113" : {"resampled_images":[["e385fe60-f930-3351-b155-baea546e4d3a",4334043136,""]],"timesThrottled":0,"pageIns":147,"waitInfo":["thread 1534: mach_msg receive on port set 0xbc3076d67e83ae4b","thread 2972: mach_msg receive on port set 0xbc3076d67e83c4cb","thread 3998: mach_msg receive on port set 0xbc3076d67e83d7bb"],"timesDidThrottle":0,"procname":"findmydeviced","copyOnWriteFaults":81,"threadById":{"1534":{"id":1534,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":190826,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[66,140136],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.190826416,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"2972":{"id":2972,"name":"CommonUtilities-WiFi-Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":51508,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,557651224],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.051508916000000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,557651224],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"9904":{"id":9904,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21855,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.021855540999999999,"waitEvent":[1,13560469137797338747],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3998":{"id":3998,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2141,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0021418750000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"}},"pageFaults":2316,"userTimeTask":0.59361354099999997,"pid":113,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":4047432}, + "116" : {"timesThrottled":0,"pageIns":257,"waitInfo":["thread 1553: mach_msg receive on port set 0xbc3076d67e83af3b"],"timesDidThrottle":0,"procname":"sessionkitd","copyOnWriteFaults":73,"threadById":{"10385":{"id":10385,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":376,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.00037629100000000001,"waitEvent":[1,13560469137793001443],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"1553":{"id":1553,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":89322,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[67,12180],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.089322957999999994,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31}},"pageFaults":1602,"userTimeTask":0.15951216600000001,"pid":116,"systemTimeTask":0,"residentMemoryBytes":2785904}, + "117" : {"timesThrottled":0,"pageIns":364,"waitInfo":["thread 1570: mach_msg receive on port set 0xbc3076d67e83ae7b"],"timesDidThrottle":0,"procname":"securityd","copyOnWriteFaults":68,"threadById":{"1570":{"id":1570,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":71588,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[68,86244],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.071588125000000002,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"11603":{"id":11603,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":4747,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.0047471249999999996,"waitEvent":[1,13560469137788510523],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37}},"pageFaults":12110,"userTimeTask":6.3311629160000003,"pid":117,"systemTimeTask":0,"residentMemoryBytes":6423152}, + "118" : {"timesThrottled":0,"pageIns":174,"waitInfo":["thread 1618: mach_msg receive on port set 0xbc3076d67e83a96b","thread 1732: mach_msg receive on port set 0xbc3076d67e83a99b","thread 2641: mach_msg receive on port set 0xbc3076d67e83bfeb","thread 4132: mach_msg receive on port set 0xbc3076d67e83c13b"],"timesDidThrottle":0,"procname":"apsd","copyOnWriteFaults":80,"threadById":{"10264":{"id":10264,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":5275,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0052751660000000004,"waitEvent":[1,13560469137789142683],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1618":{"id":1618,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":3437517,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[69,273776],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":3.4375179579999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"1732":{"id":1732,"schedPriority":31,"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","state":["TH_WAIT"],"user_usec":49889,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,557651224],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.049889707999999998,"continuation":[0,68850618692],"systemTime":0,"name":"CommonUtilities-WiFi-Thread"},"10421":{"id":10421,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":26,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.6874999999999999e-05,"waitEvent":[1,13560469137794366427],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"4132":{"continuation":[0,68850618692],"userTime":0.00021029100000000001,"name":"com.apple.NSURLConnectionLoader","id":4132,"basePriority":33,"user_usec":210,"system_usec":0,"schedPriority":33,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0},"2641":{"id":2641,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","user_usec":1853,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.001853958,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":31},"10422":{"id":10422,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":231,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.00023149999999999999,"waitEvent":[1,13560469137789152907],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31}},"pageFaults":3189,"userTimeTask":4.0695417909999998,"pid":118,"systemTimeTask":0,"residentMemoryBytes":4719216}, + "119" : {"resampled_images":[["9e67d7dc-7781-3c39-be9a-8f895003608a",4305305600,""]],"timesThrottled":0,"pageIns":36,"waitInfo":["thread 1620: mach_msg receive on port set 0xbc3076d67e83a9fb"],"timesDidThrottle":0,"procname":"CommCenterMobileHelper","copyOnWriteFaults":52,"threadById":{"1752":{"id":1752,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":0,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0,"waitEvent":[1,13560469137787721339],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1753":{"id":1753,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":0,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0,"waitEvent":[1,13560469137787723043],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1751":{"id":1751,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":147,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.00014712500000000001,"waitEvent":[1,13560469137787694075],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":37},"1620":{"id":1620,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","user_usec":37910,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[70,10412],[70,12740],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.037910540999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[70,10412],[70,12740],[2,624855392]],"systemTime":0,"schedPriority":30}},"pageFaults":785,"userTimeTask":0.043091833000000003,"pid":119,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1786440}, + "120" : {"timesThrottled":0,"pageIns":327,"waitInfo":["thread 1643: mach_msg receive on port set 0xbc3076d67e83aa2b","thread 6380: mach_msg receive on port set 0xbc3076d67e83d00b"],"timesDidThrottle":0,"procname":"networkserviceproxy","copyOnWriteFaults":91,"threadById":{"6380":{"id":6380,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1964,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001964333,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"11292":{"id":11292,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6518,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0065182080000000002,"waitEvent":[1,13560469137787645579],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1643":{"id":1643,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":49363,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[71,153184],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.049363625000000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":3261,"userTimeTask":1.0852197910000001,"pid":120,"systemTimeTask":0,"residentMemoryBytes":4686408}, + "122" : {"timesThrottled":0,"pageIns":131,"waitInfo":["thread 1650: mach_msg receive on port set 0xbc3076d67e83ac9b"],"timesDidThrottle":0,"procname":"analyticsd","copyOnWriteFaults":60,"threadById":{"1650":{"id":1650,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":486328,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[72,423128],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.486328708,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"11975":{"id":11975,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":16786,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.016786833000000001,"waitEvent":[1,13560469137787284475],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12109":{"id":12109,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1039,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001039791,"waitEvent":[1,13560469137787301515],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":2441,"userTimeTask":2.701896166,"pid":122,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":3801672}, + "123" : {"timesThrottled":0,"pageIns":144,"timesDidThrottle":0,"procname":"trustd","copyOnWriteFaults":62,"threadById":{"1865":{"id":1865,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":23,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.3e-05,"waitEvent":[1,13560469137774601379],"continuation":[0,68855315520],"systemTime":0,"schedPriority":31},"11473":{"id":11473,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":6281,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0062813330000000001,"waitEvent":[1,13560469137785150099],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31}},"pageFaults":3818,"userTimeTask":10.470043666,"pid":123,"systemTimeTask":0,"flags":["boosted"],"residentMemoryBytes":6472344}, + "124" : {"pid":124,"residentMemoryBytes":2376264,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":58,"pageFaults":8672,"userTimeTask":9.6326273330000003,"procname":"CAReportingService","copyOnWriteFaults":51,"threadById":{"11846":{"id":11846,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":42626,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.042626666000000001,"waitEvent":[1,13560469137794368131],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1861":{"id":1861,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":18,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.8e-05,"waitEvent":[1,13560469137774380715],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4},"12123":{"id":12123,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":31,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.1791000000000001e-05,"waitEvent":[1,13560469137792962515],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "125" : {"resampled_images":[["28119729-2c40-3de3-97e1-288496188601",4300406784,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4301438976,""]],"timesThrottled":0,"pageIns":124,"timesDidThrottle":0,"procname":"syncdefaultsd","copyOnWriteFaults":61,"threadById":{"2433":{"id":2433,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.1041000000000001e-05,"waitEvent":[1,13560469137774604283],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"7310":{"id":7310,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2081,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0020812500000000002,"waitEvent":[1,13560469137788365819],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":3668,"userTimeTask":0.93329645800000005,"pid":125,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":4358728}, + "126" : {"timesThrottled":0,"pageIns":494,"waitInfo":["thread 1712: mach_msg receive on port set 0xbc3076d67e83b29b"],"timesDidThrottle":0,"procname":"coreduetd","copyOnWriteFaults":101,"threadById":{"10551":{"id":10551,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":921394,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.92139454099999996,"waitEvent":[1,13560469137796984459],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1712":{"id":1712,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":138969,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[73,72808],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.13896983299999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":4806,"userTimeTask":3.1860701250000001,"pid":126,"systemTimeTask":0,"residentMemoryBytes":6816368}, + "127" : {"timesThrottled":0,"pageIns":766,"waitInfo":["thread 1725: mach_msg receive on port set 0xbc3076d67e83acfb"],"timesDidThrottle":0,"procname":"callservicesd","copyOnWriteFaults":144,"threadById":{"1725":{"id":1725,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1093524,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[74,1745948],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.0935249579999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"12049":{"id":12049,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":10984,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.01098475,"waitEvent":[1,13560469137790245523],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12117":{"id":12117,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":307,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00030716599999999999,"waitEvent":[1,13560469137785203707],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":3777,"userTimeTask":1.65320325,"pid":127,"systemTimeTask":0,"residentMemoryBytes":6259352}, + "128" : {"resampled_images":[["3004cdb4-b9fc-3e4e-9cc3-2d060af6bd48",4373397504,""]],"timesThrottled":0,"pageIns":54,"waitInfo":["thread 1774: mach_msg receive on port set 0xbc3076d67e83abdb","thread 1963: mach_msg receive on port set 0xbc3076d67e83b08b","thread 1970: mach_msg receive on port set 0xbc3076d67e83b0bb"],"timesDidThrottle":0,"procname":"applecamerad","copyOnWriteFaults":46,"threadById":{"1774":{"continuation":[0,68850618692],"userTime":0.014497125,"name":"H10ISPServicesThread","id":1774,"basePriority":48,"user_usec":14497,"system_usec":0,"schedPriority":48,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[75,331672],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0},"5414":{"id":5414,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":2458,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0024581249999999998,"waitEvent":[1,13560469137794033635],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":31},"1984":{"id":1984,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":28,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.8915999999999999e-05,"waitEvent":[1,13560469137774610091],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":31},"1970":{"id":1970,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","state":["TH_WAIT"],"systemTime":0,"user_usec":247,"basePriority":47,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[75,189704],[2,1396668108],[2,1396665252]],"userTime":0.00024745799999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[75,189704],[2,1396668108],[2,1396665252]],"name":"H10ISPFirmwareWorkProcessorThread","schedPriority":47},"1963":{"id":1963,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","state":["TH_WAIT"],"systemTime":0,"user_usec":233,"basePriority":47,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[75,189704],[2,1396668108],[2,1396665252]],"userTime":0.000233833,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[75,189704],[2,1396668108],[2,1396665252]],"name":"H10ISPFirmwareWorkProcessorThread","schedPriority":47}},"pageFaults":2434,"userTimeTask":0.222445333,"pid":128,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":11780680}, + "129" : {"timesThrottled":0,"pageIns":164,"waitInfo":["thread 1772: mach_msg receive on port set 0xbc3076d67e83ac3b","thread 1782: mach_msg receive on port set 0xbc3076d67e83ac6b"],"timesDidThrottle":0,"procname":"biometrickitd","copyOnWriteFaults":59,"threadById":{"1772":{"id":1772,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":182534,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[76,13684],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.18253433299999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"1782":{"continuation":[0,68850618692],"userTime":0.060046791000000002,"name":"com.apple.CoreMotion.MotionThread","id":1782,"basePriority":47,"user_usec":60046,"system_usec":0,"schedPriority":47,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,304811712],[2,1396668108],[2,1396665252]],"state":["TH_WAIT"],"systemTime":0},"10005":{"id":10005,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":16100,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.01610075,"waitEvent":[1,13560469137793135267],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"10330":{"id":10330,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":478,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.00047837500000000001,"waitEvent":[1,13560469137796938059],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37}},"pageFaults":1331,"userTimeTask":0.40973874999999998,"pid":129,"systemTimeTask":0,"residentMemoryBytes":2687560}, + "130" : {"resampled_images":[["5926f2a7-80a4-3a0c-acb2-f8db2f758d48",4362649600,""]],"timesThrottled":0,"pageIns":37,"waitInfo":["thread 1791: mach_msg receive on port set 0xbc3076d67e83accb"],"timesDidThrottle":0,"procname":"BlueTool","copyOnWriteFaults":38,"threadById":{"1884":{"id":1884,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":37,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.7375e-05,"waitEvent":[1,13560469137788548403],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1791":{"id":1791,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":64081,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[77,285772],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.064081125000000003,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[77,285772],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":461,"userTimeTask":0.065638000000000002,"pid":130,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1376880}, + "132" : {"timesThrottled":0,"pageIns":442,"waitInfo":["thread 1804: mach_msg receive on port set 0xbc3076d67e83ad5b","thread 1856: mach_msg receive on port set 0xbc3076d67e83ad8b"],"timesDidThrottle":0,"procname":"AccessibilityUIServer","copyOnWriteFaults":80,"threadById":{"11889":{"id":11889,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":3513,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.0035135409999999998,"waitEvent":[1,13560469137777682403],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"1804":{"id":1804,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","user_usec":416066,"basePriority":46,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[78,15996],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_USER_INTERACTIVE","userTime":0.41606612500000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":46},"1856":{"id":1856,"schedPriority":45,"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","state":["TH_WAIT"],"user_usec":6375,"basePriority":46,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_USER_INTERACTIVE","userTime":0.0063751659999999998,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.uikit.eventfetch-thread"}},"pageFaults":3574,"userTimeTask":0.77839641599999998,"pid":132,"systemTimeTask":0,"residentMemoryBytes":5587688}, + "131" : {"resampled_images":[["00d7f69c-3840-3e38-ad38-0ad91764825d",4294983680,""]],"timesThrottled":0,"pageIns":6,"waitInfo":["thread 1807: mach_msg receive on port set 0xbc3076d67e83d8ab"],"timesDidThrottle":0,"procname":"touchsetupd","copyOnWriteFaults":44,"threadById":{"3705":{"id":3705,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1153,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001153875,"waitEvent":[1,13560469137790235299],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"1807":{"id":1807,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":30208,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[79,5652],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.030208915999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[79,5652],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":851,"userTimeTask":0.037387790999999997,"pid":131,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1540680}, + "133" : {"timesThrottled":0,"pageIns":766,"waitInfo":["thread 1876: mach_msg receive on port set 0xbc3076d67e83bb0b","thread 3506: mach_msg receive on port set 0xbc3076d67e83d39b","thread 3548: mach_msg receive on port set 0xbc3076d67e83d42b"],"timesDidThrottle":0,"procname":"cloudd","copyOnWriteFaults":102,"threadById":{"3548":{"id":3548,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":38631,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.038631832999999997,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"11993":{"id":11993,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":5.4580000000000001e-06,"waitEvent":[1,13560469137788933099],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1876":{"id":1876,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":146061,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[80,45412],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.14606174999999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"3506":{"id":3506,"name":"com.apple.CFStream.LegacyThread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":28706,"system_usec":0,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115446348],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.028706458000000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"11994":{"id":11994,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":7.4159999999999998e-06,"waitEvent":[1,13560469137788943323],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":13266,"userTimeTask":17.993947500000001,"pid":133,"systemTimeTask":0,"residentMemoryBytes":11010672}, + "134" : {"timesThrottled":0,"pageIns":638,"waitInfo":["thread 1883: mach_msg receive on port set 0xbc3076d67e83af9b"],"timesDidThrottle":0,"procname":"siriactionsd","copyOnWriteFaults":110,"threadById":{"12032":{"id":12032,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":960,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00096083300000000002,"waitEvent":[1,13560469137788555219],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1883":{"id":1883,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":139239,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[81,13016],[81,12284],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.13923933299999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":4318,"userTimeTask":0.67373637500000005,"pid":134,"systemTimeTask":0,"residentMemoryBytes":5047056}, + "136" : {"timesThrottled":0,"pageIns":134,"waitInfo":["thread 1900: mach_msg receive on port set 0xbc3076d67e83c43b"],"timesDidThrottle":0,"procname":"dmd","copyOnWriteFaults":54,"threadById":{"10246":{"id":10246,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":17848,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.017848833000000001,"waitEvent":[1,13560469137796946579],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1900":{"id":1900,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":139504,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[82,482768],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.139504083,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":1737,"userTimeTask":0.61047870800000004,"pid":136,"systemTimeTask":0,"residentMemoryBytes":2998856}, + "137" : {"timesThrottled":0,"pageIns":222,"waitInfo":["thread 1914: mach_msg receive on port set 0xbc3076d67e83af6b"],"timesDidThrottle":0,"procname":"calaccessd","copyOnWriteFaults":82,"threadById":{"1914":{"id":1914,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":113305,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[83,14372],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.113305375,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"5634":{"id":5634,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":143477,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.14347791600000001,"waitEvent":[1,13560469137793919995],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":3349,"userTimeTask":1.492794916,"pid":137,"systemTimeTask":0,"residentMemoryBytes":6373960}, + "138" : {"timesThrottled":0,"pageIns":589,"waitInfo":["thread 1916: mach_msg receive on port set 0xbc3076d67e83affb"],"timesDidThrottle":0,"procname":"amsengagementd","copyOnWriteFaults":101,"threadById":{"12010":{"id":12010,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":532,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00053216600000000004,"waitEvent":[1,13560469137779022483],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12134":{"id":12134,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":26,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.6166e-05,"waitEvent":[1,13560469137788939915],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1916":{"id":1916,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":226039,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[84,1177080],[84,1173960],[84,1174116],[84,33032],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.22603916600000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":4402,"userTimeTask":2.115796375,"pid":138,"systemTimeTask":0,"residentMemoryBytes":5718680}, + "141" : {"resampled_images":[["aacd3ed9-1fce-327f-b46b-09281553db71",4295278592,""]],"timesThrottled":0,"pageIns":86,"waitInfo":["thread 1957: mach_msg receive on port set 0xbc3076d67e83b14b"],"timesDidThrottle":0,"procname":"sociallayerd","copyOnWriteFaults":99,"threadById":{"8414":{"id":8414,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1681,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001681458,"waitEvent":[1,13560469137785036067],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1957":{"id":1957,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":33399,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[85,14988],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.033399625000000002,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2804,"userTimeTask":0.198738041,"pid":141,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":4424464}, + "142" : {"timesThrottled":0,"pageIns":249,"waitInfo":["thread 1960: mach_msg receive on port set 0xbc3076d67e83b17b"],"timesDidThrottle":0,"procname":"mDNSResponder","copyOnWriteFaults":78,"threadById":{"11942":{"id":11942,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":3410,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0034103330000000002,"waitEvent":[1,13560469137796941467],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"11943":{"id":11943,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":16,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.6291e-05,"waitEvent":[1,13560469137796943171],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"1960":{"id":1960,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","user_usec":160962,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[86,21268],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.16096208300000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[86,21268],[2,624855392]],"systemTime":0,"schedPriority":31},"2122":{"id":2122,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":1134868,"basePriority":31,"userFrames":[[2,1124422784],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.134868041,"waitEvent":[1,13560469141654528751],"continuation":[0,68855092288],"systemTime":0,"schedPriority":31},"11941":{"id":11941,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":5131,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.0051319579999999998,"waitEvent":[1,13560469137796934651],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37}},"pageFaults":2425,"userTimeTask":2.5289078329999999,"pid":142,"systemTimeTask":0,"residentMemoryBytes":3867248}, + "143" : {"timesThrottled":0,"pageIns":3911,"waitInfo":["thread 1969: mach_msg receive on port set 0xbc3076d67e83b26b"],"timesDidThrottle":0,"procname":"suggestd","copyOnWriteFaults":150,"threadById":{"12069":{"id":12069,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.175e-05,"waitEvent":[1,13560469137787298107],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"1969":{"id":1969,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":131646,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[87,18904],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.131646916,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":14156,"userTimeTask":7.2151767500000004,"pid":143,"systemTimeTask":0,"residentMemoryBytes":10355552}, + "144" : {"timesThrottled":0,"pageIns":413,"timesDidThrottle":0,"procname":"wifip2pd","copyOnWriteFaults":63,"threadById":{"12088":{"id":12088,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","user_usec":315,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.00031520799999999998,"waitEvent":[1,13560469137787630243],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"1998":{"id":1998,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":16,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.6500000000000001e-05,"waitEvent":[1,13560469137784532987],"continuation":[0,68855315520],"systemTime":0,"schedPriority":31}},"pageFaults":2482,"userTimeTask":1.1769836250000001,"pid":144,"systemTimeTask":0,"flags":["boosted"],"residentMemoryBytes":2392608}, + "145" : {"pid":145,"residentMemoryBytes":1688136,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":13,"pageFaults":1027,"userTimeTask":0.16332274999999999,"procname":"ckdiscretionaryd","copyOnWriteFaults":48,"threadById":{"1993":{"id":1993,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":26,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.6791000000000001e-05,"waitEvent":[1,13560469137784535891],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"8276":{"id":8276,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7640,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00764075,"waitEvent":[1,13560469137787754107],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "146" : {"resampled_images":[["c804176f-33b3-3c15-9d62-60143a68d42a",4305747968,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4307517440,""]],"timesThrottled":0,"pageIns":72,"waitInfo":["thread 2004: mach_msg receive on port set 0xbc3076d67e83b1ab"],"timesDidThrottle":0,"procname":"wifianalyticsd","copyOnWriteFaults":56,"threadById":{"2004":{"id":2004,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":87244,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[88,544372],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.087244832999999994,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[88,544372],[2,624855392]],"systemTime":0,"schedPriority":4},"4415":{"id":4415,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":10,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.0040999999999999e-05,"waitEvent":[1,13560469137792799723],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1898,"userTimeTask":0.47328087499999999,"pid":146,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":3162696}, + "147" : {"timesThrottled":0,"pageIns":322,"waitInfo":["thread 2036: mach_msg receive on port set 0xbc3076d67e83b1db"],"timesDidThrottle":0,"procname":"donotdisturbd","copyOnWriteFaults":108,"threadById":{"12030":{"id":12030,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":975,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000975416,"waitEvent":[1,13560469137778985259],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2036":{"id":2036,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":154842,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[89,13064],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.154842958,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":3637,"userTimeTask":0.68201620799999996,"pid":147,"systemTimeTask":0,"residentMemoryBytes":4670024}, + "148" : {"resampled_images":[["edcc9be5-e007-372e-98bb-592fe29c9163",4364533760,""]],"timesThrottled":0,"pageIns":32,"waitInfo":["thread 2046: mach_msg receive on port set 0xbc3076d67e83c16b"],"timesDidThrottle":0,"procname":"ProtectedCloudKeySyncing","copyOnWriteFaults":54,"threadById":{"2046":{"id":2046,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":63224,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[90,143420],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.063224708000000004,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"8094":{"id":8094,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":611,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00061137500000000005,"waitEvent":[1,13560469137796514435],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1297,"userTimeTask":0.11782166600000001,"pid":148,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2114120}, + "149" : {"timesThrottled":0,"pageIns":257,"waitInfo":["thread 2083: mach_msg receive on port set 0xbc3076d67e83b62b"],"timesDidThrottle":0,"procname":"corespeechd","copyOnWriteFaults":75,"threadById":{"10322":{"id":10322,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","user_usec":158,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.00015820799999999999,"waitEvent":[1,13560469137792960811],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"2083":{"id":2083,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":105022,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[91,1255492],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.10502212499999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31}},"pageFaults":1873,"userTimeTask":0.49308687499999998,"pid":149,"systemTimeTask":0,"residentMemoryBytes":3834440}, + "150" : {"timesThrottled":0,"pageIns":1514,"waitInfo":["thread 2111: mach_msg receive on port set 0xbc3076d67e83b6eb"],"timesDidThrottle":0,"procname":"homed","copyOnWriteFaults":126,"threadById":{"3751":{"id":3751,"name":"com.apple.CFSocket.private","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":66,"system_usec":0,"basePriority":4,"userFrames":[[2,1124419244],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":6.6458000000000006e-05,"continuation":[0,68855315520],"systemTime":0,"schedPriority":4},"2111":{"id":2111,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":608287,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[92,13284],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.60828775000000002,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"12047":{"id":12047,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":12,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.2291e-05,"waitEvent":[1,13560469137790231891],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":7727,"userTimeTask":1.7674978750000001,"pid":150,"systemTimeTask":0,"residentMemoryBytes":8274664}, + "151" : {"resampled_images":[["15b190c3-6b51-3482-91f0-bca2ddf00a63",4305108992,""]],"timesThrottled":0,"pageIns":73,"waitInfo":["thread 2130: mach_msg receive on port set 0xbc3076d67e83c01b"],"timesDidThrottle":0,"procname":"announced","copyOnWriteFaults":59,"threadById":{"2130":{"id":2130,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":66239,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[93,13832],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.066239540999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[93,13832],[2,624855392]],"systemTime":0,"schedPriority":4},"7721":{"id":7721,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1508,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001508875,"waitEvent":[1,13560469137793013371],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":1512,"userTimeTask":0.16498275000000001,"pid":151,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2392648}, + "152" : {"timesThrottled":0,"pageIns":224,"waitInfo":["thread 2134: mach_msg receive on port set 0xbc3076d67e83b44b"],"timesDidThrottle":0,"procname":"ScreenTimeAgent","copyOnWriteFaults":86,"threadById":{"2134":{"id":2134,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":170532,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[94,12940],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.17053233300000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"11924":{"id":11924,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":396,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00039641600000000002,"waitEvent":[1,13560469137790352347],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":3236,"userTimeTask":0.47400304100000001,"pid":152,"systemTimeTask":0,"residentMemoryBytes":4719176}, + "153" : {"timesThrottled":0,"turnstileInfo":["thread 2945: turnstile has unknown inheritor"],"pageIns":2942,"waitInfo":["thread 2135: mach_msg receive on port set 0xbc3076d67e83b56b","thread 2945: mach_msg receive on port 0xbc3076d76440729b name 0x5227"],"timesDidThrottle":0,"procname":"searchd","copyOnWriteFaults":115,"threadById":{"11896":{"id":11896,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":7.6249999999999998e-06,"waitEvent":[1,13560469137788903739],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2945":{"id":2945,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":28,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,861589528],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.8708e-05,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"2135":{"id":2135,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":84026,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[95,78180],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.084026540999999996,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":18181,"userTimeTask":5.4763319160000004,"pid":153,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":10191832}, + "154" : {"resampled_images":[["e2783094-8637-3409-a8ae-5d8c8c72b4e1",4302880768,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4304142336,""]],"timesThrottled":0,"pageIns":36,"timesDidThrottle":0,"procname":"com.apple.siri.embeddedspeech","copyOnWriteFaults":54,"threadById":{"2141":{"id":2141,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":27,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.7416e-05,"waitEvent":[1,13560469137784488603],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"4451":{"id":4451,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4243,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0042432909999999997,"waitEvent":[1,13560469137794323435],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":1984,"userTimeTask":8.2663174159999997,"pid":154,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":3064392}, + "155" : {"timesThrottled":0,"pageIns":122,"waitInfo":["thread 2147: mach_msg receive on port set 0xbc3076d67e83c34b"],"timesDidThrottle":0,"procname":"triald","copyOnWriteFaults":62,"threadById":{"11887":{"id":11887,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":262,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000262291,"waitEvent":[1,13560469137794132987],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2147":{"id":2147,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":50832,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,1199626096],[2,1200496428],[96,12360],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.050832833000000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2265,"userTimeTask":9.2563087500000005,"pid":155,"systemTimeTask":0,"residentMemoryBytes":3080776}, + "156" : {"resampled_images":[["55712b80-2b7e-3b67-8e1f-2c7146438b81",4335583232,""]],"timesThrottled":0,"pageIns":111,"timesDidThrottle":0,"procname":"siriknowledged","copyOnWriteFaults":65,"threadById":{"8401":{"id":8401,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6922,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0069228329999999998,"waitEvent":[1,13560469137794096419],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"4164":{"id":4164,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":33,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.3791000000000002e-05,"waitEvent":[1,13560469137784491507],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":1912,"userTimeTask":0.232109708,"pid":156,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2900552}, + "157" : {"resampled_images":[["b9ecf9fe-4d7a-387a-ae9f-c50feb589180",4308418560,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4310024192,""]],"timesThrottled":0,"pageIns":168,"waitInfo":["thread 2150: mach_msg receive on port set 0xbc3076d67e83b3bb","thread 2573: mach_msg receive on port set 0xbc3076d67e83bfbb"],"timesDidThrottle":0,"procname":"voiced","copyOnWriteFaults":66,"threadById":{"2150":{"id":2150,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":35366,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[97,96008],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.035366250000000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[97,96008],[2,624855392]],"systemTime":0,"schedPriority":4},"2573":{"id":2573,"system_usec":0,"state":["TH_WAIT"],"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19378,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[97,44956],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.019378958000000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[97,44956],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6708":{"id":6708,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":7.9160000000000001e-06,"waitEvent":[1,13560469137796373139],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1678,"userTimeTask":0.43906841600000002,"pid":157,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":3457608}, + "158" : {"pid":158,"residentMemoryBytes":3752520,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":433,"pageFaults":2863,"userTimeTask":0.67492195799999999,"procname":"siriinferenced","copyOnWriteFaults":111,"threadById":{"10357":{"id":10357,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":677,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00067754100000000004,"waitEvent":[1,13560469137792919523],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4314":{"id":4314,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":53,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":5.3625000000000002e-05,"waitEvent":[1,13560469137784571563],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "159" : {"resampled_images":[["f7419cd2-78dc-341f-a55c-51ff9561759b",4362403840,""]],"timesThrottled":0,"pageIns":268,"timesDidThrottle":0,"procname":"parsec-fbf","copyOnWriteFaults":49,"threadById":{"3070":{"id":3070,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":23,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.3958e-05,"waitEvent":[1,13560469137784500219],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"6755":{"id":6755,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9139,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.009139833,"waitEvent":[1,13560469137790347235],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":1569,"userTimeTask":0.17631037499999999,"pid":159,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2032200}, + "160" : {"pid":160,"residentMemoryBytes":1442336,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":10,"pageFaults":495,"userTimeTask":0.024796416000000002,"procname":"misagent","copyOnWriteFaults":37,"threadById":{"2172":{"id":2172,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":18,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.8624999999999999e-05,"waitEvent":[1,13560469137784518467],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4},"10510":{"id":10510,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":849,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00084920799999999995,"waitEvent":[1,13560469137796500803],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "162" : {"timesThrottled":0,"pageIns":335,"waitInfo":["thread 2190: mach_msg receive on port set 0xbc3076d67e83b4ab"],"timesDidThrottle":0,"procname":"profiled","copyOnWriteFaults":80,"threadById":{"10418":{"id":10418,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":295881,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.29588104100000001,"waitEvent":[1,13560469137785212227],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2190":{"id":2190,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":67481,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[98,15696],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.067481874999999997,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":4401,"userTimeTask":1.0401616250000001,"pid":162,"systemTimeTask":0,"residentMemoryBytes":3719792}, + "163" : {"resampled_images":[["9accb6c2-8b07-3e56-b5c5-626987849d50",4309516288,""]],"timesThrottled":0,"pageIns":27,"waitInfo":["thread 2193: mach_msg receive on port set 0xbc3076d67e83b4db"],"timesDidThrottle":0,"procname":"pkd","copyOnWriteFaults":50,"threadById":{"2193":{"id":2193,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":34114,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[99,12228],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.034113999999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[99,12228],[2,624855392]],"systemTime":0,"schedPriority":4},"7963":{"id":7963,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":345,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00034520800000000001,"waitEvent":[1,13560469137787735363],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":2272,"userTimeTask":1.0157305830000001,"pid":163,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":4604528}, + "166" : {"resampled_images":[["475879b5-0133-319e-931f-3cca3ddc5e40",4301094912,""]],"timesThrottled":0,"pageIns":18,"waitInfo":["thread 2208: mach_msg receive on port set 0xbc3076d67e83b5fb"],"timesDidThrottle":0,"procname":"languageassetd","copyOnWriteFaults":44,"threadById":{"2208":{"id":2208,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":32523,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[100,9636],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.032523249999999997,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[100,9636],[2,624855392]],"systemTime":0,"schedPriority":4},"5347":{"id":5347,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":162,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00016279099999999999,"waitEvent":[1,13560469137784260251],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":1044,"userTimeTask":0.63271666599999998,"pid":166,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2343456}, + "164" : {"timesThrottled":0,"pageIns":86,"waitInfo":["thread 2209: mach_msg receive on port set 0xbc3076d67e83d48b"],"timesDidThrottle":0,"procname":"watchlistd","copyOnWriteFaults":67,"threadById":{"2209":{"id":2209,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":91251,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[101,18184],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.091251333000000004,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"6729":{"id":6729,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9552,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0095527500000000005,"waitEvent":[1,13560469137788484571],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":2325,"userTimeTask":0.38348091600000001,"pid":164,"systemTimeTask":0,"residentMemoryBytes":3015240}, + "167" : {"timesThrottled":0,"pageIns":357,"waitInfo":["thread 2210: mach_msg receive on port set 0xbc3076d67e83cfdb"],"timesDidThrottle":0,"procname":"itunescloudd","copyOnWriteFaults":87,"threadById":{"11894":{"id":11894,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":144,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00014487500000000001,"waitEvent":[1,13560469137787669827],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2210":{"id":2210,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":70727,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[102,778524],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.070727874999999996,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":3440,"userTimeTask":0.51580358299999995,"pid":167,"systemTimeTask":0,"residentMemoryBytes":5112432}, + "169" : {"timesThrottled":0,"pageIns":555,"waitInfo":["thread 2212: mach_msg receive on port set 0xbc3076d67e83b68b","thread 4305: mach_msg receive on port set 0xbc3076d67e83d6cb"],"timesDidThrottle":0,"procname":"appstored","copyOnWriteFaults":101,"threadById":{"12133":{"id":12133,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":10,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.0625000000000001e-05,"waitEvent":[1,13560469137796486779],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4305":{"id":4305,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2692,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0026929580000000001,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"2212":{"id":2212,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":183898,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[103,1212968],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.18389883300000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"11936":{"id":11936,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":729,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00072933299999999998,"waitEvent":[1,13560469137793923403],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":5587,"userTimeTask":1.6290343329999999,"pid":169,"systemTimeTask":0,"residentMemoryBytes":6242928}, + "170" : {"pid":170,"residentMemoryBytes":5161744,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":1476,"pageFaults":3839,"userTimeTask":1.7862245000000001,"procname":"ContextService","copyOnWriteFaults":89,"threadById":{"12040":{"id":12040,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1015,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001015541,"waitEvent":[1,13560469137787743883],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2297":{"id":2297,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.0582999999999999e-05,"waitEvent":[1,13560469137784506027],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "168" : {"timesThrottled":0,"pageIns":619,"waitInfo":["thread 2214: mach_msg receive on port set 0xbc3076d67e839d6b"],"timesDidThrottle":0,"procname":"coreidvd","copyOnWriteFaults":103,"threadById":{"2214":{"id":2214,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":129509,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[104,31552],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.12950941599999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"10347":{"id":10347,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4494,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0044942910000000001,"waitEvent":[1,13560469137794037043],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":4894,"userTimeTask":1.416477166,"pid":168,"systemTimeTask":0,"residentMemoryBytes":6439576}, + "161" : {"pid":161,"residentMemoryBytes":1737248,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":7,"pageFaults":1287,"userTimeTask":0.1230025,"procname":"localizationswitcherd","copyOnWriteFaults":42,"threadById":{"2222":{"id":2222,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":74558,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.074558916000000003,"waitEvent":[1,13560469137788907147],"continuation":[0,68854897416],"systemTime":0,"schedPriority":3},"2227":{"id":2227,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.0000000000000002e-05,"waitEvent":[1,13560469137784527179],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "171" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4340432896,""]],"timesThrottled":0,"pageIns":48,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":59,"threadById":{"2219":{"id":2219,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.7499999999999992e-06,"waitEvent":[1,13560469137784406683],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"2220":{"id":2220,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":168949,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.16894995800000001,"waitEvent":[1,13560469137788905443],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":1547,"userTimeTask":0.204757666,"pid":171,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":7815832}, + "172" : {"timesThrottled":0,"pageIns":60,"waitInfo":["thread 2223: mach_msg receive on port set 0xbc3076d67e83b50b"],"timesDidThrottle":0,"procname":"mobileactivationd","copyOnWriteFaults":42,"threadById":{"10693":{"id":10693,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2201,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0022014159999999999,"waitEvent":[1,13560469137778975035],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2223":{"id":2223,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":53278,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[105,325144],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.053278958000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[105,325144],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":903,"userTimeTask":0.12815183299999999,"pid":172,"systemTimeTask":0,"residentMemoryBytes":1884704}, + "173" : {"timesThrottled":0,"pageIns":601,"waitInfo":["thread 3393: mach_msg receive on port set 0xbc3076d67e83cf7b"],"timesDidThrottle":0,"procname":"geod","copyOnWriteFaults":66,"threadById":{"3393":{"id":3393,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4462,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0044627909999999998,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"11260":{"id":11260,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":18599,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.018599791000000001,"waitEvent":[1,13560469137778969923],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2405":{"id":2405,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.1250000000000002e-05,"waitEvent":[1,13560469137784476163],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":5230,"userTimeTask":1.687549958,"pid":173,"systemTimeTask":0,"residentMemoryBytes":5456496}, + "174" : {"resampled_images":[["e2783094-8637-3409-a8ae-5d8c8c72b4e1",4334862336,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4336664576,""]],"timesThrottled":0,"pageIns":42,"timesDidThrottle":0,"procname":"com.apple.siri.embeddedspeech","copyOnWriteFaults":55,"threadById":{"2270":{"id":2270,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":23,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.3332999999999998e-05,"waitEvent":[1,13560469137784452931],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"5870":{"id":5870,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.5830000000000007e-06,"waitEvent":[1,13560469137796828483],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1302,"userTimeTask":0.32994075,"pid":174,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2654792}, + "175" : {"resampled_images":[["c725db2d-5e8d-3621-a720-98273a24b7b5",4375363584,""]],"timesThrottled":0,"pageIns":77,"timesDidThrottle":0,"procname":"deleted","copyOnWriteFaults":52,"threadById":{"2703":{"id":2703,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.1500000000000001e-05,"waitEvent":[1,13560469137784447123],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"6296":{"id":6296,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":11,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.1916000000000001e-05,"waitEvent":[1,13560469137788340523],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1478,"userTimeTask":0.47733820799999999,"pid":175,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2654832}, + "176" : {"resampled_images":[["0732a54f-aba4-3a99-91f1-5589d8599b25",4336041984,""]],"timesThrottled":0,"pageIns":25,"timesDidThrottle":0,"procname":"SBRendererService","copyOnWriteFaults":51,"threadById":{"2313":{"id":2313,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5596,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0055968750000000003,"waitEvent":[1,13560469137790243819],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"2314":{"id":2314,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.0665999999999998e-05,"waitEvent":[1,13560469137784467451],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":755,"userTimeTask":0.017808958,"pid":176,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2212464}, + "177" : {"resampled_images":[["6f40d321-3a64-3d15-b879-6be4d37f7ebd",4300226560,""]],"timesThrottled":0,"pageIns":12,"timesDidThrottle":0,"procname":"fontservicesd","copyOnWriteFaults":38,"threadById":{"3660":{"id":3660,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":35,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.5583000000000001e-05,"waitEvent":[1,13560469137784470355],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"7685":{"id":7685,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":9.0829999999999993e-06,"waitEvent":[1,13560469137789100347],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":686,"userTimeTask":0.034119833000000002,"pid":177,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1606176}, + "178" : {"resampled_images":[["1c25cac3-b1b4-32a2-b0ed-72f5682eaa86",4334665728,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4341514240,""]],"timesThrottled":0,"pageIns":343,"waitInfo":["thread 2322: mach_msg receive on port set 0xbc3076d67e83b8fb"],"timesDidThrottle":0,"procname":"itunesstored","copyOnWriteFaults":84,"threadById":{"11964":{"id":11964,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":732,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00073204100000000001,"waitEvent":[1,13560469137796982755],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12121":{"id":12121,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":181,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00018195799999999999,"waitEvent":[1,13560469137796479963],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2322":{"id":2322,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":154569,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[106,52616],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.15456983299999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":4081,"userTimeTask":0.99392833300000005,"pid":178,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":6537880}, + "179" : {"resampled_images":[["7b453166-ea48-3c2f-8b87-6fb900c3f8ff",4309843968,""]],"timesThrottled":0,"pageIns":96,"waitInfo":["thread 2329: mach_msg receive on port set 0xbc3076d67e83b74b"],"timesDidThrottle":0,"procname":"installcoordinationd","copyOnWriteFaults":42,"threadById":{"2329":{"id":2329,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":68148,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[107,17664],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.068148916000000004,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[107,17664],[2,624855392]],"systemTime":0,"schedPriority":4},"2353":{"id":2353,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.0830000000000004e-06,"waitEvent":[1,13560469137790183395],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1187,"userTimeTask":0.16604883300000001,"pid":179,"systemTimeTask":0,"flags":["dirty","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1835592}, + "180" : {"resampled_images":[["eebd6d1f-00af-3fda-b1b1-957399aa885d",4339286016,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4340678656,""]],"timesThrottled":0,"pageIns":244,"waitInfo":["thread 2352: mach_msg receive on port set 0xbc3076d67e83b80b"],"timesDidThrottle":0,"suspendCount":1,"procname":"PosterBoard","copyOnWriteFaults":86,"threadById":{"2349":{"id":2349,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8539,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00853925,"waitEvent":[1,13560469137790173171],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"2346":{"id":2346,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":40893,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.040893708000000001,"waitEvent":[1,13560469137790201277],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"2376":{"id":2376,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5232,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0052325410000000003,"waitEvent":[1,13560469137790961963],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"2347":{"id":2347,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4112,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0041125830000000004,"waitEvent":[1,13560469137790204235],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"2350":{"id":2350,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":12354,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.012354541,"waitEvent":[1,13560469137790181691],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"2331":{"id":2331,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":51935,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[2,260420360],[108,18820],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.051935750000000003,"waitEvent":[1,13560469137790214909],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[2,260420360],[108,18820],[2,624855392]],"systemTime":0,"schedPriority":4},"4664":{"id":4664,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1976,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0019766250000000001,"waitEvent":[1,13560469137788299685],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4665":{"id":4665,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":910,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00091070799999999998,"waitEvent":[1,13560469137784985211],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"2352":{"id":2352,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1585,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0015850409999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4}},"pageFaults":3030,"userTimeTask":0.12880129100000001,"pid":180,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":5980864}, + "181" : {"resampled_images":[["ed3fe39a-a4c9-3a0a-a357-2373b9f8618e",4366106624,""]],"timesThrottled":0,"pageIns":5,"timesDidThrottle":0,"procname":"extensionkitservice","copyOnWriteFaults":43,"threadById":{"5839":{"id":5839,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":837,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00083720799999999998,"waitEvent":[1,13560469137796473147],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"2337":{"id":2337,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":11,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.1833e-05,"waitEvent":[1,13560469137784400875],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":849,"userTimeTask":0.073496666000000002,"pid":181,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1901088}, + "182" : {"resampled_images":[["771e2836-5db1-34a4-958c-e62147707cd0",4311072768,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4313153536,""]],"timesThrottled":0,"pageIns":507,"waitInfo":["thread 2344: mach_msg receive on port set 0xbc3076d67e83b95b"],"timesDidThrottle":0,"suspendCount":1,"procname":"MailWidgetExtension","copyOnWriteFaults":119,"threadById":{"2382":{"id":2382,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8569,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0085698330000000007,"waitEvent":[1,13560469137790952189],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"2429":{"id":2429,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":56,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":5.6499999999999998e-05,"waitEvent":[1,13560469137786070805],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"2373":{"id":2373,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":12223,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.012223458,"waitEvent":[1,13560469137785053293],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"2344":{"id":2344,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":273706,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.273706,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":0},"2372":{"id":2372,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5080,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0050806660000000002,"waitEvent":[1,13560469137785128005],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":3070,"userTimeTask":0.29963645799999999,"pid":182,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":6996752}, + "183" : {"timesThrottled":0,"pageIns":894,"waitInfo":["thread 2383: mach_msg receive on port set 0xbc3076d67e83b9bb"],"timesDidThrottle":0,"procname":"maild","copyOnWriteFaults":118,"threadById":{"11873":{"id":11873,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":177,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00017779100000000001,"waitEvent":[1,13560469137785063067],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2383":{"id":2383,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":336413,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[109,45076],[109,233740],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.33641375000000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":7069,"userTimeTask":3.185483166,"pid":183,"systemTimeTask":0,"residentMemoryBytes":8798872}, + "185" : {"pid":185,"residentMemoryBytes":6898288,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":1221,"pageFaults":4356,"userTimeTask":2.1827110410000001,"procname":"searchpartyd","copyOnWriteFaults":121,"threadById":{"2413":{"id":2413,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":22,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.2833e-05,"waitEvent":[1,13560469137784397971],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"9919":{"id":9919,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5297,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.005297375,"waitEvent":[1,13560469137796409315],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"9917":{"id":9917,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":113559,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.113559916,"waitEvent":[1,13560469137792987811],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"6847":{"id":6847,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":92132,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.092132707999999994,"waitEvent":[1,13560469137785019027],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "186" : {"timesThrottled":0,"pageIns":196,"waitInfo":["thread 2410: mach_msg receive on port set 0xbc3076d67e83ba1b"],"timesDidThrottle":0,"procname":"pipelined","copyOnWriteFaults":46,"threadById":{"10362":{"id":10362,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":12,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.275e-05,"waitEvent":[1,13560469137787631947],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2410":{"id":2410,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":106092,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[110,21144],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.106092458,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[110,21144],[2,624855392]],"systemTime":0,"schedPriority":0}},"pageFaults":950,"userTimeTask":0.12895379100000001,"pid":186,"systemTimeTask":0,"residentMemoryBytes":1802824}, + "187" : {"timesThrottled":0,"pageIns":279,"waitInfo":["thread 2419: mach_msg receive on port set 0xbc3076d67e83baab","thread 2425: pthread condvar 0x100c7b5f0"],"timesDidThrottle":0,"procname":"nearbyd","copyOnWriteFaults":60,"threadById":{"2427":{"id":2427,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":17,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.7958e-05,"waitEvent":[1,13560469137791357443],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4},"2425":{"id":2425,"name":"RoseCommunicationMgrQueue","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":39,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 6 frames","basePriority":4,"userFrames":[[2,1124418588],[2,355252940],[111,2963808],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.9458000000000001e-05,"waitEvent":[1,13560469133898147163],"continuation":[0,68887633940],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,355252940],[111,2963808],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"11970":{"id":11970,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":84,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.4541000000000003e-05,"waitEvent":[1,13560469137794361315],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2419":{"id":2419,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":30943,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,304811712],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.030943833,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.CoreMotion.MotionThread"},"11341":{"id":11341,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1790,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001790125,"waitEvent":[1,13560469137788326891],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1705,"userTimeTask":0.28217754099999998,"pid":187,"systemTimeTask":0,"residentMemoryBytes":2540104}, + "188" : {"timesThrottled":0,"pageIns":6,"waitInfo":["thread 2431: mach_msg receive on port set 0xbc3076d67e83badb"],"timesDidThrottle":0,"procname":"CMFSyncAgent","copyOnWriteFaults":44,"threadById":{"2431":{"id":2431,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":81352,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[112,17212],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.081352083000000006,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"4254":{"id":4254,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4844,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0048444580000000003,"waitEvent":[1,13560469137788306051],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":968,"userTimeTask":0.098559207999999995,"pid":188,"systemTimeTask":0,"residentMemoryBytes":1786480}, + "189" : {"timesThrottled":0,"pageIns":221,"waitInfo":["thread 2450: mach_msg receive on port set 0xbc3076d67e83c31b","thread 3616: mach_msg receive on port set 0xbc3076d67e83d60b"],"timesDidThrottle":0,"procname":"nsurlsessiond","copyOnWriteFaults":79,"threadById":{"12113":{"id":12113,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":0,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0,"waitEvent":[1,13560469137796979347],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"12112":{"id":12112,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":182,"basePriority":20,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.000182041,"waitEvent":[1,13560469137775108411],"continuation":[0,68854897416],"systemTime":0,"schedPriority":20},"2450":{"id":2450,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":293292,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[113,25236],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.29329224999999998,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"3616":{"id":3616,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","state":["TH_WAIT"],"systemTime":0,"user_usec":2200505,"basePriority":33,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"userTime":2.2005057909999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"name":"com.apple.NSURLConnectionLoader","schedPriority":33},"3617":{"id":3617,"schedPriority":31,"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","state":["TH_WAIT"],"user_usec":9794,"basePriority":31,"userFrames":[[2,1124419244],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0097946660000000005,"continuation":[0,68855315520],"systemTime":0,"name":"com.apple.CFSocket.private"}},"pageFaults":11535,"userTimeTask":12.212219624999999,"pid":189,"systemTimeTask":0,"flags":["boosted","dirty"],"residentMemoryBytes":5751408}, + "190" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4305633280,""]],"timesThrottled":0,"pageIns":3,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":58,"threadById":{"2466":{"id":2466,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":29872,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.029872375,"waitEvent":[1,13560469137787733659],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":0},"2462":{"id":2462,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":22,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.2458000000000001e-05,"waitEvent":[1,13560469137791340019],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":634,"userTimeTask":0.033679291,"pid":190,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":5112432}, + "191" : {"pid":191,"residentMemoryBytes":2392608,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":152,"pageFaults":1769,"userTimeTask":0.200239791,"procname":"swcd","copyOnWriteFaults":43,"threadById":{"6705":{"id":6705,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8735,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0087357909999999997,"waitEvent":[1,13560469137796493987],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2476":{"id":2476,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":22,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.2374999999999998e-05,"waitEvent":[1,13560469137791354539],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "193" : {"timesThrottled":0,"pageIns":155,"waitInfo":["thread 2484: mach_msg receive on port set 0xbc3076d67e83bbcb"],"timesDidThrottle":0,"procname":"seserviced","copyOnWriteFaults":66,"threadById":{"11841":{"id":11841,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":7775,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0077752910000000001,"waitEvent":[1,13560469137794269171],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"4886":{"id":4886,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":15090,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.015090375,"waitEvent":[1,13560469137793154011],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"2484":{"id":2484,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":48604,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[114,206660],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.048604165999999997,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31}},"pageFaults":1439,"userTimeTask":0.64407537500000001,"pid":193,"systemTimeTask":0,"flags":["boosted"],"residentMemoryBytes":2802248}, + "195" : {"timesThrottled":0,"pageIns":153,"waitInfo":["thread 2492: mach_msg receive on port set 0xbc3076d67e83becb","thread 4114: mach_msg receive on port set 0xbc3076d67e83b5cb"],"timesDidThrottle":0,"procname":"akd","copyOnWriteFaults":66,"threadById":{"11933":{"id":11933,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":25322,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.025322041,"waitEvent":[1,13560469137794070859],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"11935":{"id":11935,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":4.3329999999999998e-06,"waitEvent":[1,13560469137793935331],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"11934":{"id":11934,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2052,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0020525410000000002,"waitEvent":[1,13560469137793938739],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4114":{"id":4114,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1648,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0016485409999999999,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"11916":{"id":11916,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":22546,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.022546916,"waitEvent":[1,13560469137784313467],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2492":{"id":2492,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":110156,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[115,191484],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.110156166,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2511,"userTimeTask":0.89246574999999995,"pid":195,"systemTimeTask":0,"residentMemoryBytes":4473456}, + "194" : {"timesThrottled":0,"pageIns":35,"waitInfo":["thread 2493: mach_msg receive on port set 0xbc3076d67e83c2bb"],"timesDidThrottle":0,"procname":"followupd","copyOnWriteFaults":44,"threadById":{"10387":{"id":10387,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9311,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0093112079999999996,"waitEvent":[1,13560469137792998035],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2493":{"id":2493,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":54804,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[116,66492],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.054804540999999998,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":1169,"userTimeTask":0.11773579100000001,"pid":194,"systemTimeTask":0,"residentMemoryBytes":2228768}, + "196" : {"resampled_images":[["78acbd3b-84e1-3157-812a-a75e69b81b1d",4364779520,""]],"timesThrottled":0,"pageIns":59,"waitInfo":["thread 2506: mach_msg receive on port set 0xbc3076d67e83bbfb"],"timesDidThrottle":0,"procname":"nesessionmanager","copyOnWriteFaults":47,"threadById":{"2506":{"id":2506,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":33049,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[117,384932],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.033049500000000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[117,384932],[2,624855392]],"systemTime":0,"schedPriority":0},"10313":{"id":10313,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":17,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.7249999999999999e-05,"waitEvent":[1,13560469137793105907],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":891,"userTimeTask":0.13916079100000001,"pid":196,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1917472}, + "197" : {"resampled_images":[["c4f23c0b-e046-3daf-9eeb-fd6f2c0ab19d",4342349824,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4344037376,""]],"timesThrottled":0,"pageIns":104,"waitInfo":["thread 2513: mach_msg receive on port set 0xbc3076d67e83bc2b"],"timesDidThrottle":0,"procname":"transparencyd","copyOnWriteFaults":53,"threadById":{"2513":{"id":2513,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":110874,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[118,16928],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.1108745,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[118,16928],[2,624855392]],"systemTime":0,"schedPriority":0},"2543":{"id":2543,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":22261,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.022261625,"waitEvent":[1,13560469137790761947],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":938,"userTimeTask":0.15212275,"pid":197,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2359880}, + "199" : {"pid":199,"residentMemoryBytes":2032160,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":47,"pageFaults":1217,"userTimeTask":0.24468424999999999,"procname":"ctkd","copyOnWriteFaults":51,"threadById":{"2547":{"id":2547,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":32,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.2125000000000002e-05,"waitEvent":[1,13560469137791324675],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4},"10695":{"id":10695,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2624,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.002624375,"waitEvent":[1,13560469137788917371],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "200" : {"timesThrottled":0,"pageIns":91,"waitInfo":["thread 2557: mach_msg receive on port set 0xbc3076d67e83b9eb"],"timesDidThrottle":0,"procname":"useractivityd","copyOnWriteFaults":52,"threadById":{"11989":{"id":11989,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8186,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0081863749999999992,"waitEvent":[1,13560469137792959107],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2557":{"id":2557,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":66223,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[119,53208],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.066223500000000005,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":1202,"userTimeTask":0.64818604099999999,"pid":200,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":2359880}, + "201" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4363501568,""]],"timesThrottled":0,"pageIns":25,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":59,"threadById":{"2588":{"id":2588,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":23,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.3875000000000001e-05,"waitEvent":[1,13560469137791301443],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"2592":{"id":2592,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":70377,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.070377082999999993,"waitEvent":[1,13560469137792829083],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":1287,"userTimeTask":0.20868937500000001,"pid":201,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":8192664}, + "202" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4295868416,""]],"timesThrottled":0,"pageIns":35,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":59,"threadById":{"3092":{"id":3092,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":51135,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.051135040999999999,"waitEvent":[1,13560469137792844419],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"2591":{"id":2591,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.4160000000000004e-06,"waitEvent":[1,13560469137791307251],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":1296,"userTimeTask":0.21582083299999999,"pid":202,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":8077976}, + "203" : {"timesThrottled":0,"pageIns":71,"waitInfo":["thread 2618: mach_msg receive on port set 0xbc3076d67e83c04b","thread 4248: mach_msg receive on port set 0xbc3076d67e83bf8b"],"timesDidThrottle":0,"procname":"fmfd","copyOnWriteFaults":69,"threadById":{"10240":{"id":10240,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5003,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0050035829999999998,"waitEvent":[1,13560469137796936355],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2618":{"id":2618,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":165153,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[120,29452],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.165153666,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"4248":{"id":4248,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1197,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0011979580000000001,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"}},"pageFaults":2642,"userTimeTask":0.47535500000000003,"pid":203,"systemTimeTask":0,"residentMemoryBytes":3654216}, + "204" : {"timesThrottled":0,"pageIns":479,"waitInfo":["thread 4465: mach_msg receive on port set 0xbc3076d67e83c5bb"],"timesDidThrottle":0,"procname":"familycircled","copyOnWriteFaults":90,"threadById":{"2684":{"id":2684,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.9332999999999999e-05,"waitEvent":[1,13560469137791304347],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"4465":{"id":4465,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1700,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0017005830000000001,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"10527":{"id":10527,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4661,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0046612909999999997,"waitEvent":[1,13560469137790355755],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":5145,"userTimeTask":1.511374583,"pid":204,"systemTimeTask":0,"residentMemoryBytes":6423112}, + "205" : {"timesThrottled":0,"pageIns":80,"waitInfo":["thread 2723: mach_msg receive on port set 0xbc3076d67e83c1fb"],"timesDidThrottle":0,"procname":"adid","copyOnWriteFaults":39,"threadById":{"2723":{"id":2723,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":260339,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[121,788520],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.26033929099999997,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"2970":{"id":2970,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":110,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00011045800000000001,"waitEvent":[1,13560469137786310611],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":3133,"userTimeTask":0.26094045799999999,"pid":205,"systemTimeTask":0,"residentMemoryBytes":1606176}, + "206" : {"timesThrottled":0,"pageIns":40,"waitInfo":["thread 2736: mach_msg receive on port set 0xbc3076d67e83c22b"],"timesDidThrottle":0,"procname":"contactsd","copyOnWriteFaults":55,"threadById":{"10198":{"id":10198,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19484,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.019484125000000001,"waitEvent":[1,13560469137794209403],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"2736":{"id":2736,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":29554,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[122,40880],[122,44876],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.029554207999999998,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2143,"userTimeTask":0.43679200000000001,"pid":206,"systemTimeTask":0,"residentMemoryBytes":3899976}, + "209" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4333060096,""]],"timesThrottled":0,"pageIns":11,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":59,"threadById":{"2797":{"id":2797,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.6249999999999996e-06,"waitEvent":[1,13560469137791318867],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"2798":{"id":2798,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":628452,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.62845262499999999,"waitEvent":[1,13560469137790259155],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":2973,"userTimeTask":0.89539808300000001,"pid":209,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":9339544}, + "212" : {"timesThrottled":0,"pageIns":693,"waitInfo":["thread 2821: mach_msg receive on port set 0xbc3076d67e83c28b","thread 3155: mach_msg receive on port set 0xbc3076d67e83c6db"],"timesDidThrottle":0,"suspendCount":1,"procname":"Spotlight","copyOnWriteFaults":140,"threadById":{"3155":{"id":3155,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1512,"system_usec":0,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0015125,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"2821":{"id":2821,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":222136,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[123,21304],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.22213654099999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"3156":{"id":3156,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2136,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.002136541,"waitEvent":[1,13560469137794109189],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"10250":{"id":10250,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":419,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00041925000000000003,"waitEvent":[1,13560469137796925739],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"3154":{"id":3154,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":32215,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.032215958000000003,"waitEvent":[1,13560469137794107035],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"10249":{"id":10249,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3730,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0037304159999999999,"waitEvent":[1,13560469137796924035],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"10208":{"id":10208,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8819,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0088194999999999992,"waitEvent":[1,13560469137796540387],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"10247":{"id":10247,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4964,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0049645410000000003,"waitEvent":[1,13560469137796951691],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":5237,"userTimeTask":0.32766166600000002,"pid":212,"systemTimeTask":0,"flags":["suspended"],"residentMemoryBytes":9339824}, + "228" : {"resampled_images":[["4ebc96ec-eed7-3cb8-9a74-5fc0e3d57bc7",4376756224,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4377526272,""]],"timesThrottled":0,"pageIns":727,"waitInfo":["thread 2951: mach_msg receive on port set 0xbc3076d67e83c73b"],"timesDidThrottle":0,"suspendCount":1,"procname":"PhotosReliveWidget","copyOnWriteFaults":154,"threadById":{"3555":{"id":3555,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8856,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0088562499999999995,"waitEvent":[1,13560469137785110965],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"2951":{"id":2951,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":291208,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.29120879100000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4},"3130":{"id":3130,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":12450,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.012450457999999999,"waitEvent":[1,13560469137794138549],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3123":{"id":3123,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":17759,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.017759332999999999,"waitEvent":[1,13560469137794194517],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3161":{"id":3161,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13936,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.013936416,"waitEvent":[1,13560469137794117709],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":4021,"userTimeTask":0.357260666,"pid":228,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":7848560}, + "238" : {"resampled_images":[["d1d64b31-e4e6-3837-bed3-0bd4159e454a",4303208448,""],["89083c92-0448-329b-b1f2-5612be6988a8",4305960960,""],["a2b92ead-289c-3cc2-ad7a-1268cd30f3a7",4306518016,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4307845120,""],["fc3e1802-60e0-3c27-b82c-796699bddf2c",4308008960,""],["ada9e253-f3cc-3901-adea-350464573126",4310548480,""],["7cd2caf2-ceb0-3d0f-bfaa-8f7a807fa6dd",4315971584,""],["58dd7ae4-b02d-3919-b092-7fbade86ceda",4323753984,""],["7b467f11-951a-39bb-b0fc-cd95395d370a",4395499520,""]],"timesThrottled":0,"pageIns":5104,"waitInfo":["thread 3231: mach_msg receive on port set 0xbc3076d67e83c9db","thread 3298: mach_msg receive on port set 0xbc3076d67e83cbbb","thread 3299: mach_msg receive on port set 0xbc3076d67e83cbeb","thread 3427: pthread condvar 0x280c14d50","thread 3428: pthread condvar 0x280c14d50","thread 3429: pthread condvar 0x280c14d50"],"timesDidThrottle":0,"suspendCount":1,"procname":"Telegram","copyOnWriteFaults":631,"threadById":{"3428":{"id":3428,"system_usec":0,"state":["TH_WAIT"],"notice":"Unmapped pages caused truncated backtrace; re-sampled 7 frames","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":125,"basePriority":4,"userFrames":[[2,1124418588],[126,94056],[126,95268],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000125208,"waitEvent":[1,13560469133897984603],"continuation":[0,68887633940],"resampledUserFrames":[[2,1124418588],[2,1396695148],[126,94056],[126,95268],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"3298":{"id":3298,"name":"GCDAsyncSocket-CFStream","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1054,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[125,82912],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001054375,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[125,82912],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"3056":{"id":3056,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1753976,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[124,81084],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.753976333,"waitEvent":[1,13560469137794236853],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[124,81084],[2,624855392]],"systemTime":0,"schedPriority":4},"3231":{"id":3231,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5135,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0051358749999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"3215":{"id":3215,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":674756,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.67475629100000001,"waitEvent":[1,13560469137796397837],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3264":{"id":3264,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":18396,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.018395999999999999,"waitEvent":[1,13560469137796542541],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3427":{"id":3427,"system_usec":0,"state":["TH_WAIT"],"notice":"Unmapped pages caused truncated backtrace; re-sampled 7 frames","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":218,"basePriority":4,"userFrames":[[2,1124418588],[126,94056],[126,95268],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00021891599999999999,"waitEvent":[1,13560469133897984603],"continuation":[0,68887633940],"resampledUserFrames":[[2,1124418588],[2,1396695148],[126,94056],[126,95268],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"3546":{"id":3546,"name":"com.apple.coremedia.rootQueue.47","state":["TH_WAIT"],"system_usec":0,"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2957,"notice":"Unmapped pages caused truncated backtrace; re-sampled 6 frames","basePriority":4,"userFrames":[[2,1124416220],[2,237923316],[2,237992000],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0029571250000000001,"waitEvent":[1,13560469137785009253],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416220],[2,237921780],[2,237923316],[2,237992000],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"3300":{"id":3300,"name":"com.apple.CFSocket.private","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":233,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 4 frames","basePriority":4,"userFrames":[[2,1124419244],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000233833,"continuation":[0,68855315520],"resampledUserFrames":[[2,1124419244],[2,115193540],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"3214":{"id":3214,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":64212,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.064212958000000001,"waitEvent":[1,13560469137796413173],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3210":{"id":3210,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":126403,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.12640324999999999,"waitEvent":[1,13560469137796411469],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3243":{"id":3243,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":58021,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.058021499999999997,"waitEvent":[1,13560469137788318821],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3892":{"id":3892,"name":"com.apple.coremedia.rootQueue.47","state":["TH_WAIT"],"system_usec":0,"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1667,"notice":"Unmapped pages caused truncated backtrace; re-sampled 6 frames","basePriority":4,"userFrames":[[2,1124416220],[2,237923316],[2,237992000],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0016677910000000001,"waitEvent":[1,13560469137796988317],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416220],[2,237921780],[2,237923316],[2,237992000],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"3429":{"id":3429,"system_usec":0,"state":["TH_WAIT"],"notice":"Unmapped pages caused truncated backtrace; re-sampled 7 frames","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":642033,"basePriority":4,"userFrames":[[2,1124418588],[126,94056],[126,95268],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.64203374999999996,"waitEvent":[1,13560469133897984603],"continuation":[0,68887633940],"resampledUserFrames":[[2,1124418588],[2,1396695148],[126,94056],[126,95268],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":0},"3299":{"id":3299,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":45,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":4.5666e-05,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"3836":{"id":3836,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":53,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":5.3665999999999997e-05,"waitEvent":[1,13560469137787647733],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":43418,"userTimeTask":3.8775594999999998,"pid":238,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":73303000}, + "240" : {"resampled_images":[["b6d2e475-d9cd-3ab6-8f05-12dff65b7835",4333191168,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4333993984,""],["d4ac0bf6-95da-3b59-bce7-17d75e2d09cd",4567040000,""],["b216d2b9-a977-3eaf-850e-86f7dad3834d",4567138304,""]],"timesThrottled":0,"pageIns":4493,"waitInfo":["thread 3471: mach_msg receive on port set 0xbc3076d67e83d24b"],"timesDidThrottle":0,"suspendCount":1,"procname":"MobileSafari","copyOnWriteFaults":495,"threadById":{"6743":{"id":6743,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":204612,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.20461283299999999,"waitEvent":[1,13560469137792940813],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7198":{"id":7198,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":14021,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.014021832999999999,"waitEvent":[1,13560469137794330701],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3471":{"id":3471,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":156380,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.15638020799999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6806":{"id":6806,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":59736,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.059736333000000003,"waitEvent":[1,13560469137785164181],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3059":{"id":3059,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7140872,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[2,1290070888],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":7.1408729580000001,"waitEvent":[1,13560469137792770813],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[2,1290070888],[2,624855392]],"systemTime":0,"schedPriority":4},"6745":{"id":6745,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":72347,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.072347875000000006,"waitEvent":[1,13560469137784970325],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"6804":{"id":6804,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":170934,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.17093466600000001,"waitEvent":[1,13560469137785159069],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3476":{"id":3476,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":596189,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 5 frames","basePriority":4,"userFrames":[[2,1124418588],[2,440017700],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.59618945800000001,"waitEvent":[1,13560469137797325565],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,440017700],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4}},"pageFaults":40579,"userTimeTask":10.652470416,"pid":240,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":82380096}, + "241" : {"resampled_images":[["4e0c2a7c-5366-3d4f-91c8-c950894e1000",4362649600,""],["cb3ff411-4762-34d2-86a4-eca13f9fb6c3",4376805376,""]],"timesThrottled":0,"pageIns":0,"timesDidThrottle":0,"suspendCount":1,"procname":"Signal","copyOnWriteFaults":0,"threadById":{"3060":{"id":3060,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":36,"basePriority":4,"userFrames":[[127,14248080]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.65e-05,"waitEvent":[1,13560469137794253893],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":0,"userTimeTask":3.65e-05,"pid":241,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":82104}, + "242" : {"resampled_images":[["e5ce3284-1f7b-3927-86be-ecf3c1834000",4308172800,""],["cb3ff411-4762-34d2-86a4-eca13f9fb6c3",4320215040,""]],"timesThrottled":0,"pageIns":0,"timesDidThrottle":0,"suspendCount":1,"procname":"AppStore","copyOnWriteFaults":0,"threadById":{"3061":{"id":3061,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5,"basePriority":4,"userFrames":[[128,12134544]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":5.6659999999999996e-06,"waitEvent":[1,13560469137794197925],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":0,"userTimeTask":5.6659999999999996e-06,"pid":242,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":82104}, + "243" : {"timesThrottled":0,"pageIns":3530,"waitInfo":["thread 10484: mach_msg receive on port set 0xbc3076d67e83b2fb","thread 10500: mach_msg receive on port set 0xbc3076d67e835e8b","thread 10539: mach_msg receive on port set 0xbc3076d67e835f1b"],"timesDidThrottle":0,"suspendCount":1,"procname":"Preferences","copyOnWriteFaults":255,"threadById":{"10539":{"id":10539,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":44,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":4.4666000000000002e-05,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"12025":{"id":12025,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":43326,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.043326707999999998,"waitEvent":[1,13560469137786297429],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"10484":{"id":10484,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":196687,"system_usec":0,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.19668787500000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"3062":{"id":3062,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5942207,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[129,43780],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":5.9422070409999996,"waitEvent":[1,13560469137794209853],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"11890":{"id":11890,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9225,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.009225291,"waitEvent":[1,13560469137786169765],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"12024":{"id":12024,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":10892,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.010892875,"waitEvent":[1,13560469137793159573],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"11090":{"id":11090,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":59785,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.059785916000000001,"waitEvent":[1,13560469137788481613],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"10500":{"id":10500,"name":"WFWiFiStateMonitor callback thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":83,"system_usec":0,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1987081700],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.3708000000000006e-05,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":15464,"userTimeTask":7.3580457910000003,"pid":243,"systemTimeTask":0,"flags":["suspended"],"residentMemoryBytes":25723984}, + "245" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4303831040,""]],"timesThrottled":0,"pageIns":39,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":58,"threadById":{"3107":{"id":3107,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.541e-06,"waitEvent":[1,13560469137793467035],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"3106":{"id":3106,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":49987,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.049987333000000002,"waitEvent":[1,13560469137794369835],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":811,"userTimeTask":0.100284375,"pid":245,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":5358192}, + "223" : {"resampled_images":[["4060ddb1-8f04-3d42-908a-0d700d6de366",4371726336,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4374888448,""]],"timesThrottled":0,"pageIns":118,"timesDidThrottle":0,"procname":"TrustedPeersHelper","copyOnWriteFaults":60,"threadById":{"7152":{"id":7152,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1082,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001082583,"waitEvent":[1,13560469137787755811],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"3115":{"id":3115,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.1708e-05,"waitEvent":[1,13560469137793431363],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":1282,"userTimeTask":0.22312775000000001,"pid":223,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2654792}, + "224" : {"resampled_images":[["321796d8-77a6-386b-9dcb-63507b41141c",4344807424,""]],"timesThrottled":0,"pageIns":20,"waitInfo":["thread 3103: mach_msg receive on port set 0xbc3076d67e83c64b"],"timesDidThrottle":0,"procname":"intents_helper","copyOnWriteFaults":52,"threadById":{"3108":{"id":3108,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9106,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0091061249999999996,"waitEvent":[1,13560469137794020003],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"3103":{"id":3103,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":15689,"notice":"Unmapped pages caused truncated backtrace; re-sampled 14 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[130,17488],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.015689291000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[130,17488],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":1050,"userTimeTask":0.0249295,"pid":224,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1851976}, + "221" : {"pid":221,"residentMemoryBytes":3179120,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":234,"pageFaults":2569,"userTimeTask":0.444898083,"procname":"linkd","copyOnWriteFaults":92,"threadById":{"10338":{"id":10338,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2205,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0022055830000000001,"waitEvent":[1,13560469137796462923],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3422":{"id":3422,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.0333e-05,"waitEvent":[1,13560469137793454595],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "251" : {"resampled_images":[["056bbea5-3687-34e3-aec7-d94d077544e8",4366237696,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4367007744,""]],"timesThrottled":0,"pageIns":175,"waitInfo":["thread 3110: mach_msg receive on port set 0xbc3076d67e83c70b"],"timesDidThrottle":0,"suspendCount":1,"procname":"CalendarWidgetExtension","copyOnWriteFaults":138,"threadById":{"3110":{"id":3110,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1144955,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.1449554580000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4},"3173":{"id":3173,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2607,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0026072909999999999,"waitEvent":[1,13560469137794228333],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3160":{"id":3160,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2766,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.002766166,"waitEvent":[1,13560469137794117259],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":3388,"userTimeTask":1.1792901250000001,"pid":251,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":8143472}, + "252" : {"resampled_images":[["d4cc41db-cffb-3284-925b-3ae1bd885245",4311531520,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4313088000,""]],"timesThrottled":0,"pageIns":775,"waitInfo":["thread 3117: mach_msg receive on port set 0xbc3076d67e83c76b"],"timesDidThrottle":0,"suspendCount":1,"procname":"StocksWidget","copyOnWriteFaults":148,"threadById":{"3248":{"id":3248,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":22667,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.022667290999999999,"waitEvent":[1,13560469137796361661],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3242":{"id":3242,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":42708,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.042708041000000002,"waitEvent":[1,13560469137792857189],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3117":{"id":3117,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":283180,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.28318016600000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4},"3162":{"id":3162,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":10526,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.010526333000000001,"waitEvent":[1,13560469137790862405],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":4129,"userTimeTask":0.47352416600000002,"pid":252,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":10584728}, + "253" : {"resampled_images":[["0d70aab1-5718-3d11-903a-dcd4bf7e12a4",4298883072,""]],"timesThrottled":0,"pageIns":156,"waitInfo":["thread 3118: mach_msg receive on port set 0xbc3076d67e83c79b"],"timesDidThrottle":0,"suspendCount":1,"procname":"WeatherWidget","copyOnWriteFaults":70,"threadById":{"3118":{"id":3118,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":54806,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.054806208000000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4},"3150":{"id":3150,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9311,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0093117500000000006,"waitEvent":[1,13560469137794133437],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":1914,"userTimeTask":0.064509833000000003,"pid":253,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":3310152}, + "219" : {"timesThrottled":0,"pageIns":57,"waitInfo":["thread 3120: mach_msg receive on port set 0xbc3076d67e83c82b"],"timesDidThrottle":0,"procname":"mapspushd","copyOnWriteFaults":66,"threadById":{"12082":{"id":12082,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":16134,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.016134708000000001,"waitEvent":[1,13560469137796538683],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3120":{"id":3120,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":78678,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[131,97792],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.078678207999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[131,97792],[2,624855392]],"systemTime":0,"schedPriority":4},"12096":{"id":12096,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":23,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.3e-05,"waitEvent":[1,13560469137790340419],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":2546,"userTimeTask":1.491245583,"pid":219,"systemTimeTask":0,"residentMemoryBytes":3424840}, + "217" : {"resampled_images":[["106c6517-74e0-3fb5-afa7-9b9dbb5f01c5",4362862592,""]],"timesThrottled":0,"pageIns":77,"waitInfo":["thread 3121: mach_msg receive on port set 0xbc3076d67e83cd3b"],"timesDidThrottle":0,"procname":"remotepairingdeviced","copyOnWriteFaults":56,"threadById":{"3121":{"id":3121,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","user_usec":57657,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[132,41244],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.057657832999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[132,41244],[2,624855392]],"systemTime":0,"schedPriority":30},"3225":{"id":3225,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":754,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00075425000000000004,"waitEvent":[1,13560469137796411019],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"3329":{"id":3329,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":299,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000299458,"waitEvent":[1,13560469137797043835],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":736,"userTimeTask":0.058711540999999999,"pid":217,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1770056}, + "225" : {"timesThrottled":0,"pageIns":456,"waitInfo":["thread 3124: mach_msg receive on port set 0xbc3076d67e83ca3b"],"timesDidThrottle":0,"procname":"IMDPersistenceAgent","copyOnWriteFaults":104,"threadById":{"3124":{"id":3124,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":37898,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[133,11800],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.037898332999999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"10351":{"id":10351,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":11,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.1666e-05,"waitEvent":[1,13560469137796361211],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":3758,"userTimeTask":0.66841645800000005,"pid":225,"systemTimeTask":0,"residentMemoryBytes":6242968}, + "216" : {"timesThrottled":0,"pageIns":106,"waitInfo":["thread 3125: mach_msg receive on port set 0xbc3076d67e83ccdb"],"timesDidThrottle":0,"procname":"ind","copyOnWriteFaults":86,"threadById":{"10607":{"id":10607,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2722,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.002722375,"waitEvent":[1,13560469137796368027],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3125":{"id":3125,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":72006,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[134,36868],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.072006874999999998,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2332,"userTimeTask":0.40217162499999998,"pid":216,"systemTimeTask":0,"residentMemoryBytes":4686408}, + "226" : {"timesThrottled":0,"pageIns":30,"waitInfo":["thread 3126: mach_msg receive on port set 0xbc3076d67e83cb2b"],"timesDidThrottle":0,"procname":"cdpd","copyOnWriteFaults":54,"threadById":{"10444":{"id":10444,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":15,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.5208000000000001e-05,"waitEvent":[1,13560469137796478259],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3126":{"id":3126,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":102598,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[135,14160],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.10259837500000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":1182,"userTimeTask":0.149841583,"pid":226,"systemTimeTask":0,"residentMemoryBytes":2032200}, + "218" : {"resampled_images":[["74e9e77a-b474-3a08-8137-df7001b41d4c",4367974400,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4368744448,""]],"timesThrottled":0,"pageIns":94,"timesDidThrottle":0,"procname":"adprivacyd","copyOnWriteFaults":69,"threadById":{"3749":{"id":3749,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":27,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.7625000000000001e-05,"waitEvent":[1,13560469137793451691],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"10122":{"id":10122,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3854,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0038549159999999999,"waitEvent":[1,13560469137786162499],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":2507,"userTimeTask":0.72640541599999997,"pid":218,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":4522568}, + "232" : {"resampled_images":[["16428c33-aa14-3127-b1b4-22f29ccf2781",4306960384,""]],"timesThrottled":0,"pageIns":3,"waitInfo":["thread 3131: mach_msg receive on port set 0xbc3076d67e83c85b"],"timesDidThrottle":0,"procname":"UARPUpdaterServiceAFU","copyOnWriteFaults":36,"threadById":{"3131":{"id":3131,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":16163,"notice":"Unmapped pages caused truncated backtrace; re-sampled 14 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[136,10172],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.016163625000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[136,10172],[2,624855392]],"systemTime":0,"schedPriority":0},"3558":{"id":3558,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":7.1659999999999997e-06,"waitEvent":[1,13560469137790810443],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":351,"userTimeTask":0.021606040999999999,"pid":232,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1114696}, + "229" : {"resampled_images":[["47f79bd9-99c4-3778-96b0-b94e13af0f6e",4375101440,""]],"timesThrottled":0,"pageIns":23,"timesDidThrottle":0,"procname":"biomesyncd","copyOnWriteFaults":49,"threadById":{"7728":{"id":7728,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":16,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.5999999999999999e-05,"waitEvent":[1,13560469137796533571],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3579":{"id":3579,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.0208e-05,"waitEvent":[1,13560469137793401499],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":925,"userTimeTask":0.061399165999999998,"pid":229,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1704520}, + "220" : {"resampled_images":[["5c9d6668-1be0-35b7-acac-64ded664a51d",4303601664,""]],"timesThrottled":0,"pageIns":11,"waitInfo":["thread 3134: mach_msg receive on port set 0xbc3076d67e83c88b"],"timesDidThrottle":0,"procname":"CloudKeychainProxy","copyOnWriteFaults":41,"threadById":{"10350":{"id":10350,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":18,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.8040999999999999e-05,"waitEvent":[1,13560469137796388475],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3134":{"id":3134,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":31912,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[137,41536],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.031912749999999997,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[137,41536],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":1078,"userTimeTask":0.099057124999999996,"pid":220,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1884744}, + "231" : {"resampled_images":[["19903a02-67e3-3282-8a2b-29f5136d04c3",4372774912,""]],"timesThrottled":0,"pageIns":10,"waitInfo":["thread 3135: mach_msg receive on port set 0xbc3076d67e83c8bb"],"timesDidThrottle":0,"procname":"UARPUpdaterServiceHID","copyOnWriteFaults":38,"threadById":{"3135":{"id":3135,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":18800,"notice":"Unmapped pages caused truncated backtrace; re-sampled 14 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[138,18764],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.018800625000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[138,18764],[2,624855392]],"systemTime":0,"schedPriority":0},"3209":{"id":3209,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1009,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001009458,"waitEvent":[1,13560469137796417835],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":504,"userTimeTask":0.029679750000000001,"pid":231,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1327688}, + "248" : {"resampled_images":[["08c95c98-63e4-304a-99d8-c1da86b0787e",4302192640,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4303093760,""]],"timesThrottled":0,"pageIns":73,"waitInfo":["thread 3136: mach_msg receive on port set 0xbc3076d67e83cd9b"],"timesDidThrottle":0,"procname":"StatusKitAgent","copyOnWriteFaults":72,"threadById":{"10360":{"id":10360,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3062,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0030628750000000001,"waitEvent":[1,13560469137787633651],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3136":{"id":3136,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":125146,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[139,12700],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.12514683300000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[139,12700],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":2739,"userTimeTask":1.180560125,"pid":248,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":4604568}, + "235" : {"timesThrottled":0,"pageIns":461,"timesDidThrottle":0,"procname":"parsecd","copyOnWriteFaults":113,"threadById":{"3366":{"id":3366,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.0874999999999999e-05,"waitEvent":[1,13560469137793404403],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4},"11569":{"id":11569,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1636,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00163675,"waitEvent":[1,13560469137796468035],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":3861,"userTimeTask":1.235414083,"pid":235,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":5440112}, + "210" : {"timesThrottled":0,"pageIns":553,"waitInfo":["thread 3138: mach_msg receive on port set 0xbc3076d67e83cd6b"],"timesDidThrottle":0,"procname":"remindd","copyOnWriteFaults":125,"threadById":{"3138":{"id":3138,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":586310,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[140,529292],[140,522292],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.58631,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"3491":{"id":3491,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":209166,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.20916633300000001,"waitEvent":[1,13560469137797330227],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3539":{"id":3539,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":119302,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.119302958,"waitEvent":[1,13560469137797281075],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3676":{"id":3676,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137789115683],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3540":{"id":3540,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":111085,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.11108591600000001,"waitEvent":[1,13560469137797282779],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"3677":{"id":3677,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137785125851],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":3935,"userTimeTask":1.4857845409999999,"pid":210,"systemTimeTask":0,"residentMemoryBytes":7733832}, + "250" : {"resampled_images":[["067d64c0-99b5-3316-a211-b85861be2e12",4338008064,""]],"timesThrottled":0,"pageIns":1895,"turnstileInfo":["thread 7775: turnstile has unknown inheritor"],"waitInfo":["thread 3139: mach_msg receive on port set 0xbc3076d67e83c7cb","thread 7775: mach_msg receive on port 0xbc3076d76568fddb name 0x1a03"],"timesDidThrottle":0,"procname":"ReportCrash","copyOnWriteFaults":54,"threadById":{"7775":{"id":7775,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":41,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124431228],[141,101980],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":4.1791e-05,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"7781":{"id":7781,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 2 frames","user_usec":415,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.00041516600000000002,"waitEvent":[1,13560469137777684107],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665240]],"systemTime":0,"schedPriority":31},"3139":{"id":3139,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","user_usec":19116,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[141,110404],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.019116416000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[141,110404],[2,624855392]],"systemTime":0,"schedPriority":28}},"pageFaults":6282,"userTimeTask":2.6207629579999998,"pid":250,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":3850904}, + "249" : {"timesThrottled":0,"pageIns":48,"waitInfo":["thread 3140: mach_msg receive on port set 0xbc3076d67e83c97b","thread 3629: mach_msg receive on port set 0xbc3076d67e83d6fb"],"timesDidThrottle":0,"procname":"AssetCacheLocatorService","copyOnWriteFaults":52,"threadById":{"3140":{"id":3140,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":31884,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[142,57556],[142,18816],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.031884957999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[142,57556],[142,18816],[2,624855392]],"systemTime":0,"schedPriority":4},"11759":{"id":11759,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":507,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00050737500000000001,"waitEvent":[1,13560469137793145491],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3629":{"id":3629,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":661,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00066191600000000002,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"}},"pageFaults":1356,"userTimeTask":0.27929045800000002,"pid":249,"systemTimeTask":0,"residentMemoryBytes":2376264}, + "230" : {"timesThrottled":0,"pageIns":299,"waitInfo":["thread 3141: mach_msg receive on port set 0xbc3076d67e83cd0b"],"timesDidThrottle":0,"procname":"fileproviderd","copyOnWriteFaults":83,"threadById":{"9776":{"id":9776,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1378,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0013782079999999999,"waitEvent":[1,13560469137792945475],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3141":{"id":3141,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":66532,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[143,13220],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.066532124999999998,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2496,"userTimeTask":1.3321135829999999,"pid":230,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":4309616}, + "233" : {"resampled_images":[["1e5ab3bc-9640-359d-98cb-e7fdd63d9ee7",4362698752,""]],"timesThrottled":0,"pageIns":25,"waitInfo":["thread 3143: mach_msg receive on port set 0xbc3076d67e83c7fb"],"timesDidThrottle":0,"procname":"UARPUpdaterServiceLegacyAudio","copyOnWriteFaults":41,"threadById":{"3143":{"id":3143,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":31688,"notice":"Unmapped pages caused truncated backtrace; re-sampled 14 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[144,19060],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.031688124999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[144,19060],[2,624855392]],"systemTime":0,"schedPriority":0},"3183":{"id":3183,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":9.5000000000000005e-06,"waitEvent":[1,13560469137794357907],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":676,"userTimeTask":0.044708916000000001,"pid":233,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1524296}, + "246" : {"resampled_images":[["911d26e2-96f6-3cc5-a201-24c5dc2cd310",4363157504,""]],"timesThrottled":0,"pageIns":41,"waitInfo":["thread 3144: mach_msg receive on port set 0xbc3076d67e83c8eb","thread 3238: mach_msg receive on port set 0xbc3076d67e83ca6b"],"timesDidThrottle":0,"procname":"captiveagent","copyOnWriteFaults":44,"threadById":{"3277":{"id":3277,"name":"com.apple.CFSocket.private","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":267,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 4 frames","basePriority":4,"userFrames":[[2,1124419244],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00026770800000000002,"continuation":[0,68855315520],"resampledUserFrames":[[2,1124419244],[2,115193540],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"3144":{"id":3144,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":28419,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[145,13944],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0284195,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[145,13944],[2,624855392]],"systemTime":0,"schedPriority":4},"3238":{"id":3238,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":139,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0001395,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"3200":{"id":3200,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8969,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0089693329999999995,"waitEvent":[1,13560469137794081083],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":531,"userTimeTask":0.040930291000000001,"pid":246,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1507912}, + "236" : {"resampled_images":[["6aa1337e-acbc-368c-88c9-ad788454d77e",4341989376,""]],"timesThrottled":0,"pageIns":3,"timesDidThrottle":0,"procname":"countryd","copyOnWriteFaults":36,"threadById":{"3170":{"id":3170,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1754,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001754666,"waitEvent":[1,13560469137788472643],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"3174":{"id":3174,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":30,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.0290999999999998e-05,"waitEvent":[1,13560469137793410211],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":442,"userTimeTask":0.022131291000000001,"pid":236,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1229344}, + "247" : {"pid":247,"residentMemoryBytes":2163272,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":28,"pageFaults":1282,"userTimeTask":0.124461708,"procname":"ThreeBarsXPCService","copyOnWriteFaults":51,"threadById":{"10479":{"id":10479,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2085,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.002085291,"waitEvent":[1,13560469137788519043],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3189":{"id":3189,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.9457999999999999e-05,"waitEvent":[1,13560469137793413115],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "234" : {"resampled_images":[["6378924e-99bd-3555-8c25-def16e875e1a",4309565440,""]],"timesThrottled":0,"pageIns":26,"timesDidThrottle":0,"procname":"UARPUpdaterServiceUSBPD","copyOnWriteFaults":38,"threadById":{"3176":{"id":3176,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":14,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.4666e-05,"waitEvent":[1,13560469137791246483],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"3178":{"id":3178,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6640,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0066409579999999998,"waitEvent":[1,13560469137792936955],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":474,"userTimeTask":0.034536790999999997,"pid":234,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1311264}, + "254" : {"timesThrottled":0,"pageIns":635,"waitInfo":["thread 3182: mach_msg receive on port set 0xbc3076d67e83cdfb"],"timesDidThrottle":0,"procname":"assetsd","copyOnWriteFaults":92,"threadById":{"9801":{"id":9801,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":193,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00019387500000000001,"waitEvent":[1,13560469137797040427],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3182":{"id":3182,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":67563,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[146,26280],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.067563290999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[146,26280],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":4150,"userTimeTask":1.441859625,"pid":254,"systemTimeTask":0,"residentMemoryBytes":9093744}, + "255" : {"resampled_images":[["a28bcf3d-f843-36d0-bb86-0b4a8a869148",4364566528,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4366106624,""]],"timesThrottled":0,"pageIns":446,"waitInfo":["thread 3207: mach_msg receive on port set 0xbc3076d67e83c91b"],"timesDidThrottle":0,"suspendCount":1,"procname":"GeneralMapsWidget","copyOnWriteFaults":132,"threadById":{"3212":{"id":3212,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":40081,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.040081125000000002,"waitEvent":[1,13560469137796394429],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3224":{"id":3224,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8565,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0085652909999999992,"waitEvent":[1,13560469137796402949],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3824":{"id":3824,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8555,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0085557080000000004,"waitEvent":[1,13560469137793932373],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3211":{"id":3211,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":17677,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.017677208,"waitEvent":[1,13560469137796392725],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3869":{"id":3869,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":118,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000118583,"waitEvent":[1,13560469137785016069],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3207":{"id":3207,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":201947,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.20194758300000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":0}},"pageFaults":4539,"userTimeTask":0.28941024999999998,"pid":255,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":7488152}, + "256" : {"timesThrottled":0,"pageIns":97,"waitInfo":["thread 3240: mach_msg receive on port set 0xbc3076d67e83ca9b"],"timesDidThrottle":0,"procname":"destinationd","copyOnWriteFaults":92,"threadById":{"10919":{"id":10919,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":16862,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.016862708000000001,"waitEvent":[1,13560469137788487979],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3240":{"id":3240,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":122950,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[147,231944],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.12295025,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2551,"userTimeTask":0.435202166,"pid":256,"systemTimeTask":0,"residentMemoryBytes":3899976}, + "257" : {"resampled_images":[["790bef1a-1770-35b2-820a-dd8d62e15933",4334698496,""]],"timesThrottled":0,"pageIns":25,"timesDidThrottle":0,"procname":"filecoordinationd","copyOnWriteFaults":40,"threadById":{"10049":{"id":10049,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":1503,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.0015037080000000001,"waitEvent":[1,13560469137793926811],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"3269":{"id":3269,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":22,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.2416e-05,"waitEvent":[1,13560469137793458323],"continuation":[0,68855315520],"systemTime":0,"schedPriority":31}},"pageFaults":2139,"userTimeTask":0.43346154100000001,"pid":257,"systemTimeTask":0,"flags":["dirty","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1933856}, + "258" : {"resampled_images":[["59b58c8d-22f4-3a06-8960-a07f0890de19",4375625728,""]],"timesThrottled":0,"pageIns":126,"waitInfo":["thread 3274: mach_msg receive on port set 0xbc3076d67e83cc4b"],"timesDidThrottle":0,"procname":"storekitd","copyOnWriteFaults":71,"threadById":{"3274":{"id":3274,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":62902,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[148,584776],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.062902,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"3305":{"id":3305,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19003,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.019003040999999998,"waitEvent":[1,13560469137796457811],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1806,"userTimeTask":0.26263420799999998,"pid":258,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":3834480}, + "259" : {"pid":259,"residentMemoryBytes":1360456,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":5,"pageFaults":650,"userTimeTask":0.026861875,"procname":"WiFiCloudAssetsXPCService","copyOnWriteFaults":40,"threadById":{"3285":{"id":3285,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.9375e-05,"waitEvent":[1,13560469137791313059],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4},"3287":{"id":3287,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2342,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.002342083,"waitEvent":[1,13560469137794031931],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "260" : {"resampled_images":[["c99bc971-761a-32b9-9d4b-c7f60074e9f9",4336353280,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4337401856,""]],"timesThrottled":0,"pageIns":44,"waitInfo":["thread 3313: mach_msg receive on port set 0xbc3076d67e83ccab"],"timesDidThrottle":0,"suspendCount":1,"procname":"ScreenTimeWidgetExtension","copyOnWriteFaults":117,"threadById":{"3317":{"id":3317,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5949,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0059494999999999999,"waitEvent":[1,13560469137792952741],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3313":{"id":3313,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":221351,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.221351833,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4},"3318":{"id":3318,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1643,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0016431659999999999,"waitEvent":[1,13560469137794022157],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":2035,"userTimeTask":0.247603083,"pid":260,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":6668912}, + "261" : {"resampled_images":[["ee15668a-06ef-3195-a5d2-b76d947315cc",4330782720,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4333617152,""]],"timesThrottled":0,"pageIns":545,"waitInfo":["thread 3330: mach_msg receive on port set 0xbc3076d67e83cdcb","thread 3380: mach_msg receive on port set 0xbc3076d67e83cf1b"],"timesDidThrottle":0,"suspendCount":1,"procname":"NewsToday2","copyOnWriteFaults":166,"threadById":{"3945":{"id":3945,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":75,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":7.5290999999999995e-05,"waitEvent":[1,13560469137789005901],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3334":{"id":3334,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":82687,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.082687582999999995,"waitEvent":[1,13560469137797035765],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3380":{"id":3380,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":191,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00019124999999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"3338":{"id":3338,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":30513,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.030513958000000001,"waitEvent":[1,13560469137797037469],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3944":{"id":3944,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":119,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000119916,"waitEvent":[1,13560469137784985661],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3330":{"id":3330,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":411574,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.41157450000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4},"3382":{"id":3382,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":226717,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.22671766600000001,"waitEvent":[1,13560469137796960661],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":6352,"userTimeTask":0.90459858299999996,"pid":261,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":14058176}, + "262" : {"resampled_images":[["b6068200-ed51-3558-aabf-b804404d0165",4311580672,""]],"timesThrottled":0,"pageIns":23,"waitInfo":["thread 3344: mach_msg receive on port set 0xbc3076d67e83ce2b"],"timesDidThrottle":0,"procname":"AppSSODaemon","copyOnWriteFaults":48,"threadById":{"3344":{"id":3344,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":53006,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[149,15852],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.053006040999999997,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[149,15852],[2,624855392]],"systemTime":0,"schedPriority":4},"3354":{"id":3354,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":6.7909999999999999e-06,"waitEvent":[1,13560469137796965715],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":833,"userTimeTask":0.060027416,"pid":262,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1786480}, + "263" : {"timesThrottled":0,"pageIns":82,"waitInfo":["thread 3352: mach_msg receive on port set 0xbc3076d67e83ce5b"],"timesDidThrottle":0,"procname":"coreauthd","copyOnWriteFaults":58,"threadById":{"3352":{"id":3352,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":22851,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[150,21268],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.022851333000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[150,21268],[2,624855392]],"systemTime":0,"schedPriority":4},"10747":{"id":10747,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":98,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":9.8083000000000003e-05,"waitEvent":[1,13560469137788312867],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1893,"userTimeTask":0.17672341599999999,"pid":263,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":2441840}, + "264" : {"resampled_images":[["2c1817e5-e664-3e3a-bfc8-de9ac4ca762e",4342923264,""],["a774ef47-f46e-3429-9680-8b56feb22ba3",4343742464,""],["080847a2-a7c7-30f9-a9bc-06b954a2a3a5",4343824384,""]],"timesThrottled":0,"pageIns":31,"waitInfo":["thread 3356: mach_msg receive on port set 0xbc3076d67e83cebb"],"timesDidThrottle":0,"procname":"GSSCred","copyOnWriteFaults":40,"threadById":{"3362":{"id":3362,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":6712,"basePriority":20,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.0067129579999999998,"waitEvent":[1,13560469137796972531],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":20},"3356":{"id":3356,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","user_usec":36317,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[151,11600],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.036317500000000003,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[151,11600],[2,624855392]],"systemTime":0,"schedPriority":31}},"pageFaults":546,"userTimeTask":0.047058791000000003,"pid":264,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1573448}, + "265" : {"timesThrottled":0,"pageIns":2,"waitInfo":["thread 3391: mach_msg receive on port set 0xbc3076d67e83cfab"],"timesDidThrottle":0,"procname":"com.apple.FaceTime.FTConversati","copyOnWriteFaults":46,"threadById":{"11893":{"id":11893,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":5,"basePriority":37,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":5.3750000000000002e-06,"waitEvent":[1,13560469137794047267],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"3391":{"id":3391,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":48075,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[152,17856],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.048075040999999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31}},"pageFaults":830,"userTimeTask":0.056323208,"pid":265,"systemTimeTask":0,"flags":["boosted"],"residentMemoryBytes":1786440}, + "266" : {"timesThrottled":0,"pageIns":27,"waitInfo":["thread 3421: mach_msg receive on port set 0xbc3076d67e83d09b"],"timesDidThrottle":0,"procname":"pasted","copyOnWriteFaults":60,"threadById":{"3421":{"id":3421,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":38301,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[153,46544],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.038301791000000002,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"12101":{"id":12101,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137785215635],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":2065,"userTimeTask":0.10998258299999999,"pid":266,"systemTimeTask":0,"residentMemoryBytes":2769680}, + "268" : {"resampled_images":[["cfea3265-c58d-3eca-90cb-f9d1f1b72937",4298309632,""]],"timesThrottled":0,"pageIns":43,"waitInfo":["thread 3436: mach_msg receive on port set 0xbc3076d67e83d15b"],"timesDidThrottle":0,"procname":"medialibraryd","copyOnWriteFaults":49,"threadById":{"6178":{"id":6178,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":5.7910000000000001e-06,"waitEvent":[1,13560469137793940443],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3436":{"id":3436,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":27912,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[154,13328],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.027912875,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[154,13328],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":823,"userTimeTask":0.115639166,"pid":268,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2540104}, + "269" : {"resampled_images":[["ed3fe39a-a4c9-3a0a-a357-2373b9f8618e",4298719232,""]],"timesThrottled":0,"pageIns":2,"timesDidThrottle":0,"procname":"extensionkitservice","copyOnWriteFaults":43,"threadById":{"3457":{"id":3457,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.9415999999999998e-05,"waitEvent":[1,13560469137793514323],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"3951":{"id":3951,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":196,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000196916,"waitEvent":[1,13560469137786312315],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":685,"userTimeTask":0.042284374999999999,"pid":269,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1524256}, + "270" : {"resampled_images":[["49a8fa1b-8d78-3bf2-85fd-d85066f5f4d3",4370923520,""]],"timesThrottled":0,"pageIns":93,"waitInfo":["thread 3460: mach_msg receive on port set 0xbc3076d67e83d2ab"],"timesDidThrottle":0,"procname":"MessagesActionExtension","copyOnWriteFaults":55,"threadById":{"4560":{"id":4560,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":235,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.00023558300000000001,"waitEvent":[1,13560469137794326843],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":31},"3460":{"id":3460,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","user_usec":41672,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.041672874999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":31}},"pageFaults":956,"userTimeTask":0.071626458000000004,"pid":270,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2196080}, + "271" : {"resampled_images":[["31b9cad4-047e-36b0-a3b9-40810ae89ba5",4376461312,""]],"timesThrottled":0,"pageIns":31,"waitInfo":["thread 3461: mach_msg receive on port set 0xbc3076d67e83d2db"],"timesDidThrottle":0,"procname":"CalendarFocusConfigurationExten","copyOnWriteFaults":58,"threadById":{"4562":{"id":4562,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":188,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.000188708,"waitEvent":[1,13560469137779074387],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":31},"3461":{"id":3461,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","user_usec":48823,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.048823125000000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":31}},"pageFaults":1129,"userTimeTask":0.074857791000000007,"pid":271,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2245232}, + "272" : {"resampled_images":[["08d2a526-a645-3b2b-b448-ccf5168f38d4",4340809728,""]],"timesThrottled":0,"pageIns":22,"waitInfo":["thread 3469: mach_msg receive on port set 0xbc3076d67e83d30b"],"timesDidThrottle":0,"procname":"MailShortcutsExtension","copyOnWriteFaults":60,"threadById":{"4563":{"id":4563,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":122,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.00012208299999999999,"waitEvent":[1,13560469137788550107],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":31},"3469":{"id":3469,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","user_usec":53285,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.053285875000000003,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":31}},"pageFaults":1216,"userTimeTask":0.080528291000000002,"pid":272,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2376304}, + "273" : {"timesThrottled":0,"pageIns":158,"waitInfo":["thread 3479: mach_msg receive on port set 0xbc3076d67e83d33b"],"timesDidThrottle":0,"procname":"SafariBookmarksSyncAgent","copyOnWriteFaults":76,"threadById":{"3479":{"id":3479,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":211355,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,772079036],[155,17640],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.21135524999999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"7249":{"id":7249,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2206,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0022061659999999999,"waitEvent":[1,13560469137777547923],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":2916,"userTimeTask":0.53655662500000001,"pid":273,"systemTimeTask":0,"residentMemoryBytes":4080320}, + "274" : {"resampled_images":[["24e62409-ac44-3f93-8074-af3522593249",4333993984,""]],"timesThrottled":0,"pageIns":2418,"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.WebContent","copyOnWriteFaults":110,"threadById":{"7193":{"id":7193,"name":"JIT Worklist Helper Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3222,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0032225000000000001,"waitEvent":[1,13560469137792947629],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"7037":{"id":7037,"name":"JIT Worklist Helper Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3860,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0038603330000000001,"waitEvent":[1,13560469137788440981],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"3482":{"id":3482,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4106782,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":4.1067822500000002,"waitEvent":[1,13560469137797330677],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392]],"systemTime":0,"schedPriority":4},"7035":{"id":7035,"name":"JIT Worklist Helper Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20523,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.020523083000000001,"waitEvent":[1,13560469137790308757],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"3497":{"id":3497,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":275483,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 5 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.27548379099999998,"waitEvent":[1,13560469137797332381],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,440017700],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6697":{"id":6697,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":793,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00079391599999999998,"waitEvent":[1,13560469137785127555],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":17753,"userTimeTask":5.9407558749999998,"pid":274,"systemTimeTask":0,"flags":["suspended","frozen","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":96748784}, + "275" : {"resampled_images":[["2e012a3e-6252-3b25-93d6-e6d103d07180",4343726080,""]],"timesThrottled":0,"pageIns":3,"timesDidThrottle":0,"procname":"com.apple.accessibility.mediaac","copyOnWriteFaults":34,"threadById":{"3489":{"id":3489,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":24,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.4457999999999999e-05,"waitEvent":[1,13560469137774532939],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"3948":{"id":3948,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2206,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0022067499999999999,"waitEvent":[1,13560469137778990371],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":403,"userTimeTask":0.018297166,"pid":275,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1262112}, + "278" : {"resampled_images":[["4a946761-2f8c-3d3f-b7cf-2fddffe870c3",4335206400,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4335960064,""]],"timesThrottled":0,"pageIns":150,"waitInfo":["thread 3522: mach_msg receive on port set 0xbc3076d67e83d3cb"],"timesDidThrottle":0,"procname":"financed","copyOnWriteFaults":72,"threadById":{"7273":{"id":7273,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":51605,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.051605666000000001,"waitEvent":[1,13560469137788476051],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"3522":{"id":3522,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":119977,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[156,11520],[156,9312],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.119977375,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[156,11520],[156,9312],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":2947,"userTimeTask":1.6917005409999999,"pid":278,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":5554760}, + "280" : {"resampled_images":[["a204c765-a313-352b-a85d-a2a8219bdabd",4295688192,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4296671232,""]],"timesThrottled":0,"pageIns":53,"waitInfo":["thread 3563: mach_msg receive on port set 0xbc3076d67e83d4bb"],"timesDidThrottle":0,"suspendCount":1,"procname":"TipsWidget","copyOnWriteFaults":116,"threadById":{"3563":{"id":3563,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":55948,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.055948083000000003,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4},"3568":{"id":3568,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":12,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.275e-05,"waitEvent":[1,13560469137792798019],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3566":{"id":3566,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9886,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0098862080000000005,"waitEvent":[1,13560469137789135867],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"3567":{"id":3567,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4161,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0041615410000000004,"waitEvent":[1,13560469137788943773],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":1577,"userTimeTask":0.070008582999999999,"pid":280,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":5309040}, + "281" : {"resampled_images":[["49453667-90e2-35f8-a420-aab5c65cbc72",4306354176,""]],"timesThrottled":0,"pageIns":97,"waitInfo":["thread 3571: mach_msg receive on port set 0xbc3076d67e83d51b"],"timesDidThrottle":0,"suspendCount":1,"procname":"RemindersWidgetExtension","copyOnWriteFaults":74,"threadById":{"3574":{"id":3574,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4346,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.004346791,"waitEvent":[1,13560469137786294021],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3571":{"id":3571,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":49410,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.049410957999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4},"3573":{"id":3573,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2980,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0029806250000000002,"waitEvent":[1,13560469137789083757],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":1627,"userTimeTask":0.056738375000000001,"pid":281,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":3424880}, + "282" : {"resampled_images":[["ffb179b5-682d-3588-8ca4-a5b3d153d2a9",4334764032,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4335239168,""]],"timesThrottled":0,"pageIns":293,"waitInfo":["thread 3576: mach_msg receive on port set 0xbc3076d67e83d54b"],"timesDidThrottle":0,"procname":"photoanalysisd","copyOnWriteFaults":71,"threadById":{"8356":{"id":8356,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":139,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000139958,"waitEvent":[1,13560469137796949987],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3576":{"id":3576,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":50644,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[157,13468],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.050644750000000002,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2159,"userTimeTask":0.45188608299999999,"pid":282,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":4473416}, + "283" : {"resampled_images":[["70547228-1195-3b39-868d-965475c5d861",4366729216,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4367990784,""]],"timesThrottled":0,"pageIns":45,"waitInfo":["thread 3584: mach_msg receive on port set 0xbc3076d67e83d57b"],"timesDidThrottle":0,"suspendCount":1,"procname":"WorldClockWidget","copyOnWriteFaults":127,"threadById":{"3586":{"id":3586,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3774,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0037743329999999999,"waitEvent":[1,13560469137792909749],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3585":{"id":3585,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13438,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.013438583,"waitEvent":[1,13560469137788995677],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3584":{"id":3584,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":134187,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.13418725000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":2364,"userTimeTask":0.15383308300000001,"pid":283,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":6111856}, + "244" : {"pid":244,"residentMemoryBytes":2523720,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":22,"pageFaults":1675,"userTimeTask":0.55475370800000001,"procname":"privacyaccountingd","copyOnWriteFaults":49,"threadById":{"12048":{"id":12048,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5451,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0054514159999999997,"waitEvent":[1,13560469137790238707],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3592":{"id":3592,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.1416e-05,"waitEvent":[1,13560469137793374539],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "284" : {"resampled_images":[["88a510a4-1425-3132-bc6d-18b1cde784f8",4306370560,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4307222528,""]],"timesThrottled":0,"pageIns":11,"timesDidThrottle":0,"procname":"mmaintenanced","copyOnWriteFaults":39,"threadById":{"3688":{"id":3688,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":22,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.2374999999999998e-05,"waitEvent":[1,13560469137793383251],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"3649":{"id":3649,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":7.8329999999999994e-06,"waitEvent":[1,13560469137796552315],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":477,"userTimeTask":0.048258083,"pid":284,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1442376}, + "285" : {"timesThrottled":0,"pageIns":26,"waitInfo":["thread 3631: mach_msg receive on port set 0xbc3076d67e83d72b"],"timesDidThrottle":0,"procname":"com.apple.StreamingUnzipService","copyOnWriteFaults":36,"threadById":{"11761":{"id":11761,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":6.6660000000000002e-06,"waitEvent":[1,13560469137785167139],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3631":{"id":3631,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":24287,"notice":"Unmapped pages caused truncated backtrace; re-sampled 14 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[158,8064],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.024287083000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[158,8064],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":3714,"userTimeTask":1.3259422080000001,"pid":285,"systemTimeTask":0,"flags":["dirty"],"residentMemoryBytes":1589792}, + "286" : {"resampled_images":[["df7cf7df-b86e-3092-b946-bcb373927b27",4296376320,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4299063296,""]],"timesThrottled":0,"pageIns":349,"waitInfo":["thread 3667: mach_msg receive on port set 0xbc3076d67e83d87b"],"timesDidThrottle":0,"suspendCount":1,"procname":"MobileCal","copyOnWriteFaults":101,"threadById":{"3662":{"id":3662,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4078,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0040786249999999998,"waitEvent":[1,13560469137785031405],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3708":{"id":3708,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4743,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0047431249999999999,"waitEvent":[1,13560469137792758885],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3666":{"id":3666,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":272,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00027250000000000001,"waitEvent":[1,13560469137793038069],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3653":{"id":3653,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":202816,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[159,1007140],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.20281637499999999,"waitEvent":[1,13560469137796986613],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[159,1007140],[2,624855392]],"systemTime":0,"schedPriority":4},"3663":{"id":3663,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3657,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0036579580000000002,"waitEvent":[1,13560469137789052899],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"3709":{"id":3709,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3021,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0030219579999999999,"waitEvent":[1,13560469137792757181],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3667":{"id":3667,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1628,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0016288749999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"3664":{"id":3664,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":896,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000896958,"waitEvent":[1,13560469137790282747],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"3661":{"id":3661,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":12104,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.012104,"waitEvent":[1,13560469137796496141],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3665":{"id":3665,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6466,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.006466833,"waitEvent":[1,13560469137790286605],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":3670,"userTimeTask":0.23968720800000001,"pid":286,"systemTimeTask":0,"flags":["suspended","frozen","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":14058416}, + "279" : {"pid":279,"residentMemoryBytes":2245192,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":166,"pageFaults":2150,"userTimeTask":1.2889443330000001,"procname":"rtcreportingd","copyOnWriteFaults":56,"threadById":{"8269":{"id":8269,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":38046,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.038046457999999998,"waitEvent":[1,13560469137796466331],"continuation":[0,68854897416],"qosOverride":"QOS_CLASS_DEFAULT","systemTime":0,"schedPriority":4},"3898":{"id":3898,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":26,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.675e-05,"waitEvent":[1,13560469137793328291],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "198" : {"timesThrottled":0,"pageIns":34,"waitInfo":["thread 3696: mach_msg receive on port set 0xbc3076d67e83906b"],"timesDidThrottle":0,"procname":"webbookmarksd","copyOnWriteFaults":59,"threadById":{"3696":{"id":3696,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":88675,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,772079036],[160,22472],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.088675291000000003,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"7993":{"id":7993,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":951,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00095166599999999999,"waitEvent":[1,13560469137793921699],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1789,"userTimeTask":0.157150291,"pid":198,"systemTimeTask":0,"residentMemoryBytes":2163272}, + "288" : {"resampled_images":[["eec9f8bd-a1bd-33ee-b968-8d24c2aa24ec",4376707072,""]],"timesThrottled":0,"pageIns":17,"timesDidThrottle":0,"procname":"com.apple.MobileSoftwareUpdate.","copyOnWriteFaults":51,"threadById":{"4001":{"id":4001,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":170079,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.17007979100000001,"waitEvent":[1,13560469137794239811],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":1},"4002":{"id":4002,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":111,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00011158300000000001,"waitEvent":[1,13560469137793337003],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":644,"userTimeTask":0.20653025,"pid":288,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1524296}, + "139" : {"pid":139,"residentMemoryBytes":3015280,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":62,"pageFaults":1953,"userTimeTask":0.29068116599999999,"procname":"UsageTrackingAgent","copyOnWriteFaults":75,"threadById":{"4276":{"id":4276,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":30,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.0624999999999999e-05,"waitEvent":[1,13560469137793313771],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4},"10184":{"id":10184,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":7.2080000000000003e-06,"waitEvent":[1,13560469137793114427],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "287" : {"resampled_images":[["5de58e22-94be-3ee5-aae8-82e782cc1981",4367007744,""]],"timesThrottled":0,"pageIns":2,"waitInfo":["thread 3737: mach_msg receive on port set 0xbc3076d67e83dbab"],"timesDidThrottle":0,"procname":"UserFontManager","copyOnWriteFaults":41,"threadById":{"3737":{"id":3737,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":17666,"notice":"Unmapped pages caused truncated backtrace; re-sampled 14 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[161,14668],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.017666207999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[161,14668],[2,624855392]],"systemTime":0,"schedPriority":4},"3785":{"id":3785,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20142,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.02014225,"waitEvent":[1,13560469137793100795],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":711,"userTimeTask":0.050479250000000003,"pid":287,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1524256}, + "290" : {"resampled_images":[["419cf898-723a-3739-95e7-551f26da78ff",4304224256,""]],"timesThrottled":0,"pageIns":28,"waitInfo":["thread 3744: mach_msg receive on port set 0xbc3076d67e83bc8b"],"timesDidThrottle":0,"procname":"com.apple.sbd","copyOnWriteFaults":43,"threadById":{"3950":{"id":3950,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9474,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0094741249999999999,"waitEvent":[1,13560469137786296979],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"3744":{"id":3744,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":33028,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[162,301720],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.033028583,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[162,301720],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":585,"userTimeTask":0.043101082999999998,"pid":290,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1425992}, + "291" : {"timesThrottled":0,"pageIns":521,"waitInfo":["thread 3755: mach_msg receive on port set 0xbc3076d67e83dc3b"],"timesDidThrottle":0,"procname":"aggregated","copyOnWriteFaults":95,"threadById":{"11856":{"id":11856,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","user_usec":159344,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.159344708,"waitEvent":[1,13560469137793143787],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3755":{"id":3755,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":1579929,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[163,15812],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.579929583,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"12012":{"id":12012,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","user_usec":49465,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.049465333,"waitEvent":[1,13560469137796385067],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12013":{"id":12013,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","user_usec":121549,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.121549791,"waitEvent":[1,13560469137787663011],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12056":{"id":12056,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","user_usec":2563,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0025634159999999998,"waitEvent":[1,13560469137790311715],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":6563,"userTimeTask":14.861272165999999,"pid":291,"systemTimeTask":0,"flags":["boosted","dirty"],"residentMemoryBytes":8258160}, + "292" : {"timesThrottled":0,"pageIns":64,"waitInfo":["thread 3770: mach_msg receive on port set 0xbc3076d67e83dbdb"],"timesDidThrottle":0,"procname":"bookassetd","copyOnWriteFaults":69,"threadById":{"3770":{"id":3770,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":99893,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[164,16772],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.099893166000000005,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"5315":{"id":5315,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":11064,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.011064541000000001,"waitEvent":[1,13560469137788991819],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1673,"userTimeTask":0.344389375,"pid":292,"systemTimeTask":0,"residentMemoryBytes":3572296}, + "293" : {"pid":293,"residentMemoryBytes":7422696,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":682,"pageFaults":10929,"userTimeTask":1.088365875,"procname":"com.apple.MapKit.SnapshotServic","copyOnWriteFaults":101,"threadById":{"11918":{"id":11918,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":284,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00028425,"waitEvent":[1,13560469137784291315],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3830":{"id":3830,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":22,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.2750000000000001e-05,"waitEvent":[1,13560469137784568659],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "294" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4309647360,""]],"timesThrottled":0,"pageIns":80,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":59,"threadById":{"3856":{"id":3856,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.9375e-05,"waitEvent":[1,13560469137793339907],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"3857":{"id":3857,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":45818,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.045818125000000001,"waitEvent":[1,13560469137794072563],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":0}},"pageFaults":1243,"userTimeTask":0.142070958,"pid":294,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":7717528}, + "295" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4298407936,""]],"timesThrottled":0,"pageIns":3,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":58,"threadById":{"3859":{"id":3859,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":466,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00046620800000000002,"waitEvent":[1,13560469137786302091],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"3858":{"id":3858,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.1583e-05,"waitEvent":[1,13560469137791331307],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":632,"userTimeTask":0.022176749999999999,"pid":295,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":5325424}, + "297" : {"timesThrottled":0,"pageIns":1388,"waitInfo":["thread 3910: mach_msg receive on port set 0xbc3076d67e83aa8b","thread 3920: mach_msg receive on port set 0xbc3076d67e83b02b"],"timesDidThrottle":0,"suspendCount":1,"procname":"MobileMail","copyOnWriteFaults":211,"threadById":{"10400":{"id":10400,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6865,"system_usec":0,"basePriority":4,"userFrames":[[2,1124418588],[2,440017900],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0068659159999999997,"waitEvent":[1,13560469137789146541],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3910":{"id":3910,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":50684,"system_usec":0,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.050684541,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"3920":{"id":3920,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1040,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,486064028],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0010403750000000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"3923":{"id":3923,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":84088,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.084088333000000001,"waitEvent":[1,13560469137796822117],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3901":{"id":3901,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2079963,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[165,2063632],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.0799634579999999,"waitEvent":[1,13560469137790810893],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"10958":{"id":10958,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4018,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0040182079999999997,"waitEvent":[1,13560469137794273029],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"10955":{"id":10955,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3647,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0036476659999999999,"waitEvent":[1,13560469137788332453],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":11836,"userTimeTask":2.9946915829999998,"pid":297,"systemTimeTask":0,"flags":["suspended"],"residentMemoryBytes":24446192}, + "298" : {"pid":298,"residentMemoryBytes":950776,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":15,"pageFaults":393,"userTimeTask":0.043692415999999998,"procname":"logd_helper","copyOnWriteFaults":32,"threadById":{"3914":{"id":3914,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","user_usec":28,"basePriority":31,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.8541e-05,"waitEvent":[1,13560469137793319579],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":31},"3913":{"id":3913,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":31810,"basePriority":20,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.031810249999999998,"waitEvent":[1,13560469137788926283],"continuation":[0,68854897416],"systemTime":0,"schedPriority":20}},"timesThrottled":0}, + "299" : {"timesThrottled":0,"pageIns":5,"waitInfo":["thread 3930: mach_msg receive on port set 0xbc3076d67e83b65b"],"timesDidThrottle":0,"procname":"contentlinkingd","copyOnWriteFaults":46,"threadById":{"3930":{"id":3930,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20173,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[166,14680],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0201735,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[166,14680],[2,624855392]],"systemTime":0,"schedPriority":4},"6988":{"id":6988,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":12219,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.012219000000000001,"waitEvent":[1,13560469137792803131],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":683,"userTimeTask":0.06709975,"pid":299,"systemTimeTask":0,"residentMemoryBytes":1901128}, + "300" : {"timesThrottled":0,"pageIns":2480,"waitInfo":["thread 3947: mach_msg receive on port set 0xbc3076d67e83bb9b"],"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.WebContent","copyOnWriteFaults":93,"threadById":{"3947":{"id":3947,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":278109,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.27810995799999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"4082":{"id":4082,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":251,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00025158299999999999,"waitEvent":[1,13560469137794018299],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"10970":{"id":10970,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1520,"system_usec":0,"basePriority":4,"userFrames":[[2,1124418588],[2,440017900],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001520541,"waitEvent":[1,13560469137793121693],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":4429,"userTimeTask":0.33070012500000001,"pid":300,"systemTimeTask":0,"flags":["suspended"],"residentMemoryBytes":10224680}, + "301" : {"timesThrottled":0,"pageIns":92,"waitInfo":["thread 3958: mach_msg receive on port set 0xbc3076d67e83be9b"],"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.WebContent","copyOnWriteFaults":93,"threadById":{"3958":{"id":3958,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":323503,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.32350358299999998,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"3963":{"id":3963,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":46156,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.046156333000000001,"waitEvent":[1,13560469137790763651],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"10969":{"id":10969,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1218,"system_usec":0,"basePriority":4,"userFrames":[[2,1124418588],[2,440017900],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001218708,"waitEvent":[1,13560469137793111469],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3967":{"id":3967,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137790748315],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"3965":{"id":3965,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":833,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00083391599999999998,"waitEvent":[1,13560469137790741499],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":3441,"userTimeTask":0.47648133300000001,"pid":301,"systemTimeTask":0,"flags":["suspended"],"residentMemoryBytes":24626216}, + "302" : {"timesThrottled":0,"pageIns":23,"waitInfo":["thread 3960: mach_msg receive on port set 0xbc3076d67e83c0db"],"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.WebContent","copyOnWriteFaults":86,"threadById":{"3960":{"id":3960,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":107508,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.107508541,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"3969":{"id":3969,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":18023,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.018023166,"waitEvent":[1,13560469137796869115],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"10976":{"id":10976,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1429,"system_usec":0,"basePriority":4,"userFrames":[[2,1124418588],[2,440017900],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0014289999999999999,"waitEvent":[1,13560469137789139725],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":2155,"userTimeTask":0.146463291,"pid":302,"systemTimeTask":0,"flags":["suspended"],"residentMemoryBytes":5309200}, + "296" : {"timesThrottled":0,"pageIns":75,"waitInfo":["thread 3977: mach_msg receive on port set 0xbc3076d67e83a7bb"],"timesDidThrottle":0,"procname":"symptomsd-diag","copyOnWriteFaults":53,"threadById":{"3977":{"id":3977,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":41166,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[167,13396],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.041166874999999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"11919":{"id":11919,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":487,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00048791600000000002,"waitEvent":[1,13560469137792907595],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":990,"userTimeTask":0.12559637500000001,"pid":296,"systemTimeTask":0,"residentMemoryBytes":2114120}, + "306" : {"timesThrottled":0,"pageIns":130,"waitInfo":["thread 3989: mach_msg receive on port set 0xbc3076d67e83d3fb","thread 3991: pthread condvar 0x10d064590","thread 3992: pthread condvar 0x10d01c630","thread 3996: pthread condvar 0x10d04c270"],"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.Networking","copyOnWriteFaults":69,"threadById":{"3992":{"id":3992,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":877,"basePriority":4,"userFrames":[[2,1124418588],[2,439322500],[2,439062780],[2,439439724],[2,439703020],[2,237920220],[2,237950612],[2,237953504],[2,237997584],[2,1396665848],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00087770800000000005,"waitEvent":[1,13560469133898083675],"continuation":[0,68887633940],"systemTime":0,"schedPriority":4},"10157":{"id":10157,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":276,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00027687499999999999,"waitEvent":[1,13560469137784249635],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"10977":{"id":10977,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":986,"system_usec":0,"basePriority":4,"userFrames":[[2,1124418588],[2,440017900],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00098608300000000001,"waitEvent":[1,13560469137790232341],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"3991":{"id":3991,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":11480,"basePriority":4,"userFrames":[[2,1124418588],[2,439322500],[2,439062780],[2,439439724],[2,439703020],[2,237920220],[2,237950612],[2,237953504],[2,237997584],[2,1396665848],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.011480832999999999,"waitEvent":[1,13560469133897978715],"continuation":[0,68887633940],"systemTime":0,"schedPriority":4},"3996":{"id":3996,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":310,"basePriority":4,"userFrames":[[2,1124418588],[2,439322500],[2,439062780],[2,439439724],[2,439703020],[2,237920220],[2,237950612],[2,237953504],[2,237997584],[2,1396665848],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00031058300000000002,"waitEvent":[1,13560469133898108763],"continuation":[0,68887633940],"systemTime":0,"schedPriority":4},"3989":{"id":3989,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":34927,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.034927874999999997,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":1813,"userTimeTask":0.12836895800000001,"pid":306,"systemTimeTask":0,"flags":["suspended"],"residentMemoryBytes":4113128}, + "307" : {"timesThrottled":0,"pageIns":442,"waitInfo":["thread 4000: mach_msg receive on port set 0xbc3076d67e83d5ab"],"timesDidThrottle":0,"procname":"reversetemplated","copyOnWriteFaults":60,"threadById":{"4000":{"id":4000,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":26259,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[168,12208],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.026259375000000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"7065":{"id":7065,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6083,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0060832079999999997,"waitEvent":[1,13560469137787671531],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":2447,"userTimeTask":0.10981675,"pid":307,"systemTimeTask":0,"residentMemoryBytes":5915288}, + "309" : {"timesThrottled":0,"pageIns":34,"waitInfo":["thread 4036: mach_msg receive on port set 0xbc3076d67e83dcfb","thread 4041: mach_msg receive on port set 0xbc3076d67e8397eb"],"timesDidThrottle":0,"procname":"recentsd","copyOnWriteFaults":57,"threadById":{"10611":{"id":10611,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":17,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.7915999999999999e-05,"waitEvent":[1,13560469137788495187],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4036":{"id":4036,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":34530,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[169,24036],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.034530708,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"4041":{"id":4041,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":417,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00041779099999999998,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":1444,"userTimeTask":0.107770583,"pid":309,"systemTimeTask":0,"residentMemoryBytes":2441800}, + "308" : {"resampled_images":[["3ce4aa60-ebb0-3781-ba59-3305c1da5239",4339843072,""]],"timesThrottled":0,"pageIns":2,"waitInfo":["thread 4054: mach_msg receive on port set 0xbc3076d67e83987b"],"timesDidThrottle":0,"procname":"OTATaskingAgent","copyOnWriteFaults":34,"threadById":{"4249":{"id":4249,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":14,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.4666e-05,"waitEvent":[1,13560469137784343875],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4054":{"id":4054,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19028,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[170,7040],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.019028,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[170,7040],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":333,"userTimeTask":0.032098665999999998,"pid":308,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1081888}, + "310" : {"timesThrottled":0,"pageIns":77,"waitInfo":["thread 4071: mach_msg receive on port set 0xbc3076d67e83831b","thread 4077: semaphore port 0xbc3076d76441b29b owned by pid 310","thread 4190: semaphore port 0xbc3076d76414e6cb owned by pid 310"],"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.GPU","copyOnWriteFaults":84,"threadById":{"4077":{"id":4077,"name":"RemoteRenderingBackend work queue","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":15919,"system_usec":0,"basePriority":4,"userFrames":[[2,1124416196],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.015919333000000001,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"systemTime":0,"schedPriority":4},"4075":{"id":4075,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1864,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001864166,"waitEvent":[1,13560469137794021707],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4190":{"id":4190,"name":"RemoteRenderingBackend work queue","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":26752,"system_usec":0,"basePriority":4,"userFrames":[[2,1124416196],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.026752541000000001,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"systemTime":0,"schedPriority":4},"4071":{"id":4071,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":24877,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0248775,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"10975":{"id":10975,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1007,"system_usec":0,"basePriority":4,"userFrames":[[2,1124418588],[2,440017900],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0010072499999999999,"waitEvent":[1,13560469137789161877],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":2203,"userTimeTask":0.19977275,"pid":310,"systemTimeTask":0,"flags":["suspended"],"residentMemoryBytes":11109376}, + "311" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4297031680,""]],"timesThrottled":0,"pageIns":3,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":59,"threadById":{"4089":{"id":4089,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":23617,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.023617915999999999,"waitEvent":[1,13560469137794155139],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":0},"4088":{"id":4088,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.208e-06,"waitEvent":[1,13560469137797612187],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":758,"userTimeTask":0.031014458000000002,"pid":311,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":6177432}, + "312" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4366663680,""]],"timesThrottled":0,"pageIns":2,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":58,"threadById":{"4086":{"id":4086,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.0625e-05,"waitEvent":[1,13560469137797670051],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"4087":{"id":4087,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":11361,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.011361583,"waitEvent":[1,13560469137794136395],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":621,"userTimeTask":0.017605875,"pid":312,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":5014128}, + "313" : {"timesThrottled":0,"pageIns":492,"waitInfo":["thread 4104: mach_msg receive on port set 0xbc3076d67e83d75b"],"timesDidThrottle":0,"procname":"cloudphotod","copyOnWriteFaults":82,"threadById":{"12020":{"id":12020,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.3583e-05,"waitEvent":[1,13560469137793011667],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4104":{"id":4104,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":103990,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[171,36208],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.103990791,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[171,36208],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":2814,"userTimeTask":0.64728991599999997,"pid":313,"systemTimeTask":0,"residentMemoryBytes":3850864}, + "314" : {"pid":314,"residentMemoryBytes":2409032,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":140,"pageFaults":1331,"userTimeTask":0.20892112500000001,"procname":"weatherd","copyOnWriteFaults":64,"threadById":{"10451":{"id":10451,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":16,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.6875e-05,"waitEvent":[1,13560469137788309459],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4138":{"id":4138,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":24,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.4457999999999999e-05,"waitEvent":[1,13560469137797661339],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "315" : {"resampled_images":[["37e918e0-27e7-39d4-bbbc-9d69b4bcb0f3",4328865792,""]],"timesThrottled":0,"pageIns":99,"timesDidThrottle":0,"procname":"IDSBlastDoorService","copyOnWriteFaults":52,"threadById":{"4157":{"id":4157,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":42403,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.042403165999999999,"waitEvent":[1,13560469137793119539],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"4156":{"id":4156,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.1500000000000001e-05,"waitEvent":[1,13560469137797667147],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":1138,"userTimeTask":0.096010916000000002,"pid":315,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":1671752}, + "317" : {"pid":317,"residentMemoryBytes":3474032,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":30,"pageFaults":1990,"userTimeTask":0.36440029099999999,"procname":"videosubscriptionsd","copyOnWriteFaults":60,"threadById":{"10172":{"id":10172,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3504,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0035044999999999998,"waitEvent":[1,13560469137792989515],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4203":{"id":4203,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":23,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.3416000000000001e-05,"waitEvent":[1,13560469137774475075],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "318" : {"timesThrottled":0,"pageIns":21,"waitInfo":["thread 4191: mach_msg receive on port set 0xbc3076d67e83bceb"],"timesDidThrottle":0,"procname":"osanalyticshelper","copyOnWriteFaults":45,"threadById":{"7778":{"id":7778,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19135,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.019135875,"waitEvent":[1,13560469137790360867],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"7779":{"id":7779,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137794311507],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4191":{"id":4191,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":52576,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[172,66924],[172,43464],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.052576166000000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":821,"userTimeTask":0.12358016600000001,"pid":318,"systemTimeTask":0,"flags":["uuidFaultFlags0x00700000","resampledAllImages"],"residentMemoryBytes":1901128}, + "319" : {"resampled_images":[["07a91c02-cf37-3e9d-b435-e9a4f73886e3",4301357056,""]],"timesThrottled":0,"pageIns":32,"waitInfo":["thread 4204: mach_msg receive on port set 0xbc3076d67e83dc0b"],"timesDidThrottle":0,"suspendCount":1,"procname":"SiriTTSSynthesizerAU","copyOnWriteFaults":45,"threadById":{"4206":{"id":4206,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":105242,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.105242708,"waitEvent":[1,13560469137785024589],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4204":{"id":4204,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":34124,"notice":"Unmapped pages caused truncated backtrace; re-sampled 18 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.034124750000000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,739086156],[2,739006260],[2,739002952],[2,338186320],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4},"4207":{"id":4207,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":12177,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.012177041,"waitEvent":[1,13560469137787685163],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"4241":{"id":4241,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":947,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00094716600000000005,"waitEvent":[1,13560469137793037619],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":1195,"userTimeTask":0.152491666,"pid":319,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00700000","resampledExtraImages"],"residentMemoryBytes":2458184}, + "320" : {"resampled_images":[["7c546569-3985-33ca-b85a-3e6434e4ccba",4363960320,""]],"timesThrottled":0,"pageIns":21,"waitInfo":["thread 4258: mach_msg receive on port set 0xbc3076d67e83c2eb"],"timesDidThrottle":0,"suspendCount":1,"procname":"KonaSynthesizer","copyOnWriteFaults":49,"threadById":{"4260":{"id":4260,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3718,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.003718,"waitEvent":[1,13560469137789058011],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"4277":{"id":4277,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1868,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0018688330000000001,"waitEvent":[1,13560469137790825779],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"4258":{"id":4258,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":31723,"notice":"Unmapped pages caused truncated backtrace; re-sampled 18 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.031723915999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,739086156],[2,739006260],[2,739002952],[2,338186320],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4},"4261":{"id":4261,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":108125,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.108125,"waitEvent":[1,13560469137788485021],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":1146,"userTimeTask":0.14543575,"pid":320,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":2589296}, + "321" : {"resampled_images":[["72c2fbb5-b716-3605-865e-c092ef93696e",4302274560,""]],"timesThrottled":0,"pageIns":28,"waitInfo":["thread 4262: mach_msg receive on port set 0xbc3076d67e83834b"],"timesDidThrottle":0,"suspendCount":1,"procname":"MacinTalkAUSP","copyOnWriteFaults":56,"threadById":{"4264":{"id":4264,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":45585,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.045585082999999998,"waitEvent":[1,13560469137788538179],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":1},"4262":{"id":4262,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":14062,"notice":"Unmapped pages caused truncated backtrace; re-sampled 18 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.014062666,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,739086156],[2,739006260],[2,739002952],[2,338186320],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4},"4267":{"id":4267,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":190106,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.19010645800000001,"waitEvent":[1,13560469137788421787],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":0},"4263":{"id":4263,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":62486,"notice":"Unmapped pages caused truncated backtrace; re-sampled 27 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.062486958000000002,"waitEvent":[1,13560469137788535221],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,238031716],[2,238032620],[2,1397007076],[2,734486080],[2,237920220],[2,237983092],[2,734485656],[2,734395188],[2,485077624],[2,485081968],[2,485080324],[2,485790424],[2,485777412],[2,595238752],[2,595321096],[2,595289832],[2,237913268],[2,237920220],[2,237950612],[2,237953556],[2,237997584],[2,1396665848],[2,1396665240]],"systemTime":0,"schedPriority":0},"4311":{"id":4311,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":958,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000958291,"waitEvent":[1,13560469137793928965],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":1262,"userTimeTask":0.31319945799999999,"pid":321,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":2966088}, + "324" : {"resampled_images":[["9d35ae70-480a-38e5-ae91-fb0f30538ff1",4377001984,""]],"timesThrottled":0,"pageIns":8,"timesDidThrottle":0,"procname":"CategoriesService","copyOnWriteFaults":42,"threadById":{"4281":{"id":4281,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":61,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":6.1333000000000004e-05,"waitEvent":[1,13560469137797623803],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"4282":{"id":4282,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":25807,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.02580725,"waitEvent":[1,13560469137796397387],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":1}},"pageFaults":662,"userTimeTask":0.074881457999999998,"pid":324,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1426032}, + "325" : {"resampled_images":[["f12078fd-7f71-3320-bcc5-17f398341d8d",4301881344,""]],"timesThrottled":0,"pageIns":17,"invalid_images":1,"waitInfo":["thread 4279: mach_msg receive on port set 0xbc3076d67e83c1cb"],"timesDidThrottle":0,"procname":"ScreenshotService","copyOnWriteFaults":56,"threadById":{"4279":{"id":4279,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":88547,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[173,15932],[173,25344],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.088547125000000004,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"4315":{"id":4315,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13086,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.013086,"waitEvent":[1,13560469137787659603],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1564,"userTimeTask":0.209312625,"pid":325,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledAllImages"],"residentMemoryBytes":2523800}, + "328" : {"pid":328,"residentMemoryBytes":3850824,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":189,"pageFaults":2607,"userTimeTask":0.76358779099999996,"procname":"promotedcontentd","copyOnWriteFaults":67,"threadById":{"11967":{"id":11967,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":280,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00028045799999999998,"waitEvent":[1,13560469137790260859],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4431":{"id":4431,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":43,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":4.3415999999999999e-05,"waitEvent":[1,13560469137797596843],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "329" : {"resampled_images":[["4daf8a29-cf13-3ba0-8e57-3c46421a29ac",4332175360,""]],"timesThrottled":0,"pageIns":26,"waitInfo":["thread 4378: mach_msg receive on port set 0xbc3076d67e83864b"],"timesDidThrottle":0,"procname":"TVRemoteConnectionService","copyOnWriteFaults":43,"threadById":{"4378":{"id":4378,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":51179,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.051179833000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[174,52584],[2,624855392]],"systemTime":0,"schedPriority":2},"4388":{"id":4388,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":387,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00038716599999999999,"waitEvent":[1,13560469137794335363],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":841,"userTimeTask":0.053824333000000002,"pid":329,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1573448}, + "330" : {"resampled_images":[["91015d01-6da2-3766-8aa0-6754bd133a20",4336402432,""]],"timesThrottled":0,"pageIns":14,"timesDidThrottle":0,"procname":"tailspind","copyOnWriteFaults":39,"threadById":{"4386":{"id":4386,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7036,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0070362910000000001,"waitEvent":[1,13560469137794113851],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":3},"4423":{"id":4423,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":50,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":5.0708000000000003e-05,"waitEvent":[1,13560469137797588131],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":379,"userTimeTask":0.028130291000000002,"pid":330,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1262112}, + "333" : {"timesThrottled":0,"pageIns":330,"waitInfo":["thread 4438: mach_msg receive on port set 0xbc3076d67e8399cb"],"timesDidThrottle":0,"procname":"asd","copyOnWriteFaults":76,"threadById":{"4645":{"id":4645,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":129474,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.12947445799999999,"waitEvent":[1,13560469137784284499],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4438":{"id":4438,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":106959,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[175,98952],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.10695925000000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2505,"userTimeTask":3.7087544160000001,"pid":333,"systemTimeTask":0,"residentMemoryBytes":4211312}, + "335" : {"timesThrottled":0,"pageIns":43,"waitInfo":["thread 4473: mach_msg receive on port set 0xbc3076d67e8386db","thread 4483: mach_msg receive on port set 0xbc3076d67e8382eb"],"timesDidThrottle":0,"procname":"Family","copyOnWriteFaults":113,"threadById":{"10752":{"id":10752,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":55234,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.055234540999999998,"waitEvent":[1,13560469137788891811],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"4473":{"id":4473,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","user_usec":223966,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[176,21236],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.223966375,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31},"4483":{"id":4483,"schedPriority":31,"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","state":["TH_WAIT"],"user_usec":3602,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0036021249999999999,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.uikit.eventfetch-thread"}},"pageFaults":2441,"userTimeTask":0.46659137499999997,"pid":335,"systemTimeTask":0,"residentMemoryBytes":5948176}, + "334" : {"pid":334,"residentMemoryBytes":3162736,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":124,"pageFaults":1878,"userTimeTask":0.23526504100000001,"procname":"FamilyControlsAgent","copyOnWriteFaults":78,"threadById":{"7729":{"id":7729,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7245,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0072453329999999996,"waitEvent":[1,13560469137796536979],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4497":{"id":4497,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.0041e-05,"waitEvent":[1,13560469137797675859],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "336" : {"resampled_images":[["76cd8bc0-fb30-3ff4-b6d2-8ab0d31de26f",4335697920,""]],"timesThrottled":0,"pageIns":14,"waitInfo":["thread 4501: mach_msg receive on port set 0xbc3076d67e83861b"],"timesDidThrottle":0,"procname":"ndoagent","copyOnWriteFaults":38,"threadById":{"4506":{"id":4506,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137787738771],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4501":{"id":4501,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":47414,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.047414875000000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[177,28040],[2,624855392]],"systemTime":0,"schedPriority":4},"4504":{"id":4504,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":342,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00034237500000000001,"waitEvent":[1,13560469137793006555],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":614,"userTimeTask":0.050917375000000001,"pid":336,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1360456}, + "337" : {"resampled_images":[["ffe0c1b2-297f-316c-8bb9-3ddd7658ca52",4369317888,""]],"timesThrottled":0,"pageIns":4715,"timesDidThrottle":0,"procname":"aned","copyOnWriteFaults":4714,"threadById":{"4513":{"id":4513,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":30,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.0624999999999999e-05,"waitEvent":[1,13560469137797573611],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"5091":{"id":5091,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":75877,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.075877374999999997,"waitEvent":[1,13560469137787652395],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":4799,"userTimeTask":1.708283958,"pid":337,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1950240}, + "339" : {"resampled_images":[["3f9644aa-6ce0-3603-bbf5-9ef514f2df29",4340285440,""]],"timesThrottled":0,"pageIns":1480,"timesDidThrottle":0,"procname":"MessagesBlastDoorService","copyOnWriteFaults":76,"threadById":{"4683":{"id":4683,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":46968,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.046968665999999999,"waitEvent":[1,13560469137796405907],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"4682":{"id":4682,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":26,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.65e-05,"waitEvent":[1,13560469137797615091],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":1189,"userTimeTask":0.57066762500000001,"pid":339,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":2261576}, + "341" : {"timesThrottled":0,"pageIns":1577,"waitInfo":["thread 4713: mach_msg receive on port set 0xbc3076d67e83dabb"],"timesDidThrottle":0,"procname":"duetexpertd","copyOnWriteFaults":161,"threadById":{"12066":{"id":12066,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":55841,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.055841250000000002,"waitEvent":[1,13560469137775113523],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4713":{"id":4713,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":430637,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[178,13400],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.43063712500000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"12064":{"id":12064,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":43438,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.043438249999999998,"waitEvent":[1,13560469137785138171],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12067":{"id":12067,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":17,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.7333000000000002e-05,"waitEvent":[1,13560469137787286179],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":10262,"userTimeTask":8.1856906249999994,"pid":341,"systemTimeTask":0,"residentMemoryBytes":8733416}, + "342" : {"resampled_images":[["68818dec-4285-307b-92fb-bca71bcc4c1c",4296720384,""]],"timesThrottled":0,"pageIns":79,"waitInfo":["thread 4749: mach_msg receive on port set 0xbc3076d67e83c61b"],"timesDidThrottle":0,"procname":"diagnosticextensionsd","copyOnWriteFaults":60,"threadById":{"4749":{"id":4749,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":71901,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.071901875000000004,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[179,11408],[2,624855392]],"systemTime":0,"schedPriority":4},"7724":{"id":7724,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1759,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0017599580000000001,"waitEvent":[1,13560469137796526755],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":1878,"userTimeTask":0.44822862499999999,"pid":342,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":3080776}, + "343" : {"pid":343,"residentMemoryBytes":2982512,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":108,"pageFaults":2400,"userTimeTask":0.457828666,"procname":"HeuristicInterpreter","copyOnWriteFaults":67,"threadById":{"12104":{"id":12104,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":172,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00017254099999999999,"waitEvent":[1,13560469137777551331],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4768":{"id":4768,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":26,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.6832999999999999e-05,"waitEvent":[1,13560469137774439403],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "344" : {"pid":344,"residentMemoryBytes":3883592,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":406,"pageFaults":2703,"userTimeTask":1.6830643750000001,"procname":"AppPredictionIntentsHelperServi","copyOnWriteFaults":58,"threadById":{"10392":{"id":10392,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":53512,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.053512375000000001,"waitEvent":[1,13560469137794267467],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4789":{"id":4789,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":30,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.0290999999999998e-05,"waitEvent":[1,13560469137797606379],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "345" : {"resampled_images":[["d8e546e6-8cc8-3df8-bcc7-ffe191d215e0",4343021568,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4344643584,""],["0896df29-70bb-3ba3-a7bb-2730d038a3b4",4345757696,""],["5a51d376-dbc6-391e-8630-4ced940cccfd",4362764288,""],["0b6a72ea-9b8f-31fa-a4d6-b2b56e6ccbca",4363059200,""]],"timesThrottled":0,"pageIns":1310,"waitInfo":["thread 4818: mach_msg receive on port set 0xbc3076d67e83b53b","thread 4887: mach_msg receive on port set 0xbc3076d67e838f1b"],"timesDidThrottle":0,"suspendCount":1,"procname":"MobileSMS","copyOnWriteFaults":244,"threadById":{"4819":{"id":4819,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":31758,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.031758833,"waitEvent":[1,13560469137785191837],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4816":{"id":4816,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":34825,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.034825291000000001,"waitEvent":[1,13560469137785190133],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4955":{"id":4955,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":346,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 5 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000346416,"waitEvent":[1,13560469137784243269],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,440017900],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"4823":{"id":4823,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":49854,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.049854457999999997,"waitEvent":[1,13560469137796378701],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4801":{"id":4801,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1030010,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.0300105829999999,"waitEvent":[1,13560469137797323861],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[180,120600],[2,624855392]],"systemTime":0,"schedPriority":4},"4811":{"id":4811,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":31237,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.031237457999999999,"waitEvent":[1,13560469137790347685],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4814":{"id":4814,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7107,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0071077079999999999,"waitEvent":[1,13560469137790332349],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4818":{"id":4818,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3602,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00360225,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"4815":{"id":4815,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":71569,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.071568999999999994,"waitEvent":[1,13560469137785174797],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4827":{"id":4827,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":71877,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.071877790999999996,"waitEvent":[1,13560469137790204685],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4887":{"id":4887,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":111,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000111708,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,486064028],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4}},"pageFaults":12290,"userTimeTask":1.446091416,"pid":345,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":33604688}, + "346" : {"resampled_images":[["dfc84bdc-c4e9-3437-9ac9-b66e08804458",4372774912,""],["d4ac0bf6-95da-3b59-bce7-17d75e2d09cd",4373676032,""],["b216d2b9-a977-3eaf-850e-86f7dad3834d",4373774336,""]],"timesThrottled":0,"pageIns":94,"waitInfo":["thread 4858: mach_msg receive on port set 0xbc3076d67e83951b","thread 4918: mach_msg receive on port set 0xbc3076d67e8395ab"],"timesDidThrottle":0,"procname":"com.apple.quicklook.ThumbnailsA","copyOnWriteFaults":69,"threadById":{"4918":{"id":4918,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":24550,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.024550124999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1246823280],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"8124":{"id":8124,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137796376547],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"4858":{"id":4858,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":43071,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.043071916000000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[181,11892],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":1764,"userTimeTask":0.37714795800000001,"pid":346,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":3539688}, + "347" : {"resampled_images":[["25288044-595d-3bd8-bc21-c199e937acdf",4372561920,""]],"timesThrottled":0,"pageIns":19,"waitInfo":["thread 4888: mach_msg receive on port set 0xbc3076d67e83954b"],"timesDidThrottle":0,"suspendCount":1,"procname":"ThumbnailExtensionSecure","copyOnWriteFaults":45,"threadById":{"7233":{"id":7233,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2194,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0021943330000000001,"waitEvent":[1,13560469137796505915],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"7566":{"id":7566,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1951,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0019517499999999999,"waitEvent":[1,13560469137797339197],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4888":{"id":4888,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":24568,"notice":"Unmapped pages caused truncated backtrace; re-sampled 18 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.024568875,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,739086156],[2,739006260],[2,739002952],[2,338186320],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":1007,"userTimeTask":0.079835749999999997,"pid":347,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":2622064}, + "348" : {"timesThrottled":0,"pageIns":5633,"waitInfo":["thread 4890: mach_msg receive on port set 0xbc3076d67e838f7b"],"timesDidThrottle":0,"procname":"kbd","copyOnWriteFaults":112,"threadById":{"4890":{"id":4890,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","user_usec":1386727,"basePriority":47,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[182,27108],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_USER_INTERACTIVE","userTime":1.386727458,"continuation":[0,68850618692],"systemTime":0,"schedPriority":47},"12057":{"id":12057,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","user_usec":2241,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0022417909999999999,"waitEvent":[1,13560469137788332003],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12126":{"id":12126,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","user_usec":314,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00031433299999999997,"waitEvent":[1,13560469137796996387],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12110":{"id":12110,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":2270,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.0022705410000000001,"waitEvent":[1,13560469137785163731],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37}},"pageFaults":12878,"userTimeTask":5.1266305000000001,"pid":348,"systemTimeTask":0,"flags":["foreground","dirty"],"residentMemoryBytes":15893264}, + "349" : {"resampled_images":[["a5923695-e675-33f9-86f8-13d8750a0f6f",4375822336,""]],"timesThrottled":0,"pageIns":27,"waitInfo":["thread 4913: mach_msg receive on port set 0xbc3076d67e83957b"],"timesDidThrottle":0,"procname":"revisiond","copyOnWriteFaults":42,"threadById":{"7082":{"id":7082,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":14076,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.014076708,"waitEvent":[1,13560469137794333659],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"4913":{"id":4913,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":64982,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.064982582999999997,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[183,71584],[183,72636],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":723,"userTimeTask":0.096845957999999996,"pid":349,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1868320}, + "350" : {"resampled_images":[["6fb64415-367f-3690-900b-da5c01c8ddf9",4373282816,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4374102016,""]],"timesThrottled":0,"pageIns":206,"waitInfo":["thread 4961: mach_msg receive on port set 0xbc3076d67e83bd1b"],"timesDidThrottle":0,"suspendCount":1,"procname":"SafariViewService","copyOnWriteFaults":129,"threadById":{"4962":{"id":4962,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8401,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0084019160000000006,"waitEvent":[1,13560469137788440531],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"4959":{"id":4959,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20116,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.020116624999999999,"waitEvent":[1,13560469137788895669],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4956":{"id":4956,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":166911,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.166911541,"waitEvent":[1,13560469137794201333],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[184,8204],[2,624855392]],"systemTime":0,"schedPriority":4},"4966":{"id":4966,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1512,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 5 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0015122079999999999,"waitEvent":[1,13560469137788294573],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,440017900],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"4963":{"id":4963,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":30749,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.030749499999999999,"waitEvent":[1,13560469137788415421],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4960":{"id":4960,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4680,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0046801250000000003,"waitEvent":[1,13560469137793024437],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4996":{"id":4996,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":451,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000451416,"waitEvent":[1,13560469137796380405],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"4961":{"id":4961,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2624,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0026247499999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"4958":{"id":4958,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":17695,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.017695208,"waitEvent":[1,13560469137785196499],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"4997":{"id":4997,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":311,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00031112499999999999,"waitEvent":[1,13560469137790767059],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"4965":{"id":4965,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6524,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.006524625,"waitEvent":[1,13560469137796876381],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":3233,"userTimeTask":0.25997904100000002,"pid":350,"systemTimeTask":0,"flags":["suspended","frozen","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":10044456}, + "351" : {"resampled_images":[["78107548-f589-32c7-95d9-dc8326e5cdb2",4303683584,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4304470016,""]],"timesThrottled":0,"pageIns":664,"waitInfo":["thread 5015: mach_msg receive on port set 0xbc3076d67e83789b"],"timesDidThrottle":0,"suspendCount":1,"procname":"Camera","copyOnWriteFaults":148,"threadById":{"5011":{"id":5011,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":218089,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.21808979100000001,"waitEvent":[1,13560469137794076421],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"5015":{"id":5015,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2741,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0027411660000000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"5012":{"id":5012,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8961,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0089619160000000003,"waitEvent":[1,13560469137794084941],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"5013":{"id":5013,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1697,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001697041,"waitEvent":[1,13560469137794091757],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"5010":{"id":5010,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":50517,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.05051725,"waitEvent":[1,13560469137794098965],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"5020":{"id":5020,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":105,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00010525,"waitEvent":[1,13560469137794182589],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"5007":{"id":5007,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":194318,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.19431837499999999,"waitEvent":[1,13560469137794252189],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[2,1342091100],[185,16176],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":3994,"userTimeTask":0.66577566600000004,"pid":351,"systemTimeTask":0,"flags":["suspended","frozen","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":11240368}, + "352" : {"resampled_images":[["54a0394e-bd47-32b0-ba00-caba3cf421c5",4298129408,""]],"timesThrottled":0,"pageIns":5,"timesDidThrottle":0,"procname":"deleted_helper","copyOnWriteFaults":35,"threadById":{"5037":{"id":5037,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.9208e-05,"waitEvent":[1,13560469137797591035],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"5036":{"id":5036,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1988,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0019887910000000002,"waitEvent":[1,13560469137797019979],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":394,"userTimeTask":0.079127332999999994,"pid":352,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1245728}, + "353" : {"resampled_images":[["5527211c-6c29-3fe5-80b6-96621d4dd30e",4309991424,""]],"timesThrottled":0,"pageIns":26,"waitInfo":["thread 5087: mach_msg receive on port set 0xbc3076d67e83963b"],"timesDidThrottle":0,"procname":"replayd","copyOnWriteFaults":43,"threadById":{"5087":{"id":5087,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":38472,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.038472958000000002,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[186,278688],[2,624855392]],"systemTime":0,"schedPriority":4},"5099":{"id":5099,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1489,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001489083,"waitEvent":[1,13560469137796554019],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":650,"userTimeTask":0.044119332999999997,"pid":353,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1442376}, + "356" : {"resampled_images":[["736ba2eb-ca92-3587-a068-a7c2b8c9643c",4311334912,""]],"timesThrottled":0,"pageIns":27,"timesDidThrottle":0,"procname":"coresymbolicationd","copyOnWriteFaults":34,"threadById":{"5103":{"id":5103,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":35,"notice":"Unmapped pages caused truncated backtrace; re-sampled 2 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.5790999999999997e-05,"waitEvent":[1,13560469137797558267],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999940]],"systemTime":0,"schedPriority":4},"8580":{"id":8580,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":15,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.5208000000000001e-05,"waitEvent":[1,13560469137794079379],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":463,"userTimeTask":0.031398124999999999,"pid":356,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1098272}, + "357" : {"timesThrottled":0,"pageIns":572,"waitInfo":["thread 5098: mach_msg receive on port set 0xbc3076d67e8378fb"],"timesDidThrottle":0,"procname":"bird","copyOnWriteFaults":73,"threadById":{"5098":{"id":5098,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":41527,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[187,12436],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.041527708000000003,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"10298":{"id":10298,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1073,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001073458,"waitEvent":[1,13560469137797042131],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":3900,"userTimeTask":2.795018416,"pid":357,"systemTimeTask":0,"residentMemoryBytes":8634952}, + "358" : {"resampled_images":[["d8fa6bff-201c-31fc-a8bf-c42f6b854b4d",4295344128,""]],"timesThrottled":0,"pageIns":2,"timesDidThrottle":0,"procname":"MobileBackupCacheDeleteService","copyOnWriteFaults":38,"threadById":{"5109":{"id":5109,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.9165999999999999e-05,"waitEvent":[1,13560469137797537939],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"5110":{"id":5110,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":23,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.3958e-05,"waitEvent":[1,13560469137796525051],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":534,"userTimeTask":0.027051665999999999,"pid":358,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1278536}, + "359" : {"resampled_images":[["32e1d505-0515-3ef3-8c29-d46e07f12f6e",4362698752,""]],"timesThrottled":0,"pageIns":33,"waitInfo":["thread 5141: mach_msg receive on port set 0xbc3076d67e83795b"],"timesDidThrottle":0,"suspendCount":1,"procname":"CacheDeleteExtension","copyOnWriteFaults":37,"threadById":{"5200":{"id":5200,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137794328547],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"5141":{"id":5141,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":36737,"notice":"Unmapped pages caused truncated backtrace; re-sampled 18 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.036737540999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,739086156],[2,739006260],[2,739002952],[2,338186320],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":3},"5151":{"id":5151,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":17134,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.017134208000000001,"waitEvent":[1,13560469137787303219],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"5161":{"id":5161,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":539,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00053899999999999998,"waitEvent":[1,13560469137789093531],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"5199":{"id":5199,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":198,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00019862499999999999,"waitEvent":[1,13560469137779081203],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"5152":{"id":5152,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":10153,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.010153333,"waitEvent":[1,13560469137787303669],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":873,"userTimeTask":0.064762708000000002,"pid":359,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1835592}, + "354" : {"resampled_images":[["70332c6b-c519-362c-90f7-e81411fa21c8",4304797696,""]],"timesThrottled":0,"pageIns":91,"timesDidThrottle":0,"procname":"CacheDeleteAppContainerCaches","copyOnWriteFaults":50,"threadById":{"5178":{"id":5178,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1685254,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.6852542500000001,"waitEvent":[1,13560469137792929747],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"5181":{"id":5181,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":30,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.0125e-05,"waitEvent":[1,13560469137797540843],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":3055,"userTimeTask":5.3962294159999997,"pid":354,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":2507376}, + "360" : {"resampled_images":[["496aefcd-c566-339c-bc83-4d13294bc1e6",4333486080,""]],"timesThrottled":0,"pageIns":64,"waitInfo":["thread 5183: mach_msg receive on port set 0xbc3076d67e83966b"],"timesDidThrottle":0,"procname":"translationd","copyOnWriteFaults":51,"threadById":{"5183":{"id":5183,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":68653,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.068653083000000004,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,2292896664],[188,14532],[2,624855392]],"systemTime":0,"schedPriority":4},"6938":{"id":6938,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":29118,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.029118458,"waitEvent":[1,13560469137796974235],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":1492,"userTimeTask":0.27351683300000001,"pid":360,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":2458184}, + "361" : {"resampled_images":[["9537c85a-17b0-34ed-a6b9-db2df8cfb183",4371447808,""]],"timesThrottled":0,"pageIns":3,"waitInfo":["thread 5202: mach_msg receive on port set 0xbc3076d67e83d99b"],"timesDidThrottle":0,"procname":"ContainerMetadataExtractor","copyOnWriteFaults":44,"threadById":{"5203":{"id":5203,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":343061,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.34306170800000002,"waitEvent":[1,13560469137784360915],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"5202":{"id":5202,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":61006,"notice":"Unmapped pages caused truncated backtrace; re-sampled 14 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.061006749999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[189,6896],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":932,"userTimeTask":0.51984937499999995,"pid":361,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1884744}, + "362" : {"resampled_images":[["4e3c7ebb-8959-377a-8351-041aec490dfa",4329881600,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4331929600,""]],"timesThrottled":0,"pageIns":61,"waitInfo":["thread 5291: mach_msg receive on port set 0xbc3076d67e83bd4b"],"timesDidThrottle":0,"procname":"mediaanalysisd","copyOnWriteFaults":65,"threadById":{"8355":{"id":8355,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":522,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00052249999999999996,"waitEvent":[1,13560469137794371539],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"5291":{"id":5291,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":40181,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[190,15056],[190,11100],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.040181374999999998,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":1430,"userTimeTask":0.105047791,"pid":362,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":4325960}, + "363" : {"resampled_images":[["72ce68ea-a26a-35ec-872d-18d57ecc9f4b",4364042240,""]],"timesThrottled":0,"pageIns":4,"timesDidThrottle":0,"procname":"com.apple.DictionaryServiceHelp","copyOnWriteFaults":28,"threadById":{"5337":{"id":5337,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8936,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0089365,"waitEvent":[1,13560469137785205411],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"5336":{"id":5336,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":30,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.0290999999999998e-05,"waitEvent":[1,13560469137797566979],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":264,"userTimeTask":0.050056999999999997,"pid":363,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":999968}, + "364" : {"timesThrottled":0,"pageIns":37,"waitInfo":["thread 5350: mach_msg receive on port set 0xbc3076d67e83d96b"],"timesDidThrottle":0,"procname":"splashboardd","copyOnWriteFaults":72,"threadById":{"10754":{"id":10754,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":41581,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.041581541,"waitEvent":[1,13560469137785136467],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"5350":{"id":5350,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":273447,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[191,22580],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.27344770800000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":1489,"userTimeTask":0.47007529100000001,"pid":364,"systemTimeTask":0,"residentMemoryBytes":3146352}, + "365" : {"resampled_images":[["04542ad1-652d-3b9c-b1f3-08c970addcfb",4339449856,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4409753600,""]],"timesThrottled":0,"pageIns":896,"waitInfo":["thread 5385: mach_msg receive on port set 0xbc3076d67e83d69b"],"timesDidThrottle":0,"suspendCount":1,"procname":"SnapchatHomeScreenWidget","copyOnWriteFaults":94,"threadById":{"5393":{"id":5393,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9163,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0091633749999999996,"waitEvent":[1,13560469137797044285],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"5394":{"id":5394,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":550,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00055083300000000003,"waitEvent":[1,13560469137797016571],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"5385":{"id":5385,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":70417,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.070417041,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":1386,"userTimeTask":0.086593125000000007,"pid":365,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":3932744}, + "366" : {"resampled_images":[["3b0f142c-6448-363b-b1ba-fb72ded0e651",4370137088,""]],"timesThrottled":0,"pageIns":54,"invalid_images":1,"waitInfo":["thread 5510: mach_msg receive on port set 0xbc3076d67e839a2b"],"timesDidThrottle":0,"procname":"metrickitd","copyOnWriteFaults":40,"threadById":{"8319":{"id":8319,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":7.0829999999999998e-06,"waitEvent":[1,13560469137792842715],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"5510":{"id":5510,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":35016,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.035016790999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[192,14416],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":507,"userTimeTask":0.049008625,"pid":366,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledAllImages"],"residentMemoryBytes":1557064}, + "367" : {"pid":367,"residentMemoryBytes":2703984,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":4,"pageFaults":1350,"userTimeTask":0.20245395799999999,"procname":"EnforcementService","copyOnWriteFaults":52,"threadById":{"10174":{"id":10174,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3312,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0033124579999999999,"waitEvent":[1,13560469137788481163],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"5520":{"id":5520,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":24,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.4499999999999999e-05,"waitEvent":[1,13560469137797491691],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "368" : {"timesThrottled":0,"pageIns":129,"waitInfo":["thread 5551: mach_msg receive on port set 0xbc3076d67e83bb6b"],"timesDidThrottle":0,"procname":"com.apple.CloudDocs.MobileDocum","copyOnWriteFaults":63,"threadById":{"9773":{"id":9773,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":2453,"basePriority":31,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0024532080000000001,"waitEvent":[1,13560469137788893515],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31},"5551":{"id":5551,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":47318,"basePriority":31,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,739086156],[2,739006260],[2,739002952],[2,338186320],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.047318125000000003,"continuation":[0,68850618692],"systemTime":0,"schedPriority":31}},"pageFaults":1767,"userTimeTask":0.68866304099999998,"pid":368,"systemTimeTask":0,"residentMemoryBytes":3670600}, + "369" : {"timesThrottled":0,"turnstileInfo":["thread 5743: turnstile has unknown inheritor"],"pageIns":5588,"waitInfo":["thread 5743: mach_msg receive on port 0xbc3076d76415425b name 0x1207","thread 5748: mach_msg receive on port set 0xbc3076d67e8360cb","thread 5766: mach_msg receive on port set 0xbc3076d67e8360fb","thread 5771: mach_msg receive on port set 0xbc3076d67e83798b","thread 5774: mach_msg receive on port set 0xbc3076d67e8379bb","thread 5775: mach_msg receive on port set 0xbc3076d67e83612b","thread 5776: mach_msg receive on port set 0xbc3076d67e83615b","thread 5793: mach_msg receive on port set 0xbc3076d67e837a1b"],"timesDidThrottle":0,"suspendCount":1,"procname":"GoogleNews","copyOnWriteFaults":451,"threadById":{"5774":{"id":5774,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1083,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0010839580000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[194,1060580],[194,1055188],[194,900048],[194,885952],[194,985940],[194,986324],[194,1047552],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"NetworkConfigWatcher"},"5705":{"id":5705,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4373446,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[193,2900216],[193,2900056],[2,765244168],[193,2899908],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":4.3734466249999997,"waitEvent":[1,13560469137797028949],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"5748":{"id":5748,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":49846,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.049846374999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"5750":{"id":5750,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":596122,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.596122916,"waitEvent":[1,13560469137789061869],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"5793":{"id":5793,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5813,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0058137909999999996,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"5773":{"id":5773,"name":"ThreadPoolBackgroundWorker","state":["TH_WAIT"],"system_usec":0,"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":164,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[194,1068376],[194,969160],[194,971708],[194,970668],[194,970580],[194,1047552],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00016408300000000001,"waitEvent":[1,13560469137790220021],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"5743":{"id":5743,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[193,20553340],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":9.7079999999999992e-06,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"5776":{"id":5776,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":59,"notice":"Unmapped pages caused truncated backtrace; re-sampled 16 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":5.9833000000000001e-05,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[194,1059656],[194,1055188],[194,900048],[194,885952],[194,985940],[194,986324],[194,1047552],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"Network File Thread"},"5766":{"id":5766,"name":"GAIThread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":332157,"system_usec":0,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[193,21338176],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.332157541,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"5772":{"id":5772,"name":"ThreadPoolForegroundWorker","state":["TH_WAIT"],"system_usec":0,"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1735,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[194,1068376],[194,969160],[194,971708],[194,970800],[194,970532],[194,1047552],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0017357500000000001,"waitEvent":[1,13560469137790218317],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"5746":{"id":5746,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":302618,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.30261850000000001,"waitEvent":[1,13560469137789048237],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"10032":{"id":10032,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":54149,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.054149707999999998,"waitEvent":[1,13560469137792844869],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"5775":{"id":5775,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1866,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0018664160000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[194,1060580],[194,1055188],[194,900048],[194,885952],[194,985940],[194,986324],[194,1047552],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"network"},"5771":{"id":5771,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":302,"notice":"Unmapped pages caused truncated backtrace; re-sampled 18 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00030275000000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[194,1060580],[194,1055188],[194,900048],[194,885952],[194,985940],[194,930376],[194,986324],[194,1047552],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"ThreadPoolServiceThread"}},"pageFaults":60452,"userTimeTask":9.5396112080000002,"pid":369,"systemTimeTask":0,"flags":["suspended"],"residentMemoryBytes":55264736}, + "370" : {"resampled_images":[["bcb6c0e6-f639-3bfa-8304-f23173ee8d72",4300341248,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4315873280,""],["6f05fefa-9691-3c50-979b-f1b3f2f828b3",4330913792,""]],"timesThrottled":0,"pageIns":702,"waitInfo":["thread 5732: mach_msg receive on port set 0xbc3076d67e83a09b"],"timesDidThrottle":0,"suspendCount":1,"procname":"WidgetKitExtension","copyOnWriteFaults":157,"threadById":{"5732":{"id":5732,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":227821,"notice":"Unmapped pages caused truncated backtrace; re-sampled 17 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.22782116599999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,338058016],[2,338057660],[2,338186288],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4},"5790":{"id":5790,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13595,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.013595291000000001,"waitEvent":[1,13560469137790283197],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"5789":{"id":5789,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5824,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0058240000000000002,"waitEvent":[1,13560469137790281043],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"5739":{"id":5739,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":11941,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.011941541,"waitEvent":[1,13560469137796509773],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":2890,"userTimeTask":0.28032908299999998,"pid":370,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":6832792}, + "372" : {"resampled_images":[["7be65515-3f69-3a7c-ab77-94694f06970c",4310892544,""]],"timesThrottled":0,"pageIns":20,"timesDidThrottle":0,"procname":"online-auth-agent","copyOnWriteFaults":35,"threadById":{"5954":{"id":5954,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.1832999999999999e-05,"waitEvent":[1,13560469137797494595],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"5956":{"id":5956,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5941,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0059415409999999998,"waitEvent":[1,13560469137794204291],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":392,"userTimeTask":0.029583374999999999,"pid":372,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1163808}, + "371" : {"resampled_images":[["be91175a-2cc9-33c9-a6ce-c88e5bd57152",4343562240,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4345135104,""]],"timesThrottled":0,"pageIns":95,"timesDidThrottle":0,"procname":"remotemanagementd","copyOnWriteFaults":52,"threadById":{"5972":{"id":5972,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":9.1249999999999999e-06,"waitEvent":[1,13560469137790815555],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"5967":{"id":5967,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":16,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.6708e-05,"waitEvent":[1,13560469137797506211],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"5963":{"id":5963,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7013,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0070133749999999996,"waitEvent":[1,13560469137790242115],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":852,"userTimeTask":0.147896625,"pid":371,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":2310768}, + "373" : {"resampled_images":[["955f9763-dd8a-34c7-924c-85fba7e842db",4372824064,""]],"timesThrottled":0,"pageIns":4,"timesDidThrottle":0,"procname":"PasscodeSettingsSubscriber","copyOnWriteFaults":41,"threadById":{"5968":{"id":5968,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.1166e-05,"waitEvent":[1,13560469137797514923],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"5971":{"id":5971,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":5.7910000000000001e-06,"waitEvent":[1,13560469137790834299],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":473,"userTimeTask":0.031507832999999999,"pid":373,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1327688}, + "374" : {"resampled_images":[["ae0f6789-a3e7-35ca-8d56-c3146ac964a8",4367581184,""]],"timesThrottled":0,"pageIns":3,"timesDidThrottle":0,"procname":"ManagementTestSubscriber","copyOnWriteFaults":39,"threadById":{"5976":{"id":5976,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.0375000000000001e-05,"waitEvent":[1,13560469137797488787],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"5979":{"id":5979,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":6.9160000000000004e-06,"waitEvent":[1,13560469137788950139],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":493,"userTimeTask":0.033360041,"pid":374,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1344072}, + "375" : {"resampled_images":[["83e8852a-9e4d-3b64-917a-deae9521a579",4303339520,""]],"timesThrottled":0,"pageIns":4,"timesDidThrottle":0,"procname":"InteractiveLegacyProfilesSubscr","copyOnWriteFaults":44,"threadById":{"5984":{"id":5984,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":18,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.8499999999999999e-05,"waitEvent":[1,13560469137797456019],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"5985":{"id":5985,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":11893,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.011893291,"waitEvent":[1,13560469137788927987],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":529,"userTimeTask":0.037779332999999998,"pid":375,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1507912}, + "376" : {"pid":376,"residentMemoryBytes":1720904,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":16,"pageFaults":993,"userTimeTask":0.057471041,"procname":"AccountSubscriber","copyOnWriteFaults":46,"threadById":{"10173":{"id":10173,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":9.7909999999999999e-06,"waitEvent":[1,13560469137788477755],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"5993":{"id":5993,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":25,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.5958000000000001e-05,"waitEvent":[1,13560469137797503307],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "377" : {"resampled_images":[["d21266e6-a3d4-35d2-a4f8-cdae35f90855",4329897984,""]],"timesThrottled":0,"pageIns":2,"timesDidThrottle":0,"procname":"LegacyProfilesSubscriber","copyOnWriteFaults":44,"threadById":{"5998":{"id":5998,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":23,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.3458000000000001e-05,"waitEvent":[1,13560469137797512019],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"6002":{"id":6002,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137787334283],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"6001":{"id":6001,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":73,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":7.3875000000000007e-05,"waitEvent":[1,13560469137787318947],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":520,"userTimeTask":0.038825540999999998,"pid":377,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1442376}, + "379" : {"resampled_images":[["2b1db659-507c-3ad9-9633-320e8b3b0003",4301357056,""]],"timesThrottled":0,"pageIns":1635,"waitInfo":["thread 6194: pthread condvar 0x1090b8db0"],"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.Networking","copyOnWriteFaults":101,"threadById":{"7016":{"id":7016,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6407,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.006407083,"waitEvent":[1,13560469137796847677],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"6194":{"id":6194,"name":"IndexedDB Serialization","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5154,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0051545829999999999,"waitEvent":[1,13560469133898055515],"continuation":[0,68887633940],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322500],[2,386795792],[2,400763500],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6666":{"id":6666,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":131493,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 5 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.13149312499999999,"waitEvent":[1,13560469137794317069],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,440017700],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6900":{"id":6900,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":503170,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.503170958,"waitEvent":[1,13560469137787746037],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"6075":{"id":6075,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":790421,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.79042141600000004,"waitEvent":[1,13560469137794124525],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392]],"systemTime":0,"schedPriority":4},"6978":{"id":6978,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":242085,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.24208525,"waitEvent":[1,13560469137787680501],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"6768":{"id":6768,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":372262,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.372262541,"waitEvent":[1,13560469137786171469],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"6086":{"id":6086,"name":"com.apple.NSURLConnectionLoader","state":["TH_WAIT"],"system_usec":0,"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21819,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.021819708,"waitEvent":[1,13560469137784978845],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6772":{"id":6772,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":375676,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.37567604100000002,"waitEvent":[1,13560469137788524155],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":16568,"userTimeTask":6.4471341659999997,"pid":379,"systemTimeTask":0,"flags":["suspended","frozen","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":32621488}, + "380" : {"timesThrottled":0,"pageIns":43,"waitInfo":["thread 6083: mach_msg receive on port set 0xbc3076d67e8384cb"],"timesDidThrottle":0,"procname":"com.apple.Safari.History","copyOnWriteFaults":63,"threadById":{"7227":{"id":7227,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137784362619],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"6083":{"id":6083,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":58439,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.058439583000000003,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,598559600],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":1466,"userTimeTask":0.17212229100000001,"pid":380,"systemTimeTask":0,"residentMemoryBytes":3293928}, + "382" : {"resampled_images":[["c0470d5b-dd8c-333b-a7ab-82bb3e93d6c9",4363370496,""]],"timesThrottled":0,"pageIns":322,"waitInfo":["thread 6092: mach_msg receive on port set 0xbc3076d67e837a7b","thread 6101: semaphore port 0xbc3076d76443b4db owned by pid 382","thread 6332: semaphore port 0xbc3076d76414f56b owned by pid 382","thread 6490: semaphore port 0xbc3076d765689ccb owned by pid 382","thread 6923: semaphore port 0xbc3076d7644487fb owned by pid 382"],"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.GPU","copyOnWriteFaults":96,"threadById":{"6490":{"id":6490,"name":"RemoteRenderingBackend work queue","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":274798,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 6 frames","basePriority":4,"userFrames":[[2,1124416196]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.27479820799999999,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"resampledUserFrames":[[2,1124416196],[2,429864672],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6923":{"id":6923,"name":"RemoteGraphicsContextGL work queue","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13348,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 6 frames","basePriority":4,"userFrames":[[2,1124416196]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.013348832999999999,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"resampledUserFrames":[[2,1124416196],[2,429864672],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6101":{"id":6101,"name":"RemoteRenderingBackend work queue","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":86928,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 6 frames","basePriority":4,"userFrames":[[2,1124416196]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.086928332999999997,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"resampledUserFrames":[[2,1124416196],[2,429864672],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6332":{"id":6332,"name":"RemoteRenderingBackend work queue","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":313323,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 6 frames","basePriority":4,"userFrames":[[2,1124416196]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.31332370799999998,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"resampledUserFrames":[[2,1124416196],[2,429864672],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6696":{"id":6696,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":160578,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 5 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.16057850000000001,"waitEvent":[1,13560469137785065221],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,440017700],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6092":{"id":6092,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":79833,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.079833625000000005,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392]],"systemTime":0,"schedPriority":4},"6985":{"id":6985,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":59711,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.059711832999999999,"waitEvent":[1,13560469137792791203],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"6710":{"id":6710,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":71220,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.071220375000000002,"waitEvent":[1,13560469137787744333],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7012":{"id":7012,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":10,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.0665999999999999e-05,"waitEvent":[1,13560469137796474851],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":25031,"userTimeTask":1.6744434159999999,"pid":382,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":28116088}, + "381" : {"resampled_images":[["3bf29fb6-9a39-36c9-ab1d-a630e3eadb35",4365844480,""]],"timesThrottled":0,"pageIns":26,"invalid_images":1,"timesDidThrottle":0,"procname":"com.apple.Safari.SafeBrowsing.S","copyOnWriteFaults":48,"threadById":{"6116":{"id":6116,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":24,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.4833000000000001e-05,"waitEvent":[1,13560469137797485059],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"6117":{"id":6117,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":36553,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.036553165999999998,"waitEvent":[1,13560469137789054603],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":885,"userTimeTask":0.10602475,"pid":381,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledAllImages"],"residentMemoryBytes":2441840}, + "383" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4298932224,""]],"timesThrottled":0,"pageIns":39,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":59,"threadById":{"6996":{"id":6996,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":49952,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.049952165999999999,"waitEvent":[1,13560469137786153979],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"6111":{"id":6111,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":9.2499999999999995e-06,"waitEvent":[1,13560469137797461827],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":2228,"userTimeTask":0.16182983300000001,"pid":383,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":7832216}, + "384" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4371611648,""]],"timesThrottled":0,"pageIns":10,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":58,"threadById":{"6113":{"id":6113,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.1659999999999994e-06,"waitEvent":[1,13560469137797464731],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"6109":{"id":6109,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":42097,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.042097791000000002,"waitEvent":[1,13560469137792924635],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":1163,"userTimeTask":0.048868750000000002,"pid":384,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":6111856}, + "385" : {"resampled_images":[["76f869b9-a19a-3453-9b14-ef57b029e2e7",4341497856,""]],"timesThrottled":0,"pageIns":15,"waitInfo":["thread 6160: mach_msg receive on port set 0xbc3076d67e83c58b"],"timesDidThrottle":0,"procname":"AuthenticationServicesAgent","copyOnWriteFaults":42,"threadById":{"6166":{"id":6166,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4271,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0042711659999999999,"waitEvent":[1,13560469137788951843],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"6160":{"id":6160,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":40651,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.040651332999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,772079036],[2,1792851956],[2,624855392]],"systemTime":0,"schedPriority":4}},"pageFaults":786,"userTimeTask":0.045926833,"pid":385,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1589832}, + "386" : {"resampled_images":[["24e62409-ac44-3f93-8074-af3522593249",4298555392,""]],"timesThrottled":0,"pageIns":1489,"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.WebContent","copyOnWriteFaults":108,"threadById":{"7038":{"id":7038,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":676,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00067629099999999998,"waitEvent":[1,13560469137792801427],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"7195":{"id":7195,"name":"JIT Worklist Helper Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4114,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0041147909999999996,"waitEvent":[1,13560469137784260701],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"7196":{"id":7196,"name":"JIT Worklist Helper Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6663,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0066639580000000002,"waitEvent":[1,13560469137784246677],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6198":{"id":6198,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2423373,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.4233732909999999,"waitEvent":[1,13560469137794233445],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392]],"systemTime":0,"schedPriority":4},"6303":{"id":6303,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":123171,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 5 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.123171708,"waitEvent":[1,13560469137788526701],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,440017900],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6414":{"id":6414,"name":"WebCore: ServiceWorker","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":108947,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.108947458,"waitEvent":[1,13560469137794318773],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,386795792],[2,421671476],[2,421670976],[2,421648740],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4}},"pageFaults":15677,"userTimeTask":3.8334133750000001,"pid":386,"systemTimeTask":0,"flags":["suspended","frozen","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":86918344}, + "387" : {"timesThrottled":0,"pageIns":49,"waitInfo":["thread 6267: mach_msg receive on port set 0xbc3076d67e83c3db"],"timesDidThrottle":0,"procname":"handwritingd","copyOnWriteFaults":59,"threadById":{"6267":{"id":6267,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":35721,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[195,18288],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.035721749999999997,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"11920":{"id":11920,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":280,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00028083300000000003,"waitEvent":[1,13560469137792921227],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1338,"userTimeTask":0.054354125000000003,"pid":387,"systemTimeTask":0,"residentMemoryBytes":2376264}, + "388" : {"resampled_images":[["24e62409-ac44-3f93-8074-af3522593249",4331356160,""]],"timesThrottled":0,"pageIns":356,"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.WebContent","copyOnWriteFaults":120,"threadById":{"6418":{"id":6418,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":201327,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 5 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.20132762500000001,"waitEvent":[1,13560469137787675389],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,440017700],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6890":{"id":6890,"name":"Heap Helper Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":103876,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.103876125,"waitEvent":[1,13560469137793145941],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6878":{"id":6878,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":62262,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.062262249999999998,"waitEvent":[1,13560469137790217867],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"7246":{"id":7246,"name":"JSC Heap Collector Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4134,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0041342080000000003,"waitEvent":[1,13560469137789100797],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6920":{"id":6920,"name":"JIT Worklist Helper Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":666636,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.66663679099999995,"waitEvent":[1,13560469137790330645],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6893":{"id":6893,"name":"Heap Helper Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":106921,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.10692191600000001,"waitEvent":[1,13560469137788413717],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6417":{"id":6417,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5178479,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":5.1784797080000002,"waitEvent":[1,13560469137787671981],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392]],"systemTime":0,"schedPriority":4},"6892":{"id":6892,"name":"Heap Helper Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":107760,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.10776025,"waitEvent":[1,13560469137788432461],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6936":{"id":6936,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":92494,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.092494958000000002,"waitEvent":[1,13560469137793917037],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"6922":{"id":6922,"name":"JIT Worklist Helper Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":92008,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.092008624999999997,"waitEvent":[1,13560469137796896829],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6975":{"id":6975,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":69561,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.069561250000000005,"waitEvent":[1,13560469137796825075],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"6895":{"id":6895,"name":"Heap Helper Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":104592,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.10459275,"waitEvent":[1,13560469137788510973],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"6891":{"id":6891,"name":"Heap Helper Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":99400,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.099400749999999996,"waitEvent":[1,13560469137787663461],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"7204":{"id":7204,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137792955699],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"6921":{"id":6921,"name":"JIT Worklist Helper Thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":220590,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 9 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.22059041600000001,"waitEvent":[1,13560469137790213205],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322276],[2,439062780],[2,439063928],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4}},"pageFaults":17565,"userTimeTask":7.1631172080000001,"pid":388,"systemTimeTask":0,"flags":["suspended","frozen","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":153158936}, + "389" : {"timesThrottled":0,"pageIns":333,"waitInfo":["thread 6423: mach_msg receive on port set 0xbc3076d67e83da2b","thread 6461: mach_msg receive on port set 0xbc3076d67e83b71b"],"timesDidThrottle":0,"procname":"appstorecomponentsd","copyOnWriteFaults":96,"threadById":{"12106":{"id":12106,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":16,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.6291e-05,"waitEvent":[1,13560469137796528459],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"6423":{"id":6423,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":106248,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[196,448460],[196,123268],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.10624866600000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"6461":{"id":6461,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":718,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00071870799999999998,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"}},"pageFaults":3531,"userTimeTask":1.0576795830000001,"pid":389,"systemTimeTask":0,"residentMemoryBytes":6963944}, + "390" : {"resampled_images":[["ef10649b-5302-32e9-83ec-45cc7e4115cd",4302209024,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4303159296,""]],"timesThrottled":0,"pageIns":203,"waitInfo":["thread 6498: mach_msg receive on port set 0xbc3076d67e83d06b","thread 6517: mach_msg receive on port set 0xbc3076d67e83918b"],"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.PDFKit.PDFExtensionVi","copyOnWriteFaults":102,"threadById":{"6511":{"id":6511,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":482960,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.482960375,"waitEvent":[1,13560469137789002493],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"6902":{"id":6902,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1159,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001159083,"waitEvent":[1,13560469137790305349],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"6498":{"id":6498,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":650980,"notice":"Unmapped pages caused truncated backtrace; re-sampled 19 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.65098066600000004,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[2,1397049236],[2,1397057836],[2,18849188],[2,739086156],[2,739006260],[2,739002952],[2,338186320],[2,19128828],[2,624855392]],"systemTime":0,"schedPriority":4},"6517":{"id":6517,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1716,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0017164159999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4}},"pageFaults":7841,"userTimeTask":1.6259487909999999,"pid":390,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":31130424}, + "392" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4332371968,""]],"timesThrottled":0,"pageIns":14,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":59,"threadById":{"6542":{"id":6542,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":68582,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.068582708000000006,"waitEvent":[1,13560469137784355803],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"6543":{"id":6543,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":9.6250000000000002e-06,"waitEvent":[1,13560469137798402563],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":1609,"userTimeTask":0.11947854099999999,"pid":392,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":7717528}, + "393" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4330487808,""]],"timesThrottled":0,"pageIns":32,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":59,"threadById":{"6539":{"id":6539,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":9.7079999999999992e-06,"waitEvent":[1,13560469137798373523],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"6540":{"id":6540,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":48956,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0489565,"waitEvent":[1,13560469137793109315],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":1157,"userTimeTask":0.054051833000000001,"pid":393,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":7193240}, + "394" : {"timesThrottled":0,"pageIns":628,"waitInfo":["thread 6588: mach_msg receive on port set 0xbc3076d67e83da8b"],"timesDidThrottle":0,"procname":"com.apple.Safari.SandboxBroker","copyOnWriteFaults":90,"threadById":{"6617":{"id":6617,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":621,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000621708,"waitEvent":[1,13560469137785198203],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"6588":{"id":6588,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":97859,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[197,15096],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.097859000000000002,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2829,"userTimeTask":0.12810254099999999,"pid":394,"systemTimeTask":0,"residentMemoryBytes":4784752}, + "395" : {"pid":395,"residentMemoryBytes":2376264,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":41,"pageFaults":1090,"userTimeTask":0.23433458300000001,"procname":"dprivacyd","copyOnWriteFaults":45,"threadById":{"6911":{"id":6911,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.9707999999999998e-05,"waitEvent":[1,13560469137798390947],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4},"10832":{"id":10832,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1905,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0019054580000000001,"waitEvent":[1,13560469137790228091],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "396" : {"resampled_images":[["24e62409-ac44-3f93-8074-af3522593249",4374806528,""]],"timesThrottled":0,"pageIns":285,"waitInfo":["thread 6932: mach_msg receive on port set 0xbc3076d67e83c55b"],"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.WebContent","copyOnWriteFaults":87,"threadById":{"6932":{"id":6932,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":115169,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.115169916,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392]],"systemTime":0,"schedPriority":4},"6934":{"id":6934,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8738,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0087385410000000007,"waitEvent":[1,13560469137784976691],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":1889,"userTimeTask":0.142309833,"pid":396,"systemTimeTask":0,"flags":["suspended","frozen","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":4834064}, + "397" : {"timesThrottled":0,"pageIns":109,"waitInfo":["thread 7070: mach_msg receive on port set 0xbc3076d67e83d5db"],"timesDidThrottle":0,"procname":"com.apple.DocumentManagerCore.D","copyOnWriteFaults":65,"threadById":{"7656":{"id":7656,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2033,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0020336659999999999,"waitEvent":[1,13560469137792965923],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"7070":{"id":7070,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":11734,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[198,16408],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.011734625,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":1423,"userTimeTask":0.090948833000000007,"pid":397,"systemTimeTask":0,"flags":["frozen"],"residentMemoryBytes":2720408}, + "398" : {"timesThrottled":0,"pageIns":5,"waitInfo":["thread 7185: mach_msg receive on port set 0xbc3076d67e83855b"],"timesDidThrottle":0,"suspendCount":1,"procname":"ThumbnailExtension","copyOnWriteFaults":44,"threadById":{"8021":{"id":8021,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137785156915],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"8019":{"id":8019,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1009,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0010093330000000001,"waitEvent":[1,13560469137796970827],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"7484":{"id":7484,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2518,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0025187909999999998,"waitEvent":[1,13560469137787336437],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"8020":{"id":8020,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":368,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00036841599999999999,"waitEvent":[1,13560469137785146691],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"7185":{"id":7185,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":43034,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[2,739086156],[2,739006260],[2,739002952],[2,338186320],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.043034415999999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":789,"userTimeTask":0.18135699999999999,"pid":398,"systemTimeTask":0,"flags":["suspended"],"residentMemoryBytes":2671216}, + "399" : {"resampled_images":[["94159ed7-86ac-3976-ae5f-a42506c343a6",4303437824,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4310630400,""],["d4ac0bf6-95da-3b59-bce7-17d75e2d09cd",4312793088,""],["b216d2b9-a977-3eaf-850e-86f7dad3834d",4313038848,""]],"timesThrottled":0,"pageIns":2171,"waitInfo":["thread 7305: mach_msg receive on port set 0xbc3076d67e8385eb"],"timesDidThrottle":0,"suspendCount":1,"procname":"Files","copyOnWriteFaults":259,"threadById":{"7559":{"id":7559,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":39149,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.039149249999999997,"waitEvent":[1,13560469137785056701],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7306":{"id":7306,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":94612,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.094612957999999997,"waitEvent":[1,13560469137796489325],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7293":{"id":7293,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2345751,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.3457513749999999,"waitEvent":[1,13560469137784332397],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[199,117136],[2,624855392]],"systemTime":0,"schedPriority":4},"7976":{"id":7976,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":68,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":6.8332999999999998e-05,"waitEvent":[1,13560469137790748765],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7691":{"id":7691,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8981,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.008981625,"waitEvent":[1,13560469137789102501],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7844":{"id":7844,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4099,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0040991250000000003,"waitEvent":[1,13560469137796837453],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7305":{"id":7305,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":14332,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.014332666000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4}},"pageFaults":12379,"userTimeTask":2.9146160000000001,"pid":399,"systemTimeTask":0,"flags":["suspended","frozen","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":33113048}, + "400" : {"resampled_images":[["2e5c44bb-1f0f-32b3-bb13-72b474e7eb1c",4303306752,""]],"timesThrottled":0,"pageIns":16,"invalid_images":1,"waitInfo":["thread 7339: mach_msg receive on port set 0xbc3076d67e83867b"],"timesDidThrottle":0,"procname":"DesktopServicesHelper","copyOnWriteFaults":36,"threadById":{"7342":{"id":7342,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13393,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.013393250000000001,"waitEvent":[1,13560469137790298083],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"7339":{"id":7339,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":28792,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.028792249999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[200,87740],[2,624855392]],"systemTime":0,"schedPriority":4},"7341":{"id":7341,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":16096,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0160965,"waitEvent":[1,13560469137790289563],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":473,"userTimeTask":0.058282,"pid":400,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledAllImages"],"residentMemoryBytes":1262112}, + "401" : {"timesThrottled":0,"pageIns":101,"waitInfo":["thread 7382: mach_msg receive on port set 0xbc3076d67e8398ab","thread 7389: mach_msg receive on port set 0xbc3076d67e8396cb"],"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.quicklook.extension.p","copyOnWriteFaults":142,"threadById":{"7382":{"id":7382,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1786725,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[2,1397049236],[2,1397057836],[2,18849188],[2,739086156],[2,739006260],[2,739002952],[2,338186320],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.7867249999999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"7866":{"id":7866,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7065,"system_usec":0,"basePriority":4,"userFrames":[[2,1124418588],[2,440017700],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0070655409999999998,"waitEvent":[1,13560469137792805285],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7865":{"id":7865,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4398,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0043987080000000003,"waitEvent":[1,13560469137794119413],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"8111":{"id":8111,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":233,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00023395800000000001,"waitEvent":[1,13560469137797335789],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7389":{"id":7389,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":104533,"system_usec":0,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.104533916,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":3790,"userTimeTask":2.5551259580000001,"pid":401,"systemTimeTask":0,"flags":["suspended"],"residentMemoryBytes":10519432}, + "402" : {"resampled_images":[["24e62409-ac44-3f93-8074-af3522593249",4305780736,""],["3f924f6d-f7f6-30b0-86af-bf3020f97c3d",4307435520,""]],"timesThrottled":0,"pageIns":372,"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.WebContent","copyOnWriteFaults":106,"threadById":{"7406":{"id":7406,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":575132,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 5 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.57513212499999999,"waitEvent":[1,13560469137784349437],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,440017700],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"7405":{"id":7405,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20822979,"notice":"Unmapped pages caused truncated backtrace; re-sampled 32 frames","basePriority":4,"userFrames":[[2,417572704]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":20.822979332999999,"waitEvent":[1,13560469137784351141],"continuation":[0,68851103772],"resampledUserFrames":[[2,417572704],[2,416151168],[2,416287852],[2,417522696],[2,417593876],[2,417601800],[2,417476716],[2,416056656],[2,416046208],[2,415912844],[2,416056656],[2,416046208],[2,415912844],[2,416056656],[2,416046208],[2,415912844],[2,417790328],[2,412088780],[2,412087492],[2,413170624],[2,413335292],[2,115204956],[2,114928088],[2,114550168],[2,114868172],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392]],"systemTime":0,"schedPriority":4},"7411":{"id":7411,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":37274,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.037274124999999998,"waitEvent":[1,13560469137797314891],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":82351,"userTimeTask":22.391590083000001,"pid":402,"systemTimeTask":0,"flags":["suspended","frozen","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":411813584}, + "404" : {"resampled_images":[["2b1db659-507c-3ad9-9633-320e8b3b0003",4300324864,""]],"timesThrottled":0,"pageIns":5,"waitInfo":["thread 7415: mach_msg receive on port set 0xbc3076d67e83996b","thread 7417: pthread condvar 0x109050130","thread 7421: mach_msg receive on port set 0xbc3076d67e8399fb","thread 7422: mach_msg receive on port set 0xbc3076d67e839a5b","thread 8114: pthread condvar 0x10901c130","thread 8116: pthread condvar 0x109070130"],"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.Networking","copyOnWriteFaults":73,"threadById":{"8115":{"id":8115,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":394,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00039437499999999998,"waitEvent":[1,13560469137793931923],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"7417":{"id":7417,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":59252,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.059252790999999999,"waitEvent":[1,13560469133898129755],"continuation":[0,68887633940],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322500],[2,439062780],[2,439439724],[2,439703020],[2,237920220],[2,237950612],[2,237953504],[2,237997584],[2,1396665848],[2,1396665240]],"systemTime":0,"schedPriority":4},"8116":{"id":8116,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":276,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00027687499999999999,"waitEvent":[1,13560469133891613787],"continuation":[0,68887633940],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322500],[2,439062780],[2,439439724],[2,439703020],[2,237920220],[2,237950612],[2,237953504],[2,237997584],[2,1396665848],[2,1396665240]],"systemTime":0,"schedPriority":4},"8113":{"id":8113,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":386,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 5 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00038670799999999998,"waitEvent":[1,13560469137787598581],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,440017700],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"7421":{"id":7421,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":475,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00047524999999999998,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"7415":{"id":7415,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":26100,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.026100208,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392]],"systemTime":0,"schedPriority":4},"8114":{"id":8114,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":257,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124418588]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00025750000000000002,"waitEvent":[1,13560469133898115931],"continuation":[0,68887633940],"resampledUserFrames":[[2,1124418588],[2,1396695148],[2,439322500],[2,439062780],[2,439439724],[2,439703020],[2,237920220],[2,237950612],[2,237953504],[2,237997584],[2,1396665848],[2,1396665240]],"systemTime":0,"schedPriority":4},"7422":{"id":7422,"name":"com.apple.CFStream.LegacyThread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":240,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 10 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00024016599999999999,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115446348],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4}},"pageFaults":2058,"userTimeTask":0.102547583,"pid":404,"systemTimeTask":0,"flags":["suspended","frozen","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":4195008}, + "405" : {"resampled_images":[["c0470d5b-dd8c-333b-a7ab-82bb3e93d6c9",4330979328,""]],"timesThrottled":0,"pageIns":27,"invalid_images":1,"waitInfo":["thread 7424: mach_msg receive on port set 0xbc3076d67e839a8b","thread 7439: semaphore port 0xbc3076d76415169b owned by pid 405"],"timesDidThrottle":0,"suspendCount":1,"procname":"com.apple.WebKit.GPU","copyOnWriteFaults":86,"threadById":{"7440":{"id":7440,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":446,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00044641599999999999,"waitEvent":[1,13560469137788922875],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"7424":{"id":7424,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":27880,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.027880166000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,427750360],[2,624855392]],"systemTime":0,"schedPriority":4},"7913":{"id":7913,"name":"JavaScriptCore libpas scavenger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2875,"system_usec":0,"basePriority":4,"userFrames":[[2,1124418588],[2,440017700],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0028755410000000001,"waitEvent":[1,13560469137790223429],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7439":{"id":7439,"name":"RemoteRenderingBackend work queue","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":142463,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 6 frames","basePriority":4,"userFrames":[[2,1124416196]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.142463958,"waitEvent":[0,68849714976],"continuation":[0,68850996132],"resampledUserFrames":[[2,1124416196],[2,429864672],[2,439463516],[2,439472356],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4}},"pageFaults":2500,"userTimeTask":0.56154083300000002,"pid":405,"systemTimeTask":0,"flags":["suspended","uuidFaultFlags0x00300000","resampledAllImages"],"residentMemoryBytes":11043720}, + "406" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4364517376,""]],"timesThrottled":0,"pageIns":117,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":58,"threadById":{"7447":{"id":7447,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":15917,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.015917125000000001,"waitEvent":[1,13560469137786283347],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"7445":{"id":7445,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":10,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.0332999999999999e-05,"waitEvent":[1,13560469137798361083],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"pageFaults":707,"userTimeTask":0.022811166000000001,"pid":406,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":4244080}, + "407" : {"resampled_images":[["e4050310-b58b-3e05-8ed7-6f660f94fc88",4378263552,""]],"timesThrottled":0,"pageIns":82,"timesDidThrottle":0,"procname":"MTLCompilerService","copyOnWriteFaults":58,"threadById":{"7446":{"id":7446,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":7.7500000000000003e-06,"waitEvent":[1,13560469137798363987],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"7448":{"id":7448,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":14284,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.014284041000000001,"waitEvent":[1,13560469137789098643],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":696,"userTimeTask":0.020773916,"pid":407,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":4244080}, + "408" : {"timesThrottled":0,"pageIns":17,"waitInfo":["thread 7532: mach_msg receive on port set 0xbc3076d67e83930b"],"timesDidThrottle":0,"procname":"SharingXPCHelper","copyOnWriteFaults":78,"threadById":{"7532":{"id":7532,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":178438,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[201,6436],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.17843858300000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"10753":{"id":10753,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":42387,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.042387000000000001,"waitEvent":[1,13560469137788910555],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1660,"userTimeTask":0.46957274999999998,"pid":408,"systemTimeTask":0,"residentMemoryBytes":3588720}, + "411" : {"resampled_images":[["a945305c-65af-351f-9f10-3cd5dada8d2c",4311138304,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4311990272,""],["0896df29-70bb-3ba3-a7bb-2730d038a3b4",4312629248,""],["d4ac0bf6-95da-3b59-bce7-17d75e2d09cd",4318101504,""],["b216d2b9-a977-3eaf-850e-86f7dad3834d",4319150080,""]],"timesThrottled":0,"pageIns":1334,"waitInfo":["thread 7580: mach_msg receive on port set 0xbc3076d67e839b7b","thread 7629: mach_msg receive on port set 0xbc3076d67e839bdb"],"timesDidThrottle":0,"suspendCount":1,"procname":"MessagesViewService","copyOnWriteFaults":208,"threadById":{"7572":{"id":7572,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":598556,"notice":"Unmapped pages caused truncated backtrace; re-sampled 12 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.59855637500000003,"waitEvent":[1,13560469137788292869],"continuation":[0,68851103772],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[202,15516],[2,624855392]],"systemTime":0,"schedPriority":4},"7582":{"id":7582,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":9012,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0090129159999999993,"waitEvent":[1,13560469137797322157],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7579":{"id":7579,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":69208,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.069208083000000004,"waitEvent":[1,13560469137788437573],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7602":{"id":7602,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20710,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.020710040999999998,"waitEvent":[1,13560469137788391829],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7583":{"id":7583,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":60974,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.060974082999999998,"waitEvent":[1,13560469137797318749],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7580":{"id":7580,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7117,"system_usec":0,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0071170000000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"7629":{"id":7629,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":246,"notice":"Unmapped pages caused truncated backtrace; re-sampled 13 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00024641600000000001,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,486064028],[2,18659336],[2,1396668108],[2,1396665252]],"systemTime":0,"schedPriority":4},"7581":{"id":7581,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1538,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0015380000000000001,"waitEvent":[1,13560469137784968621],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7578":{"id":7578,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":14434,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.014434583000000001,"waitEvent":[1,13560469137788435869],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":7764,"userTimeTask":0.85447262499999999,"pid":411,"systemTimeTask":0,"flags":["suspended","frozen","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":17384448}, + "412" : {"timesThrottled":0,"pageIns":53,"waitInfo":["thread 7677: mach_msg receive on port set 0xbc3076d67e839c6b","thread 7683: mach_msg receive on port set 0xbc3076d67e8387cb"],"timesDidThrottle":0,"suspendCount":1,"procname":"AirDrop","copyOnWriteFaults":108,"threadById":{"7845":{"id":7845,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":162,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00016200000000000001,"waitEvent":[1,13560469137793015075],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"7683":{"id":7683,"name":"com.apple.uikit.eventfetch-thread","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":10585,"system_usec":0,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[2,154813244],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.010585208,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"7677":{"id":7677,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INTERACTIVE","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":467079,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,1065276264],[2,153547728],[2,153546804],[2,1397049236],[2,1397057836],[2,18849188],[2,739086156],[2,739006260],[2,739002952],[2,338186320],[2,19128828],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.46707933299999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"7846":{"id":7846,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":6.6660000000000002e-06,"waitEvent":[1,13560469137792991219],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"7681":{"id":7681,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":19379,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.019379832999999999,"waitEvent":[1,13560469137788309909],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4},"7847":{"id":7847,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,13560469137787310035],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"7782":{"id":7782,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3489,"basePriority":4,"userFrames":[[2,1396665232]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0034892080000000002,"waitEvent":[1,13560469137787749445],"continuation":[0,68851103772],"systemTime":0,"schedPriority":4}},"pageFaults":2777,"userTimeTask":0.58760224999999999,"pid":412,"systemTimeTask":0,"flags":["suspended"],"residentMemoryBytes":7684880}, + "413" : {"timesThrottled":0,"pageIns":4,"waitInfo":["thread 7687: mach_msg receive on port set 0xbc3076d67e8387fb","thread 7693: mach_msg receive on port set 0xbc3076d67e83933b"],"timesDidThrottle":0,"procname":"SCHelper","copyOnWriteFaults":36,"threadById":{"7687":{"id":7687,"schedPriority":37,"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","state":["TH_WAIT"],"user_usec":21110,"basePriority":37,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[203,16888],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.021110707999999999,"continuation":[0,68850618692],"systemTime":0,"name":"SCHelper main thread"},"7693":{"id":7693,"schedPriority":37,"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","state":["TH_WAIT"],"user_usec":3379,"basePriority":37,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[203,13480],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.003379791,"continuation":[0,68850618692],"systemTime":0,"name":"SESSION|0x1703|sharingd(65):com.apple.sharingd|*\/\/com.apple.rad"},"12006":{"id":12006,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":471,"basePriority":37,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.00047191600000000001,"waitEvent":[1,13560469137797026795],"continuation":[0,68854897416],"systemTime":0,"schedPriority":37},"12131":{"id":12131,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":15,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.5208000000000001e-05,"waitEvent":[1,13560469137794270875],"continuation":[0,68854897416],"systemTime":0,"schedPriority":31}},"pageFaults":428,"userTimeTask":0.059008875000000002,"pid":413,"systemTimeTask":0,"residentMemoryBytes":1278496}, + "415" : {"pid":415,"residentMemoryBytes":5898864,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":26,"pageFaults":1930,"userTimeTask":0.16065795799999999,"procname":"iconservicesagent","copyOnWriteFaults":66,"threadById":{"7942":{"id":7942,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":24,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.4499999999999999e-05,"waitEvent":[1,13560469137798382235],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4},"10190":{"id":10190,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1225,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.001225708,"waitEvent":[1,13560469137790240411],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "416" : {"pid":416,"residentMemoryBytes":6046360,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":26,"pageFaults":808,"userTimeTask":0.062266124999999999,"procname":"MTLCompilerService","copyOnWriteFaults":59,"threadById":{"7953":{"id":7953,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":31980,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.031980458000000003,"waitEvent":[1,13560469137788946731],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"7954":{"id":7954,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":25,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.5916000000000001e-05,"waitEvent":[1,13560469137798314835],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "417" : {"pid":417,"residentMemoryBytes":5669528,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":16,"pageFaults":702,"userTimeTask":0.033274540999999998,"procname":"MTLCompilerService","copyOnWriteFaults":59,"threadById":{"7955":{"id":7955,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":22,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.1999999999999999e-05,"waitEvent":[1,13560469137798317739],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4},"7958":{"id":7958,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":168,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000168875,"waitEvent":[1,13560469137790304899],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "418" : {"resampled_images":[["9c8496a2-ba64-3cf0-98d3-4bbb51d53bd2",4372594688,""]],"timesThrottled":0,"pageIns":76,"waitInfo":["thread 8043: mach_msg receive on port set 0xbc3076d67e8388eb"],"timesDidThrottle":0,"procname":"passwordbreachd","copyOnWriteFaults":52,"threadById":{"8043":{"id":8043,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":52935,"notice":"Unmapped pages caused truncated backtrace; re-sampled 11 frames","basePriority":4,"userFrames":[[2,1124416328]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.052935916,"continuation":[0,68850618692],"resampledUserFrames":[[2,1124416328],[2,1124491272],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,115166468],[2,772079036],[204,14708],[2,624855392]],"systemTime":0,"schedPriority":4},"8048":{"id":8048,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":42101,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.042101874999999997,"waitEvent":[1,13560469137790237003],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4},"8057":{"id":8057,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":6.0410000000000003e-06,"waitEvent":[1,13560469137793942147],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":968,"userTimeTask":0.15800479100000001,"pid":418,"systemTimeTask":0,"flags":["dirty","uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":1868360}, + "420" : {"pid":420,"residentMemoryBytes":2048584,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":107,"pageFaults":944,"userTimeTask":0.15435612500000001,"procname":"ospredictiond","copyOnWriteFaults":52,"threadById":{"8275":{"id":8275,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":28,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.8583000000000001e-05,"waitEvent":[1,13560469137798291603],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"8272":{"id":8272,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":2625,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0026259579999999999,"waitEvent":[1,13560469137794069155],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "421" : {"pid":421,"residentMemoryBytes":3834440,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":533,"pageFaults":1663,"userTimeTask":0.61861524999999995,"procname":"intelligenceplatformd","copyOnWriteFaults":76,"threadById":{"8321":{"id":8321,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":359110,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.359110916,"waitEvent":[1,13560469137794282803],"continuation":[0,68854897416],"qosOverride":"QOS_CLASS_DEFAULT","systemTime":0,"schedPriority":4},"8345":{"id":8345,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.1957999999999999e-05,"waitEvent":[1,13560469137798294507],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "422" : {"timesThrottled":0,"pageIns":274,"waitInfo":["thread 8290: mach_msg receive on port set 0xbc3076d67e83948b"],"timesDidThrottle":0,"procname":"fitnesscoachingd","copyOnWriteFaults":58,"threadById":{"8290":{"id":8290,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":99120,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[205,11940],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.099120541000000006,"continuation":[0,68850618692],"systemTime":0,"schedPriority":0},"8308":{"id":8308,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":18055,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.018055749999999999,"waitEvent":[1,13560469137792830787],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1580,"userTimeTask":0.122172208,"pid":422,"systemTimeTask":0,"residentMemoryBytes":2015816}, + "423" : {"timesThrottled":0,"pageIns":687,"waitInfo":["thread 8291: mach_msg receive on port set 0xbc3076d67e836f6b","thread 8339: mach_msg receive on port set 0xbc3076d67e836fcb","thread 8358: mach_msg receive on port set 0xbc3076d67e83984b"],"timesDidThrottle":0,"procname":"dataaccessd","copyOnWriteFaults":131,"threadById":{"10612":{"id":10612,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3151,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0031515829999999999,"waitEvent":[1,13560469137796939763],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"8291":{"id":8291,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":751031,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[206,14144],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.75103125000000004,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"8358":{"id":8358,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4753,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,135169448],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0047531250000000004,"continuation":[0,68850618692],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"},"8339":{"id":8339,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3577,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,18659336],[2,1396668108],[2,1396665252]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.003577958,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4}},"pageFaults":2982,"userTimeTask":1.6713341660000001,"pid":423,"systemTimeTask":0,"residentMemoryBytes":7733872}, + "424" : {"pid":424,"residentMemoryBytes":1524296,"timesDidThrottle":0,"systemTimeTask":0,"pageIns":14,"pageFaults":751,"userTimeTask":0.052255665999999999,"procname":"ASPCarryLog","copyOnWriteFaults":41,"threadById":{"8299":{"id":8299,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":4213,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.004213708,"waitEvent":[1,13560469137789156315],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"8324":{"id":8324,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":27,"basePriority":4,"userFrames":[[2,1124448856],[2,237999940],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.7083000000000001e-05,"waitEvent":[1,13560469137798276259],"continuation":[0,68855315520],"systemTime":0,"schedPriority":4}},"timesThrottled":0}, + "426" : {"resampled_images":[["b9fb6011-03d9-3ed5-9d02-8456862d2f86",4375658496,""]],"timesThrottled":0,"pageIns":16,"invalid_images":1,"waitInfo":["thread 8338: mach_msg receive on port set 0xbc3076d67e836ffb"],"timesDidThrottle":0,"procname":"clipserviced","copyOnWriteFaults":44,"threadById":{"8340":{"id":8340,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":54809,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.054809125,"waitEvent":[1,13560469137794281099],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"8338":{"id":8338,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":118923,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[207,13524],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.118923208,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"8341":{"id":8341,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":33641,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.033641041000000003,"waitEvent":[1,13560469137794359611],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":1},"8343":{"id":8343,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":53837,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.053837791000000003,"waitEvent":[1,13560469137794272579],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"8344":{"id":8344,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":6.4160000000000001e-06,"waitEvent":[1,13560469137794356203],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1199,"userTimeTask":0.26121758299999998,"pid":426,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledAllImages"],"residentMemoryBytes":1770096}, + "428" : {"resampled_images":[["29d51080-c76f-3191-a89f-486fe9b4d8e6",4373004288,""],["3eb26cf9-9221-39f5-83d4-0c8ae83d3424",4373774336,""]],"timesThrottled":0,"pageIns":48,"timesDidThrottle":0,"procname":"com.apple.SiriTTSService.TrialP","copyOnWriteFaults":48,"threadById":{"9143":{"id":9143,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":20,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124448856]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.0125000000000001e-05,"waitEvent":[1,13560469137798340755],"continuation":[0,68855315520],"resampledUserFrames":[[2,1124448856],[2,237999988],[2,237999940]],"systemTime":0,"schedPriority":4},"9144":{"id":9144,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":43907,"notice":"Unmapped pages caused truncated backtrace; re-sampled 3 frames","basePriority":4,"userFrames":[[2,1124417616]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.043907665999999998,"waitEvent":[1,13560469137794286211],"continuation":[0,68854897416],"resampledUserFrames":[[2,1124417616],[2,1396665924],[2,1396665240]],"systemTime":0,"schedPriority":4}},"pageFaults":725,"userTimeTask":0.061047083000000002,"pid":428,"systemTimeTask":0,"flags":["uuidFaultFlags0x00300000","resampledExtraImages"],"residentMemoryBytes":2540104}, + "432" : {"timesThrottled":0,"pageIns":40,"waitInfo":["thread 10492: mach_msg receive on port set 0xbc3076d67e83732b"],"timesDidThrottle":0,"procname":"gamecontrollerd","copyOnWriteFaults":50,"threadById":{"10492":{"id":10492,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":84530,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555420],[208,25948],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.084530207999999996,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"11478":{"id":11478,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6022,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0060219999999999996,"waitEvent":[1,13560469137790292971],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4},"12114":{"id":12114,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":41,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":4.1499999999999999e-05,"waitEvent":[1,13560469137785227563],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1186,"userTimeTask":0.14051787499999999,"pid":432,"systemTimeTask":0,"residentMemoryBytes":2441800}, + "433" : {"timesThrottled":0,"pageIns":178,"waitInfo":["thread 10504: mach_msg receive on port set 0xbc3076d67e8373eb"],"timesDidThrottle":0,"procname":"progressd","copyOnWriteFaults":55,"threadById":{"10504":{"id":10504,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":462374,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[209,1297036],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.46237420800000001,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"12111":{"id":12111,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.1249999999999993e-06,"waitEvent":[1,13560469137794325139],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1995,"userTimeTask":0.49985329099999998,"pid":433,"systemTimeTask":0,"residentMemoryBytes":2736712}, + "434" : {"timesThrottled":0,"pageIns":287,"waitInfo":["thread 10523: mach_msg receive on port set 0xbc3076d67e83711b"],"timesDidThrottle":0,"procname":"com.apple.VideoSubscriberAccoun","copyOnWriteFaults":44,"threadById":{"10523":{"id":10523,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":187217,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[2,1397049292],[2,1397057836],[2,18849188],[210,15592],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.187217416,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"10544":{"id":10544,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":78,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":7.8083000000000004e-05,"waitEvent":[1,13560469137788924579],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":1323,"userTimeTask":0.190989458,"pid":434,"systemTimeTask":0,"residentMemoryBytes":2523720}, + "436" : {"timesThrottled":0,"pageIns":8,"waitInfo":["thread 10700: mach_msg receive on port set 0xbc3076d67e8374db"],"timesDidThrottle":0,"procname":"crash_mover","copyOnWriteFaults":35,"threadById":{"10700":{"id":10700,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":26992,"basePriority":4,"userFrames":[[2,1124416328],[2,1124491848],[2,1124417676],[2,114862832],[2,114867508],[2,114888404],[2,18555700],[2,18555336],[211,26236],[2,624855392],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.026992749999999999,"continuation":[0,68850618692],"systemTime":0,"schedPriority":4},"10702":{"id":10702,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_USER_INITIATED","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":29131,"basePriority":4,"userFrames":[[2,1124417616],[2,1396665240]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.029131125000000001,"waitEvent":[1,13560469137787626835],"continuation":[0,68854897416],"systemTime":0,"schedPriority":4}},"pageFaults":341,"userTimeTask":0.056363083000000001,"pid":436,"systemTimeTask":0,"residentMemoryBytes":1180152} + }, + "postSampleVMStats" : {"faults":1717477,"active_count":53595,"compressor_page_count":28841,"total_uncompressed_pages_in_compressor":118686,"hits":0,"decompressions":89978,"swapouts":13921,"wire_count":33932,"lookups":0,"purges":44003,"pageouts":4271,"pageins":337971,"external_page_count":53715,"zero_fill_count":903230,"free_count":15472,"cow_faults":38325,"speculative_count":3846,"swapins":1072,"compressions":229441,"reactivations":310927,"inactive_count":48926,"throttled_count":0,"purgeable_count":2081,"internal_page_count":52652}, + "binaryImages" : [["291aaed2-c0da-67f8-2467-48a64e41174c",18446743936270598144,"U"],["00000000-0000-0000-0000-000000000000",0,"A"],["c7e183b8-45c7-3b7a-b946-21e89e7e194e",6442450944,"S"],["4bbf7eaa-f26c-304c-887e-5b3754b835ad",4366647296,"P"],["f409cff8-a57b-3cd0-b4bc-f9a0980f80a2",4367761408,"P"],["7341cc08-ff31-3ce5-949a-7fd9b4deca08",4369956864,"P"],["9dafce4a-19a6-3ddf-bf3b-f4b7ca53b42d",4336648192,"P"],["ab158c0d-e079-35dd-9808-47fbfc51928a",4338008064,"P"],["81e512a9-9b1e-3367-9d44-25676c57ba03",4337909760,"P"],["0f383256-113d-3eaf-b2f3-02f33441fa16",4298375168,"P"],["04870636-c54e-3f26-9bab-bea47ecc6acc",4332371968,"P"],["03b6597c-37ff-318d-88fe-102ca1015e37",4299915264,"P"],["aa6c8cf3-3b00-323f-aec7-25472bec9e95",4321705984,"P"],["25fb3721-2a3f-3299-b93d-b2de0cabf59d",4378411008,"P"],["09700c67-01cb-3dc5-b79d-e96f7746a6cf",4308303872,"P"],["c3c8cab6-b3a6-3e2d-b7b8-7873d4c95d7b",4343332864,"P"],["a79b9ad9-205f-33ff-b63b-5b3d21f4f74e",4334059520,"P"],["23a5f85f-b6b2-3053-82ea-9a65f272e52e",4309237760,"P"],["756e91e5-86e7-3425-922e-2db764a7e677",4305502208,"P"],["759769de-ea52-3294-a893-67266398daa9",4339138560,"P"],["097fc8ce-12c6-38f4-8e90-66ac83c66866",4365402112,"P"],["901daa59-6b50-3411-b62b-d3f9e62b6827",4295950336,"P"],["6e8e8688-d4d8-3c7e-97cf-051a2038952d",4333387776,"P"],["f3a7bcc1-1782-3203-9232-39de5825c4bf",4362829824,"P"],["32bc27cc-85a9-3485-850f-1a48f0d7e131",4304158720,"P"],["e3a528d0-159c-329d-af44-c02e29370455",4375937024,"P"],["5269465c-82cf-3915-9976-804741693686",4308107264,"P"],["90507c49-cfb0-3dbb-b9d4-76a01a5cda00",4344217600,"P"],["94cec226-0067-35f0-a139-b6ab9a6067aa",4334288896,"P"],["01df72a1-acfa-33e9-9852-031cf0b3760d",4301799424,"P"],["1c683859-d155-35b6-b3d0-35ccdb6fa741",4337991680,"P"],["b5131209-0b45-3b53-8353-0079e4b2b16c",4366499840,"P"],["5b5b76ec-aec3-3276-a21c-28528bbd4b7d",4332240896,"P"],["133beeb2-8a2d-3e18-82f5-2ca60924d2e3",4331241472,"P"],["f42081c8-d19d-3474-bce6-0f157f0128d4",4303912960,"P"],["1930a342-3788-3a5b-95c5-6732c4947d12",4308353024,"P"],["2bd532af-131b-38fe-9821-c818b4b79879",4337745920,"P"],["ea81e1f8-71b8-3d40-b135-a7b49d03cec9",4299177984,"P"],["711e3240-337c-3a2d-bddd-df741365feb6",4306616320,"P"],["ba64f1dc-88e0-31ef-a4e9-f8a4540d722b",4303470592,"P"],["7bead59f-d532-32f3-8f70-e7883eaef59f",4303536128,"P"],["6a6b512f-8aad-3a87-9e66-0580c6d6d654",4309336064,"P"],["7367b317-37a6-3f68-a5a4-ffc89bc26a83",4329652224,"P"],["33c4b71a-d2fa-34c1-a466-87032ea6ea40",4367106048,"P"],["a9dc79c4-25b3-313d-98c0-5d2b3fc14151",4336287744,"P"],["348780a2-77ed-3655-801c-d0aba4b7924e",4364091392,"P"],["20067dda-0064-302a-acd4-7e05d159afa7",4370399232,"P"],["8c5b7c67-f9d4-3eca-b6ff-1673b069b728",4378312704,"P"],["060b9aac-dc83-3444-8c03-1d9d0dfbb84f",4344758272,"P"],["586eedb6-67bb-378d-8260-d547f9e17ead",4333682688,"P"],["522c9b39-d4d6-3532-83a1-c81a37528896",4298588160,"P"],["3825f981-b3b7-315c-93d6-8dcce8e4a988",4298440704,"P"],["03a41ad7-34c5-33bf-8c8d-e8ab1d6d9d54",4298407936,"P"],["88ea566b-9b3f-3482-9833-588d0b78bce6",4337106944,"P"],["855fac97-f5fe-3306-b9b6-e15dad5c1100",4308860928,"P"],["6047e803-5f59-38bd-8256-19a8db91af6b",6442450944,"S"],["e9952ee8-7a4a-3301-a9c2-5273bcf65736",4333502464,"P"],["67f63357-faa5-30c0-9b8d-8197b55c4222",4375822336,"P"],["cb7b27a3-cc4b-3cba-824c-b9648d2b4a28",4345266176,"P"],["35bf7133-8e3f-37f0-9f33-dd4ba91d92f8",4378771456,"P"],["f8073249-4c95-3cbe-a782-acdd5e97823c",4301062144,"P"],["d355ace3-104a-3ce5-895a-1a2e15b20c99",4344283136,"P"],["c0fb598d-dfa9-3396-b9df-347dffb37447",4377640960,"P"],["ad12f526-1573-3d0b-b66e-d4fcae9baddb",4337762304,"P"],["ce023c98-0332-35a2-b973-1e0917cdc939",4335058944,"P"],["946e2f18-e066-3b19-b8d7-6dc7dfbc58ff",4362158080,"P"],["e385fe60-f930-3351-b155-baea546e4d3a",4334043136,"P"],["5bd177a9-5786-3d40-9b95-5df79bc22bc2",4301684736,"P"],["cac3bde5-f298-3638-970a-0e7481f273a9",4363796480,"P"],["c677cc89-c865-398c-9b69-b668a60e8153",4300259328,"P"],["9e67d7dc-7781-3c39-be9a-8f895003608a",4305305600,"P"],["3d945ad7-719b-37f3-beac-ac5f52d1a096",4364877824,"P"],["79bd28e6-c14f-345c-af5f-3af4e2f80b2d",4306780160,"P"],["a416c819-3299-3457-9b56-3d34a70093b0",4296015872,"P"],["c0cdc16f-36fe-394a-b990-2cfd0cdfcfde",4344659968,"P"],["3004cdb4-b9fc-3e4e-9cc3-2d060af6bd48",4373397504,"P"],["78fec9af-0e02-3ab7-b70f-08047ec533ff",4308221952,"P"],["5926f2a7-80a4-3a0c-acb2-f8db2f758d48",4362649600,"P"],["df2e690d-75e2-3f68-bc46-21c3eb59976a",4302716928,"P"],["00d7f69c-3840-3e38-ad38-0ad91764825d",4294983680,"P"],["d96cdf61-5781-38ec-8d7d-ff123b6226fc",4331159552,"P"],["e08e5330-5ea8-30d4-b555-9436b5554b9e",4295868416,"P"],["2c9cf35f-761d-3f87-ae99-57cc21605020",4331831296,"P"],["ed6e8b24-0215-3c20-94d4-60d4beddc44d",4342677504,"P"],["bc18bf44-9d37-3275-8dc0-fea7a31e5fb0",4302815232,"P"],["aacd3ed9-1fce-327f-b46b-09281553db71",4295278592,"P"],["de72c23e-bf1d-3f67-a9e7-b4973ee08018",4306124800,"P"],["2204053d-2b29-300b-9123-48d44c69459e",4310401024,"P"],["c804176f-33b3-3c15-9d62-60143a68d42a",4305747968,"P"],["0e9f7982-eadd-3795-b0d9-9c623eb2db01",4340088832,"P"],["edcc9be5-e007-372e-98bb-592fe29c9163",4364533760,"P"],["f8e9b6b5-a623-329c-8ad7-8814a09db669",4335927296,"P"],["6fb02cab-ba8a-3e06-b1b9-0c9c71355c60",4365811712,"P"],["15b190c3-6b51-3482-91f0-bca2ddf00a63",4305108992,"P"],["ebff6b67-7df9-3f21-b81a-81db3e13abed",4376985600,"P"],["10569c63-9fe6-38a7-92c4-0e745f18352f",4377706496,"P"],["8a85db45-725e-35af-a635-3a4bfd3c26cd",4302602240,"P"],["b9ecf9fe-4d7a-387a-ae9f-c50feb589180",4308418560,"P"],["0a1194da-bd4b-3549-9120-488b99ad7332",4339908608,"P"],["9accb6c2-8b07-3e56-b5c5-626987849d50",4309516288,"P"],["475879b5-0133-319e-931f-3cca3ddc5e40",4301094912,"P"],["388fc4a6-2343-308e-918d-7918516838e4",4344430592,"P"],["d0bc1932-f080-3fa6-8305-c4b88b32d3d8",4373037056,"P"],["d1b7d8a6-c52b-3c61-94ec-41b2583db26f",4329340928,"P"],["ec5d7338-27e8-32dd-96c6-c4275cb3a195",4297359360,"P"],["cdb6d6a9-1831-33ab-97cc-cb69a46a6a89",4309204992,"P"],["1c25cac3-b1b4-32a2-b0ed-72f5682eaa86",4334665728,"P"],["7b453166-ea48-3c2f-8b87-6fb900c3f8ff",4309843968,"P"],["eebd6d1f-00af-3fda-b1b1-957399aa885d",4339286016,"P"],["4f33cac3-7c13-3c33-9c98-4b57667e0f85",4377018368,"P"],["97735290-3914-3dca-a2cf-3936d17f3b63",4303699968,"P"],["c835d4b0-3529-3185-a323-8d34d9f5b2d5",4302159872,"P"],["2015731d-995e-3b54-95bf-5e5bec4a3f2b",4339154944,"P"],["1ac2a158-ea5e-3fe6-adfa-6787fce0c888",4300226560,"P"],["cbccd63c-7787-3e37-9bd8-f5f7e5a9afd8",4368744448,"P"],["24b8eee9-b414-3d71-afc1-1fddabec527c",4334075904,"P"],["b640dd87-9312-30df-ba98-1a353d2de0e6",4367482880,"P"],["78acbd3b-84e1-3157-812a-a75e69b81b1d",4364779520,"P"],["c4f23c0b-e046-3daf-9eeb-fd6f2c0ab19d",4342349824,"P"],["e4418418-89a3-3326-899d-e7ce9ab05438",4299276288,"P"],["0873129b-412d-3229-b138-89c95e8d9189",4338548736,"P"],["74dfc17d-7ae4-3044-a86d-f7f7ecb2da72",4306976768,"P"],["29b0155b-0279-303a-bb18-b4850e8166e2",4306059264,"P"],["6a585879-a4af-3e28-830c-7aa8b4912da3",4366827520,"P"],["d1d64b31-e4e6-3837-bed3-0bd4159e454a",4303208448,"P"],["a2b92ead-289c-3cc2-ad7a-1268cd30f3a7",4306518016,"P"],["89083c92-0448-329b-b1f2-5612be6988a8",4305960960,"P"],["4e0c2a7c-5366-3d4f-91c8-c950894e1000",4362649600,"P"],["e5ce3284-1f7b-3927-86be-ecf3c1834000",4308172800,"P"],["6fe6930f-ddc1-3195-a248-490b3be0404e",4375363584,"P"],["321796d8-77a6-386b-9dcb-63507b41141c",4344807424,"P"],["3c48fc8f-27de-3d5a-bc00-61ea77913384",4336418816,"P"],["106c6517-74e0-3fb5-afa7-9b9dbb5f01c5",4362862592,"P"],["ef2d9493-132c-3620-81cc-ec1ce8768ef1",4334796800,"P"],["a17a1a4f-e2ef-31e4-aa24-e56770229088",4304175104,"P"],["a7baab3a-f3ea-39b4-85f6-f11b123b51d2",4304764928,"P"],["16428c33-aa14-3127-b1b4-22f29ccf2781",4306960384,"P"],["5c9d6668-1be0-35b7-acac-64ded664a51d",4303601664,"P"],["19903a02-67e3-3282-8a2b-29f5136d04c3",4372774912,"P"],["08c95c98-63e4-304a-99d8-c1da86b0787e",4302192640,"P"],["f625990a-95d4-36a4-9809-614bc7450917",4367466496,"P"],["067d64c0-99b5-3316-a211-b85861be2e12",4338008064,"P"],["a56bc712-29d6-36ae-9f44-eddf361b76eb",4344332288,"P"],["38a234ad-6e1a-3f54-922b-43d8f0ff1314",4344872960,"P"],["1e5ab3bc-9640-359d-98cb-e7fdd63d9ee7",4362698752,"P"],["911d26e2-96f6-3cc5-a201-24c5dc2cd310",4363157504,"P"],["c6a138c9-f94f-3baf-b223-15c55d8c19bb",4329750528,"P"],["a3214b6a-1651-31b2-ad39-9dc8167a4d3e",4338810880,"P"],["59b58c8d-22f4-3a06-8960-a07f0890de19",4375625728,"P"],["b6068200-ed51-3558-aabf-b804404d0165",4311580672,"P"],["3f3be16c-9f84-3e29-a230-81bd8e07025b",4371382272,"P"],["2c1817e5-e664-3e3a-bfc8-de9ac4ca762e",4342923264,"P"],["8eba426c-a66c-3cc7-a0a0-6304aeeb5382",4308418560,"P"],["82368b6b-d17b-3829-a74c-de3831e40ecc",4299538432,"P"],["cfea3265-c58d-3eca-90cb-f9d1f1b72937",4298309632,"P"],["fc3ca638-b01a-343f-9716-0774364772da",4339367936,"P"],["4a946761-2f8c-3d3f-b7cf-2fddffe870c3",4335206400,"P"],["ffb179b5-682d-3588-8ca4-a5b3d153d2a9",4334764032,"P"],["7dbe9f32-bf47-348d-b084-2f08465e3e74",4374904832,"P"],["df7cf7df-b86e-3092-b946-bcb373927b27",4296376320,"P"],["9a7796d0-e482-3f6d-a844-8bd8443447cf",4299767808,"P"],["5de58e22-94be-3ee5-aae8-82e782cc1981",4367007744,"P"],["419cf898-723a-3739-95e7-551f26da78ff",4304224256,"P"],["2f987dee-cffc-31b6-9aaa-d539350e0dac",4337451008,"P"],["1d3e44b1-3868-379a-9d7a-e3183d054d47",4329455616,"P"],["1cc04a1c-90fd-3207-8512-1d89512445d6",4297998336,"P"],["02e0639d-0587-3add-9662-9ec6352f0360",4305551360,"P"],["a047bcdd-da7e-3628-b953-5378820a2767",4307189760,"P"],["8610632d-228b-3f39-9685-f41b344c8c1e",4309057536,"P"],["45ff42a5-16c1-37b4-af3a-655715a1bd0f",4297244672,"P"],["3ce4aa60-ebb0-3781-ba59-3305c1da5239",4339843072,"P"],["702d2bb4-9d1d-3ec2-a907-28982b2605c5",4341678080,"P"],["cbd3d60d-f75e-34e3-adc4-1b79fd2f348f",4345282560,"P"],["f12078fd-7f71-3320-bcc5-17f398341d8d",4301881344,"P"],["4daf8a29-cf13-3ba0-8e57-3c46421a29ac",4332175360,"P"],["db89d4be-a748-3022-9a05-89a2591e8bc4",4311056384,"P"],["784733ef-2739-3c1d-a732-dda077ca1573",4340498432,"P"],["76cd8bc0-fb30-3ff4-b6d2-8ab0d31de26f",4335697920,"P"],["3e95dfb8-807d-3555-95a3-751a71f9f4a7",4343939072,"P"],["68818dec-4285-307b-92fb-bca71bcc4c1c",4296720384,"P"],["d8e546e6-8cc8-3df8-bcc7-ffe191d215e0",4343021568,"P"],["dfc84bdc-c4e9-3437-9ac9-b66e08804458",4372774912,"P"],["04d06d1d-7670-3b90-b92c-c68a2e1069ff",4363304960,"P"],["a5923695-e675-33f9-86f8-13d8750a0f6f",4375822336,"P"],["6fb64415-367f-3690-900b-da5c01c8ddf9",4373282816,"P"],["78107548-f589-32c7-95d9-dc8326e5cdb2",4303683584,"P"],["5527211c-6c29-3fe5-80b6-96621d4dd30e",4309991424,"P"],["f4903bc7-e15e-3b49-9079-7dc927c8e935",4372152320,"P"],["496aefcd-c566-339c-bc83-4d13294bc1e6",4333486080,"P"],["9537c85a-17b0-34ed-a6b9-db2df8cfb183",4371447808,"P"],["4e3c7ebb-8959-377a-8351-041aec490dfa",4329881600,"P"],["8933700e-3e26-3907-8f7f-64d859a16d38",4367106048,"P"],["3b0f142c-6448-363b-b1ba-fb72ded0e651",4370137088,"P"],["8b5b75a7-af73-3b98-accb-1493c77307f5",4300619776,"P"],["4c4c44d9-5555-3144-a1cc-e90113fcc350",4411490304,"P"],["fe0c0253-5d63-36ee-8c72-09f48b7f33a1",4335222784,"P"],["7dfc4d75-ba1c-3d4c-8dc2-741236c8785f",4309794816,"P"],["202d409b-f085-3be5-88ad-0dc72f1a26ef",4376395776,"P"],["9c8d9f40-6e91-3f58-8c04-df0b929cf04b",4341022720,"P"],["94159ed7-86ac-3976-ae5f-a42506c343a6",4303437824,"P"],["2e5c44bb-1f0f-32b3-bb13-72b474e7eb1c",4303306752,"P"],["b93c800c-280b-32d7-b19a-7a747deedcfe",4305928192,"P"],["a945305c-65af-351f-9f10-3cd5dada8d2c",4311138304,"P"],["411293fc-d4f8-328b-8a07-a3997fb6e8b5",4311351296,"P"],["9c8496a2-ba64-3cf0-98d3-4bbb51d53bd2",4372594688,"P"],["b93dc19c-4d30-3fd0-a7a0-d11dcb71eeee",4370939904,"P"],["a76e4565-8839-3a01-a6c8-9f7036e32f2c",4378804224,"P"],["b9fb6011-03d9-3ed5-9d02-8456862d2f86",4375658496,"P"],["c654f0c1-126d-3f0b-8294-2cbd79568778",4305305600,"P"],["0aae32ca-5f94-3e07-9d9c-29210b84efa3",4298031104,"P"],["d12ad032-200f-3819-b08c-e961e0bbda86",4307222528,"P"],["7f797ed3-93da-39ea-a90e-e66ce4716c65",4334485504,"P"]], + "notes" : ["Requested by sysdiagnose","resampled 404 of 1452 threads with truncated backtraces from 203 pids: 33,38,39,40,41,42,43,49,50,51,52,54,55,56,59,62,66,77,79,80,85,87,89,90,94,97,98,99,100,102,104,105,107,110,112,113,114,115,118,119,125,128,130,131,142,145,146,151,154,156,157,158,159,161,163,166,171,172,173,174,175,176,177,179,180,181,182,185,186,187,189,190,191,196,197,201,202,204,205,209,210,212,217,218,219,220,223,224,228,229,231,232,233,234,236,238,240,245,246,248,249,250,251,252,253,254,255,260,261,262,263,264,268,269,270,271,272,274,275,278,280,281,283,284,285,286,287,288,290,294,295,298,299,308,311,312,313,315,318,319,320,321,324,329,330,334,336,337,339,342,345,346,347,349,350,351,352,353,354,356,358,359,360,361,363,365,366,369,370,371,372,373,374,375,377,379,380,381,382,383,384,385,386,388,390,392,393,396,398,399,400,402,404,405,406,407,411,412,416,418,420,426,428","resampled 369 of 6 images missing from 173 pids: 1,28,38,39,40,42,49,51,52,54,55,56,63,66,79,86,90,94,95,96,97,98,99,102,107,110,112,113,115,119,125,128,130,131,141,146,148,151,154,156,157,159,163,166,171,174,175,176,177,178,179,180,181,182,190,196,197,201,202,209,217,218,220,223,224,228,229,231,232,233,234,236,238,240,241,242,245,246,248,250,251,252,253,255,257,258,260,261,262,264,268,269,270,271,272,274,275,278,280,281,282,283,284,286,287,288,290,294,295,308,311,312,315,318,319,320,321,324,325,329,330,336,337,339,342,345,346,347,349,350,351,352,353,354,356,358,359,360,361,362,363,365,366,370,371,372,373,374,375,377,379,381,382,383,384,385,386,388,390,392,393,396,399,400,402,404,405,406,407,411,418,426,428"], + "additionalDetails" : {"stackshot_size_estimate_adj":40,"stackshot_size_estimate":950272,"stackshot_duration_prior_nsec":0,"system_state_flags":2,"stackshot_duration_nsec":13406916,"stackshot_out_flags":28000262,"stackshot_in_pid":4294967295,"stackshot_duration_outer_nsec":13442458,"stackshot_in_flags":28000262} +} diff --git a/test_data/ips_files/stacks-2023-06-08-151842.ips b/test_data/ips_files/stacks-2023-06-08-151842.ips new file mode 100755 index 0000000000..6a335cea6e --- /dev/null +++ b/test_data/ips_files/stacks-2023-06-08-151842.ips @@ -0,0 +1,5318 @@ +{"bug_type":"288","timestamp":"2023-06-08 15:18:42.00 +0000","os_version":"Bridge OS 7.5 (20P5058)","roots_installed":0,"incident_id":"1F5C6CB4-E1F7-4B36-894D-23D193CBB8DD"} +{ + "build" : "Bridge OS 7.5 (20P5058)", + "product" : "iBridge2,14", + "kernel" : "Darwin Kernel Version 22.5.0: Mon Apr 24 20:06:41 PDT 2023; root:xnu-8796.121.2~1\/RELEASE_ARM64_T8010", + "tuning" : { + + }, + "incident" : "1F5C6CB4-E1F7-4B36-894D-23D193CBB8DD", + "crashReporterKey" : "c0dec0dec0dec0dec0dec0dec0dec0dec0de0001", + "date" : "2023-06-08 15:18:42.66 +0000", + "reason" : "stackshot via sysdiagnose (Remote)", + "frontmostPids" : [ + + ], + "exception" : "0xbaaaaaad", + "absoluteTime" : 21486995702, + "roots_installed" : 0, + "bug_type" : "288", + "memoryStatus" : {"compressorSize":0,"compressions":0,"decompressions":0,"busyBufferCount":0,"memoryPressureDetails":{"pagesWanted":0,"pagesReclaimed":0},"pageSize":16384,"memoryPressure":false,"memoryPages":{"active":8823,"throttled":0,"fileBacked":16129,"wired":6296,"purgeable":47,"inactive":3581,"free":3516,"speculative":7645}}, + "processByPid" : { + "0" : { + "timesThrottled" : 0, + "pageIns" : 0, + "rawFlags" : "0x20800001", + "timesDidThrottle" : 0, + "procname" : "kernel_task", + "jetsamCoalition" : 3, + "copyOnWriteFaults" : 0, + "pageFaults" : 591, + "threadById" : { + "381" : { + "userTime" : 0.00034779100000000002, + "systemTime" : 0, + "name" : "AppleS8000AESAccelerator", + "id" : 381, + "basePriority" : 81, + "user_usec" : 347, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 86019010488 + ], + [ + 0, + 86019003832 + ], + [ + 0, + 86024738224 + ], + [ + 0, + 86018639552 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758235325 + ] + }, + "506" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.014443249999999999, + "systemTime" : 0, + "id" : 506, + "basePriority" : 81, + "name" : "AppleUSBVHCIFirmwarePort", + "user_usec" : 14443, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758223485 + ] + }, + "509" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.225678833, + "systemTime" : 0, + "id" : 509, + "basePriority" : 81, + "name" : "AppleUSBVHCIFirmwarePort", + "user_usec" : 225678, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758227885 + ] + }, + "373" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.000104625, + "systemTime" : 0, + "id" : 373, + "basePriority" : 81, + "name" : "RTBuddyV2", + "user_usec" : 104, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744156898799053 + ] + }, + "419" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.7207999999999999e-05, + "systemTime" : 0, + "id" : 419, + "basePriority" : 81, + "name" : "AppleSmartIODMAController", + "user_usec" : 17, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758222525 + ] + }, + "276" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.1333e-05, + "systemTime" : 0, + "id" : 276, + "basePriority" : 81, + "user_usec" : 11, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758227485 + ] + }, + "507" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.049430500000000002, + "systemTime" : 0, + "id" : 507, + "basePriority" : 81, + "name" : "AppleUSBVHCIFirmwarePort", + "user_usec" : 49430, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758223005 + ] + }, + "429" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.8750000000000001e-05, + "systemTime" : 0, + "id" : 429, + "basePriority" : 81, + "name" : "AppleD2449PMU", + "user_usec" : 28, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758228125 + ] + }, + "179" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.5000000000000002e-06, + "systemTime" : 0, + "id" : 179, + "basePriority" : 81, + "name" : "AppleSamsungSPIController", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758228925 + ] + }, + "607" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.5829999999999999e-06, + "systemTime" : 0, + "id" : 607, + "basePriority" : 81, + "name" : "IOTimerEventSourceActionWrapper", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758220685 + ] + }, + "508" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.013263875, + "systemTime" : 0, + "id" : 508, + "basePriority" : 81, + "name" : "AppleUSBVHCIFirmwarePort", + "user_usec" : 13263, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758227085 + ] + }, + "285" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.2625e-05, + "systemTime" : 0, + "id" : 285, + "basePriority" : 81, + "user_usec" : 12, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758227965 + ] + }, + "349" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.3916e-05, + "systemTime" : 0, + "id" : 349, + "basePriority" : 81, + "name" : "AppleSocHot", + "user_usec" : 13, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758225565 + ] + }, + "374" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.000166875, + "systemTime" : 0, + "id" : 374, + "basePriority" : 81, + "name" : "AppleSEPManager", + "user_usec" : 166, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758221565 + ] + }, + "612" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 3.0000000000000001e-06, + "systemTime" : 0, + "id" : 612, + "basePriority" : 81, + "name" : "IOAsynchronousScheduler", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753690317 + ] + }, + "366" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0077967499999999999, + "systemTime" : 0, + "id" : 366, + "basePriority" : 81, + "name" : "AppleGen0SPMIController", + "user_usec" : 7796, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758230045 + ] + }, + "613" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.2500000000000001e-06, + "systemTime" : 0, + "id" : 613, + "basePriority" : 81, + "name" : "IOAsynchronousScheduler", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753691997 + ] + }, + "621" : { + "continuation" : [ + 0, + 86020673360 + ], + "userTime" : 3.625e-06, + "systemTime" : 0, + "id" : 621, + "basePriority" : 81, + "name" : "dlil_input_en0", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744153038652005 + ] + }, + "608" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00052737499999999996, + "systemTime" : 0, + "id" : 608, + "basePriority" : 81, + "name" : "IOAsynchronousScheduler", + "user_usec" : 527, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758221725 + ] + }, + "197" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.3329999999999999e-06, + "systemTime" : 0, + "id" : 197, + "basePriority" : 81, + "name" : "AppleUSBHostResources", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758223965 + ] + }, + "561" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00054266600000000003, + "systemTime" : 0, + "id" : 561, + "basePriority" : 81, + "name" : "IOHIDRelayService", + "user_usec" : 542, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758231965 + ] + }, + "375" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00023945800000000001, + "systemTime" : 0, + "id" : 375, + "basePriority" : 81, + "name" : "AppleSEPManager", + "user_usec" : 239, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758225645 + ] + }, + "622" : { + "continuation" : [ + 0, + 86020709608 + ], + "userTime" : 1.1749999999999999e-05, + "systemTime" : 0, + "id" : 622, + "basePriority" : 82, + "name" : "ifnet_start_en0", + "user_usec" : 11, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744153038649901 + ] + }, + "630" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.048960416, + "systemTime" : 0, + "id" : 630, + "basePriority" : 81, + "name" : "AppleBCMWLANUart", + "user_usec" : 48960, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753694317 + ] + }, + "633" : { + "continuation" : [ + 0, + 86023862772 + ], + "userTime" : 0.054890665999999998, + "systemTime" : 0, + "id" : 633, + "basePriority" : 81, + "name" : "skywalk_fsw_reap_en0", + "user_usec" : 54890, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744149167919973 + ] + }, + "702" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00021658300000000001, + "systemTime" : 0, + "id" : 702, + "basePriority" : 81, + "name" : "AppleTrustedAccessoryManager", + "user_usec" : 216, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753682317 + ] + }, + "545" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.4580000000000001e-06, + "systemTime" : 0, + "id" : 545, + "basePriority" : 81, + "name" : "AppleNubSynopsysOTGDevice", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758228525 + ] + }, + "609" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.333e-06, + "systemTime" : 0, + "id" : 609, + "basePriority" : 81, + "name" : "IOAVHandlerInternalDisplay", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758226445 + ] + }, + "359" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.3915999999999999e-05, + "systemTime" : 0, + "id" : 359, + "basePriority" : 81, + "name" : "AppleSocHot", + "user_usec" : 23, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758227645 + ] + }, + "537" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.2079999999999999e-06, + "systemTime" : 0, + "id" : 537, + "basePriority" : 81, + "name" : "AppleSMCDockUSB_UFP", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758227565 + ] + }, + "376" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00023837500000000001, + "systemTime" : 0, + "id" : 376, + "basePriority" : 81, + "name" : "AppleSEPManager", + "user_usec" : 238, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758231485 + ] + }, + "490" : { + "continuation" : [ + 0, + 86019288872 + ], + "userTime" : 0.091480583000000004, + "systemTime" : 0, + "id" : 490, + "basePriority" : 81, + "user_usec" : 91480, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86026192552 + ] + }, + "279" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.3541e-05, + "systemTime" : 0, + "id" : 279, + "basePriority" : 81, + "user_usec" : 13, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758222125 + ] + }, + "368" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0036666250000000002, + "systemTime" : 0, + "id" : 368, + "basePriority" : 97, + "name" : "AppleH9CamIn", + "user_usec" : 3666, + "schedPriority" : 97, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758226845 + ] + }, + "482" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.2500000000000001e-06, + "systemTime" : 0, + "id" : 482, + "basePriority" : 81, + "name" : "AppleEffaceableNOR", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758224845 + ] + }, + "296" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 6.7500000000000001e-05, + "systemTime" : 0, + "id" : 296, + "basePriority" : 81, + "name" : "AppleT700XTempSensor", + "user_usec" : 67, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758221405 + ] + }, + "618" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.333e-06, + "systemTime" : 0, + "id" : 618, + "basePriority" : 81, + "user_usec" : 1, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753691757 + ] + }, + "199" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.7080000000000002e-06, + "systemTime" : 0, + "id" : 199, + "basePriority" : 81, + "user_usec" : 2, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758232925 + ] + }, + "538" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.5e-06, + "systemTime" : 0, + "id" : 538, + "basePriority" : 81, + "name" : "AppleSmartBatteryManager", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758230445 + ] + }, + "377" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00080500000000000005, + "systemTime" : 0, + "id" : 377, + "basePriority" : 81, + "name" : "AppleSEPManager", + "user_usec" : 805, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758233805 + ] + }, + "491" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 15.791276041, + "systemTime" : 0, + "id" : 491, + "basePriority" : 81, + "name" : "AppleUSBVHCIFirmwareBCE", + "user_usec" : 15791276, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758224205 + ] + }, + "580" : { + "continuation" : [ + 0, + 86020235780 + ], + "userTime" : 1.708e-06, + "systemTime" : 0, + "id" : 580, + "basePriority" : 81, + "user_usec" : 1, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025940664 + ] + }, + "369" : { + "userTime" : 0.022356750000000002, + "systemTime" : 0, + "name" : "RTBuddyV2(AOP)", + "id" : 369, + "basePriority" : 81, + "user_usec" : 22356, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 86019010488 + ], + [ + 0, + 86019003832 + ], + [ + 0, + 86024738224 + ], + [ + 0, + 86018639552 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758224605 + ] + }, + "634" : { + "userTime" : 0.112986291, + "systemTime" : 0, + "system_usec" : 0, + "id" : 634, + "basePriority" : 81, + "user_usec" : 112986, + "kernelFrames" : [ + [ + 0, + 86019010488 + ], + [ + 0, + 86019003832 + ], + [ + 0, + 86002575500 + ], + [ + 0, + 86002560112 + ], + [ + 0, + 86024749432 + ], + [ + 0, + 86002558984 + ], + [ + 0, + 86012415392 + ], + [ + 0, + 86018639552 + ] + ], + "schedPriority" : 81, + "state" : [ + "TH_WAIT" + ], + "waitEvent" : [ + 1, + 2497744153024128221 + ] + }, + "703" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.5e-06, + "systemTime" : 0, + "id" : 703, + "basePriority" : 81, + "name" : "AppleTrustedAccessoryAnalytics", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753683197 + ] + }, + "636" : { + "userTime" : 0.129408791, + "systemTime" : 0, + "name" : "AppleANS2NVMeController", + "id" : 636, + "basePriority" : 81, + "user_usec" : 129408, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 86019010488 + ], + [ + 0, + 86019003832 + ], + [ + 0, + 86024738224 + ], + [ + 0, + 86018639552 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753683677 + ] + }, + "475" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.375e-06, + "systemTime" : 0, + "id" : 475, + "basePriority" : 81, + "name" : "AppleMCA2Controller_T8012", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758235245 + ] + }, + "289" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 5.6875e-05, + "systemTime" : 0, + "id" : 289, + "basePriority" : 81, + "name" : "AppleT700XTempSensor", + "user_usec" : 56, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758224685 + ] + }, + "378" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.4625e-05, + "systemTime" : 0, + "id" : 378, + "basePriority" : 81, + "name" : "RTBuddyService", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758233885 + ] + }, + "492" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.2079999999999999e-06, + "systemTime" : 0, + "id" : 492, + "basePriority" : 81, + "name" : "com_apple_AVEBridge", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758229805 + ] + }, + "581" : { + "continuation" : [ + 0, + 86020235956 + ], + "userTime" : 1.5e-06, + "systemTime" : 0, + "id" : 581, + "basePriority" : 81, + "user_usec" : 1, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025940616 + ] + }, + "467" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 6.1924510000000001, + "systemTime" : 0, + "id" : 467, + "basePriority" : 81, + "name" : "IOEmbeddedBufferCopyController", + "user_usec" : 6192451, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758223085 + ] + }, + "670" : { + "continuation" : [ + 0, + 86019660744 + ], + "userTime" : 7.5830000000000001e-06, + "systemTime" : 0, + "id" : 670, + "basePriority" : 91, + "name" : "VM_pageout_external_iothread", + "user_usec" : 7, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025780304 + ] + }, + "704" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00086054100000000004, + "systemTime" : 0, + "id" : 704, + "basePriority" : 81, + "name" : "AppleSEPSMC", + "user_usec" : 860, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753695837 + ] + }, + "637" : { + "userTime" : 1.708e-06, + "systemTime" : 0, + "name" : "AppleANS2NVMeController", + "id" : 637, + "basePriority" : 81, + "user_usec" : 1, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 86019010488 + ], + [ + 0, + 86019003832 + ], + [ + 0, + 86024738224 + ], + [ + 0, + 86018639552 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753685997 + ] + }, + "709" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.000176916, + "systemTime" : 0, + "id" : 709, + "basePriority" : 81, + "name" : "AppleSEPManager", + "user_usec" : 176, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753695917 + ] + }, + "590" : { + "continuation" : [ + 0, + 86020655396 + ], + "userTime" : 7.4159999999999998e-06, + "systemTime" : 0, + "id" : 590, + "basePriority" : 81, + "user_usec" : 7, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86026216592 + ] + }, + "710" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.010621833000000001, + "systemTime" : 0, + "id" : 710, + "basePriority" : 81, + "name" : "AppleSEPManager", + "user_usec" : 10621, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753696237 + ] + }, + "493" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.1659999999999999e-06, + "systemTime" : 0, + "id" : 493, + "basePriority" : 81, + "name" : "com_apple_AVEBridge", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758230845 + ] + }, + "468" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.2079999999999999e-06, + "systemTime" : 0, + "id" : 468, + "basePriority" : 81, + "name" : "AppleMCA2Controller_T8012", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758229565 + ] + }, + "671" : { + "continuation" : [ + 0, + 86019658188 + ], + "userTime" : 1.9999999999999999e-06, + "systemTime" : 0, + "id" : 671, + "basePriority" : 31, + "name" : "VM_pressure", + "user_usec" : 2, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86019658188 + ] + }, + "485" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.062596957999999994, + "systemTime" : 0, + "id" : 485, + "basePriority" : 81, + "name" : "AppleEffaceableBCE", + "user_usec" : 62596, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758228685 + ] + }, + "713" : { + "continuation" : [ + 0, + 86010171788 + ], + "userTime" : 7.8329999999999994e-06, + "systemTime" : 0, + "id" : 713, + "basePriority" : 31, + "name" : "purgatory_cleaner", + "user_usec" : 7, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744156901401717 + ] + }, + "717" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.916e-06, + "systemTime" : 0, + "id" : 717, + "basePriority" : 81, + "user_usec" : 1, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753683597 + ] + }, + "732" : { + "continuation" : [ + 0, + 86010171788 + ], + "userTime" : 0.0023749159999999999, + "systemTime" : 0, + "id" : 732, + "basePriority" : 31, + "name" : "purgatory_cleaner", + "user_usec" : 2374, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744156901336181 + ] + }, + "591" : { + "continuation" : [ + 0, + 86023045632 + ], + "userTime" : 2.2079999999999999e-06, + "systemTime" : 0, + "id" : 591, + "basePriority" : 81, + "user_usec" : 2, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86026257768 + ] + }, + "751" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 3.5583000000000001e-05, + "systemTime" : 0, + "id" : 751, + "basePriority" : 81, + "name" : "RTBuddyCrashlogEndpoint(AOP)", + "user_usec" : 35, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753684077 + ] + }, + "494" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.5e-06, + "systemTime" : 0, + "id" : 494, + "basePriority" : 81, + "name" : "com_apple_AVEBridge", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758231805 + ] + }, + "558" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0012481250000000001, + "systemTime" : 0, + "id" : 558, + "basePriority" : 81, + "name" : "IOHIDRelayManager", + "user_usec" : 1248, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758233725 + ] + }, + "583" : { + "continuation" : [ + 0, + 86023328996 + ], + "userTime" : 1.4749999999999999e-05, + "systemTime" : 0, + "id" : 583, + "basePriority" : 81, + "user_usec" : 14, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86026251784 + ] + }, + "672" : { + "continuation" : [ + 0, + 86019597848 + ], + "userTime" : 1.291e-06, + "systemTime" : 0, + "id" : 672, + "basePriority" : 91, + "name" : "VM_object_reaper_thread", + "user_usec" : 1, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86026195920 + ] + }, + "736" : { + "continuation" : [ + 0, + 86010171788 + ], + "userTime" : 0.001050416, + "systemTime" : 0, + "id" : 736, + "basePriority" : 31, + "name" : "purgatory_cleaner", + "user_usec" : 1050, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744156901270645 + ] + }, + "664" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 3.7079999999999999e-06, + "systemTime" : 0, + "id" : 664, + "basePriority" : 81, + "name" : "AppleImage4", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753697517 + ] + }, + "1034" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00066787499999999996, + "systemTime" : 0, + "id" : 1034, + "basePriority" : 81, + "name" : "IOHIDRelayService", + "user_usec" : 667, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753681837 + ] + }, + "567" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00035979099999999998, + "systemTime" : 0, + "id" : 567, + "basePriority" : 81, + "name" : "AppleSSM", + "user_usec" : 359, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758219805 + ] + }, + "592" : { + "continuation" : [ + 0, + 86023074460 + ], + "userTime" : 5.0409999999999997e-06, + "systemTime" : 0, + "id" : 592, + "basePriority" : 95, + "name" : "VM_memorystatus_1", + "user_usec" : 5, + "schedPriority" : 95, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744140145448449 + ] + }, + "495" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.0410000000000001e-06, + "systemTime" : 0, + "id" : 495, + "basePriority" : 81, + "name" : "com_apple_AVEBridge", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758222925 + ] + }, + "584" : { + "continuation" : [ + 0, + 86022742556 + ], + "userTime" : 1.2500000000000001e-06, + "systemTime" : 0, + "id" : 584, + "basePriority" : 81, + "user_usec" : 1, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025620512 + ] + }, + "673" : { + "continuation" : [ + 0, + 86019383104 + ], + "userTime" : 2.3750000000000001e-06, + "systemTime" : 0, + "id" : 673, + "basePriority" : 91, + "user_usec" : 2, + "system_usec" : 0, + "schedPriority" : 91, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025752452 + ] + }, + "487" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.375e-06, + "systemTime" : 0, + "id" : 487, + "basePriority" : 81, + "name" : "AppleTAS5770LAmp", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758229645 + ] + }, + "1086" : { + "continuation" : [ + 0, + 86010171788 + ], + "userTime" : 0.0021227910000000002, + "systemTime" : 0, + "id" : 1086, + "basePriority" : 31, + "name" : "purgatory_cleaner", + "user_usec" : 2122, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744156901246069 + ] + }, + "690" : { + "continuation" : [ + 0, + 86010171788 + ], + "userTime" : 0.0010286659999999999, + "systemTime" : 0, + "id" : 690, + "basePriority" : 31, + "name" : "purgatory_cleaner", + "user_usec" : 1028, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744156901282933 + ] + }, + "2395" : { + "userTime" : 0.016906541000000001, + "systemTime" : 0, + "system_usec" : 0, + "id" : 2395, + "basePriority" : 81, + "user_usec" : 16906, + "kernelFrames" : [ + [ + 0, + 86019010488 + ], + [ + 0, + 86019003832 + ], + [ + 0, + 86018939296 + ], + [ + 0, + 86023044676 + ], + [ + 0, + 86010658304 + ], + [ + 0, + 86018639552 + ] + ], + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744149167048533 + ] + }, + "2460" : { + "continuation" : [ + 0, + 86019169456 + ], + "userTime" : 0.010553541, + "systemTime" : 0, + "id" : 2460, + "basePriority" : 93, + "name" : "thread call high #15", + "user_usec" : 10553, + "schedPriority" : 93, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025587456 + ] + }, + "2480" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00068141600000000001, + "systemTime" : 0, + "id" : 2480, + "basePriority" : 81, + "name" : "IOHIDRelayService", + "user_usec" : 681, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753710381 + ] + }, + "771" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.000315416, + "systemTime" : 0, + "id" : 771, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 315, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753685037 + ] + }, + "585" : { + "continuation" : [ + 0, + 86022742556 + ], + "userTime" : 9.9999999999999995e-07, + "systemTime" : 0, + "id" : 585, + "basePriority" : 81, + "user_usec" : 1, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025620512 + ] + }, + "674" : { + "continuation" : [ + 0, + 86019662688 + ], + "userTime" : 6.083e-06, + "systemTime" : 0, + "id" : 674, + "basePriority" : 91, + "name" : "VM_compressor", + "user_usec" : 6, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025780392 + ] + }, + "488" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0012090409999999999, + "systemTime" : 0, + "id" : 488, + "basePriority" : 81, + "name" : "AppleCS42L83Audio", + "user_usec" : 1209, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758220925 + ] + }, + "763" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.000192583, + "systemTime" : 0, + "id" : 763, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 192, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753684237 + ] + }, + "666" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.5409999999999999e-06, + "systemTime" : 0, + "id" : 666, + "basePriority" : 81, + "name" : "AppleMobileApNonce", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753695437 + ] + }, + "594" : { + "continuation" : [ + 0, + 86021487060 + ], + "userTime" : 5.75e-06, + "systemTime" : 0, + "id" : 594, + "basePriority" : 81, + "name" : "CFIL_STATS_REPORT", + "user_usec" : 5, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "waitEvent" : [ + 0, + 86025971936 + ] + }, + "586" : { + "continuation" : [ + 0, + 86023045632 + ], + "userTime" : 0.00079712499999999998, + "systemTime" : 0, + "id" : 586, + "basePriority" : 81, + "user_usec" : 797, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86026222744 + ] + }, + "675" : { + "continuation" : [ + 0, + 86019414952 + ], + "userTime" : 2.125e-06, + "systemTime" : 0, + "id" : 675, + "basePriority" : 91, + "name" : "VM_swapout", + "user_usec" : 2, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86019414952 + ] + }, + "739" : { + "continuation" : [ + 0, + 86010171788 + ], + "userTime" : 0.0013060000000000001, + "systemTime" : 0, + "id" : 739, + "basePriority" : 31, + "name" : "purgatory_cleaner", + "user_usec" : 1306, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744156901258357 + ] + }, + "781" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00020904100000000001, + "systemTime" : 0, + "id" : 781, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 209, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753685517 + ] + }, + "595" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0056254579999999998, + "systemTime" : 0, + "id" : 595, + "basePriority" : 81, + "name" : "IOSurfaceRoot", + "user_usec" : 5625, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758219965 + ] + }, + "773" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00046954100000000002, + "systemTime" : 0, + "id" : 773, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 469, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753685117 + ] + }, + "587" : { + "continuation" : [ + 0, + 86023045632 + ], + "userTime" : 1.6249999999999999e-06, + "systemTime" : 0, + "id" : 587, + "basePriority" : 81, + "user_usec" : 1, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86021266460 + ] + }, + "676" : { + "continuation" : [ + 0, + 86019418344 + ], + "userTime" : 1.666e-06, + "systemTime" : 0, + "id" : 676, + "basePriority" : 91, + "name" : "VM_swapfile_create", + "user_usec" : 1, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025770560 + ] + }, + "765" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.000200958, + "systemTime" : 0, + "id" : 765, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 200, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753684317 + ] + }, + "837" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0018012499999999999, + "systemTime" : 0, + "id" : 837, + "basePriority" : 81, + "name" : "AppleMultitouchHIDService", + "user_usec" : 1801, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753686317 + ] + }, + "693" : { + "continuation" : [ + 0, + 86010171788 + ], + "userTime" : 1.7082999999999999e-05, + "systemTime" : 0, + "id" : 693, + "basePriority" : 31, + "name" : "purgatory_cleaner", + "user_usec" : 17, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744156901389429 + ] + }, + "2463" : { + "continuation" : [ + 0, + 86019169456 + ], + "userTime" : 0.001917041, + "systemTime" : 0, + "id" : 2463, + "basePriority" : 92, + "name" : "thread call kernel-high #3", + "user_usec" : 1917, + "schedPriority" : 92, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025590016 + ] + }, + "588" : { + "continuation" : [ + 0, + 86023045632 + ], + "userTime" : 1.083e-06, + "systemTime" : 0, + "id" : 588, + "basePriority" : 81, + "user_usec" : 1, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025609536 + ] + }, + "677" : { + "continuation" : [ + 0, + 86019419456 + ], + "userTime" : 1.4580000000000001e-06, + "systemTime" : 0, + "id" : 677, + "basePriority" : 91, + "name" : "VM_swapfile_gc", + "user_usec" : 1, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025770564 + ] + }, + "775" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.000111291, + "systemTime" : 0, + "id" : 775, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 111, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753685197 + ] + }, + "589" : { + "continuation" : [ + 0, + 86020676880 + ], + "userTime" : 5.1660000000000002e-06, + "systemTime" : 0, + "id" : 589, + "basePriority" : 81, + "user_usec" : 5, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86026216216 + ] + }, + "767" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00013291600000000001, + "systemTime" : 0, + "id" : 767, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 132, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753684397 + ] + }, + "1019" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0011453329999999999, + "systemTime" : 0, + "id" : 1019, + "basePriority" : 81, + "name" : "IOHIDRelayService", + "user_usec" : 1145, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753681597 + ] + }, + "598" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.666e-06, + "systemTime" : 0, + "id" : 598, + "basePriority" : 81, + "name" : "IOHIDResourceDeviceUserClient", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758220445 + ] + }, + "874" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.4580000000000001e-06, + "systemTime" : 0, + "id" : 874, + "basePriority" : 81, + "name" : "AppleAOPVoiceTriggerController", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753696957 + ] + }, + "777" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00025704100000000001, + "systemTime" : 0, + "id" : 777, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 257, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753685277 + ] + }, + "980" : { + "id" : 980, + "schedPriority" : 47, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "schedFlags" : [ + "TH_SFLAG_EAGERPREEMPT" + ], + "user_usec" : 1373, + "basePriority" : 47, + "userTime" : 0.0013736659999999999, + "waitEvent" : [ + 0, + 86025590656 + ], + "continuation" : [ + 0, + 86019169456 + ], + "systemTime" : 0, + "name" : "thread call qos-ui #1" + }, + "769" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00054600000000000004, + "systemTime" : 0, + "id" : 769, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 546, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753684477 + ] + }, + "2500" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.320167708, + "systemTime" : 0, + "id" : 2500, + "basePriority" : 81, + "name" : "IOHIDRelayService", + "user_usec" : 320167, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753692877 + ] + }, + "884" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0022628750000000001, + "systemTime" : 0, + "id" : 884, + "basePriority" : 81, + "name" : "IOHIDRelayManager", + "user_usec" : 2262, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753686397 + ] + }, + "876" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.291e-06, + "systemTime" : 0, + "id" : 876, + "basePriority" : 81, + "name" : "AppleSPUProfileDriver", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753681437 + ] + }, + "779" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00053708300000000005, + "systemTime" : 0, + "id" : 779, + "basePriority" : 81, + "name" : "AppleSPU", + "user_usec" : 537, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753685437 + ] + }, + "2466" : { + "continuation" : [ + 0, + 86019169456 + ], + "userTime" : 0.00019374999999999999, + "systemTime" : 0, + "id" : 2466, + "basePriority" : 93, + "name" : "thread call high #18", + "user_usec" : 193, + "schedPriority" : 93, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025587456 + ] + }, + "878" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 3.7500000000000001e-06, + "systemTime" : 0, + "id" : 878, + "basePriority" : 81, + "name" : "AppleAOPAudioController", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753681517 + ] + }, + "2467" : { + "id" : 2467, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "schedFlags" : [ + "TH_SFLAG_EAGERPREEMPT" + ], + "user_usec" : 12252, + "basePriority" : 81, + "userTime" : 0.012252208000000001, + "waitEvent" : [ + 0, + 86025588096 + ], + "continuation" : [ + 0, + 86019169456 + ], + "systemTime" : 0, + "name" : "thread call kernel #2" + }, + "1072" : { + "id" : 1072, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT" + ], + "schedFlags" : [ + "TH_SFLAG_EAGERPREEMPT" + ], + "user_usec" : 43765, + "basePriority" : 31, + "userTime" : 0.043765166000000001, + "waitEvent" : [ + 0, + 86025588736 + ], + "continuation" : [ + 0, + 86019169456 + ], + "systemTime" : 0, + "name" : "thread call user #1" + }, + "887" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00068370799999999999, + "systemTime" : 0, + "id" : 887, + "basePriority" : 81, + "name" : "IOHIDRelayService", + "user_usec" : 683, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753686477 + ] + }, + "2502" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.000480416, + "systemTime" : 0, + "id" : 2502, + "basePriority" : 81, + "name" : "IOHIDRelayService", + "user_usec" : 480, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753693997 + ] + }, + "2493" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00058541599999999995, + "systemTime" : 0, + "id" : 2493, + "basePriority" : 81, + "name" : "IOHIDRelayService", + "user_usec" : 585, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753694237 + ] + }, + "995" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0011830409999999999, + "systemTime" : 0, + "id" : 995, + "basePriority" : 81, + "name" : "IOHIDRelayService", + "user_usec" : 1183, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753688397 + ] + }, + "101" : { + "id" : 101, + "schedPriority" : 4, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "schedFlags" : [ + "TH_SFLAG_EAGERPREEMPT" + ], + "user_usec" : 138549, + "basePriority" : 4, + "userTime" : 0.13854983300000001, + "waitEvent" : [ + 0, + 86025791120 + ], + "continuation" : [ + 0, + 86019655276 + ], + "systemTime" : 0, + "name" : "VM_pageout_scan" + }, + "110" : { + "id" : 110, + "schedPriority" : 81, + "system_usec" : 0, + "kernelFrames" : [ + [ + 0, + 86019010488 + ], + [ + 0, + 86019003832 + ], + [ + 0, + 86018938780 + ], + [ + 0, + 86024607288 + ], + [ + 0, + 86018639552 + ] + ], + "schedFlags" : [ + "TH_SFLAG_UNKNOWN_0x80000" + ], + "user_usec" : 45765, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "basePriority" : 81, + "userTime" : 0.045765958000000002, + "waitEvent" : [ + 0, + 86026259880 + ], + "systemTime" : 0, + "name" : "IOServiceTerminateThread" + }, + "102" : { + "continuation" : [ + 0, + 86019030616 + ], + "userTime" : 821.14061308299995, + "name" : "idle #0", + "id" : 102, + "basePriority" : 0, + "user_usec" : 821140613, + "system_usec" : 0, + "schedPriority" : 0, + "state" : [ + "TH_RUN", + "TH_IDLE" + ], + "systemTime" : 0 + }, + "989" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00052087499999999996, + "systemTime" : 0, + "id" : 989, + "basePriority" : 81, + "name" : "IOHIDRelayService", + "user_usec" : 520, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753687517 + ] + }, + "2495" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.028886790999999998, + "systemTime" : 0, + "id" : 2495, + "basePriority" : 81, + "name" : "IOHIDRelayService", + "user_usec" : 28886, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753692717 + ] + }, + "200" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.001293125, + "systemTime" : 0, + "id" : 200, + "basePriority" : 81, + "name" : "AppleCredentialManager", + "user_usec" : 1293, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758233565 + ] + }, + "2446" : { + "continuation" : [ + 0, + 86019169456 + ], + "userTime" : 0.300844, + "systemTime" : 0, + "id" : 2446, + "basePriority" : 93, + "name" : "thread call high #6", + "user_usec" : 300844, + "schedPriority" : 93, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025587456 + ] + }, + "103" : { + "continuation" : [ + 0, + 86019014440 + ], + "userTime" : 0.209241708, + "systemTime" : 0, + "id" : 103, + "basePriority" : 95, + "name" : "sched_maintenance_thread", + "user_usec" : 209241, + "schedPriority" : 95, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86019014440 + ] + }, + "104" : { + "continuation" : [ + 0, + 86019031520 + ], + "userTime" : 7.1659999999999997e-06, + "systemTime" : 0, + "id" : 104, + "basePriority" : 95, + "user_usec" : 7, + "system_usec" : 0, + "schedPriority" : 95, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86019031520 + ] + }, + "121" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.14112941600000001, + "systemTime" : 0, + "id" : 121, + "basePriority" : 95, + "name" : "IOPMrootDomain", + "user_usec" : 141129, + "schedPriority" : 95, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758222765 + ] + }, + "1027" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0012374160000000001, + "systemTime" : 0, + "id" : 1027, + "basePriority" : 81, + "name" : "IOHIDRelayManager", + "user_usec" : 1237, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753681677 + ] + }, + "105" : { + "continuation" : [ + 0, + 86018957916 + ], + "userTime" : 0.110822, + "systemTime" : 0, + "id" : 105, + "basePriority" : 80, + "name" : "daemon.deferred-deallocation", + "user_usec" : 110822, + "schedPriority" : 80, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86026074688 + ] + }, + "114" : { + "id" : 114, + "schedPriority" : 63, + "system_usec" : 0, + "kernelFrames" : [ + [ + 0, + 86019022988 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "user_usec" : 0, + "basePriority" : 63, + "userTime" : 0, + "waitEvent" : [ + 0, + 86026065424 + ], + "continuation" : [ + 0, + 86018957916 + ], + "systemTime" : 0, + "name" : "daemon.core-analytics-events" + }, + "203" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.4958e-05, + "systemTime" : 0, + "id" : 203, + "basePriority" : 81, + "name" : "AppleSSE", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758222365 + ] + }, + "106" : { + "id" : 106, + "schedPriority" : 93, + "system_usec" : 0, + "kernelFrames" : [ + [ + 0, + 86019022988 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "user_usec" : 0, + "basePriority" : 93, + "userTime" : 0, + "waitEvent" : [ + 0, + 86026076872 + ], + "continuation" : [ + 0, + 86018957916 + ], + "systemTime" : 0, + "name" : "daemon.thread-stack" + }, + "140" : { + "continuation" : [ + 0, + 86019597428 + ], + "userTime" : 3.0000000000000001e-06, + "systemTime" : 0, + "id" : 140, + "basePriority" : 95, + "name" : "VM_io_reprioritize_thread", + "user_usec" : 3, + "schedPriority" : 95, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025778072 + ] + }, + "115" : { + "continuation" : [ + 0, + 86019708176 + ], + "userTime" : 4.8749999999999999e-06, + "systemTime" : 0, + "id" : 115, + "basePriority" : 91, + "name" : "VM_reclaim", + "user_usec" : 4, + "schedPriority" : 91, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86017851048 + ] + }, + "107" : { + "continuation" : [ + 0, + 86018957916 + ], + "userTime" : 0.0029983750000000002, + "systemTime" : 0, + "id" : 107, + "basePriority" : 80, + "name" : "daemon.thread-exception", + "user_usec" : 2998, + "schedPriority" : 80, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86026076696 + ] + }, + "310" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.8416000000000001e-05, + "systemTime" : 0, + "id" : 310, + "basePriority" : 81, + "name" : "AppleS5L8960XDART", + "user_usec" : 18, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758221165 + ] + }, + "302" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.4541e-05, + "systemTime" : 0, + "id" : 302, + "basePriority" : 81, + "name" : "AppleT700XTempSensor", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758222205 + ] + }, + "116" : { + "continuation" : [ + 0, + 86019640724 + ], + "userTime" : 1.875e-06, + "systemTime" : 0, + "id" : 116, + "basePriority" : 31, + "name" : "VM_pageout_garbage_collect", + "user_usec" : 1, + "schedPriority" : 31, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86019640724 + ] + }, + "205" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 4.3749999999999996e-06, + "systemTime" : 0, + "id" : 205, + "basePriority" : 81, + "name" : "AppleS5L8940XI2CController", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758225165 + ] + }, + "108" : { + "id" : 108, + "schedPriority" : 80, + "system_usec" : 0, + "kernelFrames" : [ + [ + 0, + 86019022988 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "user_usec" : 0, + "basePriority" : 80, + "userTime" : 0, + "waitEvent" : [ + 0, + 86026076744 + ], + "continuation" : [ + 0, + 86018957916 + ], + "systemTime" : 0, + "name" : "daemon.thread-backtrace" + }, + "311" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.4583000000000001e-05, + "systemTime" : 0, + "id" : 311, + "basePriority" : 81, + "name" : "AppleS5L8960XDART", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758223325 + ] + }, + "1137" : { + "continuation" : [ + 0, + 86020673360 + ], + "userTime" : 6.9188296659999997, + "systemTime" : 0, + "id" : 1137, + "basePriority" : 81, + "name" : "dlil_input_en1", + "user_usec" : 6918829, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744153038639909 + ] + }, + "117" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.26609616600000002, + "systemTime" : 0, + "id" : 117, + "basePriority" : 81, + "name" : "AppleT8012IO", + "user_usec" : 266096, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758235005 + ] + }, + "142" : { + "continuation" : [ + 0, + 86023045632 + ], + "userTime" : 3.2909999999999999e-06, + "systemTime" : 0, + "id" : 142, + "basePriority" : 81, + "user_usec" : 3, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86026207984 + ] + }, + "109" : { + "continuation" : [ + 0, + 86019168624 + ], + "userTime" : 0.0047599160000000003, + "systemTime" : 0, + "id" : 109, + "basePriority" : 94, + "name" : "thread_call_daemon", + "user_usec" : 4759, + "schedPriority" : 94, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025592576 + ] + }, + "1030" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0010744159999999999, + "systemTime" : 0, + "id" : 1030, + "basePriority" : 81, + "name" : "IOHIDRelayService", + "user_usec" : 1074, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753681757 + ] + }, + "401" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00018929099999999999, + "systemTime" : 0, + "id" : 401, + "basePriority" : 81, + "name" : "RTBuddyCrashlogEndpoint(ANS2)", + "user_usec" : 189, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758234845 + ] + }, + "321" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.8416000000000001e-05, + "systemTime" : 0, + "id" : 321, + "basePriority" : 81, + "name" : "AppleS5L8960XDART", + "user_usec" : 18, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758230765 + ] + }, + "410" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.3583e-05, + "systemTime" : 0, + "id" : 410, + "basePriority" : 81, + "name" : "RTBuddyService", + "user_usec" : 13, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758220365 + ] + }, + "313" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.5458e-05, + "systemTime" : 0, + "id" : 313, + "basePriority" : 81, + "name" : "AppleS5L8960XDART", + "user_usec" : 15, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758234765 + ] + }, + "1138" : { + "continuation" : [ + 0, + 86020709608 + ], + "userTime" : 3.0218904160000002, + "systemTime" : 0, + "id" : 1138, + "basePriority" : 82, + "name" : "ifnet_start_en1", + "user_usec" : 3021890, + "schedPriority" : 82, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744153038637805 + ] + }, + "2451" : { + "continuation" : [ + 0, + 86019169456 + ], + "userTime" : 0.00071795799999999999, + "systemTime" : 0, + "id" : 2451, + "basePriority" : 93, + "name" : "thread call high #11", + "user_usec" : 717, + "schedPriority" : 93, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025587456 + ] + }, + "170" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0052315, + "systemTime" : 0, + "id" : 170, + "basePriority" : 81, + "name" : "AppleS5L8940XI2CController", + "user_usec" : 5231, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758231405 + ] + }, + "420" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.22948491600000001, + "systemTime" : 0, + "id" : 420, + "basePriority" : 81, + "name" : "AppleHIDTransportDeviceSPI", + "user_usec" : 229484, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758220765 + ] + }, + "332" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.325e-05, + "systemTime" : 0, + "id" : 332, + "basePriority" : 81, + "name" : "AppleMCA2Controller_T8012", + "user_usec" : 13, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758221885 + ] + }, + "171" : { + "continuation" : [ + 0, + 86019169456 + ], + "userTime" : 3.1988482500000002, + "systemTime" : 0, + "id" : 171, + "basePriority" : 92, + "name" : "thread call kernel-high #1", + "user_usec" : 3198848, + "schedPriority" : 92, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 0, + 86025590016 + ] + }, + "260" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.17731095799999999, + "systemTime" : 0, + "id" : 260, + "basePriority" : 81, + "name" : "AppleS5L8940XI2CController", + "user_usec" : 177310, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758228045 + ] + }, + "324" : { + "userTime" : 0.026648666000000001, + "systemTime" : 0, + "name" : "RTBuddyV2(SMC)", + "id" : 324, + "basePriority" : 81, + "user_usec" : 26648, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 86019010488 + ], + [ + 0, + 86019003832 + ], + [ + 0, + 86024738224 + ], + [ + 0, + 86018639552 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758221805 + ] + }, + "413" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.131931875, + "systemTime" : 0, + "id" : 413, + "basePriority" : 81, + "name" : "AppleSmartIO", + "user_usec" : 131931, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758222445 + ] + }, + "421" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.1625e-05, + "systemTime" : 0, + "id" : 421, + "basePriority" : 81, + "name" : "MacEFIManager", + "user_usec" : 11, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758220205 + ] + }, + "316" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.4083000000000001e-05, + "systemTime" : 0, + "id" : 316, + "basePriority" : 81, + "name" : "AppleS5L8960XDART", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758221485 + ] + }, + "180" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.092185624999999993, + "systemTime" : 0, + "id" : 180, + "basePriority" : 81, + "name" : "AppleMobileADBE0", + "user_usec" : 92185, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758231245 + ] + }, + "405" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00050820800000000001, + "systemTime" : 0, + "id" : 405, + "basePriority" : 81, + "name" : "AppleS5L8960XUSBArbitrator", + "user_usec" : 508, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758235725 + ] + }, + "308" : { + "userTime" : 851.08111658300004, + "systemTime" : 0, + "system_usec" : 0, + "id" : 308, + "basePriority" : 0, + "user_usec" : 851081116, + "kernelFrames" : [ + [ + 0, + 86019030164 + ], + [ + 0, + 86019030684 + ], + [ + 0, + 86018639552 + ] + ], + "schedPriority" : 0, + "name" : "idle #1", + "state" : [ + "TH_RUN", + "TH_IDLE" + ] + }, + "172" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.9579999999999999e-06, + "systemTime" : 0, + "id" : 172, + "basePriority" : 81, + "name" : "ApplePDMControllerT8012", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758235165 + ] + }, + "261" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.23990054099999999, + "systemTime" : 0, + "id" : 261, + "basePriority" : 81, + "name" : "AppleSamsungSPIController", + "user_usec" : 239900, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758231325 + ] + }, + "350" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.4375e-05, + "systemTime" : 0, + "id" : 350, + "basePriority" : 81, + "name" : "AppleS5L8960XDART", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758231165 + ] + }, + "414" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00081845799999999999, + "systemTime" : 0, + "id" : 414, + "basePriority" : 81, + "name" : "AppleSmartIO", + "user_usec" : 818, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758232765 + ] + }, + "510" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.047077958000000003, + "systemTime" : 0, + "id" : 510, + "basePriority" : 81, + "name" : "AppleUSBVHCIFirmwarePort", + "user_usec" : 47077, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758231885 + ] + }, + "317" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0067428749999999997, + "systemTime" : 0, + "id" : 317, + "basePriority" : 81, + "name" : "AppleMCA2Controller_T8012", + "user_usec" : 6742, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758232445 + ] + }, + "431" : { + "userTime" : 0.017592, + "systemTime" : 0, + "name" : "RTBuddyV2(PUP)", + "id" : 431, + "basePriority" : 81, + "user_usec" : 17592, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 86019010488 + ], + [ + 0, + 86019003832 + ], + [ + 0, + 86024738224 + ], + [ + 0, + 86018639552 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758222605 + ] + }, + "511" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.060954957999999997, + "systemTime" : 0, + "id" : 511, + "basePriority" : 81, + "name" : "AppleUSBVHCIFirmwarePort", + "user_usec" : 60954, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758235885 + ] + }, + "1141" : { + "continuation" : [ + 0, + 86023862772 + ], + "userTime" : 0.069798790999999999, + "systemTime" : 0, + "id" : 1141, + "basePriority" : 81, + "name" : "skywalk_fsw_reap_en1", + "user_usec" : 69798, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744149167939941 + ] + }, + "173" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 3.208e-06, + "systemTime" : 0, + "id" : 173, + "basePriority" : 81, + "name" : "AppleMCA2Switch_T8012", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758220605 + ] + }, + "512" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.022856333, + "systemTime" : 0, + "id" : 512, + "basePriority" : 81, + "name" : "AppleUSBVHCIFirmwarePort", + "user_usec" : 22856, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758232525 + ] + }, + "601" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.9579999999999999e-06, + "systemTime" : 0, + "id" : 601, + "basePriority" : 81, + "name" : "IOAsynchronousScheduler", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758220525 + ] + }, + "165" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 4.9579999999999998e-06, + "systemTime" : 0, + "id" : 165, + "basePriority" : 81, + "name" : "AppleARMBacklight", + "user_usec" : 4, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758232685 + ] + }, + "326" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.2583e-05, + "systemTime" : 0, + "id" : 326, + "basePriority" : 81, + "name" : "RTBuddyService", + "user_usec" : 12, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758223405 + ] + }, + "318" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.0665999999999999e-05, + "systemTime" : 0, + "id" : 318, + "basePriority" : 81, + "name" : "AppleMCA2Controller_T8012", + "user_usec" : 10, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758220045 + ] + }, + "182" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.4159999999999998e-06, + "systemTime" : 0, + "id" : 182, + "basePriority" : 81, + "name" : "AppleSynopsysMIPIDSIController", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758222845 + ] + }, + "2477" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00072550000000000002, + "systemTime" : 0, + "id" : 2477, + "basePriority" : 81, + "name" : "IOHIDRelayManager", + "user_usec" : 725, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160753710301 + ] + }, + "610" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.375e-06, + "systemTime" : 0, + "id" : 610, + "basePriority" : 81, + "name" : "IOAsynchronousScheduler", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758221965 + ] + }, + "174" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.5000000000000002e-06, + "systemTime" : 0, + "id" : 174, + "basePriority" : 81, + "name" : "AppleMCA2Cluster_T8012", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758229005 + ] + }, + "513" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.000105708, + "systemTime" : 0, + "id" : 513, + "basePriority" : 81, + "name" : "AppleUSBVHCIFirmwarePort", + "user_usec" : 105, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758235085 + ] + }, + "602" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.666e-06, + "systemTime" : 0, + "id" : 602, + "basePriority" : 81, + "name" : "AVE_Drv", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758224525 + ] + }, + "166" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 3.4580000000000002e-06, + "systemTime" : 0, + "id" : 166, + "basePriority" : 81, + "name" : "AppleM68Buttons", + "user_usec" : 3, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758228605 + ] + }, + "263" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.4625e-05, + "systemTime" : 0, + "id" : 263, + "basePriority" : 81, + "name" : "AppleT8010CLPC", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758227005 + ] + }, + "352" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.4e-05, + "systemTime" : 0, + "id" : 352, + "basePriority" : 81, + "name" : "AppleT700XTempSensor", + "user_usec" : 14, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758224285 + ] + }, + "191" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0246175, + "systemTime" : 0, + "id" : 191, + "basePriority" : 81, + "name" : "AppleSandDollar", + "user_usec" : 24617, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758223165 + ] + }, + "272" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.3541e-05, + "systemTime" : 0, + "id" : 272, + "basePriority" : 81, + "name" : "AppleJPEGDriver", + "user_usec" : 13, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758223565 + ] + }, + "611" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.5830000000000001e-06, + "systemTime" : 0, + "id" : 611, + "basePriority" : 81, + "name" : "IOAsynchronousScheduler", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758227405 + ] + }, + "425" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.2833000000000001e-05, + "systemTime" : 0, + "id" : 425, + "basePriority" : 81, + "name" : "AppleCT720", + "user_usec" : 12, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758230285 + ] + }, + "514" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 9.9500000000000006e-05, + "systemTime" : 0, + "id" : 514, + "basePriority" : 81, + "name" : "AppleUSBVHCIFirmwarePort", + "user_usec" : 99, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758228285 + ] + }, + "175" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.6249999999999999e-06, + "systemTime" : 0, + "id" : 175, + "basePriority" : 81, + "name" : "AppleMCA2Cluster_T8012", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758229085 + ] + }, + "264" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 3.9332999999999998e-05, + "systemTime" : 0, + "id" : 264, + "basePriority" : 81, + "name" : "AppleDieTempController", + "user_usec" : 39, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758229405 + ] + }, + "256" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.9160000000000001e-06, + "systemTime" : 0, + "id" : 256, + "basePriority" : 81, + "name" : "AppleT8012PMGR", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758231645 + ] + }, + "370" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.62796179100000005, + "systemTime" : 0, + "id" : 370, + "basePriority" : 81, + "name" : "AppleSMC", + "user_usec" : 627961, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758232845 + ] + }, + "434" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.2082999999999999e-05, + "systemTime" : 0, + "id" : 434, + "basePriority" : 81, + "name" : "RTBuddyService", + "user_usec" : 12, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758228365 + ] + }, + "184" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.5000000000000002e-06, + "systemTime" : 0, + "id" : 184, + "basePriority" : 81, + "user_usec" : 2, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758229245 + ] + }, + "337" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.5832999999999999e-05, + "systemTime" : 0, + "id" : 337, + "basePriority" : 81, + "name" : "AppleT8015DART", + "user_usec" : 15, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758225725 + ] + }, + "176" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.9160000000000001e-06, + "systemTime" : 0, + "id" : 176, + "basePriority" : 81, + "name" : "AppleMCA2Cluster_T8012", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758229165 + ] + }, + "515" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00010866600000000001, + "systemTime" : 0, + "id" : 515, + "basePriority" : 81, + "name" : "AppleUSBVHCIFirmwarePort", + "user_usec" : 108, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758230125 + ] + }, + "273" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.3291e-05, + "systemTime" : 0, + "id" : 273, + "basePriority" : 81, + "name" : "AppleM2ScalerCSCDriver", + "user_usec" : 13, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758225005 + ] + }, + "168" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.016539041000000001, + "systemTime" : 0, + "id" : 168, + "basePriority" : 81, + "name" : "AppleS5L8940XI2CController", + "user_usec" : 16539, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758232285 + ] + }, + "193" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0054159159999999998, + "systemTime" : 0, + "id" : 193, + "basePriority" : 81, + "name" : "AppleKeyStore", + "user_usec" : 5415, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758229325 + ] + }, + "282" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.3208e-05, + "systemTime" : 0, + "id" : 282, + "basePriority" : 81, + "user_usec" : 13, + "system_usec" : 0, + "schedPriority" : 81, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758226285 + ] + }, + "185" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 2.4159999999999998e-06, + "systemTime" : 0, + "id" : 185, + "basePriority" : 81, + "name" : "AppleARMPWMDevice", + "user_usec" : 2, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758231565 + ] + }, + "460" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 4.7833000000000001e-05, + "systemTime" : 0, + "id" : 460, + "basePriority" : 81, + "name" : "RTBuddyCrashlogEndpoint(PUP)", + "user_usec" : 47, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758227805 + ] + }, + "409" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00014920800000000001, + "systemTime" : 0, + "id" : 409, + "basePriority" : 81, + "name" : "RTBuddyV2", + "user_usec" : 149, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744156898800589 + ] + }, + "177" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.617669708, + "systemTime" : 0, + "id" : 177, + "basePriority" : 81, + "name" : "AppleSamsungSPIController", + "user_usec" : 1617669, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758223245 + ] + }, + "516" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.000116416, + "systemTime" : 0, + "id" : 516, + "basePriority" : 81, + "name" : "AppleUSBVHCIFirmwarePort", + "user_usec" : 116, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758232125 + ] + }, + "541" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.708e-06, + "systemTime" : 0, + "id" : 541, + "basePriority" : 81, + "name" : "AppleSMCPMU", + "user_usec" : 1, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758227245 + ] + }, + "169" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.016608999999999999, + "systemTime" : 0, + "id" : 169, + "basePriority" : 81, + "name" : "AppleS5L8940XI2CController", + "user_usec" : 16609, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758225965 + ] + }, + "328" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00014616600000000001, + "systemTime" : 0, + "id" : 328, + "basePriority" : 81, + "name" : "RTBuddyCrashlogEndpoint(SMC)", + "user_usec" : 146, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758235405 + ] + }, + "380" : { + "userTime" : 0.0084016249999999994, + "systemTime" : 0, + "name" : "RTBuddyV2(ANS2)", + "id" : 380, + "basePriority" : 81, + "user_usec" : 8401, + "system_usec" : 0, + "schedPriority" : 81, + "kernelFrames" : [ + [ + 0, + 86019010488 + ], + [ + 0, + 86019003832 + ], + [ + 0, + 86024738224 + ], + [ + 0, + 86018639552 + ] + ], + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758227165 + ] + }, + "505" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 8.3014258329999997, + "systemTime" : 0, + "id" : 505, + "basePriority" : 81, + "name" : "AppleUSBVHCIFirmwarePort", + "user_usec" : 8301425, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758230525 + ] + }, + "275" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 13.641354625, + "systemTime" : 0, + "id" : 275, + "basePriority" : 81, + "name" : "AppleEmbeddedPCIeUpLinkMgmt", + "user_usec" : 13641354, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758230685 + ] + }, + "418" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 1.1671527500000001, + "systemTime" : 0, + "id" : 418, + "basePriority" : 81, + "name" : "AppleHIDTransportDeviceSPI", + "user_usec" : 1167152, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758228205 + ] + }, + "178" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.0021133329999999998, + "systemTime" : 0, + "id" : 178, + "basePriority" : 81, + "name" : "AppleSamsungSPIController", + "user_usec" : 2113, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758235805 + ] + }, + "267" : { + "continuation" : [ + 0, + 86024738040 + ], + "userTime" : 0.00013595799999999999, + "systemTime" : 0, + "id" : 267, + "basePriority" : 81, + "name" : "AppleT700XTempSensor", + "user_usec" : 135, + "schedPriority" : 81, + "system_usec" : 0, + "state" : [ + "TH_WAIT", + "TH_UNINT" + ], + "waitEvent" : [ + 1, + 2497744160758222045 + ] + } + }, + "userTimeTask" : 1747.3480131250001, + "pid" : 0, + "systemTimeTask" : 0, + "flags" : [ + "sharedRegionNone" + ], + "residentMemoryBytes" : 9027584 +}, + "1" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":313,"rawFlags":"0x40080001","timesDidThrottle":0,"csTrustLevel":0,"procname":"launchd","jetsamCoalition":3,"copyOnWriteFaults":87,"pageFaults":1048,"threadById":{"682":{"id":682,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":338,"basePriority":31,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.00033879100000000002,"waitEvent":[1,2497744156895091413],"continuation":[0,86023045632],"systemTime":0,"schedPriority":31},"2528":{"id":2528,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":22,"basePriority":20,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_UTILITY","userTime":2.2583e-05,"waitEvent":[1,2497744153030486013],"continuation":[0,86022680364],"systemTime":0,"schedPriority":20},"2517":{"id":2517,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":6593,"basePriority":37,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.0065929999999999999,"waitEvent":[1,2497744153042542901],"continuation":[0,86022680364],"systemTime":0,"schedPriority":37},"2525":{"id":2525,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":6703,"basePriority":20,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.006703166,"waitEvent":[1,2497744153030456717],"continuation":[0,86022680364],"systemTime":0,"schedPriority":20}},"userTimeTask":0.77823312499999997,"pid":1,"csFlags":570434305,"flags":["sharedRegionSystem"],"residentMemoryBytes":1376520}, + "27" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":53,"rawFlags":"0x44084001","waitInfo":["thread 844: mach_msg receive on port set 0x22a9c512d5d78545","thread 948: mach_msg receive on port set 0x22a9c512d5d78575"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"UserEventAgent","jetsamCoalition":6,"copyOnWriteFaults":56,"pageFaults":464,"threadById":{"844":{"id":844,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":29564,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,51510020],[2,51510488],[3,4624],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.029564208000000002,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"2404":{"id":2404,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":466,"basePriority":20,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.000466541,"waitEvent":[1,2497744153042580877],"continuation":[0,86022680364],"systemTime":0,"schedPriority":20},"948":{"id":948,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":3459,"basePriority":31,"userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[4,12932],[2,143413872],[2,143451120]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.003459958,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"949":{"id":949,"schedPriority":31,"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","state":["TH_WAIT"],"user_usec":1154,"basePriority":31,"userFrames":[[2,142666596],[2,143413872],[2,143451120]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0011546250000000001,"continuation":[0,86023045632],"systemTime":0,"name":"com.apple.CFSocket.private"}},"userTimeTask":0.20617158299999999,"pid":27,"csFlags":570434305,"flags":["isImpDonor","isDirtyTracked","sharedRegionSystem"],"residentMemoryBytes":1327328}, + "29" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":11,"rawFlags":"0x40084001","waitInfo":["thread 901: pthread condvar 0x1047c87f0","thread 930: mach_msg receive on port set 0x22a9c512d5d78515","thread 933: pthread condvar 0x123f8c040"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"fseventsd","jetsamCoalition":10,"copyOnWriteFaults":40,"pageFaults":692,"threadById":{"930":{"id":930,"schedPriority":31,"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","state":["TH_WAIT"],"user_usec":7458,"basePriority":31,"userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[5,30760],[2,143413872],[2,143451120]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0074587079999999997,"continuation":[0,86018725032],"systemTime":0,"name":"com.apple.fseventsd.volume"},"902":{"id":902,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":11,"basePriority":31,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.1625e-05,"waitEvent":[1,2497744156903722437],"continuation":[0,86023045632],"systemTime":0,"schedPriority":31},"964":{"id":964,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":3864,"basePriority":31,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.003864541,"waitEvent":[1,2497744153043118077],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31},"932":{"id":932,"system_usec":0,"schedPriority":50,"kernelFrames":[[0,86019010488],[0,86019003832],[0,86023045024],[0,86020437456],[0,86023182784],[0,86023183188],[0,86024101504],[0,86020018008],[0,86018594300],[1,0]],"state":["TH_WAIT"],"user_usec":14212,"basePriority":50,"userFrames":[[2,142675320],[2,143413872],[2,143451120]],"userTime":0.014212791000000001,"waitEvent":[1,2497744173365150549],"systemTime":0,"name":"com.apple.fseventsd.dev.fsevents"},"933":{"id":933,"name":"com.apple.fseventsd.disklogger.29","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","system_usec":0,"user_usec":6479,"basePriority":31,"userFrames":[[2,142665304],[5,56932],[2,143413872],[2,143451120]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0064799159999999996,"waitEvent":[1,2497744156890440277],"continuation":[0,86003803200],"systemTime":0,"schedPriority":31},"901":{"id":901,"schedPriority":49,"system_usec":0,"state":["TH_WAIT"],"user_usec":72968,"basePriority":49,"userFrames":[[2,142665304],[5,72228],[5,70496],[5,72780],[2,143413872],[2,143451120]],"userTime":0.072968332999999996,"waitEvent":[1,2497744156890440789],"continuation":[0,86003803200],"systemTime":0,"name":"com.apple.fseventsd.notify"}},"userTimeTask":0.117373375,"pid":29,"csFlags":570434305,"flags":["isImpDonor","sharedRegionSystem"],"residentMemoryBytes":1573168}, + "33" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":349,"rawFlags":"0x44094001","timesDidThrottle":0,"csTrustLevel":0,"procname":"remoted","jetsamCoalition":18,"copyOnWriteFaults":55,"pageFaults":928,"threadById":{"928":{"id":928,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":12,"basePriority":31,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.2707999999999999e-05,"waitEvent":[1,2497744156903725781],"continuation":[0,86023045632],"systemTime":0,"schedPriority":31},"2524":{"id":2524,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":34,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":3.4082999999999999e-05,"waitEvent":[1,2497744153030646381],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31},"2520":{"id":2520,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":2625,"basePriority":31,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0026252910000000001,"waitEvent":[1,2497744153039559277],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31}},"userTimeTask":2.1771898749999998,"pid":33,"csFlags":570434305,"flags":["isImpDonor","dirty","isDirtyTracked","sharedRegionSystem"],"residentMemoryBytes":1671432}, + "34" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":26,"rawFlags":"0x4C084001","waitInfo":["thread 847: mach_msg receive on port set 0x22a9c512d5d78485"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"keybagd","jetsamCoalition":20,"copyOnWriteFaults":45,"pageFaults":456,"threadById":{"847":{"id":847,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":6537,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[6,63680],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0065370000000000003,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"1087":{"id":1087,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":7586,"basePriority":31,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0075867909999999998,"waitEvent":[1,2497744153043088781],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31}},"userTimeTask":0.039671125000000002,"pid":34,"csFlags":570436361,"flags":["isImpDonor","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1229144}, + "35" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":10,"rawFlags":"0x4C084001","timesDidThrottle":0,"csTrustLevel":0,"procname":"amfid","jetsamCoalition":22,"copyOnWriteFaults":41,"pageFaults":266,"threadById":{"931":{"id":931,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":14,"basePriority":31,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.45e-05,"waitEvent":[1,2497744156903732469],"continuation":[0,86023045632],"systemTime":0,"schedPriority":31}},"userTimeTask":0.0077938749999999996,"pid":35,"csFlags":570434305,"flags":["isImpDonor","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":753888}, + "38" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":44,"rawFlags":"0x44084001","waitInfo":["thread 850: mach_msg receive on port set 0x22a9c512d5d78425","thread 925: semaphore port 0x22a9c512d51a3395 owned by pid 38"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"watchdogd","jetsamCoalition":28,"copyOnWriteFaults":41,"pageFaults":324,"threadById":{"850":{"id":850,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":14572,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[7,30552],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.014572165999999999,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"925":{"id":925,"schedPriority":97,"system_usec":0,"state":["TH_WAIT"],"user_usec":77922,"basePriority":97,"userFrames":[[2,142658716],[2,141002628],[7,36092],[7,35940],[2,143413872],[2,143451120]],"userTime":0.077922415999999994,"waitEvent":[0,86016828460],"continuation":[0,86019059080],"systemTime":0,"name":"watchdogd service monitoring thread"},"2506":{"id":2506,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":644,"basePriority":31,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.00064495799999999995,"waitEvent":[1,2497744153042297141],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31}},"userTimeTask":0.12206175,"pid":38,"csFlags":570434305,"flags":["isImpDonor","isDirtyTracked","sharedRegionSystem"],"residentMemoryBytes":885000}, + "39" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":104,"rawFlags":"0x40084001","waitInfo":["thread 851: mach_msg receive on port set 0x22a9c512d5d787b5"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"multiversed","jetsamCoalition":30,"copyOnWriteFaults":66,"pageFaults":804,"threadById":{"851":{"id":851,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":23430,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[8,13624],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.023430708000000001,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"2507":{"id":2507,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":21,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.1832999999999999e-05,"waitEvent":[1,2497744153042302349],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31}},"userTimeTask":0.86534254099999997,"pid":39,"csFlags":570434305,"flags":["isImpDonor","sharedRegionSystem"],"residentMemoryBytes":1458440}, + "42" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":168,"rawFlags":"0x4C084001","waitInfo":["thread 853: mach_msg receive on port set 0x22a9c512d5d784b5"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"containermanagerd","jetsamCoalition":36,"copyOnWriteFaults":49,"pageFaults":526,"threadById":{"853":{"id":853,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":15775,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[2,81357880],[9,16108],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.015775833,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"2032":{"id":2032,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":21,"basePriority":20,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_UTILITY","userTime":2.1625e-05,"waitEvent":[1,2497744153039561013],"continuation":[0,86022680364],"systemTime":0,"schedPriority":20}},"userTimeTask":0.073697499999999999,"pid":42,"csFlags":570434305,"flags":["isImpDonor","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1294560}, + "41" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":47,"rawFlags":"0x40084001","waitInfo":["thread 854: mach_msg receive on port set 0x22a9c512d5d78605","thread 976: mach_msg receive on port set 0x22a9c512d5d78635","thread 1143: mach_msg receive on port set 0x22a9c512d5d788d5"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"AppleUVCCamera","jetsamCoalition":34,"copyOnWriteFaults":45,"pageFaults":920,"threadById":{"1143":{"continuation":[0,86018725032],"userTime":0.013095041,"system_usec":0,"id":1143,"basePriority":47,"user_usec":13095,"userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[10,135624],[2,143413872],[2,143451120]],"schedPriority":47,"state":["TH_WAIT"],"systemTime":0},"976":{"continuation":[0,86018725032],"userTime":0.001456583,"name":"H9ISPServicesThread","id":976,"basePriority":48,"user_usec":1456,"system_usec":0,"schedPriority":48,"userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[2,75716436],[2,143413872],[2,143451120]],"state":["TH_WAIT"],"systemTime":0},"854":{"id":854,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":76708,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[10,54148],[10,54416],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.076708790999999998,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"913":{"id":913,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":13228,"basePriority":31,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.013228916,"waitEvent":[1,2497744153030544605],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31}},"userTimeTask":0.104489333,"pid":41,"csFlags":570434305,"flags":["isImpDonor","sharedRegionSystem"],"residentMemoryBytes":1163568}, + "44" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":2,"rawFlags":"0x44084001","timesDidThrottle":0,"csTrustLevel":0,"procname":"notifyd","jetsamCoalition":40,"copyOnWriteFaults":34,"pageFaults":227,"threadById":{"899":{"id":899,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","user_usec":1178635,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.178635833,"waitEvent":[1,2497744153030610141],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4},"900":{"id":900,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":9,"basePriority":31,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":9.9159999999999996e-06,"waitEvent":[1,2497744156903689669],"continuation":[0,86023045632],"systemTime":0,"schedPriority":31}},"userTimeTask":1.1975100830000001,"pid":44,"csFlags":570434305,"flags":["isImpDonor","isDirtyTracked","sharedRegionSystem"],"residentMemoryBytes":770272}, + "46" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":58,"rawFlags":"0x4C084001","waitInfo":["thread 857: mach_msg receive on port set 0x22a9c512d5d783f5"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"usermanagerd","jetsamCoalition":44,"copyOnWriteFaults":48,"pageFaults":504,"threadById":{"857":{"id":857,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":11232,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[11,238024],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.01123275,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"1894":{"id":1894,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":790,"basePriority":31,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.00079091600000000001,"waitEvent":[1,2497744153043074133],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31},"2534":{"id":2534,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":6,"basePriority":31,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":6.7909999999999999e-06,"waitEvent":[1,2497744153042996445],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31}},"userTimeTask":0.080716125,"pid":46,"csFlags":570436361,"flags":["isImpDonor","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1343832}, + "47" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":218,"rawFlags":"0x44084001","waitInfo":["thread 858: mach_msg receive on port set 0x22a9c512d5d786c5","thread 985: mach_msg receive on port set 0x22a9c512d5d786f5"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"hidd","jetsamCoalition":46,"copyOnWriteFaults":53,"pageFaults":1173,"threadById":{"1011":{"continuation":[0,86022680364],"userTime":0.52629800000000004,"systemTime":0,"id":1011,"basePriority":63,"user_usec":526298,"system_usec":0,"schedPriority":63,"userFrames":[[2,142669000],[2,143451108]],"state":["TH_WAIT"],"waitEvent":[1,2497744153043075869]},"1014":{"id":1014,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":19,"basePriority":37,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":1.95e-05,"waitEvent":[1,2497744153043063717],"continuation":[0,86022680364],"systemTime":0,"schedPriority":37},"985":{"continuation":[0,86018725032],"userTime":0.00010475,"name":"IOHIDService - RunLoopCompatibilityThread","id":985,"basePriority":63,"user_usec":104,"system_usec":0,"schedPriority":63,"userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[2,55436720],[2,143413872],[2,143451120]],"state":["TH_WAIT"],"systemTime":0},"1010":{"id":1010,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":994480,"basePriority":37,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.99448045799999996,"waitEvent":[1,2497744153043090517],"continuation":[0,86022680364],"systemTime":0,"schedPriority":37},"858":{"id":858,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":52239,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[12,15196],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.052239374999999998,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31}},"userTimeTask":1.6497699159999999,"pid":47,"csFlags":570434305,"flags":["isImpDonor","isDirtyTracked","sharedRegionSystem"],"residentMemoryBytes":2654512}, + "48" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":73,"rawFlags":"0x44084001","waitInfo":["thread 859: mach_msg receive on port set 0x22a9c512d5d78695"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"corebrightnessd","jetsamCoalition":48,"copyOnWriteFaults":52,"pageFaults":1719,"threadById":{"1021":{"id":1021,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":692611,"basePriority":31,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.69261158300000003,"waitEvent":[1,2497744153043068925],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31},"859":{"id":859,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":469806,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[13,15300],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.469806583,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"938":{"id":938,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":578704,"basePriority":31,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.57870425000000003,"waitEvent":[1,2497744153042548109],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31},"1123":{"id":1123,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":69,"basePriority":37,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":6.8999999999999997e-05,"waitEvent":[1,2497744153043094749],"continuation":[0,86022680364],"systemTime":0,"schedPriority":37}},"userTimeTask":1.741544041,"pid":48,"csFlags":570434305,"flags":["isImpDonor","isDirtyTracked","sharedRegionSystem"],"residentMemoryBytes":1327368}, + "30" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":437,"rawFlags":"0x44094001","waitInfo":["thread 861: mach_msg receive on port set 0x22a9c512d5d78755"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"corespeechd","jetsamCoalition":12,"copyOnWriteFaults":63,"pageFaults":2231,"threadById":{"861":{"id":861,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":41316,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,51510020],[2,51510488],[14,10948],[14,10636],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.041316458,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"991":{"id":991,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","kernelFrames":[[0,86019010488],[0,86019003832],[0,86002575500],[0,86002560112],[0,86024749432],[0,86002560576],[0,86002540592],[0,86020455904],[0,86020384516],[0,86020379412],[0,86023182784],[0,86023183188],[0,86024101504],[0,86020018008],[0,86018594300],[1,0]],"user_usec":1436,"basePriority":31,"dispatch_queue_label":"com.apple.lighthouse.read","userFrames":[[2,142675320],[2,84175192],[2,140993452],[2,140999740],[2,141027580],[2,141030356],[2,141071280],[2,143421036],[2,143451108]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.001436458,"waitEvent":[1,2497744153024124285],"systemTime":0,"schedPriority":31},"2469":{"id":2469,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":419,"basePriority":31,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.000419083,"waitEvent":[1,2497744153043041365],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31}},"userTimeTask":0.63430916599999998,"pid":30,"csFlags":570434305,"flags":["isImpDonor","dirty","isDirtyTracked","sharedRegionSystem"],"residentMemoryBytes":3703088}, + "28" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":235,"rawFlags":"0x40084001","timesDidThrottle":0,"csTrustLevel":0,"procname":"logd","jetsamCoalition":8,"copyOnWriteFaults":47,"pageFaults":2109,"threadById":{"934":{"id":934,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":9,"basePriority":31,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":9.6660000000000003e-06,"waitEvent":[1,2497744156895094757],"continuation":[0,86023045632],"systemTime":0,"schedPriority":31},"2389":{"id":2389,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":56934,"basePriority":31,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.056934666000000002,"waitEvent":[1,2497744153042353237],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31},"2407":{"id":2407,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":925,"basePriority":20,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.0009255,"waitEvent":[1,2497744153043054277],"continuation":[0,86022680364],"systemTime":0,"schedPriority":20},"2384":{"id":2384,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":67836,"basePriority":20,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.067836541,"waitEvent":[1,2497744153043059485],"continuation":[0,86022680364],"systemTime":0,"schedPriority":20}},"userTimeTask":1.357755791,"pid":28,"csFlags":570434305,"flags":["isImpDonor","sharedRegionSystem"],"residentMemoryBytes":4833544}, + "43" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":9,"rawFlags":"0x44084001","waitInfo":["thread 862: mach_msg receive on port set 0x22a9c512d5d783c5"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"distnoted","jetsamCoalition":38,"copyOnWriteFaults":37,"pageFaults":251,"threadById":{"862":{"id":862,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":7743,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[15,16188],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0077432079999999997,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"951":{"id":951,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":926,"basePriority":20,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.00092612499999999997,"waitEvent":[1,2497744153042805045],"continuation":[0,86022680364],"systemTime":0,"schedPriority":20}},"userTimeTask":0.0086693329999999996,"pid":43,"csFlags":570434305,"flags":["isImpDonor","isDirtyTracked","sharedRegionSystem"],"residentMemoryBytes":704736}, + "49" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":587,"rawFlags":"0x40084001","waitInfo":["thread 1006: semaphore port 0x22a9c512d47f3c95 owned by pid 49","thread 1007: semaphore port 0x22a9c512d47eccc5 owned by pid 49","thread 1016: semaphore port 0x22a9c512d47e6585 owned by pid 49","thread 2512: semaphore port 0x22a9c512d5191a45 owned by pid 49"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"bridgeaudiod","jetsamCoalition":50,"copyOnWriteFaults":61,"pageFaults":2231,"threadById":{"1007":{"id":1007,"name":"caulk.messenger.shared:17","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","system_usec":0,"user_usec":276,"basePriority":19,"userFrames":[[2,142658692],[2,108184108],[2,108184224],[2,143413872],[2,143451120]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.00027670800000000002,"waitEvent":[0,86016828460],"continuation":[0,86019059080],"systemTime":0,"schedPriority":19},"2512":{"id":2512,"schedPriority":55,"system_usec":0,"state":["TH_WAIT"],"user_usec":63,"basePriority":55,"userFrames":[[2,142658692],[2,108184108],[2,108184224],[2,143413872],[2,143451120]],"userTime":6.3291000000000001e-05,"waitEvent":[0,86016828460],"continuation":[0,86019059080],"systemTime":0,"name":"AUToneMeister messenger"},"1053":{"id":1053,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":12,"basePriority":31,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":1.2415999999999999e-05,"waitEvent":[1,2497744156903706389],"continuation":[0,86023045632],"systemTime":0,"schedPriority":31},"2522":{"id":2522,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":91,"basePriority":37,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":9.1207999999999998e-05,"waitEvent":[1,2497744153042555813],"continuation":[0,86022680364],"systemTime":0,"schedPriority":37},"1006":{"id":1006,"name":"HAL Async Logger","state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","system_usec":0,"user_usec":1578,"basePriority":31,"userFrames":[[2,142658692],[2,30145032],[2,30145400],[2,143413872],[2,143451120]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0015781250000000001,"waitEvent":[0,86016828460],"continuation":[0,86019059080],"systemTime":0,"schedPriority":31},"1016":{"id":1016,"schedPriority":55,"system_usec":0,"state":["TH_WAIT"],"user_usec":112,"basePriority":55,"userFrames":[[2,142658692],[2,108184108],[2,108184224],[2,143413872],[2,143451120]],"userTime":0.000112,"waitEvent":[0,86016828460],"continuation":[0,86019059080],"systemTime":0,"name":"caulk.messenger.shared:high"},"2521":{"id":2521,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":1090,"basePriority":37,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.0010906659999999999,"waitEvent":[1,2497744153042495485],"continuation":[0,86022680364],"systemTime":0,"schedPriority":37}},"userTimeTask":1.6859796250000001,"pid":49,"csFlags":570434305,"flags":["isImpDonor","sharedRegionSystem"],"residentMemoryBytes":7291264}, + "32" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":39,"rawFlags":"0x44080041","timesDidThrottle":0,"csTrustLevel":0,"procname":"powerd","jetsamCoalition":16,"copyOnWriteFaults":43,"pageFaults":674,"threadById":{"997":{"id":997,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":10,"basePriority":4,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.075e-05,"waitEvent":[1,2497744156895114821],"continuation":[0,86023045632],"systemTime":0,"schedPriority":4},"2386":{"id":2386,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":17684,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.017684333,"waitEvent":[1,2497744153043003389],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4}},"userTimeTask":0.48617487500000001,"pid":32,"csFlags":570434305,"flags":["darwinBG","isDirtyTracked","sharedRegionSystem"],"residentMemoryBytes":1114336}, + "50" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":11,"rawFlags":"0x44080041","timesDidThrottle":0,"csTrustLevel":0,"procname":"cfprefsd","jetsamCoalition":52,"copyOnWriteFaults":42,"pageFaults":398,"threadById":{"973":{"id":973,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":14,"basePriority":4,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":1.4583000000000001e-05,"waitEvent":[1,2497744156895108133],"continuation":[0,86023045632],"systemTime":0,"schedPriority":4},"2298":{"id":2298,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6928,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0069280410000000002,"waitEvent":[1,2497744153042315261],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4},"2530":{"id":2530,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":0,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0,"waitEvent":[1,2497744153043081837],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4}},"userTimeTask":0.29063233300000002,"pid":50,"csFlags":570434305,"flags":["darwinBG","isDirtyTracked","sharedRegionSystem"],"residentMemoryBytes":983264}, + "51" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":17,"rawFlags":"0x40084001","waitInfo":["thread 929: mach_msg receive on port set 0x22a9c512d5d78725","thread 992: mach_msg receive on port set 0x22a9c512d5d78785"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"dfrd","jetsamCoalition":54,"copyOnWriteFaults":47,"pageFaults":671,"threadById":{"929":{"id":929,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":154670,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[16,77664],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.154670583,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"992":{"id":992,"schedPriority":37,"system_usec":0,"qosRequested":"QOS_CLASS_USER_INTERACTIVE","state":["TH_WAIT"],"user_usec":230175,"basePriority":37,"userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[16,110248],[2,143413872],[2,143451120]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.23017537499999999,"continuation":[0,86018725032],"systemTime":0,"name":"com.apple.dfr.usb"},"2518":{"id":2518,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":97010,"basePriority":37,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.0970105,"waitEvent":[1,2497744153030622293],"continuation":[0,86022680364],"systemTime":0,"schedPriority":37},"2391":{"id":2391,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_USER_INITIATED","user_usec":100319,"basePriority":37,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_USER_INITIATED","userTime":0.10031941599999999,"waitEvent":[1,2497744153042557549],"continuation":[0,86022680364],"systemTime":0,"schedPriority":37}},"userTimeTask":0.92896812500000003,"pid":51,"csFlags":570434305,"flags":["isImpDonor","sharedRegionSystem"],"residentMemoryBytes":6095152}, + "52" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":80,"rawFlags":"0x4C090041","waitInfo":["thread 945: mach_msg receive on port set 0x22a9c512d5d78875"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"analyticsd","jetsamCoalition":56,"copyOnWriteFaults":48,"pageFaults":585,"threadById":{"945":{"id":945,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":68892,"basePriority":4,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[17,367020],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.068892124999999999,"continuation":[0,86018725032],"systemTime":0,"schedPriority":4},"1661":{"id":1661,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":10393,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.010393166000000001,"waitEvent":[1,2497744153042546373],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4}},"userTimeTask":0.131441541,"pid":52,"csFlags":570434305,"flags":["darwinBG","dirty","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1458520}, + "53" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":0,"rawFlags":"0x4C080041","waitInfo":["thread 959: mach_msg receive on port set 0x22a9c512d5d785d5"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"apfs_iosd","jetsamCoalition":58,"copyOnWriteFaults":41,"pageFaults":262,"threadById":{"959":{"id":959,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":5236,"basePriority":4,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[18,7720],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0052364999999999998,"continuation":[0,86018725032],"systemTime":0,"schedPriority":4},"963":{"id":963,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":129,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00012899999999999999,"waitEvent":[1,2497744153043139669],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4}},"userTimeTask":0.0057367909999999998,"pid":53,"csFlags":570434305,"flags":["darwinBG","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":803120}, + "54" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":2,"rawFlags":"0x4C080041","waitInfo":["thread 960: mach_msg receive on port set 0x22a9c512d5d78665"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"powerchimed","jetsamCoalition":60,"copyOnWriteFaults":45,"pageFaults":350,"threadById":{"960":{"id":960,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7545,"basePriority":4,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[19,14724],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0075455000000000001,"continuation":[0,86018725032],"systemTime":0,"schedPriority":4},"1994":{"id":1994,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":7768,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0077688330000000002,"waitEvent":[1,2497744153042803309],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4}},"userTimeTask":0.034054415999999997,"pid":54,"csFlags":570434305,"flags":["darwinBG","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1360176}, + "55" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":41,"rawFlags":"0x4C080041","timesDidThrottle":0,"csTrustLevel":0,"procname":"com.apple.MobileSoftwareUpdate.","jetsamCoalition":62,"copyOnWriteFaults":90,"pageFaults":614,"threadById":{"1045":{"id":1045,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":120,"basePriority":4,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.000120083,"waitEvent":[1,2497744156895104789],"continuation":[0,86023045632],"systemTime":0,"schedPriority":4},"1046":{"id":1046,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_UTILITY","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":89459,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.089459166000000007,"waitEvent":[1,2497744153043032685],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4}},"userTimeTask":0.152650916,"pid":55,"csFlags":578824969,"flags":["darwinBG","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1278176}, + "61" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":37,"rawFlags":"0x4C080041","waitInfo":["thread 1069: mach_msg receive on port set 0x22a9c512d5d788a5"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"mobileactivationd","jetsamCoalition":64,"copyOnWriteFaults":53,"pageFaults":531,"threadById":{"1069":{"id":1069,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":73833,"basePriority":4,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[20,129308],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.073833290999999995,"continuation":[0,86018725032],"systemTime":0,"schedPriority":4},"2017":{"id":2017,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":46840,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.046840916000000003,"waitEvent":[1,2497744153042366149],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4}},"userTimeTask":0.50817141600000004,"pid":61,"csFlags":570434305,"flags":["darwinBG","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":2506976}, + "63" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":22,"rawFlags":"0x4C090041","waitInfo":["thread 1168: mach_msg receive on port set 0x22a9c512d5d78965"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"osanalyticshelper","jetsamCoalition":66,"copyOnWriteFaults":53,"pageFaults":772,"threadById":{"1168":{"id":1168,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":14389,"basePriority":4,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,51510020],[2,51510488],[21,41340],[21,19484],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.014389333000000001,"continuation":[0,86018725032],"systemTime":0,"schedPriority":4},"1985":{"id":1985,"system_usec":0,"state":["TH_RUN"],"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":21296,"kernelFrames":[[0,86018655796],[0,86018654520],[0,86023166320],[0,86024101504],[0,86020018008],[0,86018594300],[1,0]],"basePriority":4,"dispatch_queue_label":"com.apple.root.default-qos.overcommit","userFrames":[[2,142668076],[2,101162480],[21,29764],[21,25296],[21,24856],[2,143743520],[2,143744512],[2,140999920],[2,141108708],[2,141027276],[2,141111728],[2,141071280],[2,143421036],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.021296958000000001,"systemTime":0,"schedPriority":4}},"userTimeTask":0.48325470799999998,"pid":63,"csFlags":570434305,"flags":["darwinBG","dirty","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":2048264}, + "64" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":0,"rawFlags":"0x4C080041","waitInfo":["thread 1175: mach_msg receive on port set 0x22a9c512d5d78995"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"findmydeviced","jetsamCoalition":68,"copyOnWriteFaults":49,"pageFaults":405,"threadById":{"1973":{"id":1973,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13974,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.013974291,"waitEvent":[1,2497744153042577405],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4},"1175":{"id":1175,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13564,"basePriority":4,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,51510020],[2,51510488],[22,9836],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.013564125,"continuation":[0,86018725032],"systemTime":0,"schedPriority":4}},"userTimeTask":0.070689625000000006,"pid":64,"csFlags":570434305,"flags":["darwinBG","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1376520}, + "65" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":4,"rawFlags":"0x4C084001","timesDidThrottle":0,"csTrustLevel":0,"procname":"logd_helper","jetsamCoalition":70,"copyOnWriteFaults":39,"pageFaults":282,"threadById":{"1184":{"id":1184,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":23,"basePriority":31,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":2.3291000000000001e-05,"waitEvent":[1,2497744156903771925],"continuation":[0,86023045632],"systemTime":0,"schedPriority":31},"1183":{"id":1183,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":20538,"basePriority":20,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.020538541,"waitEvent":[1,2497744153043111133],"continuation":[0,86022680364],"systemTime":0,"schedPriority":20}},"userTimeTask":0.034130124999999997,"pid":65,"csFlags":570434305,"flags":["isImpDonor","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":737584}, + "67" : {"timesThrottled":0,"turnstileInfo":["thread 1650: turnstile has unknown inheritor"],"pageIns":733,"systemTimeTask":0,"rawFlags":"0x4C084001","waitInfo":["thread 1210: mach_msg receive on port set 0x22a9c512d5d789f5","thread 1650: mach_msg receive on port 0x22a9c512d51bf305 name 0xc03"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"ReportCrash","jetsamCoalition":74,"copyOnWriteFaults":56,"pageFaults":48028,"threadById":{"1210":{"id":1210,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":8999,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,51510020],[2,51510488],[23,98468],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0089995830000000002,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"1650":{"id":1650,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":49,"basePriority":31,"userFrames":[[2,142658824],[2,142688320],[2,142689312],[23,89928],[2,143413872],[2,143451120]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":4.9750000000000003e-05,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31},"1635":{"id":1635,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_UTILITY","user_usec":112,"basePriority":20,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_UTILITY","userTime":0.000112625,"waitEvent":[1,2497744153042360941],"continuation":[0,86022680364],"systemTime":0,"schedPriority":20}},"userTimeTask":4.0210137079999999,"pid":67,"csFlags":570434305,"flags":["isImpDonor","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":2261296}, + "68" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":6,"rawFlags":"0x4C080041","waitInfo":["thread 1228: mach_msg receive on port set 0x22a9c512d5d78a55"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"bridgeOSUpdated","jetsamCoalition":76,"copyOnWriteFaults":50,"pageFaults":447,"threadById":{"2083":{"id":2083,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":11544,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.011544624999999999,"waitEvent":[1,2497744153043061981],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4},"1228":{"id":1228,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":47834,"basePriority":4,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[24,14184],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.047834791000000002,"continuation":[0,86018725032],"systemTime":0,"schedPriority":4}},"userTimeTask":0.097430083000000001,"pid":68,"csFlags":570434305,"flags":["darwinBG","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1507592}, + "69" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":287,"rawFlags":"0x4C080041","waitInfo":["thread 1238: mach_msg receive on port set 0x22a9c512d5d78a85","thread 2088: mach_msg receive on port set 0x22a9c512d5d78ea5"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"softwareupdated","jetsamCoalition":26,"copyOnWriteFaults":56,"pageFaults":819,"threadById":{"1238":{"id":1238,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":10949,"basePriority":4,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[25,22636],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.010949875,"continuation":[0,86018725032],"systemTime":0,"schedPriority":4},"2116":{"id":2116,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":8621,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0086216660000000001,"waitEvent":[1,2497744153043092253],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4},"2088":{"id":2088,"schedPriority":4,"system_usec":0,"state":["TH_WAIT"],"schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1200,"basePriority":4,"userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,26998808],[2,51653144],[2,143413872],[2,143451120]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0012006250000000001,"continuation":[0,86018725032],"systemTime":0,"name":"com.apple.NSURLConnectionLoader"}},"userTimeTask":0.29114045799999999,"pid":69,"csFlags":570434305,"flags":["darwinBG","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1786120}, + "84" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":0,"rawFlags":"0x4C080041","waitInfo":["thread 1656: mach_msg receive on port set 0x22a9c512d5d78d25"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"recoverylogd","jetsamCoalition":72,"copyOnWriteFaults":41,"pageFaults":258,"threadById":{"1656":{"id":1656,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":6443,"basePriority":4,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[26,14936],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0064435409999999997,"continuation":[0,86018725032],"systemTime":0,"schedPriority":4},"1658":{"id":1658,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_BACKGROUND","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":84,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":8.4875000000000003e-05,"waitEvent":[1,2497744153043008597],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4}},"userTimeTask":0.0065284160000000004,"pid":84,"csFlags":570434305,"flags":["darwinBG","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":770352}, + "85" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":57,"rawFlags":"0x4C080041","waitInfo":["thread 1851: mach_msg receive on port set 0x22a9c512d5d78d85"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"corekdld","jetsamCoalition":78,"copyOnWriteFaults":52,"pageFaults":516,"threadById":{"1851":{"id":1851,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":25002,"basePriority":4,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,51510020],[2,51510488],[27,15904],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0250025,"continuation":[0,86018725032],"systemTime":0,"schedPriority":4},"2468":{"id":2468,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":530,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00053087499999999999,"waitEvent":[1,2497744153043078365],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4}},"userTimeTask":0.13058375,"pid":85,"csFlags":570434305,"flags":["darwinBG","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1605976}, + "86" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":26,"rawFlags":"0x4C080041","timesDidThrottle":0,"csTrustLevel":0,"procname":"trustd","jetsamCoalition":80,"copyOnWriteFaults":46,"pageFaults":372,"threadById":{"2087":{"id":2087,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":28,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.8875000000000001e-05,"waitEvent":[1,2497744153043116341],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4},"1982":{"id":1982,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":150,"basePriority":4,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00015024999999999999,"waitEvent":[1,2497744156895078709],"continuation":[0,86023045632],"systemTime":0,"schedPriority":4}},"userTimeTask":0.062205499999999997,"pid":86,"csFlags":570434305,"flags":["darwinBG","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1081648}, + "87" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":9,"rawFlags":"0x4C084001","timesDidThrottle":0,"csTrustLevel":0,"procname":"bkremoted","jetsamCoalition":82,"copyOnWriteFaults":46,"pageFaults":427,"threadById":{"1991":{"id":1991,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":36,"basePriority":31,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":3.6041000000000003e-05,"waitEvent":[1,2497744156903765237],"continuation":[0,86023045632],"systemTime":0,"schedPriority":31},"2368":{"id":2368,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":6109,"basePriority":31,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.0061096659999999997,"waitEvent":[1,2497744153042554077],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31}},"userTimeTask":0.232440375,"pid":87,"csFlags":570434305,"flags":["isImpDonor","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1179952}, + "88" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":12,"rawFlags":"0x4C084001","timesDidThrottle":0,"csTrustLevel":0,"procname":"nfcd_relay","jetsamCoalition":84,"copyOnWriteFaults":43,"pageFaults":317,"threadById":{"2024":{"id":2024,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":26671,"basePriority":31,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.026671957999999999,"waitEvent":[1,2497744153043005125],"continuation":[0,86022680364],"systemTime":0,"schedPriority":31},"2000":{"id":2000,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":32,"basePriority":31,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":3.2666000000000002e-05,"waitEvent":[1,2497744156903745845],"continuation":[0,86023045632],"systemTime":0,"schedPriority":31}},"userTimeTask":0.73129991599999999,"pid":88,"csFlags":570434305,"flags":["isImpDonor","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":983264}, + "90" : {"timesThrottled":0,"systemTimeTask":0,"pageIns":31,"rawFlags":"0x4C084001","waitInfo":["thread 2300: mach_msg receive on port set 0x22a9c512d5d793e5"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"securityd","jetsamCoalition":88,"copyOnWriteFaults":52,"pageFaults":347,"threadById":{"2303":{"id":2303,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_BACKGROUND","user_usec":683,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.00068370799999999999,"waitEvent":[1,2497744153043001653],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4},"2300":{"id":2300,"system_usec":0,"state":["TH_WAIT"],"qosRequested":"QOS_CLASS_DEFAULT","user_usec":65697,"basePriority":31,"dispatch_queue_label":"com.apple.main-thread","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,37674612],[2,37651624],[2,37649340],[2,37653304],[28,15844],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_DEFAULT","userTime":0.065697208000000007,"continuation":[0,86018725032],"systemTime":0,"schedPriority":31}},"userTimeTask":0.066947415999999996,"pid":90,"csFlags":570434305,"flags":["isImpDonor","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1212640}, + "91" : {"timesThrottled":0,"turnstileInfo":["thread 2529: blocked on 1985, hops: 2, priority: 4"],"pageIns":26,"systemTimeTask":0,"rawFlags":"0x4C090041","waitInfo":["thread 2527: semaphore port 0x22a9c512d47d6975 owned by pid 91","thread 2529: mach_msg receive on port 0x22a9c512d51b7305 name 0x2007"],"timesDidThrottle":0,"csTrustLevel":0,"procname":"sysdiagnose","jetsamCoalition":90,"copyOnWriteFaults":55,"pageFaults":509,"threadById":{"2533":{"id":2533,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":3,"basePriority":4,"userFrames":[[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":3.9160000000000003e-06,"waitEvent":[1,2497744153043010333],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4},"2531":{"id":2531,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":1360,"basePriority":4,"userFrames":[[2,142669000],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.0013604999999999999,"waitEvent":[1,2497744153043070661],"continuation":[0,86022680364],"systemTime":0,"schedPriority":4},"2529":{"id":2529,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":13115,"basePriority":4,"dispatch_queue_label":"com.apple.root.default-qos","userFrames":[[2,142658824],[2,142688320],[2,142687824],[2,141103608],[2,141104540],[2,143737732],[2,101156148],[29,146448],[29,289148],[29,204656],[29,179216],[29,164188],[2,140993452],[2,140999740],[2,141066696],[2,141068440],[2,143420976],[2,143451108]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.013115875000000001,"continuation":[0,86018725032],"systemTime":0,"schedPriority":4},"2527":{"id":2527,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":58873,"basePriority":4,"userFrames":[[2,142666876],[2,141771316],[2,141073336],[2,143448896],[2,143414136],[2,143417720],[2,141055236],[29,130368],[29,129744],[2,110253896],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":0.058873165999999998,"waitEvent":[0,86016828460],"continuation":[0,86019059080],"systemTime":0,"schedPriority":4},"2532":{"id":2532,"state":["TH_WAIT"],"system_usec":0,"qosRequested":"QOS_CLASS_DEFAULT","schedFlags":["TH_SFLAG_THROTTLED"],"user_usec":26,"basePriority":4,"userFrames":[[2,142667956],[2,141073528],[1,0]],"qosEffective":"QOS_CLASS_BACKGROUND","userTime":2.6125000000000001e-05,"waitEvent":[1,2497744156903761893],"continuation":[0,86023045632],"systemTime":0,"schedPriority":4}},"userTimeTask":0.073379582999999998,"pid":91,"csFlags":570434305,"flags":["darwinBG","dirty","isDirtyTracked","allowIdleExit","sharedRegionSystem"],"residentMemoryBytes":1687896} + }, + "binaryImages" : [["898e82ab-b7b6-d9c4-7ba1-8414767f7655",18446743919090728960,"U"],["00000000-0000-0000-0000-000000000000",0,"A"],["215181d6-5c52-307e-ab71-e76e5b399ee5",6442450944,"S"],["2bf04534-8acd-3f16-85e3-b1fa7f3c122b",4330160128,"P"],["d6b84879-03e7-3043-b629-8fc83813df9e",4331094016,"P"],["8e438b2b-44b5-3702-96c3-7f3b35b9cc23",4370104320,"P"],["17191e3b-b775-3266-93fe-e11e1b52729d",4377690112,"P"],["f71c728d-2267-30ad-b29b-847924b0c398",4298031104,"P"],["cfb4e8d0-a372-394b-a7b5-ba793e745304",4376969216,"P"],["75d4bd1e-275a-378f-ad74-5353ce5124e4",4298735616,"P"],["23a5c9de-b3aa-38ae-81a8-b4524ff51722",4373102592,"P"],["7db6a3ab-b638-3c82-a6ca-590d030d3203",4368023552,"P"],["c285c9ad-1cd0-3d88-94f2-8b203f46566c",4308779008,"P"],["9508028c-366e-3469-beb3-305c5b457527",4374642688,"P"],["9d9daf5c-c904-361f-99a3-4f8b9a4af064",4332158976,"P"],["34194372-8325-3568-b78e-9372a47135e3",4336451584,"P"],["589f629a-e7a2-39ba-a47f-9a310cd44f5a",4371103744,"P"],["13a6d23e-6d2b-3d3e-a52f-bb98e0882f9a",4336205824,"P"],["f1b7adb8-4843-3a62-a90b-aef7fc27a120",4368564224,"P"],["c79622ba-e596-3780-85de-a7ef7d26c9d3",4298375168,"P"],["b3717774-192a-3fc3-a5d3-8aef0644d008",4369367040,"P"],["f4577203-a570-359b-b308-37f653151ef9",4333223936,"P"],["08954ada-fd26-3959-8f7f-628e6c792f21",4372889600,"P"],["db8cd763-7615-39a2-b1c1-70b45fb08aeb",4311711744,"P"],["4636141b-c098-3549-9426-38e14cd1d7f2",4303618048,"P"],["2f75329a-6487-3de2-8294-7d25379c7f68",4296540160,"P"],["a919f2b7-9cdf-32df-bcd8-15c081136761",4366417920,"P"],["24028710-2f4a-3d59-af2e-03f3385a21fc",4296032256,"P"],["1ca4dfb5-9ba2-3f25-b4d8-8adda63cb2c9",4295131136,"P"],["9221be50-7173-3ac7-a071-f223f1a2b48d",4336369664,"P"]], + "notes" : ["Requested by sysdiagnose"], + "additionalDetails" : {"stackshot_size_estimate_adj":40,"stackshot_size_estimate":212992,"stackshot_duration_prior_nsec":0,"system_state_flags":2,"stackshot_duration_nsec":662791,"stackshot_out_flags":19472391,"stackshot_in_pid":4294967295,"stackshot_duration_outer_nsec":695125,"stackshot_in_flags":19472391} +} diff --git a/tests/cli/extraction_tool.py b/tests/cli/extraction_tool.py index f749fd113d..c18c173a50 100644 --- a/tests/cli/extraction_tool.py +++ b/tests/cli/extraction_tool.py @@ -282,7 +282,7 @@ def testListParsersAndPlugins(self): lines = frozenset(lines) - self.assertEqual(number_of_tables, 11) + self.assertEqual(number_of_tables, 12) expected_line = 'filestat : Parser for file system stat information.' self.assertIn(expected_line, lines) diff --git a/tests/parsers/ips_parser.py b/tests/parsers/ips_parser.py new file mode 100644 index 0000000000..8c8f150bfd --- /dev/null +++ b/tests/parsers/ips_parser.py @@ -0,0 +1,77 @@ +# -*- coding: utf-8 -*- +"""Tests for the ips log file parser.""" + +import unittest + +from dfvfs.helpers import text_file + +from plaso.parsers import ips_parser +# Register all plugins. +from plaso.parsers import ips_plugins # pylint: disable=unused-import + +from tests.parsers import test_lib + + +class IPSFileTest(test_lib.ParserTestCase): + """Tests for the IPS log file.""" + + def testOpen(self): + """Tests the Open function.""" + path_segments = ['ips_files', 'recoverylogd-2023-06-08-144913.ips'] + + ips_log_path = self._GetTestFilePath(path_segments) + self._SkipIfPathNotExists(ips_log_path) + + file_entry = self._GetTestFileEntry(path_segments) + file_object = file_entry.GetFileObject() + text_file_object = text_file.TextFile(file_object) + + ips_log_file = ips_parser.IPSFile() + ips_log_file.Open(text_file_object) + + expected_header_keys = [ + 'app_name', 'timestamp', 'app_version', 'slice_uuid', 'build_version', + 'platform', 'share_with_app_devs', 'is_first_party', 'bug_type', + 'os_version', 'roots_installed', 'incident_id', 'name'] + + self.assertEqual(list(ips_log_file.header.keys()), expected_header_keys) + + expected_content_keys = [ + 'uptime', 'procRole', 'version', 'userID', 'deployVersion', + 'modelCode', 'coalitionID', 'osVersion', 'captureTime', 'incident', + 'pid', 'cpuType', 'roots_installed', 'bug_type', 'procLaunch', + 'procStartAbsTime', 'procExitAbsTime', 'procName', 'procPath', + 'parentProc', 'parentPid', 'coalitionName', 'crashReporterKey', + 'throttleTimeout', 'codeSigningID', 'codeSigningTeamID', + 'codeSigningFlags', 'codeSigningValidationCategory', + 'codeSigningTrustLevel', 'exception', 'termination', 'asi', + 'faultingThread', 'threads', 'usedImages', 'sharedCache', 'vmSummary', + 'legacyInfo', 'logWritingSignature'] + + self.assertEqual(list(ips_log_file.content.keys()), expected_content_keys) + + +class IPSParserTest(test_lib.ParserTestCase): + """IPS parser plugin test case.""" + def testParseFileEntry(self): + """Tests the ParseFileEntry method.""" + parser = ips_parser.IPSParser() + + storage_writer = self._ParseFile( + ['ips_files', 'recoverylogd-2023-06-08-144913.ips'], parser) + + number_of_event_data = storage_writer.GetNumberOfAttributeContainers( + 'event_data') + self.assertEqual(number_of_event_data, 1) + + number_of_warnings = storage_writer.GetNumberOfAttributeContainers( + 'extraction_warning') + self.assertEqual(number_of_warnings, 0) + + number_of_warnings = storage_writer.GetNumberOfAttributeContainers( + 'recovery_warning') + self.assertEqual(number_of_warnings, 0) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/parsers/ips_plugins/__init__.py b/tests/parsers/ips_plugins/__init__.py new file mode 100644 index 0000000000..40a96afc6f --- /dev/null +++ b/tests/parsers/ips_plugins/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/tests/parsers/ips_plugins/interface.py b/tests/parsers/ips_plugins/interface.py new file mode 100644 index 0000000000..984165db6f --- /dev/null +++ b/tests/parsers/ips_plugins/interface.py @@ -0,0 +1,50 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +"""Tests for the IPS plugin interface.""" + +import abc + +from plaso.parsers.ips_plugins import interface + +from tests.parsers.ips_plugins import test_lib + + +class TestIPSPlugin(interface.IPSPlugin): + """IPS plugin for test purposes.""" + + NAME = 'test' + DATA_FORMAT = 'IPS test log' + + REQUIRED_HEADER_KEYS = ['app_name', 'app_version'] + REQUIRED_CONTENT_KEYS = ['procName', 'parentPid'] + + def __int__(self): + """Initializes.""" + super(TestIPSPlugin, self).__init__() + + # pylint: disable=arguments-differ + @abc.abstractmethod + def Process(self, parser_mediator, ips_file=None, **unused_kwargs): + """Extracts information from an IPS log file. This is the main method that + an IPS plugin needs to implement. + + Args: + parser_mediator (ParserMediator): parser mediator. + ips_file (Optional[IPSFile]): database. + Raises: + ValueError: If the file value is missing. + """ + + +class IPSInterfaceTest(test_lib.IPSPluginTestCase): + """Tests for the IPS plugin interface.""" + + def testCheckRequiredKeys(self): + """Tests the CheckRequiredKeys function.""" + plugin = TestIPSPlugin() + + ips_file = self._OpenIPSFile( + ['ips_files', 'recoverylogd-2023-06-08-144913.ips']) + + required_key_present = plugin.CheckRequiredKeys(ips_file) + self.assertTrue(required_key_present) diff --git a/tests/parsers/ips_plugins/recovery_logd.py b/tests/parsers/ips_plugins/recovery_logd.py new file mode 100644 index 0000000000..1a9300791a --- /dev/null +++ b/tests/parsers/ips_plugins/recovery_logd.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +"""Tests for the Apple IPS file parser plugin for recovery logd report.""" + +import unittest + +from plaso.parsers.ips_plugins import recovery_logd + +from tests.parsers.ips_plugins import test_lib + + +class AppleRecoveryLogdIPSPluginTest(test_lib.IPSPluginTestCase): + """Tests for the Apple IPS file parser plugin for recovery logd report.""" + + def testProcess(self): + """Tests for the Process function.""" + plugin = recovery_logd.AppleRecoveryLogdIPSPlugin() + storage_writer = self._ParseIPSFileWithPlugin( + ['ips_files', 'recoverylogd-2023-06-08-144913.ips'], plugin) + + number_of_event_data = storage_writer.GetNumberOfAttributeContainers( + 'event_data') + self.assertEqual(number_of_event_data, 1) + + expected_event_values = { + 'application_name': 'recoverylogd', + 'application_version': '', + 'bug_type': '309', + 'crash_reporter_key': 'c0dec0dec0dec0dec0dec0dec0dec0dec0de0001', + 'device_model': 'iBridge2,14', + 'event_time': '2023-06-08T14:49:13.520+00:00', + 'exception_type': 'EXC_CRASH', + 'incident_identifier': '9505C5CC-07DE-4E81-BCCE-60D07C96D1B1', + 'operating_system_version': 'Bridge OS 7.5 (20P5058)', + 'parent_process_identifier': 1, + 'parent_process': 'launchd', + 'process_identifier': 74, + 'process_launch_time': '2023-06-08T14:49:12.507+00:00', + 'user_identifier': 501} + + event_data = storage_writer.GetAttributeContainerByIndex('event_data', 0) + self.CheckEventData(event_data, expected_event_values) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/parsers/ips_plugins/stacks_ips.py b/tests/parsers/ips_plugins/stacks_ips.py new file mode 100644 index 0000000000..eb6a4de274 --- /dev/null +++ b/tests/parsers/ips_plugins/stacks_ips.py @@ -0,0 +1,371 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +"""Tests for the Apple IPS file parser plugin for recovery logd report.""" + +import unittest + +from plaso.parsers.ips_plugins import stacks_ips + +from tests.parsers.ips_plugins import test_lib + + +class AppleRecoveryLogdIPSPluginTest(test_lib.IPSPluginTestCase): + """Tests for the Apple stacks crash IPS file parser.""" + + _PROCESS_LIST = [ + 'ACCHWComponentAuthService', + 'ASPCarryLog', + 'AccessibilityUIServer', + 'AccountSubscriber', + 'AirDrop', + 'AppPredictionIntentsHelperServi', + 'AppSSODaemon', + 'AppStore', + 'AppleCredentialManagerDaemon', + 'AssetCacheLocatorService', + 'AuthenticationServicesAgent', + 'BlueTool', + 'CAReportingService', + 'CMFSyncAgent', + 'CacheDeleteAppContainerCaches', + 'CacheDeleteExtension', + 'CalendarFocusConfigurationExten', + 'CalendarWidgetExtension', + 'Camera', + 'CategoriesService', + 'CloudKeychainProxy', + 'CommCenter', + 'CommCenterMobileHelper', + 'ContainerMetadataExtractor', + 'ContextService', + 'DesktopServicesHelper', + 'EnforcementService', + 'Family', + 'FamilyControlsAgent', + 'Files', + 'GSSCred', + 'GeneralMapsWidget', + 'GoogleNews', + 'HeuristicInterpreter', + 'IDSBlastDoorService', + 'IMDPersistenceAgent', + 'InteractiveLegacyProfilesSubscr', + 'KonaSynthesizer', + 'LegacyProfilesSubscriber', + 'MTLCompilerService', + 'MacinTalkAUSP', + 'MailShortcutsExtension', + 'MailWidgetExtension', + 'ManagedSettingsAgent', + 'ManagementTestSubscriber', + 'MessagesActionExtension', + 'MessagesBlastDoorService', + 'MessagesViewService', + 'MobileBackupCacheDeleteService', + 'MobileCal', + 'MobileGestaltHelper', + 'MobileMail', + 'MobileSMS', + 'MobileSafari', + 'NewsToday2', + 'OTACrashCopier', + 'OTATaskingAgent', + 'PasscodeSettingsSubscriber', + 'PerfPowerTelemetryClientRegistr', + 'PhotosReliveWidget', + 'PosterBoard', + 'PowerUIAgent', + 'Preferences', + 'ProtectedCloudKeySyncing', + 'RemindersWidgetExtension', + 'ReportCrash', + 'SBRendererService', + 'SCHelper', + 'SafariBookmarksSyncAgent', + 'SafariViewService', + 'ScreenTimeAgent', + 'ScreenTimeWidgetExtension', + 'ScreenshotService', + 'SharingXPCHelper', + 'Signal', + 'SiriTTSSynthesizerAU', + 'SnapchatHomeScreenWidget', + 'Spotlight', + 'SpringBoard', + 'StatusKitAgent', + 'StocksWidget', + 'TVRemoteConnectionService', + 'Telegram', + 'ThreeBarsXPCService', + 'ThumbnailExtension', + 'ThumbnailExtensionSecure', + 'TipsWidget', + 'TrustedPeersHelper', + 'UARPUpdaterServiceAFU', + 'UARPUpdaterServiceHID', + 'UARPUpdaterServiceLegacyAudio', + 'UARPUpdaterServiceUSBPD', + 'UsageTrackingAgent', + 'UserEventAgent', + 'UserFontManager', + 'WeatherWidget', + 'WiFiCloudAssetsXPCService', + 'WidgetKitExtension', + 'WirelessRadioManagerd', + 'WorldClockWidget', + 'accessoryupdaterd', + 'accountsd', + 'adid', + 'adprivacyd', + 'aggregated', + 'akd', + 'amfid', + 'amsaccountsd', + 'amsengagementd', + 'analyticsd', + 'aned', + 'announced', + 'apfs_iosd', + 'applecamerad', + 'appstorecomponentsd', + 'appstored', + 'apsd', + 'asd', + 'askpermissiond', + 'assetsd', + 'assistantd', + 'atc', + 'audioclocksyncd', + 'awdd', + 'axassetsd', + 'backboardd', + 'biomed', + 'biomesyncd', + 'biometrickitd', + 'bird', + 'bluetoothd', + 'bluetoothuserd', + 'bookassetd', + 'calaccessd', + 'callservicesd', + 'captiveagent', + 'cdpd', + 'cfprefsd', + 'chronod', + 'ckdiscretionaryd', + 'clipserviced', + 'cloudd', + 'cloudpaird', + 'cloudphotod', + 'com.apple.AppleUserHIDDrivers', + 'com.apple.CloudDocs.MobileDocum', + 'com.apple.DictionaryServiceHelp', + 'com.apple.DocumentManagerCore.D', + 'com.apple.DriverKit-AppleBCMWLA', + 'com.apple.FaceTime.FTConversati', + 'com.apple.MapKit.SnapshotServic', + 'com.apple.MobileSoftwareUpdate.', + 'c' + 'om.apple.PDFKit.PDFExtensionVi', + 'com.apple.Safari.History', + 'com.apple.Safari.SafeBrowsing.S', + 'com.apple.Safari.SandboxBroker', + 'com.apple.SiriTTSService.TrialP', + 'com.apple.StreamingUnzipService', + 'com.apple.VideoSubscriberAccoun', + 'com.apple.WebKit.GPU', + 'com.apple.WebKit.Networking', + 'com.apple.WebKit.WebContent', + 'com.apple.accessibility.mediaac', + 'com.apple.quicklook.ThumbnailsA', + 'com.apple.quicklook.extension.p', + 'com.apple.sbd', + 'com.apple.siri.embeddedspeech', + 'configd', + 'contactsd', + 'containermanagerd', + 'contentlinkingd', + 'contextstored', + 'coreauthd', + 'coreduetd', + 'coreidvd', + 'corespeechd', + 'coresymbolicationd', + 'countryd', + 'crash_mover', + 'ctkd', + 'dasd', + 'dataaccessd', + 'deleted', + 'deleted_helper', + 'destinationd', + 'diagnosticextensionsd', + 'distnoted', + 'dmd', + 'donotdisturbd', + 'dprivacyd', + 'driverkitd', + 'duetexpertd', + 'extensionkitservice', + 'fairplayd.A2', + 'familycircled', + 'familynotificationd', + 'filecoordinationd,' + ' fileproviderd', + 'financed', + 'findmydeviced', + 'fitnesscoachingd', + 'fmfd', + 'fmflocatord', + 'followupd', + 'fontservicesd', + 'fseventsd', + 'gamecontrollerd', + 'geod', + 'handwritingd', + 'healthd', + 'homed', + 'iconservicesagent', + 'identityservicesd', + 'imagent', + 'ind', + 'installcoordinationd', + 'intelligenceplatformd', + 'intents_helper', + 'itunescloudd', + 'itunesstored', + 'kbd', + 'kernel_task', + 'keybagd', + 'languageassetd', + 'launchd', + 'linkd', + 'localizationswitcherd', + 'locationd', + 'lockdownd', + 'logd', + 'logd_helper', + 'lsd,' + ' mDNSResponder', + 'maild', + 'mapspushd', + 'mediaanalysisd', + 'medialibraryd', + 'mediaremoted', + 'mediaserverd', + 'metrickitd', + 'misagent', + 'misd', + 'mmaintenanced', + 'mobileactivationd', + 'mobileassetd', + 'mobiletimerd', + 'navd,' + ' ndoagent', + 'nearbyd', + 'nehelper', + 'nesessionmanager', + 'networkserviceproxy,' + ' nfcd', + 'notifyd', + 'nsurlsessiond', + 'online-auth-agent', + 'osanalyticshelper,' + ' ospredictiond', + 'parsec-fbf', + 'parsecd', + 'passd', + 'passwordbreachd', + 'pasted,' + ' peopled', + 'pfd', + 'photoanalysisd', + 'pipelined', + 'pkd', + 'powerd', + 'privacyaccountingd', + 'profiled', + 'progressd', + 'promotedcontentd', + 'rapportd,' + ' recentsd', + 'remindd', + 'remoted', + 'remotemanagementd', + 'remotepairingdeviced', + 'replayd', + 'reversetemplated', + 'revisiond', + 'routined', + 'rtcreportingd', + 'runningboardd', + 'searchd', + 'searchpartyd', + 'securityd', + 'seld', + 'seserviced', + 'sessionkitd', + 'sharingd', + 'siriactionsd', + 'siriinferenced', + 'siriknowledged', + 'sociallayerd', + 'softwareupdated', + 'splashboardd', + 'storekitd', + 'studentd', + 'suggestd', + 'swcd', + 'symptomsd', + 'symptomsd-diag', + 'syncdefaultsd', + 'tailspind', + 'tccd', + 'thermalmonitord', + 'timed', + 'touchsetupd', + 'translationd', + 'transparencyd', + 'triald', + 'trustd', + 'useractivityd', + 'usermanagerd', + 'videosubscriptionsd', + 'voiced', + 'watchdogd,' + ' watchlistd', + 'weatherd', + 'webbookmarksd', + 'wifianalyticsd', + 'wifid', + 'wifip2pd'] + + def testProcess(self): + """Tests for the Process function.""" + plugin = stacks_ips.AppleStacksIPSPlugin() + storage_writer = self._ParseIPSFileWithPlugin( + ['ips_files', 'stacks-2023-02-10-100716.ips'], plugin) + + number_of_event_data = storage_writer.GetNumberOfAttributeContainers( + 'event_data') + self.assertEqual(number_of_event_data, 1) + + expected_event_values = { + 'bug_type': '288', + 'crash_reporter_key': '5766d7cc74220076933d9cd16b3b7ade2754d67c', + 'device_model': 'iPad11,1', + 'event_time': '2023-02-10T10:07:16.000-05:00', + 'incident_identifier': '7749B4FF-840A-46F8-BE88-2B19FF8ABFF3', + 'kernel_version': ( + 'Darwin Kernel Version 22.1.0: Thu Oct 6 19:33:53 ' + 'PDT 2022; root:xnu-8792.42.7~1/RELEASE_ARM64_T8020'), + 'operating_system_version': 'iPhone OS 16.1 (20B82)', + 'process_list': ', '.join(self._PROCESS_LIST), + 'reason': 'sysdiagnose (stackshot only) trigger: Power + Volume Up'} + + event_data = storage_writer.GetAttributeContainerByIndex('event_data', 0) + self.CheckEventData(event_data, expected_event_values) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/parsers/ips_plugins/test_lib.py b/tests/parsers/ips_plugins/test_lib.py new file mode 100644 index 0000000000..2447e69d74 --- /dev/null +++ b/tests/parsers/ips_plugins/test_lib.py @@ -0,0 +1,80 @@ +# -*- coding: utf-8 -*- +"""IPS file plugin related functions and classes for testing.""" + +from dfvfs.helpers import text_file + +from plaso.containers import events +from plaso.parsers import mediator as parsers_mediator +from plaso.parsers import ips_parser + +from tests.parsers import test_lib + + +class IPSPluginTestCase(test_lib.ParserTestCase): + """IPS parser plugin test case.""" + + def _OpenIPSFile(self, path_segments): + """Opens an IPS log file. + + Args: + path_segments (list[str]): path segments inside the test data directory. + Returns: + tuple: containing: + file_entry (dfvfs.FileEntry): file entry of the IPS log file. + IPSFile: IPS log file. + Raises: + SkipTest: if the path inside the test data directory does not exist and + the test should be skipped. + """ + file_entry = self._GetTestFileEntry(path_segments) + + file_object = file_entry.GetFileObject() + text_file_object = text_file.TextFile(file_object) + + ips_file_object = ips_parser.IPSFile() + ips_file_object.Open(text_file_object) + + return ips_file_object + + def _ParseIPSFileWithPlugin(self, path_segments, plugin): + """Parses a file as an IPS crash log file and returns an event generator. + + This method will first test if an IPS log file has the required keys + using plugin.CheckRequiredKeys() and then extracts events using + plugin.Process(). + + Args: + path_segments (list[str]): path segments inside the test data directory. + plugin (IPSPlugin): IPS crash log file plugin. + + Returns: + FakeStorageWriter: storage writer. + + Raises: + SkipTest: if the path inside the test data directory does not exist and + the test should be skipped. + """ + parser_mediator = parsers_mediator.ParserMediator() + + storage_writer = self._CreateStorageWriter() + parser_mediator.SetStorageWriter(storage_writer) + + file_entry = self._GetTestFileEntry(path_segments) + parser_mediator.SetFileEntry(file_entry) + + if file_entry: + event_data_stream = events.EventDataStream() + event_data_stream.path_spec = file_entry.path_spec + + parser_mediator.ProduceEventDataStream(event_data_stream) + + # AppendToParserChain needs to be run after SetFileEntry. + parser_mediator.AppendToParserChain('ips') + + ips_file_object = self._OpenIPSFile(path_segments) + + self.assertTrue(plugin.CheckRequiredKeys(ips_file_object)) + + plugin.UpdateChainAndProcess(parser_mediator, ips_file=ips_file_object) + + return storage_writer