Posts

Post not yet marked as solved
0 Replies
367 Views
Hi, I have a swift MacOS application that has a Combobox dropdown (storyboard). I was wondering if it is possible to change the width of the item dropdown without changing the width of the actual combobox. Some of the items characters are chopped off at the end, but I don't want to expand the width of the actual combobox. If the items scrolled slowly when you hovered over them so users could read the chopped off characters, that would also solve the issue. Thanks so much for the help!
Posted
by JacobMcD.
Last updated
.
Post not yet marked as solved
25 Replies
5.4k Views
Hi, I'm somewhat new to swift and coding in general, so thanks for your help in advance. I'm building an application that uses Process class to launch a Unix Executable (Swift 5, Cocoa). Unfortunately, when I go to notarize my application, I get the below error. The trouble is, hardened runtime is already enabled and working (along with sandbox). I have tried everything I can think of including removing and re-adding the executable, cleaning build folders, messing with targets, changing hardened runtime exceptions, etc. I have even attempted to force enable hardened runtime on the executable by using "codesign --force --deep --options runtime <Devloper ID Application cert identity> <path to executable>, however, this appears to break the executable, making zsh throw a "Segmentation Fault" when it is run. (the broken executable successfuly passes notarization, but that doesn't help me much) Thanks so much for your help, please tell me if anything was unclear or confusing. 🙂Error:Distribution items ineligible: Error Domain=IDEDistributionMethodDeveloperIDErrorDomain Code=1 "Hardened Runtime is not enabled." UserInfo={NSLocalizedDescription=Hardened Runtime is not enabled., NSLocalizedRecoverySuggestion="myunixexecutable" must be rebuilt with support for the Hardened Runtime. Enable the Hardened Runtime capability in the project editor, test your app, rebuild your archive, and upload again.}
Posted
by JacobMcD.
Last updated
.
Post not yet marked as solved
3 Replies
579 Views
Cocoa MacOS. I am starting a proccess but the .isRunning feature doesn't seem to work for me. The proccess can fail and .isRunning will still return true in multiple cases. Is there any way to get other data about the proccess that can help me determine if it is active or not? The proccess is a cryptominer, so its cpu intensive. If i could return the cpu usage of the proccess, I could determine if it is running or not. Does anyone know how I might do this? Thanks so mcuh for your time!
Posted
by JacobMcD.
Last updated
.
Post marked as solved
2 Replies
1.6k Views
Hi, i'm trying to figure out how to detect if the Mac is currently charging in my Swift application. I found lots of information regarding how to do this with UIDevice, but found no information regarding it's MacOS counterpart. Would someone mind pointing me in the right direction? All I need is a simple bool: charging - true/false. Thanks so much!
Posted
by JacobMcD.
Last updated
.
Post marked as solved
3 Replies
1.2k Views
Hi,I'm new to Swift and have met an issue populating a combobox with a dataset pulled from a PostGreSQL database. I can connect to the database just fine, but I can't figure out how to set the datasource on the dropdown, or otherwise populate the items in the combobox. I am atempting to connect to the database and populate the dropdown in AppDelegate while my UI is in a storyboard. I'm guessing I'm somehow refrencing the combobox incorrectly?If I try to add items to the dropdown individually, the code runs fine but the combobox doesn't populate. If I attempt to set the datasource to a dictionary filled with the Keys and Values I get "Cannot assign value of type '[String : Int]' to type 'NSComboBoxDataSource?'."I know in Windows Forms I can set a name and value for each item in my comboboxes. Is this possible here too?Thanks in advance for your time.guard status == PGConnection.StatusType.ok else { //guards from failed connections print("Connection to database was unsuccessful") print("Error: \(status)") return } let res = p.exec(statement: sqlDropdown) print("select statement result status: \(res.status())") var dropdownItemsDictionary: [String: Int] = [:] let num = res.numTuples() let ComboBox = NSComboBox() for x in 0.. let org_id: Int = Int(res.getFieldString(tupleIndex: x, fieldIndex: 0)!)! let org_name: String = res.getFieldString(tupleIndex: x, fieldIndex: 1)! let org_type: String = res.getFieldString(tupleIndex: x, fieldIndex: 2)! let curr: String = res.getFieldString(tupleIndex: x, fieldIndex: 3)! let mining_addr: String = res.getFieldString(tupleIndex: x, fieldIndex: 4)! print("Entity Index = \(org_id) org_name = \(org_name) org_type = \(org_type) currency = \(String(describing: curr)) mining_addr = \(mining_addr)") dropdownItemsDictionary[org_name] = org_id //ComboBox.addItem(withObjectValue: org_name) } ComboBox.dataSource = dropdownItemsDictionary
Posted
by JacobMcD.
Last updated
.
Post not yet marked as solved
0 Replies
1.9k Views
Hi,I'm pretty new to Swift, in fact, i'm going through Apple's tutorials at the moment. However, I keep running into this error. It just occurs at random times, and a full restart of MacOS is required to actually build the file! After a restart, everything works fine...until XCBBuildService crashes again. Any ideas? Thanks in advance, I really appricate the help.Process: XCBBuildService [5511]Path: /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/MacOS/XCBBuildServiceIdentifier: XCBBuildServiceVersion: 11.1 (14877)Build Info: XCBuild-14877000000000000~226 (11A1027)Code Type: X86-64 (Native)Parent Process: Xcode [5235]Responsible: Xcode [5235]User ID: 501Date/Time: 2019-10-23 19:52:30.975 -0400OS Version: Mac OS X 10.15 (19A603)Report Version: 12Anonymous UUID: BC0AC126-0C91-E656-BCFA-BE11B9CFEA00Sleep/Wake UUID: 4BBA382C-0A68-4085-9E8D-3E93D7AE19AFTime Awake Since Boot: 29000 secondsTime Since Wake: 2300 secondsSystem Integrity Protection: enabledCrashed Thread: 4 Dispatch queue: XCBBuildSystem.OperationSystemAdaptor.queueException Type: EXC_BAD_INSTRUCTION (SIGILL)Exception Codes: 0x0000000000000001, 0x0000000000000000Exception Note: EXC_CORPSE_NOTIFYTermination Signal: Illegal instruction: 4Termination Reason: Namespace SIGNAL, Code 0x4Terminating Process: exc handler [5511]Thread 0:: Dispatch queue: XCBBuildService.ServiceHostConnection.receiveQueue0 libsystem_kernel.dylib 0x00007fff6b28fe76 read + 101 com.apple.dt.XCBServiceCore 0x000000010c690610 closure #1 in ServiceHostConnection.resume() + 1602 com.apple.dt.XCBServiceCore 0x000000010c692269 thunk for @escaping @callee_guaranteed () -> () + 253 libdispatch.dylib 0x00007fff6b0f4553 _dispatch_call_block_and_release + 124 libdispatch.dylib 0x00007fff6b0f54de _dispatch_client_callout + 85 libdispatch.dylib 0x00007fff6b0faa9e _dispatch_lane_serial_drain + 5976 libdispatch.dylib 0x00007fff6b0fb422 _dispatch_lane_invoke + 3637 libdispatch.dylib 0x00007fff6b104aa1 _dispatch_workloop_worker_thread + 5988 libsystem_pthread.dylib 0x00007fff6b34e763 _pthread_wqthread + 2909 libsystem_pthread.dylib 0x00007fff6b34e5c3 start_wqthread + 15Thread 1:0 libsystem_kernel.dylib 0x00007fff6b292206 __sigsuspend_nocancel + 101 libdispatch.dylib 0x00007fff6b10539d _dispatch_sigsuspend + 362 libdispatch.dylib 0x00007fff6b105379 _dispatch_sig_thread + 53Thread 2:: Dispatch queue: XCBBuildSystem.BuildManager.buildQueue0 libsystem_kernel.dylib 0x00007fff6b2918f6 __psynch_cvwait + 101 libsystem_pthread.dylib 0x00007fff6b352082 _pthread_cond_wait + 7012 libc++.1.dylib 0x00007fff6829681a std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 183 com.apple.dt.llbuild 0x000000010cd0cda1 llbuild::core::BuildEngine::build(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) + 42014 com.apple.dt.llbuild 0x000000010cd242b0 (anonymous namespace)::BuildSystemImpl::build(llbuild::buildsystem::BuildKey) + 3545 com.apple.dt.llbuild 0x000000010cd24531 llbuild::buildsystem::BuildSystem::build(llvm::StringRef) + 4256 com.apple.dt.llbuild 0x000000010cd19dad llbuild::buildsystem::BuildSystemFrontend::build(llvm::StringRef) + 437 com.apple.dt.llbuild 0x000000010cc9cfbb llb_buildsystem_build + 1938 com.apple.dt.llbuild 0x000000010cca44a6 0x10cc9b000 + 380549 com.apple.dt.XCBBuildSystem 0x000000010bfbb210 BuildOperation.build() + 985610 com.apple.dt.XCBBuildSystem 0x000000010bfce4ad closure #2 in BuildManager.startBuild(_:) + 4511 com.apple.dt.XCBBuildSystem 0x000000010bfcc939 thunk for @escaping @callee_guaranteed () -> () + 2512 libdispatch.dylib 0x00007fff6b0f4553 _dispatch_call_block_and_release + 1213 libdispatch.dylib 0x00007fff6b0f54de _dispatch_client_callout + 814 libdispatch.dylib 0x00007fff6b0f7690 _dispatch_continuation_pop + 41415 libdispatch.dylib 0x00007fff6b0f6d8e _dispatch_async_redirect_invoke + 70316 libdispatch.dylib 0x00007fff6b1037e5 _dispatch_root_queue_drain + 32617 libdispatch.dylib 0x00007fff6b103f25 _dispatch_worker_thread2 + 9218 libsystem_pthread.dylib 0x00007fff6b34e71d _pthread_wqthread + 22019 libsystem_pthread.dylib 0x00007fff6b34e5c3 start_wqthread + 15Thread 3:0 libsystem_pthread.dylib 0x00007fff6b34e5b4 start_wqthread + 0Thread 4 Crashed:: Dispatch queue: XCBBuildSystem.OperationSystemAdaptor.queue0 com.apple.dt.XCBCore 0x000000010c1bdbac SwiftCommandOutputParser.handleMessage(_:) + 109401 com.apple.dt.XCBCore 0x000000010c1bb00e SwiftCommandOutputParser.write(bytes:) + 13262 com.apple.dt.XCBBuildService.Framework 0x000000010bef94ca TaskOutputHandler.emitOutput(_:) + 743 com.apple.dt.XCBBuildService.Framework 0x000000010bef9630 protocol witness for TaskOutputDelegate.emitOutput(_:) in conformance TaskOutputHandler + 164 com.apple.dt.XCBBuildSystem 0x000000010bfc1b2d closure #1 in OperationSystemAdaptor.commandProcessHadOutput(_:process:data:) + 2055 com.apple.dt.XCBBuildSystem 0x000000010bfcc939 thunk for @escaping @callee_guaranteed () -> () + 256 libdispatch.dylib 0x00007fff6b0f4553 _dispatch_call_block_and_release + 127 libdispatch.dylib 0x00007fff6b0f54de _dispatch_client_callout + 88 libdispatch.dylib 0x00007fff6b0faa9e _dispatch_lane_serial_drain + 5979 libdispatch.dylib 0x00007fff6b0fb422 _dispatch_lane_invoke + 36310 libdispatch.dylib 0x00007fff6b104aa1 _dispatch_workloop_worker_thread + 59811 libsystem_pthread.dylib 0x00007fff6b34e763 _pthread_wqthread + 29012 libsystem_pthread.dylib 0x00007fff6b34e5c3 start_wqthread + 15Thread 5:: org.swift.llbuild Lane-00 libsystem_kernel.dylib 0x00007fff6b29659e poll + 101 com.apple.dt.llbuild 0x000000010cd06b56 llbuild::basic::spawnProcess(llbuild::basic::ProcessDelegate&, llbuild::basic::ProcessContext*, llbuild::basic::ProcessGroup&, llbuild::basic::ProcessHandle, llvm::ArrayRef<llvm::StringRef>, llbuild::basic::POSIXEnvironment, llbuild::basic::ProcessAttributes, std::__1::function<void (std::__1::function<void ()>&&)>&&, std::__1::function<void (llbuild::basic::ProcessResult)>&&) + 34942 com.apple.dt.llbuild 0x000000010cd0187e (anonymous namespace)::LaneBasedExecutionQueue::executeProcess(llbuild::basic::QueueJobContext*, llvm::ArrayRef<llvm::StringRef>, llvm::ArrayRef<std::__1::pair<llvm::StringRef, llvm::StringRef> >, bool, llbuild::basic::ProcessAttributes, llvm::Optional<std::__1::function<void (llbuild::basic::ProcessResult)> >) + 11083 com.apple.dt.llbuild 0x000000010cd1c2ae llbuild::buildsystem::ShellCommand::executeExternalCommand(llbuild::buildsystem::BuildSystemCommandInterface&, llbuild::core::Task*, llbuild::basic::QueueJobContext*, llvm::Optional<std::__1::function<void (llbuild::basic::ProcessResult)> >) + 6964 com.apple.dt.llbuild 0x000000010cd1e5ae llbuild::buildsystem::ExternalCommand::execute(llbuild::buildsystem::BuildSystemCommandInterface&, llbuild::core::Task*, llbuild::basic::QueueJobContext*, std::__1::function<void (llbuild::buildsystem::BuildValue&&)>) + 7945 com.apple.dt.llbuild 0x000000010cd33c10 std::__1::__function::__func<(anonymous namespace)::CommandTask::inputsAvailable(llbuild::core::BuildEngine&)::'lambda'(llbuild::basic::QueueJobContext*), std::__1::allocator<(anonymous namespace)::CommandTask::inputsAvailable(llbuild::core::BuildEngine&)::'lambda'(llbuild::basic::QueueJobContext*)>, void (llbuild::basic::QueueJobContext*)>::operator()(llbuild::basic::QueueJobContext*&&) + 1486 com.apple.dt.llbuild 0x000000010cd01005 (anonymous namespace)::LaneBasedExecutionQueue::executeLane(unsigned int, unsigned int) + 8017 com.apple.dt.llbuild 0x000000010cd0332b void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void ((anonymous namespace)::LaneBasedExecutionQueue::*)(unsigned int, unsigned int), (anonymous namespace)::LaneBasedExecutionQueue*, unsigned int, unsigned int> >(void*) + 648 libsystem_pthread.dylib 0x00007fff6b351d76 _pthread_start + 1259 libsystem_pthread.dylib 0x00007fff6b34e5d7 thread_start + 15Thread 6:: org.swift.llbuild Lane-10 libsystem_kernel.dylib 0x00007fff6b2918f6 __psynch_cvwait + 101 libsystem_pthread.dylib 0x00007fff6b352082 _pthread_cond_wait + 7012 libc++.1.dylib 0x00007fff6829681a std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 183 com.apple.dt.llbuild 0x000000010cd00e22 (anonymous namespace)::LaneBasedExecutionQueue::executeLane(unsigned int, unsigned int) + 3184 com.apple.dt.llbuild 0x000000010cd0332b void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void ((anonymous namespace)::LaneBasedExecutionQueue::*)(unsigned int, unsigned int), (anonymous namespace)::LaneBasedExecutionQueue*, unsigned int, unsigned int> >(void*) + 645 libsystem_pthread.dylib 0x00007fff6b351d76 _pthread_start + 1256 libsystem_pthread.dylib 0x00007fff6b34e5d7 thread_start + 15Thread 7:: org.swift.llbuild Lane-20 libsystem_kernel.dylib 0x00007fff6b2918f6 __psynch_cvwait + 101 libsystem_pthread.dylib 0x00007fff6b352082 _pthread_cond_wait + 7012 libc++.1.dylib 0x00007fff6829681a std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 183 com.apple.dt.llbuild 0x000000010cd00e22 (anonymous namespace)::LaneBasedExecutionQueue::executeLane(unsigned int, unsigned int) + 3184 com.apple.dt.llbuild 0x000000010cd0332b void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void ((anonymous namespace)::LaneBasedExecutionQueue::*)(unsigned int, unsigned int), (anonymous namespace)::LaneBasedExecutionQueue*, unsigned int, unsigned int> >(void*) + 645 libsystem_pthread.dylib 0x00007fff6b351d76 _pthread_start + 1256 libsystem_pthread.dylib 0x00007fff6b34e5d7 thread_start + 15Thread 8:: org.swift.llbuild Lane-30 libsystem_kernel.dylib 0x00007fff6b2918f6 __psynch_cvwait + 101 libsystem_pthread.dylib 0x00007fff6b352082 _pthread_cond_wait + 7012 libc++.1.dylib 0x00007fff6829681a std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 183 com.apple.dt.llbuild 0x000000010cd00e22 (anonymous namespace)::LaneBasedExecutionQueue::executeLane(unsigned int, unsigned int) + 3184 com.apple.dt.llbuild 0x000000010cd0332b void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void ((anonymous namespace)::LaneBasedExecutionQueue::*)(unsigned int, unsigned int), (anonymous namespace)::LaneBasedExecutionQueue*, unsigned int, unsigned int> >(void*) + 645 libsystem_pthread.dylib 0x00007fff6b351d76 _pthread_start + 1256 libsystem_pthread.dylib 0x00007fff6b34e5d7 thread_start + 15Thread 4 crashed with X86 Thread State (64-bit): rax: 0x0000000200000002 rbx: 0x00007fada043e530 rcx: 0xfffffffe00000000 rdx: 0x0000000000000002 rdi: 0x00007fada043e538 rsi: 0xfffffffffffffffe rbp: 0x000070000c5236c0 rsp: 0x000070000c522f50 r8: 0xe0211cc78607384c r9: 0x944478a5ff735d3f r10: 0x00000000000000d8 r11: 0xfffff0526c0f3640 r12: 0x00007fada046c9e0 r13: 0x0000000000000000 r14: 0x000070000c523210 r15: 0x00007fada03a4c20 rip: 0x000000010c1bdbac rfl: 0x0000000000010246 cr2: 0x0000000115085000Logical CPU: 0Error Code: 0x02000131Trap Number: 133Binary Images: 0x10becc000 - 0x10bed0ff7 +XCBBuildService (11.1 - 14877) <3893A044-4FD5-3D45-B5BA-302A40AA3142> /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/MacOS/XCBBuildService 0x10bedc000 - 0x10bf3fff7 com.apple.dt.XCBBuildService.Framework (11.1 - 14877) <42217B7D-9484-3CC0-B7BF-492F8F70A71F> /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/Frameworks/XCBBuildService.framework/Versions/A/XCBBuildService 0x10bfaf000 - 0x10bfdbfff com.apple.dt.XCBBuildSystem (11.1 - 14877) <56DC6C7C-34EF-309D-BE1B-6DFE008D110E> /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/Frameworks/XCBBuildSystem.framework/Versions/A/XCBBuildSystem 0x10c00e000 - 0x10c3d5ff7 com.apple.dt.XCBCore (11.1 - 14877) <E4E54D48-6B69-351C-9F65-184D12EA5E0D> /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/Frameworks/XCBCore.framework/Versions/A/XCBCore 0x10c68e000 - 0x10c699ff7 com.apple.dt.XCBServiceCore (11.1 - 14877) <11120669-F544-38CF-8753-584A375A0850> /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/Frameworks/XCBServiceCore.framework/Versions/A/XCBServiceCore 0x10c6b2000 - 0x10c788ff7 com.apple.dt.XCBUtil (11.1 - 14877) <E2A40BC6-BD52-3A2C-9D6C-2FA4D68988BA> /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/Frameworks/XCBUtil.framework/Versions/A/XCBUtil 0x10c849000 - 0x10c8f4fff com.apple.dt.XCBProtocol (11.1 - 14877) <6A3AB41F-FF34-33B5-9E36-03B6EF24714D> /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/Frameworks/XCBProtocol.framework/Versions/A/XCBProtocol 0x10c9c5000 - 0x10cab8fff com.apple.dt.XCBTaskConstruction (11.1 - 14877) <A2E47B06-3A52-317A-9798-DB5C5BDB9650> /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/Frameworks/XCBTaskConstruction.framework/Versions/A/XCBTaskConstruction 0x10cb51000 - 0x10cbfefff com.apple.dt.XCBTaskExecution (11.1 - 14877) <495FB2EB-D944-383D-8E0B-0AC54FA8E5B1> /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/Frameworks/XCBTaskExecution.framework/Versions/A/XCBTaskExecution 0x10cc7e000 - 0x10cc87fff com.apple.dt.XCBCSupport (11.1 - 14877) <285957DE-0760-30AF-BB28-EE476DEE2D1E> /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/Frameworks/XCBCSupport.framework/Versions/A/XCBCSupport 0x10cc91000 - 0x10cc92ff7 com.apple.dt.XCBLLBuild (11.1 - 14877) <B1F24E64-D9ED-3B06-BAA4-8CD8E8ADC7D7> /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/Frameworks/XCBLLBuild.framework/Versions/A/XCBLLBuild 0x10cc9b000 - 0x10cd4fff7 com.apple.dt.llbuild (1.0 - 14628) <BB5E41C5-5CFF-3565-A5ED-8A2CE17C1823> /Applications/Xcode.app/Contents/SharedFrameworks/llbuild.framework/Versions/A/llbuild 0x10ce22000 - 0x10ce22fff com.apple.dt.XCBMetricsPlugin (11.1 - 14877) <3B3EE6A2-492A-3E51-B267-9C5C3675C87F> /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/PlugIns/XCBMetricsPlugin.bundle/Contents/MacOS/XCBMetricsPlugin 0x10ce2a000 - 0x10ce36fff com.apple.dt.XCBMetrics (11.1 - 14877) <F6557D9B-7643-3E76-8DE7-CC254B84C90F> /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/PlugIns/XCBMetricsPlugin.bundle/Contents/Frameworks/XCBMetrics.framework/Versions/A/XCBMetrics 0x10f577000 - 0x10f60593f dyld (732.8) <42C11B81-6928-369F-B03E-D57355572700> /usr/lib/dyld 0x10f678000 - 0x113ad9ff3 +libclang.dylib (1100.0.33.8) <2D5AE4C1-5CDC-34DF-B5B3-A050B634BE00> /Applications/Xcode.app/Contents/Frameworks/libclang.dylib 0x7fff2fbf2000 - 0x7fff2fbf2fff com.apple.Accelerate (1.11 - Accelerate 1.11) <956D070C-B522-3A08-891A-CAD6BA4082D1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff2fc0a000 - 0x7fff30275fdf com.apple.vImage (8.1 - 524.2) <45A48EA9-49AA-33A0-B830-AF754BD01009> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff30276000 - 0x7fff304defff libBLAS.dylib (1303) <112B19CC-925A-3E28-8B32-2002D30A37FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff304df000 - 0x7fff307cefdf libBNNS.dylib (144.11.2) <A806AED9-837B-3C6C-AB0B-A41983C1CD07> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff307d0000 - 0x7fff30b75fff libLAPACK.dylib (1303) <5C248B39-F233-3074-A3A5-AF8F436FBF87> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff30b76000 - 0x7fff30b8bff8 libLinearAlgebra.dylib (1303) <C21931B4-F6BD-324D-A2D9-F13EE8AFB29E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff30b8c000 - 0x7fff30b91ff3 libQuadrature.dylib (7) <826897ED-B7AD-33DC-B9CB-F9787784F312> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff30b92000 - 0x7fff30c02fff libSparse.dylib (103) <55467C29-2096-36AB-8A6D-5231A342809D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff30c03000 - 0x7fff30c15fef libSparseBLAS.dylib (1303) <3244FCAF-A1FE-3248-AF22-BFB3E9D12555> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff30c16000 - 0x7fff30defffb libvDSP.dylib (735) <E849AEB0-2995-38A4-B0C3-4ACEAF434D12> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff30df0000 - 0x7fff30eabfd3 libvMisc.dylib (735) <D6248EC4-7772-37BB-87F7-9BAB7F5D31A0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff30eac000 - 0x7fff30eacfff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <79C1A1C7-E97A-3B7A-8737-444B402A7AA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff31e4d000 - 0x7fff31e4dfff com.apple.ApplicationServices (48 - 50) <E6AA41A2-C79F-3304-9A61-5500561D876D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff31e4e000 - 0x7fff31eb9fff com.apple.ApplicationServices.ATS (377 - 493) <0EB214FD-E4D6-3045-A0A6-DCBCAE5F4165> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff31f52000 - 0x7fff31f90ffa libFontRegistry.dylib (274) <1A3CE39E-14E7-338E-B1E5-7FA79B9B0065> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff31feb000 - 0x7fff3201aff7 com.apple.ATSUI (1.0 - 1) <9391C527-15CE-3108-8922-CF0C2A50C082> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI 0x7fff3201b000 - 0x7fff3201fff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <EBA4F56C-3C82-3788-A168-3E77E116724B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff320ba000 - 0x7fff32110ffa com.apple.HIServices (1.22 - 672) <C07B87F9-1D7B-3EC9-AC11-E97003ACDCD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff32111000 - 0x7fff3211ffff com.apple.LangAnalysis (1.7.0 - 1.7.0) <C808B42C-C139-34C1-997F-032992D89762> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff32120000 - 0x7fff32165ff2 com.apple.print.framework.PrintCore (15 - 516) <43213BE5-C5E1-3AA8-8AFD-949AFF9FB2C5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff32166000 - 0x7fff32170fff com.apple.QD (4.0 - 413) <EFC01D3C-9012-3FCF-9149-457F530A43F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff32171000 - 0x7fff3217eff0 com.apple.speech.synthesis.framework (9.0.22 - 9.0.22) <CEA12143-A5DB-369B-B623-601CB9C9973B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff3217f000 - 0x7fff3225fffa com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <83A9998E-0669-326F-BA80-350FC70912E6> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff325d7000 - 0x7fff3294dffe com.apple.CFNetwork (1111 - 1111) <642753C5-5D26-3794-9A4C-4F63F226C01A> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff32eb5000 - 0x7fff330a0ff7 com.apple.ColorSync (4.13.0 - 3394.1.4.1) <32A1AEE9-C3AA-3535-9C72-D89955D2DE85> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff330a1000 - 0x7fff3319aff7 com.apple.combine (1.0 - 132.10) <BE5FC3BA-0EB8-331A-94AA-5EC758A6505C> /System/Library/Frameworks/Combine.framework/Versions/A/Combine 0x7fff3338c000 - 0x7fff3389bffa com.apple.audio.CoreAudio (5.0 - 5.0) <88827CE9-4055-3E5F-B7C1-4E9314E6D05C> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff33d01000 - 0x7fff33e0bff6 com.apple.CoreDisplay (1.0 - 107) <722EBF44-A989-3079-A03C-8421B10E441F> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff33e0c000 - 0x7fff3428bff7 com.apple.CoreFoundation (6.9 - 1671.15) <BF8A8279-9C5E-37C6-8426-90C8182EFBDD> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff3428d000 - 0x7fff34906ff8 com.apple.CoreGraphics (2.0 - 1348.4.4.7) <5790BE2E-049E-39BA-B191-611CF7ECD017> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff34914000 - 0x7fff34c70ff2 com.apple.CoreImage (15.0.0 - 900.6) <12E02841-0FB0-30F5-8444-FD925B0DE49E> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff351f3000 - 0x7fff351f3fff com.apple.CoreServices (1069.2 - 1069.2) <C5F7AABC-BADC-3331-A7D6-9B0A82A23E58> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff351f4000 - 0x7fff35279ff7 com.apple.AE (838 - 838) <7295ED82-7087-3602-9DCA-4FE205F6499C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff3527a000 - 0x7fff3555bfff com.apple.CoreServices.CarbonCore (1217 - 1217) <7AA0ECB3-0993-3081-A9EC-0365EF72B24D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff3555c000 - 0x7fff355a9ff1 com.apple.DictionaryServices (1.2 - 321) <3D0FFBDE-E425-37C7-B780-39A3D024462A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff355aa000 - 0x7fff355b2ff7 com.apple.CoreServices.FSEvents (1268.0.6 - 1268.0.6) <78D2AB1A-9053-3D32-8C18-C1DD31FF9400> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff355b3000 - 0x7fff357ebff1 com.apple.LaunchServices (1069.2 - 1069.2) <68B4C10C-D536-33E9-9719-E7BA5B753F2B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff357ec000 - 0x7fff35884ff1 com.apple.Metadata (10.7.0 - 2066.12) <249EA615-8446-3A36-B6B7-ED613C8B8148> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff35885000 - 0x7fff358b2ff7 com.apple.CoreServices.OSServices (1069.2 - 1069.2) <2FECF3BA-B785-35E2-85E9-2A2267801AA4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff358b3000 - 0x7fff3591afff com.apple.SearchKit (1.4.1 - 1.4.1) <0068BD72-CF2B-34E4-B461-002D5E56C31C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff3591b000 - 0x7fff3593fffd com.apple.coreservices.SharedFileList (131 - 131) <61F62948-4109-38F0-BB91-5EBB6BEEAB10> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff35c67000 - 0x7fff35e1bffe com.apple.CoreText (643.1.0.2 - 643.1.0.2) <83B0B75B-7B4A-315D-BC8B-8CB2E5D16EB8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff35e1c000 - 0x7fff35e60fff com.apple.CoreVideo (1.8 - 334.0) <54CC4AD8-7F5C-37D5-A26D-9C8C8A72BD41> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff36194000 - 0x7fff3619aff7 com.apple.DiskArbitration (2.7 - 2.7) <23104F29-F120-354B-97BE-4514A675BB14> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff36371000 - 0x7fff36373ff9 com.apple.ExecutionPolicy (1.0 - 1) <2B27DD1D-C9A2-3E7A-9380-EF9D71FD4A65> /System/Library/Frameworks/ExecutionPolicy.framework/Versions/A/ExecutionPolicy 0x7fff364c7000 - 0x7fff3688eff3 com.apple.Foundation (6.9 - 1671.15) <4BEAB72D-10AA-3009-B0F5-B82B4FE1C441> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff368fb000 - 0x7fff3692aff3 com.apple.GSS (4.0 - 2.0) <9520F096-C643-36D7-B8CB-3922B6E6D7EC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff36be0000 - 0x7fff36c83ffb com.apple.framework.IOKit (2.0.2 - 1726.11.1) <9E81E92C-7EC2-330F-B0AF-BBFD9D3E46F6> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff36c85000 - 0x7fff36c95ff4 com.apple.IOSurface (269.6 - 269.6) <1E49AD7D-6067-3599-B015-765047D58C13> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff36d08000 - 0x7fff36e63ffe com.apple.ImageIO.framework (3.3.0 - 1972.3.4.5) <5A42B908-2C44-3E65-A465-C6A219264F01> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff36e64000 - 0x7fff36e67fff libGIF.dylib (1972.3.4.5) <70153F11-6934-32DE-952B-290C6DDC5F1C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff36e68000 - 0x7fff36f22fe7 libJP2.dylib (1972.3.4.5) <A354ED67-BECA-3368-AA2A-4643BBDF6425> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff36f23000 - 0x7fff36f47fef libJPEG.dylib (1972.3.4.5) <3DC331DE-874D-3347-94F6-DDBF2D793C9A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff371c5000 - 0x7fff371dffe7 libPng.dylib (1972.3.4.5) <23E2F503-7300-3C99-BD21-A6449610AD50> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff371e0000 - 0x7fff371e1fff libRadiance.dylib (1972.3.4.5) <CB962B42-BBDB-3CE2-A120-BF9208FB0A13> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff371e2000 - 0x7fff3722bfef libTIFF.dylib (1972.3.4.5) <8E68D57C-6C0D-358E-9AF3-FD80D3378720> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff38646000 - 0x7fff38658ff3 com.apple.Kerberos (3.0 - 1) <91DF5D16-E721-39F0-A77B-87DA6032F870> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff38659000 - 0x7fff38659fff libHeimdalProxy.dylib (77) <51DB9CFB-808F-32E8-BB34-39F6702DBDED> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib 0x7fff391ff000 - 0x7fff392c1ff1 com.apple.Metal (211.53 - 211.53) <A4C00DD5-73DD-3CFA-A515-EE9955CAD651> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff392de000 - 0x7fff3931aff3 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <54EC6486-7A3E-39D3-B213-EFCC4110E511> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff3931b000 - 0x7fff393a1fe6 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <144A9994-9AD3-340D-A890-C7F10DDEF489> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff393a2000 - 0x7fff393c7ff0 com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <6F07D520-B36C-38D5-810B-A95BA5F79B04> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff393c8000 - 0x7fff393ddffc com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <73DBE1D5-89C4-3410-95DA-A384BF9C2C1E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray 0x7fff393de000 - 0x7fff3953dff4 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <24338B34-481D-3564-917C-CD1DB243FD12> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff3953e000 - 0x7fff3958cff7 com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <75ABA9EB-752E-3E7E-BFBA-19806FB65924> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector 0x7fff3958d000 - 0x7fff3958eff5 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <5EA47648-76E9-37CD-A2FC-A0083A769665> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff3a4d4000 - 0x7fff3a4e0ffe com.apple.NetFS (6.0 - 4.0) <10ECF7E4-98A5-3751-B7AC-0AAAF0050777> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff3d04b000 - 0x7fff3d0a3ff7 com.apple.opencl (3.5 - 3.5) <1874ACB3-DBF4-309A-A15D-ADB0C786C5B8> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff3d0a4000 - 0x7fff3d0c0fff com.apple.CFOpenDirectory (10.15 - 220.11.1) <6F4D018B-FA8B-35B2-8120-F8215DDA01CB> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff3d0c1000 - 0x7fff3d0ccfff com.apple.OpenDirectory (10.15 - 220.11.1) <170173C2-DF22-3D11-914F-465AA7C4760A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff3da27000 - 0x7fff3da29fff libCVMSPluginSupport.dylib (17.10.22) <4527BE3A-74F4-3BEB-963F-A4C29B31CF4F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff3da2a000 - 0x7fff3da2ffff libCoreFSCache.dylib (176.7) <BBD5A68D-2A0D-39C3-B103-12ABCD09CEE4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff3da30000 - 0x7fff3da34fff libCoreVMClient.dylib (176.7) <E789527C-4043-3B2A-A64C-D0B3FA74586F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff3da35000 - 0x7fff3da3dff7 libGFXShared.dylib (17.10.22) <659DDDE1-B688-3B05-A317-56D81B537BD4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff3da3e000 - 0x7fff3da48fff libGL.dylib (17.10.22) <FBF0CD8F-0052-3F47-A35B-74367687BD41> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff3da49000 - 0x7fff3da7efff libGLImage.dylib (17.10.22) <A8F955E3-73CF-3C14-9DD7-AAB95233D569> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff3dc12000 - 0x7fff3dc4efff libGLU.dylib (17.10.22) <674FC095-D986-3646-9E64-560075762B8D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff3e67e000 - 0x7fff3e68dff7 com.apple.opengl (17.10.22 - 17.10.22) <3A6122C9-58FC-30F5-9591-C11C118EEE6B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff3f646000 - 0x7fff3f8c3ff2 com.apple.QuartzCore (1.11 - 815.6.4.4) <F3F17EB9-8C1D-397F-A04E-33FB9633EA26> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff4044e000 - 0x7fff40792ff9 com.apple.security (7.0 - 59306.11.20) <1B0AE660-0EC5-3497-ACE8-1AF2BB772BAB> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff40793000 - 0x7fff4081bff7 com.apple.securityfoundation (6.0 - 55236) <903B8365-1F35-3EB2-9821-9D2C440BE2DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff40874000 - 0x7fff40878ff8 com.apple.xpc.ServiceManagement (1.0 - 1) <EF42F840-AF78-38A4-B6E1-FDF445CA3477> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff41662000 - 0x7fff416ccff7 com.apple.SystemConfiguration (1.19 - 1.19) <C0C089C3-FC64-3107-B23E-4073E800C5D2> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff45420000 - 0x7fff454e4ff7 com.apple.APFS (1412.11.7 - 1412.11.7) <71DAB6CE-FF14-373D-A183-F388C5D9FE84> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff464ff000 - 0x7fff46500ff1 com.apple.AggregateDictionary (1.0 - 1) <92777CAE-3C90-39A4-A8AE-0273A262F875> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary 0x7fff47068000 - 0x7fff47077fdf com.apple.AppleFSCompression (119 - 1.0) <725908C4-7585-3AB6-8A1A-691B8A9074B8> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff471c3000 - 0x7fff4720bfff com.apple.AppleJPEG (1.0 - 1) <8051B4A3-7658-3003-82D1-41CA5C83CBEC> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff475e4000 - 0x7fff47606ffb com.apple.applesauce (1.0 - 16.22) <88BFDA72-8D13-3481-B4FA-62215F6E2E43> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff476c6000 - 0x7fff476c9ffb com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <7BFAE3D7-0ABE-3AC2-8B4D-B658CE5E8770> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 0x7fff47763000 - 0x7fff47772ffd com.apple.AssertionServices (1.0 - 223.11.1) <8A45663E-E9C8-3611-BD4C-710700920F14> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices 0x7fff482f9000 - 0x7fff48534fff com.apple.audio.AudioToolboxCore (1.0 - 1104.15.1) <3CD3860B-F736-3ED8-B32E-B8E1C3E3DD5D> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore 0x7fff48803000 - 0x7fff4880cff3 com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <156CFAE3-07D0-332C-90BE-BB2E4C893C99> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff488af000 - 0x7fff4892efff com.apple.BaseBoard (460 - 460) <E2B2C09D-7CA3-3BCF-AE84-E636CBC139CB> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard 0x7fff48a2e000 - 0x7fff48a6aff7 com.apple.bom (14.0 - 219.1) <86A0EE62-9906-3085-B9B7-93C196526360> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff4a4aa000 - 0x7fff4a4b3ff7 com.apple.CommonAuth (4.0 - 2.0) <BDE39131-6389-3243-9C4A-DBA165B8A2F9> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff4a4c7000 - 0x7fff4a4deff1 com.apple.commonutilities (8.0 - 900) <A64C20B3-6860-3CCA-BB89-E8B9B589282A> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities 0x7fff4afe4000 - 0x7fff4b003ff4 com.apple.analyticsd (1.0 - 1) <3C14ACAE-0E19-3589-8229-944F376C3E44> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics 0x7fff4b54d000 - 0x7fff4b55dff3 com.apple.CoreEmoji (1.0 - 100) <9AB89183-635C-3859-9DC6-7BCE3A94D15E> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff4bba9000 - 0x7fff4bc13ff8 com.apple.CoreNLP (1.0 - 211) <8F08AEF6-A380-3811-BAF0-D80E7C84B5AD> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP 0x7fff4c7ef000 - 0x7fff4c822fff com.apple.CoreServicesInternal (446.4 - 446.4) <516D3C82-1CC5-3056-B56F-A8FD2FE662EC> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff4c823000 - 0x7fff4c851ff7 com.apple.CSStore (1069.2 - 1069.2) <5E3C50AB-9C00-36F3-A986-CE033480CA8B> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore 0x7fff4d4fb000 - 0x7fff4d500fff com.apple.DSExternalDisplay (3.1 - 380) <B4AF8876-4037-3F07-BA7D-443AD3A4E680> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff4efbd000 - 0x7fff4f3d8ff9 com.apple.vision.FaceCore (4.3.0 - 4.3.0) <298DA6CC-F74E-3EA7-9FCF-EC9E71E51859> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff4fa3b000 - 0x7fff4fb72ff4 libFontParser.dylib (277.2) <91E3DD75-1591-381C-BA72-F5023BA19955> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x7fff4fc0c000 - 0x7fff4fc1cff6 libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <BC77CDFE-7137-3700-81AB-ED812743F5D8> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib 0x7fff54788000 - 0x7fff5478efff com.apple.GPUWrangler (4.1.46 - 4.1.46) <A003EAB8-8E5D-3078-9358-4C51412532B3> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff55b75000 - 0x7fff55b83ffb com.apple.GraphVisualizer (1.0 - 100.1) <6E7B93E6-6B1F-3198-B3F8-E4F61632E1F5> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff55d16000 - 0x7fff55d89ffc com.apple.Heimdal (4.0 - 2.0) <169702C2-B210-3258-947C-F8EE6B361C26> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff57e92000 - 0x7fff57e9aff5 com.apple.IOAccelerator (438.1.23 - 438.1.23) <16F79A0A-5CE0-36A0-9053-5BBB96B1DAB3> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff57e9d000 - 0x7fff57eb3ff7 com.apple.IOPresentment (1.0 - 37) <C04FA14E-9FF0-3561-9ECA-B028E531885F> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff587ff000 - 0x7fff588ccffd com.apple.LanguageModeling (1.0 - 212) <A9F41C84-E574-3624-8C00-60F228E0FF97> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff588cd000 - 0x7fff58915ff7 com.apple.Lexicon-framework (1.0 - 70) <BEADF30C-37D3-3112-90DA-18A85406DBF3> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff5891c000 - 0x7fff58920ff6 com.apple.LinguisticData (1.0 - 349) <A392AD13-9AEB-31BB-A9ED-F29437CFBDB4> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff59d51000 - 0x7fff59d9dff7 com.apple.spotlight.metadata.utilities (1.0 - 2066.12) <989018A3-4BD0-3FD1-9A2D-88FD3A521452> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities 0x7fff59d9e000 - 0x7fff59e6cff5 com.apple.gpusw.MetalTools (1.0 - 1) <5ADCCE88-B380-3B73-957B-12983017E979> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff5a320000 - 0x7fff5a34eff7 com.apple.MultitouchSupport.framework (3400.35 - 3400.35) <C73D6E66-5FE9-3113-96DB-AF12AAC6B77E> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff5a7c0000 - 0x7fff5a7cafff com.apple.NetAuth (6.2 - 6.2) <90F9ADF4-8A9C-3603-8F55-24F8C472430B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff5b1b6000 - 0x7fff5b202ff7 com.apple.OTSVG (1.0 - 643.1.0.2) <315F5289-6294-3B4E-83D1-56C502F564F8> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG 0x7fff5c381000 - 0x7fff5c3a9fff com.apple.persistentconnection (1.0 - 1.0) <DBD9FD74-9F17-358B-A7E9-58B965A6E16C> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection 0x7fff5ec9b000 - 0x7fff5ecb4fff com.apple.ProtocolBuffer (1 - 274.20.7.15.1) <9CD0E8B7-F38D-35F3-B68B-C18AA5CDB993> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff5f28e000 - 0x7fff5f2c9ff7 com.apple.RunningBoardServices (1.0 - 223.11.1) <E9784D23-1EA5-3820-99C4-3B4474C803C5> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices 0x7fff61e32000 - 0x7fff62129ff6 com.apple.SkyLight (1.600.0 - 440.7.10) <DF3DDAE0-4F75-3D6C-8BC9-52903CB668B2> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff6345b000 - 0x7fff6346bff3 com.apple.TCC (1.0 - 1) <DCE1D8C7-7BEB-3201-A0E5-38F012E6B1BC> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff66706000 - 0x7fff66707fff com.apple.WatchdogClient.framework (1.0 - 67.11.1) <7B858D02-459E-3307-BCF3-7E18771BA4D9> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient 0x7fff6735e000 - 0x7fff6736cffd com.apple.audio.caulk (1.0 - 32.3) <7FBF3E20-D360-348B-8FC5-77A90444B552> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk 0x7fff676ab000 - 0x7fff676adff3 com.apple.loginsupport (1.0 - 1) <40974390-AFD7-3CEF-8B8D-6219BF916A4E> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff679df000 - 0x7fff67a14ff2 libAudioToolboxUtility.dylib (1104.15.1) <221386C3-366B-37A7-8A75-4176678F97AA> /usr/lib/libAudioToolboxUtility.dylib 0x7fff67a1b000 - 0x7fff67a50ff7 libCRFSuite.dylib (48) <45ADF347-A43F-3E95-BF26-94DC525DCC81> /usr/lib/libCRFSuite.dylib 0x7fff67a53000 - 0x7fff67a5dff3 libChineseTokenizer.dylib (34) <94E822B6-F850-33C5-888C-D5C8AE12122C> /usr/lib/libChineseTokenizer.dylib 0x7fff67aea000 - 0x7fff67aecfff libDiagnosticMessagesClient.dylib (112) <418D550B-C748-3D55-A6D5-0398E032F9F3> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff67b30000 - 0x7fff67ce7ff3 libFosl_dynamic.dylib (100.4) <F5583DFD-E3A1-3D6A-8698-613F7FA119A0> /usr/lib/libFosl_dynamic.dylib 0x7fff67d0e000 - 0x7fff67d14ff3 libIOReport.dylib (54) <491518A9-84B3-3066-905F-BFF5D21EB760> /usr/lib/libIOReport.dylib 0x7fff67e2b000 - 0x7fff67e4aff7 libMobileGestalt.dylib (826.1.1) <74BEEAE6-2825-33F7-B63B-4C2A27974F30> /usr/lib/libMobileGestalt.dylib 0x7fff67fb1000 - 0x7fff67fb2ff3 libSystem.B.dylib (1281) <66742D2E-591A-32B2-8E92-4A54BEE843F6> /usr/lib/libSystem.B.dylib 0x7fff68042000 - 0x7fff68043fff libThaiTokenizer.dylib (3) <D2A89215-5281-310F-8C75-47F1E6A14F62> /usr/lib/libThaiTokenizer.dylib 0x7fff6805b000 - 0x7fff68071fff libapple_nghttp2.dylib (1.39.2) <0A685DAA-9FC6-3C87-83F1-1D11FC87C1F4> /usr/lib/libapple_nghttp2.dylib 0x7fff680a6000 - 0x7fff68118ff7 libarchive.2.dylib (72.11.2) <8636AE5A-0CBB-306C-8A4B-2E612D2D6B13> /usr/lib/libarchive.2.dylib 0x7fff68119000 - 0x7fff681affc5 libate.dylib (2.0.9) <9AE62394-6ED6-3B26-B53A-75FEA0389EB5> /usr/lib/libate.dylib 0x7fff681b3000 - 0x7fff681b3ff3 libauto.dylib (187) <AACF68BC-9A05-36F8-8F60-78951422E090> /usr/lib/libauto.dylib 0x7fff68271000 - 0x7fff68281fff libbsm.0.dylib (60) <F03FA480-0B22-3300-833F-03E88F43C504> /usr/lib/libbsm.0.dylib 0x7fff68282000 - 0x7fff6828efff libbz2.1.0.dylib (44) <8B522880-BEF8-3668-B785-F2AB4DE8F366> /usr/lib/libbz2.1.0.dylib 0x7fff6828f000 - 0x7fff682e2fff libc++.1.dylib (800.6) <328FB687-2363-38B1-AC11-11736925C775> /usr/lib/libc++.1.dylib 0x7fff682e3000 - 0x7fff682f7fff libc++abi.dylib (800.7) <02753D3D-91C6-3670-8B5D-EBE040B516FC> /usr/lib/libc++abi.dylib 0x7fff682f8000 - 0x7fff682f8ffb libcharset.1.dylib (59) <12D52FA5-EBCA-3F3C-A269-1095F268F92F> /usr/lib/libcharset.1.dylib 0x7fff682f9000 - 0x7fff6830affb libcmph.dylib (8) <7DD1F726-F3E3-341A-AFAC-83E9A470883C> /usr/lib/libcmph.dylib 0x7fff6830b000 - 0x7fff68322fe7 libcompression.dylib (87) <10B82884-BE1A-3A36-9B38-3C92AF566D3E> /usr/lib/libcompression.dylib 0x7fff685e4000 - 0x7fff685fafff libcoretls.dylib (167) <1C64EA6F-8E0D-319D-99D4-026150EEB2B2> /usr/lib/libcoretls.dylib 0x7fff685fb000 - 0x7fff685fcffb libcoretls_cfhelpers.dylib (167) <724B0181-4D9E-3D2F-B1AB-B4FD6A7BAB2C> /usr/lib/libcoretls_cfhelpers.dylib 0x7fff68bba000 - 0x7fff68c19fff libcups.2.dylib (483) <0C9BCEA5-628B-31E5-8609-00F811CAF505> /usr/lib/libcups.2.dylib 0x7fff68d07000 - 0x7fff68d24ff7 libedit.3.dylib (55) <E5C75F41-CD83-370B-B4C8-598656D36A65> /usr/lib/libedit.3.dylib 0x7fff68d25000 - 0x7fff68d25ff3 libenergytrace.dylib (21) <E42B4AFF-3FAC-3CE4-A7BF-48621458B356> /usr/lib/libenergytrace.dylib 0x7fff68d26000 - 0x7fff68d3fff7 libexpat.1.dylib (19) <A0E2F6F3-BFFA-3D59-872F-F093487F0B42> /usr/lib/libexpat.1.dylib 0x7fff68d4d000 - 0x7fff68d4fff7 libfakelink.dylib (149) <FC5712CB-2188-3DAD-8DD4-CC3ECCA3F9A8> /usr/lib/libfakelink.dylib 0x7fff68d5e000 - 0x7fff68d63fff libgermantok.dylib (24) <93E95178-E436-3611-A4A3-CB1D42CF4064> /usr/lib/libgermantok.dylib 0x7fff68d64000 - 0x7fff68d68ff7 libheimdal-asn1.dylib (564.0.3) <51551E63-5AC6-30D3-B178-8BDA782C80EA> /usr/lib/libheimdal-asn1.dylib 0x7fff68d69000 - 0x7fff68e59ff7 libiconv.2.dylib (59) <1A648E74-25D4-3F9B-94C4-10B58AD091B7> /usr/lib/libiconv.2.dylib 0x7fff68e5a000 - 0x7fff690b2ff7 libicucore.A.dylib (64232.0.1) <88E47471-605C-3C86-871B-5D2F4628A936> /usr/lib/libicucore.A.dylib 0x7fff690cc000 - 0x7fff690cdfff liblangid.dylib (133) <78DF87EE-CDCE-3628-B239-56743169BC93> /usr/lib/liblangid.dylib 0x7fff690ce000 - 0x7fff690e6ffb liblzma.5.dylib (16) <D416FC97-76EC-38B5-A134-85DDFEA9D297> /usr/lib/liblzma.5.dylib 0x7fff690fe000 - 0x7fff691a5fff libmecab.dylib (879) <DD60E6AA-154E-3294-B2C0-3277B754F3BC> /usr/lib/libmecab.dylib 0x7fff691a6000 - 0x7fff69405fe9 libmecabra.dylib (879) <B5BE574C-DD3A-336D-87A3-202CE7803A45> /usr/lib/libmecabra.dylib 0x7fff69766000 - 0x7fff69795ff7 libncurses.5.4.dylib (57) <2AD2FDD9-846A-3A79-ADCC-008E8B227BD6> /usr/lib/libncurses.5.4.dylib 0x7fff698c4000 - 0x7fff69d36ff6 libnetwork.dylib (1880.11.2) <CC02BF51-A056-3656-B735-E8CD0F4B7B15> /usr/lib/libnetwork.dylib 0x7fff69dd4000 - 0x7fff69e05fe6 libobjc.A.dylib (779.1) <722C0959-69B8-3843-B5EA-CDD8FAA91D5E> /usr/lib/libobjc.A.dylib 0x7fff69e18000 - 0x7fff69e1cfff libpam.2.dylib (25) <86317F48-E926-30AC-AE9F-ABB33543FBC8> /usr/lib/libpam.2.dylib 0x7fff69e1f000 - 0x7fff69e52ff7 libpcap.A.dylib (89.11.2) <65A8EBD2-F059-353B-9538-20D1314EFD89> /usr/lib/libpcap.A.dylib 0x7fff69ed4000 - 0x7fff69eecff7 libresolv.9.dylib (67) <06480BFC-6372-3225-B77A-F5AC9969DB64> /usr/lib/libresolv.9.dylib 0x7fff69f47000 - 0x7fff6a134ff7 libsqlite3.dylib (308.1) <7033723E-DD65-3AA3-ADCA-8746F7BAD75D> /usr/lib/libsqlite3.dylib 0x7fff6a383000 - 0x7fff6a386ffb libutil.dylib (57) <844B7887-09B3-3D12-ACDE-C4EB8F53DC62> /usr/lib/libutil.dylib 0x7fff6a387000 - 0x7fff6a394fff libxar.1.dylib (420) <E0D7C0A6-76EC-3682-A393-6596D4986269> /usr/lib/libxar.1.dylib 0x7fff6a39a000 - 0x7fff6a47cff7 libxml2.2.dylib (32.12) <C0A87484-D334-3B50-8F8A-A9C63295F49E> /usr/lib/libxml2.2.dylib 0x7fff6a480000 - 0x7fff6a4a8fff libxslt.1.dylib (16.6) <CD9E79B0-159A-3055-B62A-57AB2B445912> /usr/lib/libxslt.1.dylib 0x7fff6a4a9000 - 0x7fff6a4bbfff libz.1.dylib (76) <3FC3FC3E-ABF3-3167-9078-B54C952608B4> /usr/lib/libz.1.dylib 0x7fff6a5ae000 - 0x7fff6a9376bf libswiftCore.dylib (5.1 - 1100.8.259.70) <81C1D68F-314A-3E39-A6C9-C751D0092A70> /usr/lib/swift/libswiftCore.dylib 0x7fff6a94e000 - 0x7fff6a950fff libswiftCoreFoundation.dylib (??? - ???) <4331DA0E-39B1-343E-8239-4BDA774A43C7> /usr/lib/swift/libswiftCoreFoundation.dylib 0x7fff6a951000 - 0x7fff6a95ffff libswiftCoreGraphics.dylib (??? - ???) <C9971766-4AAC-3A85-9188-5C6950B793E4> /usr/lib/swift/libswiftCoreGraphics.dylib 0x7fff6ab88000 - 0x7fff6ab8efff libswiftDarwin.dylib (??? - ???) <96BE921C-3144-37FD-A897-66262C666A70> /usr/lib/swift/libswiftDarwin.dylib 0x7fff6ab8f000 - 0x7fff6aba8cdf libswiftDispatch.dylib (??? - ???) <F7E8CBB6-D733-3C25-89B8-1058C1076A7A> /usr/lib/swift/libswiftDispatch.dylib 0x7fff6aba9000 - 0x7fff6ad49337 libswiftFoundation.dylib (??? - ???) <BAD21164-B9D6-3C28-AA7F-A78C594CD58A> /usr/lib/swift/libswiftFoundation.dylib 0x7fff6ad58000 - 0x7fff6ad5aff3 libswiftIOKit.dylib (??? - ???) <BA30C54D-1F57-32E9-82D3-DAA9F82C5578> /usr/lib/swift/libswiftIOKit.dylib 0x7fff6adf5000 - 0x7fff6adf8fef libswiftObjectiveC.dylib (??? - ???) <007E5E25-AB98-30D9-8975-0C76DC97BBFF> /usr/lib/swift/libswiftObjectiveC.dylib 0x7fff6aef5000 - 0x7fff6aef7fff libswiftXPC.dylib (??? - ???) <C53D22CF-BE80-348B-A6EA-EB1E054A77C7> /usr/lib/swift/libswiftXPC.dylib 0x7fff6aef8000 - 0x7fff6aefefef libswiftos.dylib (??? - ???) <E1D1DF91-E990-3892-94F8-EF7B56E45703> /usr/lib/swift/libswiftos.dylib 0x7fff6af20000 - 0x7fff6af25ff7 libcache.dylib (83) <8EC69760-6DAA-3068-9372-F1D554C548E5> /usr/lib/system/libcache.dylib 0x7fff6af26000 - 0x7fff6af31ff7 libcommonCrypto.dylib (60165) <698BE754-137D-361D-B826-57B8DD969E4A> /usr/lib/system/libcommonCrypto.dylib 0x7fff6af32000 - 0x7fff6af39fff libcompiler_rt.dylib (101.2) <0BE7F119-C9C2-3612-A3F4-2336D4444476> /usr/lib/system/libcompiler_rt.dylib 0x7fff6af3a000 - 0x7fff6af43ff7 libcopyfile.dylib (166) <B5E73B1C-0BCF-33FE-80A1-D9E3BA3033D4> /usr/lib/system/libcopyfile.dylib 0x7fff6af44000 - 0x7fff6afdbfc3 libcorecrypto.dylib (866.0.10) <58344B13-CD10-3697-A516-6F5B06DD1EB7> /usr/lib/system/libcorecrypto.dylib 0x7fff6b0f2000 - 0x7fff6b133ff0 libdispatch.dylib (1173.0.3) <F4260D89-F67D-30CB-AF61-7ED25CB687DB> /usr/lib/system/libdispatch.dylib 0x7fff6b134000 - 0x7fff6b169fff libdyld.dylib (732.8) <98960E27-A08B-36DA-A5CB-8538B2D6757E> /usr/lib/system/libdyld.dylib 0x7fff6b16a000 - 0x7fff6b16affb libkeymgr.dylib (30) <682B41BC-BDC2-38D5-8820-87099606FA12> /usr/lib/system/libkeymgr.dylib 0x7fff6b16b000 - 0x7fff6b177ff7 libkxld.dylib (6153.11.26) <53BE9630-BDC8-3649-8709-7A4F86777B1A> /usr/lib/system/libkxld.dylib 0x7fff6b178000 - 0x7fff6b178ff7 liblaunch.dylib (1738.11.1) <7FE11F0D-65BC-3726-B1DD-E84F329193E0> /usr/lib/system/liblaunch.dylib 0x7fff6b179000 - 0x7fff6b17eff7 libmacho.dylib (949.0.1) <163DFE06-2FAD-3CBC-80EF-C38EED6AEA52> /usr/lib/system/libmacho.dylib 0x7fff6b17f000 - 0x7fff6b181ff3 libquarantine.dylib (110.0.4) <C8F39330-8CB5-30B0-8564-96453DCEFAD7> /usr/lib/system/libquarantine.dylib 0x7fff6b182000 - 0x7fff6b183ff7 libremovefile.dylib (48) <FB280185-B5ED-3F08-B08A-A378865C1398> /usr/lib/system/libremovefile.dylib 0x7fff6b184000 - 0x7fff6b19bfff libsystem_asl.dylib (377.0.1) <30CE9DAF-B1FA-3510-832B-F1CE19933ED7> /usr/lib/system/libsystem_asl.dylib 0x7fff6b19c000 - 0x7fff6b19cfff libsystem_blocks.dylib (74) <E0B8C825-E62B-357E-A2A0-13776F0A0F8C> /usr/lib/system/libsystem_blocks.dylib 0x7fff6b19d000 - 0x7fff6b224ff7 libsystem_c.dylib (1353.11.2) <2A5BFAFE-8214-3B35-AD46-C07A1A8B8941> /usr/lib/system/libsystem_c.dylib 0x7fff6b225000 - 0x7fff6b228fff libsystem_configuration.dylib (1061.0.2) <56174463-22ED-337F-B0D4-94995DCDB9B7> /usr/lib/system/libsystem_configuration.dylib 0x7fff6b229000 - 0x7fff6b22cff7 libsystem_coreservices.dylib (114) <01695913-028E-3AE1-8D4E-2B2769109811> /usr/lib/system/libsystem_coreservices.dylib 0x7fff6b22d000 - 0x7fff6b234fff libsystem_darwin.dylib (1353.11.2) <4CE52C63-87AA-3C6D-899F-8C983E5FC061> /usr/lib/system/libsystem_darwin.dylib 0x7fff6b235000 - 0x7fff6b23cffb libsystem_dnssd.dylib (1096.0.2) <DC7381E8-F09F-3441-8267-9B8F50A0EBA9> /usr/lib/system/libsystem_dnssd.dylib 0x7fff6b23d000 - 0x7fff6b23effb libsystem_featureflags.dylib (17) <DBCA4AA2-CA05-38D5-AB4B-BE0F3E09BB8B> /usr/lib/system/libsystem_featureflags.dylib 0x7fff6b23f000 - 0x7fff6b28cff7 libsystem_info.dylib (538) <9F9D6368-A11E-32F1-9BB5-C153F42EFED8> /usr/lib/system/libsystem_info.dylib 0x7fff6b28d000 - 0x7fff6b2b9fff libsystem_kernel.dylib (6153.11.26) <4CE9D54A-A975-348E-B878-EE74EDFC956B> /usr/lib/system/libsystem_kernel.dylib 0x7fff6b2ba000 - 0x7fff6b301ff7 libsystem_m.dylib (3178) <4F516261-0C0E-3105-AF35-EF39D6347B50> /usr/lib/system/libsystem_m.dylib 0x7fff6b302000 - 0x7fff6b329fff libsystem_malloc.dylib (283) <02925539-3CBA-39EB-BA6B-9A936CFA0BF8> /usr/lib/system/libsystem_malloc.dylib 0x7fff6b32a000 - 0x7fff6b337ff3 libsystem_networkextension.dylib (1095.11.9) <8B5EE189-E3D1-31FD-878F-50286B6E7047> /usr/lib/system/libsystem_networkextension.dylib 0x7fff6b338000 - 0x7fff6b341fff libsystem_notify.dylib (241) <89381127-2A07-3F07-B865-358FACCF9102> /usr/lib/system/libsystem_notify.dylib 0x7fff6b342000 - 0x7fff6b34bfe7 libsystem_platform.dylib (220) <90E508E4-46D8-33FF-8552-DDAA079977A0> /usr/lib/system/libsystem_platform.dylib 0x7fff6b34c000 - 0x7fff6b356fff libsystem_pthread.dylib (416.11.1) <2EA6F95F-F264-30B6-8AF2-24197B5AED84> /usr/lib/system/libsystem_pthread.dylib 0x7fff6b357000 - 0x7fff6b35bffb libsystem_sandbox.dylib (1217.11.16) <51129CBB-BC46-37F1-A1B5-ECFA9530704D> /usr/lib/system/libsystem_sandbox.dylib 0x7fff6b35c000 - 0x7fff6b35efff libsystem_secinit.dylib (62.0.4) <A48D9AF3-75F2-3331-A0C8-0A23771F4AC7> /usr/lib/system/libsystem_secinit.dylib 0x7fff6b35f000 - 0x7fff6b366ffb libsystem_symptoms.dylib (1238.0.2) <08E8CF75-5F77-3475-A48E-A01CBDF09173> /usr/lib/system/libsystem_symptoms.dylib 0x7fff6b367000 - 0x7fff6b37dff2 libsystem_trace.dylib (1147.0.3) <5836645E-9862-326D-AB3B-A19E76BE29B9> /usr/lib/system/libsystem_trace.dylib 0x7fff6b37f000 - 0x7fff6b384ffb libunwind.dylib (35.4) <F5AE1D43-7C5F-3BA2-94D3-E769F82C0F61> /usr/lib/system/libunwind.dylib 0x7fff6b385000 - 0x7fff6b3b9ff6 libxpc.dylib (1738.11.1) <2E9076CD-6C0E-38B6-8403-B2DDCE125FBF> /usr/lib/system/libxpc.dylibExternal Modification Summary: Calls made by other processes targeting this process: task_for_pid: 3 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 20962 thread_create: 80 thread_set_state: 45VM Region Summary:ReadOnly portion of Libraries: Total=571.9M resident=0K(0%) swapped_out_or_unallocated=571.9M(100%)Writable regions: Total=64.7M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=64.7M(100%) VIRTUAL REGIONREGION TYPE SIZE COUNT (non-coalesced)=========== ======= =======Activity Tracing 256K 1Dispatch continuations 8192K 1Kernel Alloc Once 8K 1MALLOC 50.6M 47MALLOC guard page 16K 4SQLite page cache 768K 12STACK GUARD 36K 9Stack 4688K 10Stack Guard 64.0M 2VM_ALLOCATE 4K 1__DATA 17.2M 241__DATA_CONST 242K 12__FONT_DATA 4K 1__LINKEDIT 372.0M 17__OBJC_RO 31.8M 1__OBJC_RW 1764K 2__TEXT 199.9M 234__UNICODE 564K 1mapped file 28.0M 2shared memory 596K 9=========== ======= =======TOTAL 780.2M 608Model: iMac14,1, BootROM 140.0.0.0.0, 4 processors, Quad-Core Intel Core i5, 2.7 GHz, 16 GB, SMC 2.14f24Graphics: kHW_IntelIrisProItem, Intel Iris Pro, spdisplays_builtinMemory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x0000, 0x31364B544631473634485A2D314736443120Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x0000, 0x31364B544631473634485A2D314736443120AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x111), Broadcom BCM43xx 1.0 (7.77.105.1 AirPortDriverBrcmNIC-1429)Bluetooth: Version 7.0.0f8, 3 services, 27 devices, 1 incoming serial portsNetwork Service: Wi-Fi, AirPort, en1Serial ATA Device: Samsung SSD 860 EVO 1TB, 1 TBUSB Device: USB 3.0 BusUSB Device: USB to ATA/ATAPI BridgeUSB Device: BRCM20702 HubUSB Device: Bluetooth USB Host ControllerUSB Device: FaceTime HD Camera (Built-in)USB Device: Apple USB SuperDriveThunderbolt Bus: iMac, Apple Inc., 23.10
Posted
by JacobMcD.
Last updated
.