Flash3001/Xamarin.Swift

App Terminates on Startup only by Loading the Library

Noires opened this issue · 20 comments

Hey,

iam working with the Swift Version (4.2), the XCode Version (10.1) and targeting IOS 12.1.
Iam trying to bind a Colorpicker which was done with Swift for Xamarin IOS and after a little
bit of struggling due to the removal of the unnecessary architectures like i386, it started compiling
without any auto-linking errors. The issue is now that the app crashes on startup, just by referencing the library. Any idea what could be the reason for this?

In the binding library i set force load and smart link to true, if that might have some influence.

Greetings,
Noires

Hey @Noires, have you added the reference to all the required SwiftSupport Nuget packages?

We can check if something is missing or the error is something by going to Settings -> Privacy -> Analytics -> Analytics Data.

If you are running on a emulator open the Console app on your macOS on the folder User Reports.

Hey @Flash3001 ,

It says "Termination Reason: DYLD, [0x2] Wrong architecture". Is it because i just have arm64 and x86_64 modules? Else i had other problems though and couldnt even compile and start the application.

Else it says:

Dyld Error Message:
 Library not loaded: @rpath/libswiftCore.dylib
 Referenced from: /Users/USER/Library/Developer/CoreSimulator/Devices/FD729E4E-A2DD-4801-A9A6-4FAAF5B63498/data/Containers/Bundle/Application/4C901B21-80AE-4C88-A5E3-6CC90B60696C/App.iPhone.app/Frameworks/ColorPickerIosFramework.framework/ColorPickerIosFramework
 Reason: no suitable image found.  Did find:
   /Users/xamarin/Library/Developer/CoreSimulator/Devices/FD729E4E-A2DD-4801-A9A6-4FAAF5B63498/data/Containers/Bundle/Application/4C901B21-80AE-4C88-A5E3-6CC90B60696C/App.iPhone.app/Frameworks/libswiftCore.dylib: no matching architecture in universal wrapper
   /Users/xamarin/Library/Developer/CoreSimulator/Devices/FD729E4E-A2DD-4801-A9A6-4FAAF5B63498/data/Containers/Bundle/Application/4C901B21-80AE-4C88-A5E3-6CC90B60696C/App.iPhone.app/Frameworks/libswiftCore.dylib: stat() failed with errno=45
   /Users/xamarin/Library/Developer/CoreSimulator/Devices/FD729E4E-A2DD-4801-A9A6-4FAAF5B63498/data/Containers/Bundle/Application/4C90

Though i got all of the latest Swift4 Packages added.

Hey @Noires I've never seen this issue before. If you like you can send the binding to me and I can take a look at it to see what I find.

I tried it again with https://github.com/NordicSemiconductor/IOS-Pods-DFU-Library

Step 1. Disable Bitcode.
Step 2. Build it on Release-Device and Release-Simulator with Swift 4.2
Step 3. Used Lip to create a fat library and copied the architecture files from simulator to the fat library.
Step 4. Imported the library into VS.
Step 5. Added one class to the bindings to test it out.
Step 6. Debugging on IOS-Simulator with the following error on startup again:

Process:               Binding.TestApp.iPhone [14486]
Path:                  /Users/USER/Library/Developer/CoreSimulator/Devices/FD729E4E-A2DD-4801-A9A6-4FAAF5B63498/data/Containers/Bundle/Application/74D7F933-AF51-49E4-8BBF-5A33E61E6FEA/Binding.TestApp.iPhone.app/Binding.TestApp.iPhone
Identifier:            Binding.TestApp.iPhone
Version:               1.0 (1.0)
Code Type:             X86-64 (Native)
Parent Process:        launchd_sim [95498]
Responsible:           Binding.TestApp.iPhone [14486]
User ID:               502

Date/Time:             2019-03-19 09:52:18.696 +0100
OS Version:            Mac OS X 10.13.6 (17G5019)
Report Version:        12
Anonymous UUID:        5EF755FD-6788-81D8-E364-88EF0D3D2167


Time Awake Since Boot: 4200000 seconds

System Integrity Protection: enabled

Crashed Thread:        0

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Reason:    DYLD, [0x2] Wrong architecture

Application Specific Information:
dyld: launch, loading dependent libraries
DYLD_FALLBACK_LIBRARY_PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib
DYLD_ROOT_PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot
DYLD_FALLBACK_FRAMEWORK_PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks

Dyld Error Message:
  Library not loaded: @rpath/libswiftCore.dylib
  Referenced from: /Users/USER/Library/Developer/CoreSimulator/Devices/FD729E4E-A2DD-4801-A9A6-4FAAF5B63498/data/Containers/Bundle/Application/74D7F933-AF51-49E4-8BBF-5A33E61E6FEA/Binding.TestApp.iPhone.app/Frameworks/iOSDFULibrary.framework/iOSDFULibrary
  Reason: no suitable image found.  Did find:
	/Users/xamarin/Library/Developer/CoreSimulator/Devices/FD729E4E-A2DD-4801-A9A6-4FAAF5B63498/data/Containers/Bundle/Application/74D7F933-AF51-49E4-8BBF-5A33E61E6FEA/Binding.TestApp.iPhone.app/Frameworks/libswiftCore.dylib: no matching architecture in universal wrapper
	/Users/xamarin/Library/Developer/CoreSimulator/Devices/FD729E4E-A2DD-4801-A9A6-4FAAF5B63498/data/Containers/Bundle/Application/74D7F933-AF51-49E4-8BBF-5A33E61E6FEA/Binding.TestApp.iPhone.app/Frameworks/libswiftCore.dylib: stat() failed with errno=45
	/Users/xamarin/Library/Developer/CoreSimulator/Devices/FD729E4E-A2DD-4801-A9A6-4FAAF5B63498/data/Containers/Bundle/Application/74D7F933-AF51-49E4-8BBF-


I just found issue #17 . Is it still the case that the packages should be in the packages folder? Not sure if that is causing an issue since i changed to the new handling of the nuget packages.

Yeah that was basically causing the issue i had, since my Nuget Packages where in my user folder and not in the required folder. Think there is atleast an information needed for that case.

Hey @Noires, are you using PackageReference? Please see this issue: Flash3001/iOSCharts.Xamarin#47 (comment). Version 4.0.0.2 should fix it.

If not: the package can be anywhere, as long as the path set on Import is valid. If you remove the Condition check on that the build will fail if the path is unreachable. That condition is added automatically by Nuget, so if the path to the .targets file is invalid it just ignores and a bunch of issues arises.

osca commented

I have the same issue after updating from:

Xamarin.Swift4 4.0.0
Xamarin.Swift4.{packages} 4.1.0

to the latest version 4.0.0.2 and 4.2.1.1.
I am also getting a EXC_CRASH before the Debugger from VS can connect to the application.
I can provide more information the next days if needed.

Hey @osca please send me your crash report and if possible a build log. Is that also Simulator? #25 reported an issue on Device. VS4M or VS ?

osca commented

I'm using VS4M and testing on an iPhone X. Hope that helps.

Build log

Building SoestTourism.iOS (Debug|iPhone)
Build started 3/27/2019 1:52:48 PM.
__________________________________________________
Project "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/SoestTourism.iOS.csproj" (Build target(s)):

Target _BeforeCoreCompileInterfaceDefinitions:
  Skipping target "_BeforeCoreCompileInterfaceDefinitions" because all output files are up-to-date with respect to the input files.
Target _CoreCompileInterfaceDefinitions:
  Skipping target "_CoreCompileInterfaceDefinitions" because all output files are up-to-date with respect to the input files.
Target _BeforeCoreCompileImageAssets:
  Skipping target "_BeforeCoreCompileImageAssets" because all output files are up-to-date with respect to the input files.
Target _CoreCompileImageAssets:
  Skipping target "_CoreCompileImageAssets" because all output files are up-to-date with respect to the input files.
Target _CoreCompileColladaAssets:
  Skipping target "_CoreCompileColladaAssets" because it has no inputs.
Target _BeforeCoreCompileSceneKitAssets:
  Skipping target "_BeforeCoreCompileSceneKitAssets" because it has no inputs.
Target _BeforeCoreCompileSceneKitAssets:
  Skipping target "_BeforeCoreCompileSceneKitAssets" because it has no inputs.
Target _BeforeCoreCompileSceneKitAssets:
  Skipping target "_BeforeCoreCompileSceneKitAssets" because it has no inputs.
Target _CoreCompileSceneKitAssets:
  Skipping target "_CoreCompileSceneKitAssets" because it has no inputs.
Target _BeforeCompileTextureAtlases:
  Skipping target "_BeforeCompileTextureAtlases" because it has no inputs.
Target _BeforeCompileTextureAtlases:
  Skipping target "_BeforeCompileTextureAtlases" because it has no inputs.
Target _BeforeCompileTextureAtlases:
  Skipping target "_BeforeCompileTextureAtlases" because it has no inputs.
Target _CoreCompileTextureAtlases:
  Skipping target "_CoreCompileTextureAtlases" because it has no inputs.
Target _BeforeCompileCoreMLModels:
  Skipping target "_BeforeCompileCoreMLModels" because all output files are up-to-date with respect to the input files.
Target _CoreCompileCoreMLModels:
  Skipping target "_CoreCompileCoreMLModels" because all output files are up-to-date with respect to the input files.
Target _CoreOptimizePngImages:
  Skipping target "_CoreOptimizePngImages" because all output files are up-to-date with respect to the input files.
Target _CoreOptimizePropertyLists:
  Skipping target "_CoreOptimizePropertyLists" because it has no inputs.
Target _CoreOptimizeLocalizationFiles:
  Skipping target "_CoreOptimizeLocalizationFiles" because all output files are up-to-date with respect to the input files.
Target _CoreOptimizeLocalizationFiles:
  Skipping target "_CoreOptimizeLocalizationFiles" because all output files are up-to-date with respect to the input files.
Target _GetProjectReferenceTargetFrameworkProperties:
    __________________________________________________
    Project "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/SoestTourism.iOS.csproj" is building "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism/SoestTourism.csproj" (GetTargetFrameworks target(s)):

Target ResolveProjectReferences:
    __________________________________________________
    Project "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/SoestTourism.iOS.csproj" is building "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism/SoestTourism.csproj" (GetTargetPath target(s)):

    Target BclBuildValidateNugetPackageReferences:
        /Users/osca/.nuget/packages/microsoft.bcl.build/1.0.21/build/Microsoft.Bcl.Build.targets(243,5): warning : All projects referencing SoestTourism.csproj must install nuget package Microsoft.Bcl.Build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317569.
    Done building target "BclBuildValidateNugetPackageReferences" in project "SoestTourism.csproj".

    Done building project "SoestTourism.csproj".
    __________________________________________________
    Project "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/SoestTourism.iOS.csproj" is building "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism/SoestTourism.csproj" (GetNativeManifest target(s)):

Target _UnpackLibraryResources:
        Up to date: packages.config
        Up to date: packages.config
        Up to date: Frameworks/libswiftAVFoundation.dylib
        Up to date: SwiftFrameworksSimulator/libswiftAVFoundation.dylib
        Up to date: Frameworks/libswiftCore.dylib
        Up to date: SwiftFrameworksSimulator/libswiftCore.dylib
        Up to date: SwiftFrameworksSimulator/libswiftCoreAudio.dylib
        Up to date: Frameworks/libswiftCoreAudio.dylib
        Up to date: SwiftFrameworksSimulator/libswiftCoreData.dylib
        Up to date: Frameworks/libswiftCoreData.dylib
        Up to date: Frameworks/libswiftCoreFoundation.dylib
        Up to date: SwiftFrameworksSimulator/libswiftCoreFoundation.dylib
        Up to date: Frameworks/libswiftCoreGraphics.dylib
        Up to date: SwiftFrameworksSimulator/libswiftCoreGraphics.dylib
        Up to date: Frameworks/libswiftCoreImage.dylib
        Up to date: SwiftFrameworksSimulator/libswiftCoreImage.dylib
        Up to date: Frameworks/libswiftCoreLocation.dylib
        Up to date: SwiftFrameworksSimulator/libswiftCoreLocation.dylib
        Up to date: Frameworks/libswiftCoreMedia.dylib
        Up to date: SwiftFrameworksSimulator/libswiftCoreMedia.dylib
        Up to date: Frameworks/libswiftDarwin.dylib
        Up to date: SwiftFrameworksSimulator/libswiftDarwin.dylib
        Up to date: Frameworks/libswiftDispatch.dylib
        Up to date: SwiftFrameworksSimulator/libswiftDispatch.dylib
        Up to date: Frameworks/libswiftFoundation.dylib
        Up to date: SwiftFrameworksSimulator/libswiftFoundation.dylib
        Up to date: Frameworks/libswiftMapKit.dylib
        Up to date: SwiftFrameworksSimulator/libswiftMapKit.dylib
        Up to date: Frameworks/libswiftMetal.dylib
        Up to date: SwiftFrameworksSimulator/libswiftMetal.dylib
        Up to date: Frameworks/libswiftObjectiveC.dylib
        Up to date: SwiftFrameworksSimulator/libswiftObjectiveC.dylib
        Up to date: Frameworks/libswiftos.dylib
        Up to date: SwiftFrameworksSimulator/libswiftos.dylib
        Up to date: Frameworks/libswiftQuartzCore.dylib
        Up to date: SwiftFrameworksSimulator/libswiftQuartzCore.dylib
        Up to date: Frameworks/libswiftsimd.dylib
        Up to date: SwiftFrameworksSimulator/libswiftsimd.dylib
        Up to date: Frameworks/libswiftUIKit.dylib
        Up to date: SwiftFrameworksSimulator/libswiftUIKit.dylib
        Up to date: packages.config
Target GenerateTargetFrameworkMonikerAttribute:
  Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up-to-date with respect to the input files.
Target CoreCompile:
    /Library/Frameworks/Mono.framework/Versions/5.16.1/lib/mono/msbuild/15.0/bin/Roslyn/csc.exe /noconfig /nowarn:2008 /nostdlib+ /errorreport:prompt /warn:4 /define:__IOS__;__MOBILE__;__UNIFIED__;DEBUG /errorendlocation /preferreduilang:en-US /reference:/Users/osca/.nuget/packages/acr.support/2.0.2/lib/Xamarin.iOS10/Acr.Support.iOS.dll /reference:/Users/osca/.nuget/packages/acr.userdialogs/7.0.1/lib/xamarinios10/Acr.UserDialogs.dll /reference:/Users/osca/.nuget/packages/btprogresshud/1.2.0.6/lib/Xamarin.iOS10/BTProgressHUD.dll /reference:/Users/osca/.nuget/packages/xamarin.ffimageloading/2.3.6/lib/Xamarin.iOS10/FFImageLoading.dll /reference:/Users/osca/.nuget/packages/xamarin.ffimageloading/2.3.6/lib/Xamarin.iOS10/FFImageLoading.Platform.dll /reference:/Users/osca/.nuget/packages/microsoft.appcenter.analytics/1.5.0/lib/Xamarin.iOS10/Microsoft.AppCenter.Analytics.dll /reference:/Users/osca/.nuget/packages/microsoft.appcenter.analytics/1.5.0/lib/Xamarin.iOS10/Microsoft.AppCenter.Analytics.iOS.Bindings.dll /reference:/Users/osca/.nuget/packages/microsoft.appcenter.crashes/1.5.0/lib/Xamarin.iOS10/Microsoft.AppCenter.Crashes.dll /reference:/Users/osca/.nuget/packages/microsoft.appcenter.crashes/1.5.0/lib/Xamarin.iOS10/Microsoft.AppCenter.Crashes.iOS.Bindings.dll /reference:/Users/osca/.nuget/packages/microsoft.appcenter/1.5.0/lib/Xamarin.iOS10/Microsoft.AppCenter.dll /reference:/Users/osca/.nuget/packages/microsoft.appcenter/1.5.0/lib/Xamarin.iOS10/Microsoft.AppCenter.iOS.Bindings.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/mscorlib.dll /reference:/Users/osca/.nuget/packages/mvvmcross/6.2.3/lib/xamarinios10/MvvmCross.dll /reference:/Users/osca/.nuget/packages/mvvmcross.plugin.color/6.2.3/lib/xamarinios10/MvvmCross.Plugin.Color.dll /reference:/Users/osca/.nuget/packages/mvvmcross.plugin.file/6.2.3/lib/xamarinios10/MvvmCross.Plugin.File.dll /reference:/Users/osca/.nuget/packages/mvvmcross.plugin.location/6.2.3/lib/xamarinios10/MvvmCross.Plugin.Location.dll /reference:/Users/osca/.nuget/packages/mvvmcross.plugin.messenger/6.2.3/lib/netstandard2.0/MvvmCross.Plugin.Messenger.dll /reference:/Users/osca/.nuget/packages/mvvmcross.plugin.resxlocalization/6.2.3/lib/netstandard2.0/MvvmCross.Plugin.ResxLocalization.dll /reference:/Users/osca/.nuget/packages/mvvmcross.plugin.visibility/6.2.3/lib/xamarinios10/MvvmCross.Plugin.Visibility.dll /reference:/Users/osca/.nuget/packages/naxam.mapbox.ios/3.7.6/lib/Xamarin.iOS10/Naxam.Mapbox.iOS.dll /reference:/Users/osca/.nuget/packages/naxam.mapboxnavigation.ios/0.16.0/lib/xamarinios10/Naxam.MapboxCoreNavigation.iOS.dll /reference:/Users/osca/.nuget/packages/naxam.mapboxnavigation.ios/0.16.0/lib/xamarinios10/Naxam.MapboxDirections.iOS.dll /reference:/Users/osca/.nuget/packages/naxam.mapboxnavigation.ios/0.16.0/lib/xamarinios10/Naxam.MapboxNavigation.iOS.dll /reference:/Users/osca/.nuget/packages/naxam.mapboxnavigation.ios/0.16.0/lib/xamarinios10/Naxam.MapboxSpeech.iOS.dll /reference:/Users/osca/.nuget/packages/newtonsoft.json/11.0.1/lib/netstandard2.0/Newtonsoft.Json.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/OpenTK-1.0.dll /reference:/Users/osca/.nuget/packages/xam.plugin.deviceinfo/3.1.0/lib/Xamarin.iOS10/Plugin.DeviceInfo.Abstractions.dll /reference:/Users/osca/.nuget/packages/xam.plugin.deviceinfo/3.1.0/lib/Xamarin.iOS10/Plugin.DeviceInfo.dll /reference:/Users/osca/.nuget/packages/plugin.mediamanager/0.4.5/lib/Xamarin.iOS10/Plugin.MediaManager.Abstractions.dll /reference:/Users/osca/.nuget/packages/plugin.mediamanager/0.4.5/lib/Xamarin.iOS10/Plugin.MediaManager.dll /reference:/Users/osca/.nuget/packages/plugin.permissions/2.1.0/lib/Xamarin.iOS10/Plugin.Permissions.Abstractions.dll /reference:/Users/osca/.nuget/packages/plugin.permissions/2.1.0/lib/Xamarin.iOS10/Plugin.Permissions.dll /reference:/Users/osca/.nuget/packages/ricardo.sdwebimage.ios/4.2.2.1/lib/Xamarin.iOS10/Ricardo.SDWebImage.iOS.dll /reference:/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism/bin/Debug/netstandard2.0/SoestTourism.dll /reference:/Users/osca/.nuget/packages/splat/7.0.1/lib/xamarinios10/Splat.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/System.Core.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/System.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/System.Net.Http.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/System.Runtime.Serialization.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/System.Xml.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/System.Xml.Linq.dll /reference:/Users/osca/.nuget/packages/webp.touch/1.0.8/lib/Xamarin.iOS10/WebP.Touch.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Xamarin.iOS.dll /reference:/Users/osca/.nuget/packages/xamarin.rangeslider/1.0.1/lib/Xamarin.iOS10/Xamarin.RangeSlider.Common.dll /reference:/Users/osca/.nuget/packages/xamarin.rangeslider/1.0.1/lib/Xamarin.iOS10/Xamarin.RangeSlider.iOS.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.avfoundation/4.1.0/lib/xamarinios10/Xamarin.Swift4.AVFoundation.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.core/4.1.0/lib/xamarinios10/Xamarin.Swift4.Core.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.coreaudio/4.1.0/lib/xamarinios10/Xamarin.Swift4.CoreAudio.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.coredata/4.1.0/lib/xamarinios10/Xamarin.Swift4.CoreData.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.corefoundation/4.1.0/lib/xamarinios10/Xamarin.Swift4.CoreFoundation.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.coregraphics/4.1.0/lib/xamarinios10/Xamarin.Swift4.CoreGraphics.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.coreimage/4.1.0/lib/xamarinios10/Xamarin.Swift4.CoreImage.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.corelocation/4.1.0/lib/xamarinios10/Xamarin.Swift4.CoreLocation.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.coremedia/4.1.0/lib/xamarinios10/Xamarin.Swift4.CoreMedia.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.darwin/4.1.0/lib/xamarinios10/Xamarin.Swift4.Darwin.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.dispatch/4.1.0/lib/xamarinios10/Xamarin.Swift4.Dispatch.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4/4.0.0/lib/xamarinios10/Xamarin.Swift4.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.foundation/4.1.0/lib/xamarinios10/Xamarin.Swift4.Foundation.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.mapkit/4.1.0/lib/xamarinios10/Xamarin.Swift4.MapKit.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.metal/4.1.0/lib/xamarinios10/Xamarin.Swift4.Metal.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.objectivec/4.1.0/lib/xamarinios10/Xamarin.Swift4.ObjectiveC.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.os/4.1.0/lib/xamarinios10/Xamarin.Swift4.OS.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.quartzcore/4.1.0/lib/xamarinios10/Xamarin.Swift4.QuartzCore.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.simd/4.1.0/lib/xamarinios10/Xamarin.Swift4.SIMD.dll /reference:/Users/osca/.nuget/packages/xamarin.swift4.uikit/4.1.0/lib/xamarinios10/Xamarin.Swift4.UIKit.dll /reference:/Users/osca/.nuget/packages/xbindings.awscore.ios/2.6.8/lib/Xamarin.iOS10/Xbindings.AWSCore.iOS.dll /reference:/Users/osca/.nuget/packages/xbindings.awspolly.ios/2.6.8/lib/Xamarin.iOS10/Xbindings.AWSPolly.iOS.dll /reference:/Users/osca/.nuget/packages/xbindings.mapboxmobileevents.ios/0.11.0/lib/Xamarin.iOS10/Xbindings.MapboxMobileEvents.iOS.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/Microsoft.Win32.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/Microsoft.Win32.Registry.AccessControl.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/Microsoft.Win32.Registry.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/netstandard.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.AppContext.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Collections.Concurrent.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Collections.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Collections.NonGeneric.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Collections.Specialized.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ComponentModel.Annotations.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ComponentModel.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ComponentModel.EventBasedAsync.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ComponentModel.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ComponentModel.TypeConverter.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Console.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Data.Common.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Data.SqlClient.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.Contracts.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.Debug.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.FileVersionInfo.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.Process.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.StackTrace.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.TextWriterTraceListener.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.Tools.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.TraceEvent.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.TraceSource.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Diagnostics.Tracing.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Drawing.Common.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Drawing.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Dynamic.Runtime.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Globalization.Calendars.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Globalization.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Globalization.Extensions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.Compression.ZipFile.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.FileSystem.AccessControl.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.FileSystem.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.FileSystem.DriveInfo.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.FileSystem.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.FileSystem.Watcher.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.IsolatedStorage.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.MemoryMappedFiles.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.Pipes.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.IO.UnmanagedMemoryStream.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Linq.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Linq.Expressions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Linq.Parallel.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Linq.Queryable.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.AuthenticationManager.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Cache.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.HttpListener.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Mail.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.NameResolution.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.NetworkInformation.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Ping.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Requests.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Security.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.ServicePoint.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Sockets.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.Utilities.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.WebHeaderCollection.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.WebSockets.Client.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Net.WebSockets.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ObjectModel.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.DispatchProxy.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.Emit.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.Emit.ILGeneration.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.Emit.Lightweight.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.Extensions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Reflection.TypeExtensions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Resources.Reader.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Resources.ReaderWriter.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Resources.ResourceManager.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Resources.Writer.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.CompilerServices.VisualC.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Extensions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Handles.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.InteropServices.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.InteropServices.RuntimeInformation.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.InteropServices.WindowsRuntime.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Loader.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Numerics.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Serialization.Formatters.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Serialization.Json.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Serialization.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Runtime.Serialization.Xml.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.AccessControl.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Claims.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Algorithms.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Cng.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Csp.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.DeriveBytes.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Encoding.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Encryption.Aes.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Encryption.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Encryption.ECDiffieHellman.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Encryption.ECDsa.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Hashing.Algorithms.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Hashing.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.OpenSsl.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Pkcs.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.ProtectedData.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.RandomNumberGenerator.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.RSA.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Cryptography.X509Certificates.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Principal.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.Principal.Windows.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Security.SecureString.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ServiceModel.Duplex.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ServiceModel.Http.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ServiceModel.NetTcp.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ServiceModel.Primitives.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ServiceModel.Security.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ServiceProcess.ServiceController.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Text.Encoding.CodePages.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Text.Encoding.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Text.Encoding.Extensions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Text.RegularExpressions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.AccessControl.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.Overlapped.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.Tasks.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.Tasks.Extensions.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.Tasks.Parallel.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.Thread.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.ThreadPool.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Threading.Timer.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.ValueTuple.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.ReaderWriter.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.XDocument.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.XmlDocument.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.XmlSerializer.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.XPath.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.XPath.XDocument.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.XPath.XmlDocument.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS/Facades/System.Xml.Xsl.Primitives.dll /debug+ /debug:portable /optimize- /out:obj/iPhone/Debug/SoestTourism.iOS.exe /target:exe /utf8output Main.cs AppDelegate.cs Services/TimerWrapper.cs Setup.cs ViewController.cs ViewController.designer.cs Views/TutorialView.cs Views/TutorialView.designer.cs LinkerPleaseInclude.cs Services/SensorService.cs Utils/ScreenUtils.cs Views/HomeView.cs Views/HomeView.designer.cs Views/FilterView.cs Views/FilterView.designer.cs Views/PoiDetailView.cs Views/PoiDetailView.designer.cs Views/MainView.cs Views/MainView.designer.cs Views/ArView.cs Views/ArView.designer.cs Views/PoiTableViewCell.cs Views/PoiTableViewCell.designer.cs Helpers/PoiTableViewSource.cs Helpers/HeaderLabel.cs Helpers/TourTableViewSource.cs Views/TourView.cs Views/TourView.designer.cs Views/TourTableViewCell.cs Views/TourTableViewCell.designer.cs Views/TourDetailView.cs Views/TourDetailView.designer.cs Views/TourRouteView.cs Views/TourRouteView.designer.cs Services/DeviceAudioService.cs Views/MapView.cs Views/MapView.designer.cs Utils/MapUtils.cs Helpers/PoiElement.cs Utils/IOSConstants.cs Views/PhotoView.cs Views/PhotoView.designer.cs Views/ImprintView.cs Views/ImprintView.designer.cs Utils/AnimatedImageView.cs Converters/PoiDescriptionHtmlConverter.cs Services/MapboxServicePlatform.cs "/var/folders/v4/zl_ylc_s0kx59sfy1mqn6h800000gn/T/Xamarin.iOS,Version=v1.0.AssemblyAttributes.cs"
    Services/DeviceAudioService.cs(62,21,62,28): warning CS0108: 'DeviceAudioService.Dispose()' hides inherited member 'NSObject.Dispose()'. Use the new keyword if hiding was intended.
    Setup.cs(50,13,50,79): warning CS0618: 'Mvx.ConstructAndRegisterSingleton<TInterface, TType>()' is obsolete: 'Use Mvx.IoCProvider instead'
    Helpers/PoiElement.cs(135,13,135,35): warning CS0618: 'Mvx.Resolve<TService>()' is obsolete: 'Use Mvx.IoCProvider instead'
    Services/DeviceAudioService.cs(20,47,20,64): warning CS0067: The event 'DeviceAudioService.ErrorEventHandler' is never used
Done building target "CoreCompile" in project "SoestTourism.iOS.csproj".
Target _CopyFilesMarkedCopyLocal:
    Touching "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/obj/iPhone/Debug/SoestTourism.iOS.csproj.CopyComplete".
Target GetCopyToOutputDirectoryItems:
    __________________________________________________
    Project "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/SoestTourism.iOS.csproj" is building "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism/SoestTourism.csproj" (GetCopyToOutputDirectoryItems target(s)):

Target CopyFilesToOutputDirectory:
    Copying file from "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/obj/iPhone/Debug/SoestTourism.iOS.exe" to "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/SoestTourism.iOS.exe".
    SoestTourism.iOS -> /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/SoestTourism.iOS.exe
    Copying file from "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/obj/iPhone/Debug/SoestTourism.iOS.pdb" to "/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/SoestTourism.iOS.pdb".
Target _DetectSigningIdentity:
    Detected signing identity:
      Code Signing Key: "iPhone Developer: Dennis Wiosna (8R3XRD9VRU)" (DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58)
      Provisioning Profile: "VS: io.spotar.SoestTourism.iOS Development" (0288b2a4-0c40-404c-a701-215e4070c1e2)
      Bundle Id: io.spotar.SoestTourism.iOS
      App Id: EEZJ3JXQG6.io.spotar.SoestTourism.iOS
Target _CopyResourcesToBundle:
  Skipping target "_CopyResourcesToBundle" because all output files are up-to-date with respect to the input files.
Target _DetectDebugNetworkConfiguration:
      DebugIPAddresses: 
Target _CompileAppManifest:
  Skipping target "_CompileAppManifest" because all output files are up-to-date with respect to the input files.
Target _ParseExtraMtouchArgs:
      NoSymbolStrip Output: False
      NoDSymUtil Output: false
Target _CompileToNative:
    /Library/Frameworks/Xamarin.iOS.framework/Versions/Current/bin/mtouch @/Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/response-file.rsp 
    Touching "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/mtouch.stamp".
Target _CompileITunesMetadata:
  Skipping target "_CompileITunesMetadata" because all output files are up-to-date with respect to the input files.
Target _CopyITunesArtwork:
  Skipping target "_CopyITunesArtwork" because all output files are up-to-date with respect to the input files.
Target _CopyITunesArtwork:
  Skipping target "_CopyITunesArtwork" because all output files are up-to-date with respect to the input files.
Target _CopyAppExtensionsToBundle:
    Directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/PlugIns/_CodeSignature" doesn't exist. Skipping.
    Directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../.dSYM" doesn't exist. Skipping.
Target _GenerateAppExtensionDebugSymbols:
    Directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../.dSYM" doesn't exist. Skipping.
Target _GenerateFrameworkDebugSymbols:
    Removing directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../AWSCore.framework.dSYM".
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil -t 4 -z -o bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../AWSCore.framework.dSYM bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/AWSCore.framework/AWSCore 
    warning: no debug symbols in executable (-arch arm64)
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -x bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/AWSCore.framework/AWSCore 
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: changes being made to the file will invalidate the code signature in: /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/AWSCore.framework/AWSCore
Target _GenerateFrameworkDebugSymbols:
    Removing directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../AWSPolly.framework.dSYM".
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil -t 4 -z -o bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../AWSPolly.framework.dSYM bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/AWSPolly.framework/AWSPolly 
    warning: no debug symbols in executable (-arch arm64)
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -x bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/AWSPolly.framework/AWSPolly 
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: changes being made to the file will invalidate the code signature in: /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/AWSPolly.framework/AWSPolly
Target _GenerateFrameworkDebugSymbols:
    Removing directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../Mapbox.framework.dSYM".
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil -t 4 -z -o bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../Mapbox.framework.dSYM bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Mapbox.framework/Mapbox 
    warning: no debug symbols in executable (-arch arm64)
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -x bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Mapbox.framework/Mapbox 
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: changes being made to the file will invalidate the code signature in: /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Mapbox.framework/Mapbox
Target _GenerateFrameworkDebugSymbols:
    Removing directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../MapboxCoreNavigation.framework.dSYM".
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil -t 4 -z -o bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../MapboxCoreNavigation.framework.dSYM bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxCoreNavigation.framework/MapboxCoreNavigation 
    warning: no debug symbols in executable (-arch arm64)
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -x bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxCoreNavigation.framework/MapboxCoreNavigation 
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: changes being made to the file will invalidate the code signature in: /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxCoreNavigation.framework/MapboxCoreNavigation
Target _GenerateFrameworkDebugSymbols:
    Removing directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../MapboxDirections.framework.dSYM".
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil -t 4 -z -o bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../MapboxDirections.framework.dSYM bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxDirections.framework/MapboxDirections 
    warning: no debug symbols in executable (-arch arm64)
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -x bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxDirections.framework/MapboxDirections 
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: changes being made to the file will invalidate the code signature in: /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxDirections.framework/MapboxDirections
Target _GenerateFrameworkDebugSymbols:
    Removing directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../MapboxMobileEvents.framework.dSYM".
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil -t 4 -z -o bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../MapboxMobileEvents.framework.dSYM bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxMobileEvents.framework/MapboxMobileEvents 
    warning: no debug symbols in executable (-arch arm64)
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -x bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxMobileEvents.framework/MapboxMobileEvents 
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: changes being made to the file will invalidate the code signature in: /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxMobileEvents.framework/MapboxMobileEvents
Target _GenerateFrameworkDebugSymbols:
    Removing directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../MapboxNavigation.framework.dSYM".
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil -t 4 -z -o bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../MapboxNavigation.framework.dSYM bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxNavigation.framework/MapboxNavigation 
    warning: no debug symbols in executable (-arch arm64)
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -x bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxNavigation.framework/MapboxNavigation 
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: changes being made to the file will invalidate the code signature in: /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxNavigation.framework/MapboxNavigation
Target _GenerateFrameworkDebugSymbols:
    Removing directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../MapboxSpeech.framework.dSYM".
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil -t 4 -z -o bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../MapboxSpeech.framework.dSYM bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxSpeech.framework/MapboxSpeech 
    warning: no debug symbols in executable (-arch arm64)
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -x bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxSpeech.framework/MapboxSpeech 
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: changes being made to the file will invalidate the code signature in: /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxSpeech.framework/MapboxSpeech
Target _GenerateFrameworkDebugSymbols:
    Removing directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../Polyline.framework.dSYM".
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil -t 4 -z -o bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../Polyline.framework.dSYM bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Polyline.framework/Polyline 
    warning: no debug symbols in executable (-arch arm64)
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -x bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Polyline.framework/Polyline 
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: changes being made to the file will invalidate the code signature in: /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Polyline.framework/Polyline
Target _GenerateFrameworkDebugSymbols:
    Removing directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../SDWebImage.framework.dSYM".
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil -t 4 -z -o bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../SDWebImage.framework.dSYM bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/SDWebImage.framework/SDWebImage 
    warning: no debug symbols in executable (-arch arm64)
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -x bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/SDWebImage.framework/SDWebImage 
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: changes being made to the file will invalidate the code signature in: /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/SDWebImage.framework/SDWebImage
Target _GenerateFrameworkDebugSymbols:
    Removing directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../Solar.framework.dSYM".
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil -t 4 -z -o bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../Solar.framework.dSYM bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Solar.framework/Solar 
    warning: no debug symbols in executable (-arch arm64)
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -x bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Solar.framework/Solar 
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: changes being made to the file will invalidate the code signature in: /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Solar.framework/Solar
Target _GenerateFrameworkDebugSymbols:
    Removing directory "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../Turf.framework.dSYM".
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil -t 4 -z -o bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/../Turf.framework.dSYM bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Turf.framework/Turf 
    warning: no debug symbols in executable (-arch arm64)
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -S -x bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Turf.framework/Turf 
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip: changes being made to the file will invalidate the code signature in: /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Turf.framework/Turf
Target _GenerateDebugSymbols:
  Skipping target "_GenerateDebugSymbols" because all output files are up-to-date with respect to the input files.
Target _CodesignFrameworks:
    Tool /usr/bin/codesign execution started with arguments: -v --force --sign DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58 --timestamp=none /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/AWSCore.framework/AWSCore
    Touching "obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/codesign/AWSCore".
Target _CodesignFrameworks:
    Tool /usr/bin/codesign execution started with arguments: -v --force --sign DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58 --timestamp=none /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/AWSPolly.framework/AWSPolly
    Touching "obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/codesign/AWSPolly".
Target _CodesignFrameworks:
    Tool /usr/bin/codesign execution started with arguments: -v --force --sign DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58 --timestamp=none /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Mapbox.framework/Mapbox
    Touching "obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/codesign/Mapbox".
Target _CodesignFrameworks:
    Tool /usr/bin/codesign execution started with arguments: -v --force --sign DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58 --timestamp=none /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxCoreNavigation.framework/MapboxCoreNavigation
    Touching "obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/codesign/MapboxCoreNavigation".
Target _CodesignFrameworks:
    Tool /usr/bin/codesign execution started with arguments: -v --force --sign DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58 --timestamp=none /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxDirections.framework/MapboxDirections
    Touching "obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/codesign/MapboxDirections".
Target _CodesignFrameworks:
    Tool /usr/bin/codesign execution started with arguments: -v --force --sign DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58 --timestamp=none /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxMobileEvents.framework/MapboxMobileEvents
    Touching "obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/codesign/MapboxMobileEvents".
Target _CodesignFrameworks:
    Tool /usr/bin/codesign execution started with arguments: -v --force --sign DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58 --timestamp=none /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxNavigation.framework/MapboxNavigation
    Touching "obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/codesign/MapboxNavigation".
Target _CodesignFrameworks:
    Tool /usr/bin/codesign execution started with arguments: -v --force --sign DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58 --timestamp=none /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/MapboxSpeech.framework/MapboxSpeech
    Touching "obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/codesign/MapboxSpeech".
Target _CodesignFrameworks:
    Tool /usr/bin/codesign execution started with arguments: -v --force --sign DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58 --timestamp=none /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Polyline.framework/Polyline
    Touching "obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/codesign/Polyline".
Target _CodesignFrameworks:
    Tool /usr/bin/codesign execution started with arguments: -v --force --sign DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58 --timestamp=none /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/SDWebImage.framework/SDWebImage
    Touching "obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/codesign/SDWebImage".
Target _CodesignFrameworks:
    Tool /usr/bin/codesign execution started with arguments: -v --force --sign DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58 --timestamp=none /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Solar.framework/Solar
    Touching "obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/codesign/Solar".
Target _CodesignFrameworks:
    Tool /usr/bin/codesign execution started with arguments: -v --force --sign DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58 --timestamp=none /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/Frameworks/Turf.framework/Turf
    Touching "obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/codesign/Turf".
Target _CodesignAppBundle:
    Tool /usr/bin/codesign execution started with arguments: -v --force --sign DD902E9F4E7A4EA3C01734A79DC8781A7AA1BA58 --entitlements /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/obj/iPhone/Debug/device-builds/iphone10.6-12.1.4/Entitlements.xcent --timestamp=none /Users/osca/Development/spotar/soestour-app/SoestTourism/SoestTourism.iOS/bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app
    Touching "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app.dSYM/Contents/Info.plist".
    Touching "bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app/_CodeSignature/CodeResources".
Target _CodesignVerify:
    /usr/bin/codesign --verify -vvvv -R='anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.1] exists and (certificate leaf[field.1.2.840.113635.100.6.1.2] exists or certificate leaf[field.1.2.840.113635.100.6.1.4] exists)' bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app 
    bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app: valid on disk
    bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app: satisfies its Designated Requirement
    bin/iPhone/Debug/device-builds/iphone10.6-12.1.4/SoestTourism.iOS.app: explicit requirement satisfied

Done building project "SoestTourism.iOS.csproj".

Build succeeded.

/Users/osca/.nuget/packages/microsoft.bcl.build/1.0.21/build/Microsoft.Bcl.Build.targets(243,5): warning : All projects referencing SoestTourism.csproj must install nuget package Microsoft.Bcl.Build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317569.
Services/DeviceAudioService.cs(62,21,62,28): warning CS0108: 'DeviceAudioService.Dispose()' hides inherited member 'NSObject.Dispose()'. Use the new keyword if hiding was intended.
Setup.cs(50,13,50,79): warning CS0618: 'Mvx.ConstructAndRegisterSingleton<TInterface, TType>()' is obsolete: 'Use Mvx.IoCProvider instead'
Helpers/PoiElement.cs(135,13,135,35): warning CS0618: 'Mvx.Resolve<TService>()' is obsolete: 'Use Mvx.IoCProvider instead'
Services/DeviceAudioService.cs(20,47,20,64): warning CS0067: The event 'DeviceAudioService.ErrorEventHandler' is never used
    5 Warning(s)
    0 Error(s)

Time Elapsed 00:00:15.58

========== Build: 1 succeeded, 0 failed, 1 up-to-date, 0 skipped ==========

Build: 0 errors, 5 warnings

Crash log

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Termination Description: DYLD, Library not loaded: @rpath/libswiftAVFoundation.dylib | Referenced from: /private/var/containers/Bundle/Application/DD39877F-5E11-49CB-998E-39D275DC83A5/SoestTourism.iOS.app/Frameworks/MapboxNavigation.framework/MapboxNavigation | Reason: no suitable image found.  Did find: | /private/var/containers/Bundle/Application/DD39877F-5E11-49CB-998E-39D275DC83A5/SoestTourism.iOS.app/Frameworks/libswiftAVFoundation.dylib: code signature invalid for '/private/var/containers/Bundle/Application/DD39877F-5E11-49CB-998E-39D275DC83A5/SoestTourism.iOS.app/Frameworks/libswiftAVFoundation.dylib' | /private/var/containers/Bundle/Application/DD39877F-5E11-49CB-998E-39D275DC83A5/SoestTourism.iOS.app/Frameworks/libswiftAVFoundation.dylib: code signature invalid for '/private/var/containers/Bundle/Application/DD39877F-5E11-49CB-998E-39D275DC83A5/SoestTourism.iOS.app/<…>

One more crash log at application startup (may be it helps) at libswiftCore:

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Termination Description: DYLD, Symbol not found: _$s11SubSequenceSlTl | Referenced from: /private/var/containers/Bundle/Application/A1FCBA26-3449-48D9-BED1-91E805532E02/vb.app/Frameworks/MobileMessaging.framework/MobileMessaging | Expected in: /private/var/containers/Bundle/Application/A1FCBA26-3449-48D9-BED1-91E805532E02/vb.app/Frameworks/libswiftCore.dylib | in /private/var/containers/Bundle/Application/A1FCBA26-3449-48D9-BED1-91E805532E02/vb.app/Frameworks/MobileMessaging.framework/MobileMessaging
Triggered by Thread: 0

@andrew-nemtsev that is happening because the framework you are using was built using a different version of Swift than the one you installed via Nuget. Please check #21

@osca I was not able to find in your build log any reference to _CodesignSwift or _RemoveExtraLibs that can indicate that the Xamarin.Swift4.targets was not imported, but lets check a few other things first:

1 - Does it work on Simulator?
2 - If you do a clean build does it work on either the Simulator or Device?
3 - Do you use PackageReference? If not check your .csproj (iOS) to see if you can find the Import attribute for Xamarin.Swift4.targets

osca commented
  1. My app does not start in a simulator. I don't know why yet.
  2. It works on a device, when I use 4.1.0 libs and do a clean build. When I update to the latest version of your libs, it crashes on startup.
  3. I use PackageReference

@osca please update only the Xamarin.Swift4 (no . something else) package from version 4.0.0.1 to 4.0.0.2. All the other ones: Xamarin.Swift4.Core and so on should still be on 4.1.0 as probably the library you are using that depends on Swift was built using Xcode 9.3. Version 4.2.1 is for libraries built using Xcode 10.1. You can check the full list in here: https://www.nuget.org/packages/Xamarin.Swift4.Core/4.1.0

  1. It is because of the base Xamarin.Swift4 had a bug and it didn't work with PackageReference. The files in SimulatorFrameworks were never copied over to Frameworks.

  2. 4.1.0 is for libraries built using Xcode 9.3, if you try to use anything else the app crashes as the library you use that depends on Swift wont find its dependencies. You can see the crash log on the device itself under Settings -> Privacy -> Analytics -> Analytics Data

osca commented

@Flash3001, thanks for the suggestions. I followed your points and got it deployed into TestFlight. But there, the application does not work anymore. Crashlog:

`
Date/Time: 2019-04-26 15:33:45.4261 +0200
Launch Time: 2019-04-26 15:33:44.7855 +0200
OS Version: iPhone OS 12.2 (16E227)
Baseband Version: 2.03.06
Report Version: 104

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Termination Description: DYLD, Library not loaded: @rpath/libswiftAVFoundation.dylib | Referenced from: /private/var/containers/Bundle/Application/AA5C067C-A151-4E72-A204-7A9C00486F95/SoestTourism.iOS.app/Frameworks/MapboxNavigation.framework/MapboxNavigation | Reason: image not found
Triggered by Thread: 0
`

The app is working well when I deploy it through VS4Mac in debug and release build.

@osca the first thing to check is if the Xamarin.Swift4.AVFoundation is added to your project, but you said it work fine locally. Is the app running on older versions of iOS? Like iOS 11 or 12.1 ?

osca commented

AVFoundation is added to my project. How can I test other iOS versions? The app does not work in an iPhone Simulator. I will try it again now.

Is it somehow possible to bind the Swift4 libraries as a weak reference in a Xamarin build? I read somewhere on the web that it should help.

Edit:
Tested in an iPhone 8 iOS 12.2 Simulator. Works.

Edit 2:
Also running on iPhone 8 iOS 12.1 and 11.4 Simulator without any problems.

osca commented

I got it working in TestFlight now by downgrading Visual Studio, Xcode and Xamarin.iOS. Following configuration works:

Visual Studio for Mac 7.8.1 (build 8)
Xamarin.iOS 12.2.1.16
XCode 10.1
Xamarin.Swift4 4.0.0.2
Xamarin.Swift4 Libs 4.1.0

Seems to be an issue with the new VS4Mac/Xamarin.iOS and/or XCode version.

@Flash3001 still facing this issue , app crashes on launch please find the crash log

Xamarin.Swift4 (4.0.0)
****crash log
{"app_name":"AIModule.iOS","timestamp":"2021-05-26 18:23:41.00 +0530","app_version":"1.0","slice_uuid":"cebccfa8-b42e-3400-9b08-e39d4e1dbb5f","adam_id":0,"build_version":"1.0","platform":2,"bundleID":"com.dmi.autoai","share_with_app_devs":0,"is_first_party":0,"bug_type":"109","os_version":"iPhone OS 14.4.2 (18D70)","incident_id":"63587DC2-A473-4F62-9DDB-D1E6317006BC","name":"AIModule.iOS"}
Incident Identifier: 63587DC2-A473-4F62-9DDB-D1E6317006BC
CrashReporter Key: af3c364eceb836ebf9157e0dac9ef8f4fdc21926
Hardware Model: iPhone11,2
Process: AIModule.iOS [4232]
Path: /private/var/containers/Bundle/Application/E20445EC-D744-4064-A845-DE52C7F71BE8/AIModule.iOS.app/AIModule.iOS
Identifier: com.dmi.autoai
Version: 1.0 (1.0)
Code Type: ARM-64 (Native)
Role: Foreground
Parent Process: launchd [1]
Coalition: com.dmi.autoai [597]

Date/Time: 2021-05-26 18:23:40.6725 +0530
Launch Time: 2021-05-26 18:23:40.6361 +0530
OS Version: iPhone OS 14.4.2 (18D70)
Release Type: User
Baseband Version: 3.02.02
Report Version: 104

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Triggered by Thread: 0

Application Specific Information:
abort() called

Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x00000001ba7fd414 0x1ba7d5000 + 164884
1 libsystem_pthread.dylib 0x00000001d8358b50 0x1d8356000 + 11088
2 libsystem_c.dylib 0x0000000195cdbb74 0x195c65000 + 486260
3 libc++abi.dylib 0x00000001a19cccf8 0x1a19b9000 + 81144
4 libc++abi.dylib 0x00000001a19bde34 0x1a19b9000 + 20020
5 libobjc.A.dylib 0x00000001a18c6f74 0x1a18c0000 + 28532
6 libc++abi.dylib 0x00000001a19cc0e0 0x1a19b9000 + 78048
7 libc++abi.dylib 0x00000001a19ceeb0 0x1a19b9000 + 89776
8 libc++abi.dylib 0x00000001a19cee5c 0x1a19b9000 + 89692
9 LibtorchFramework 0x0000000104579104 0x104228000 + 3477764
10 LibtorchFramework 0x00000001042a929c 0x104228000 + 529052
11 LibtorchFramework 0x00000001042a9120 0x104228000 + 528672
12 LibtorchFramework 0x00000001045aa2b8 0x104228000 + 3678904
13 LibtorchFramework 0x00000001045aa0a4 0x104228000 + 3678372
14 LibtorchFramework 0x00000001045a90b4 0x104228000 + 3674292
15 LibtorchFramework 0x00000001045a8e54 0x104228000 + 3673684
16 LibtorchFramework 0x0000000104233534 0x104228000 + 46388
17 LibtorchFramework 0x00000001045acc30 0x104228000 + 3689520
18 libdyld.dylib 0x000000018c4f2a68 0x18c4e1000 + 72296
19 libdyld.dylib 0x000000018c4e383c 0x18c4e1000 + 10300
20 libdyld.dylib 0x000000018c4f2894 0x18c4e1000 + 71828
21 libdyld.dylib 0x000000018c4e417c 0x18c4e1000 + 12668
22 libdyld.dylib 0x000000018c4f22a0 0x18c4e1000 + 70304
23 libdyld.dylib 0x000000018c511d10 0x18c4e1000 + 199952
24 dyld 0x000000010414182c 0x104138000 + 38956
25 dyld 0x000000010413f5a4 0x104138000 + 30116
26 dyld 0x0000000104139258 0x104138000 + 4696
27 dyld 0x0000000104139038 0x104138000 + 4152

Thread 0 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000
x4: 0x000000016f9d3980 x5: 0x000000016f9d3f30 x6: 0x000000000000000a x7: 0x0000000000000540
x8: 0x00000000000005b9 x9: 0x30166886d6354297 x10: 0x0000000000000002 x11: 0x0000000000000004
x12: 0x0000000000000000 x13: 0x0000000000000001 x14: 0x0000000000000010 x15: 0x000000000000007c
x16: 0x0000000000000148 x17: 0x00000001041e38c0 x18: 0x0000000000000000 x19: 0x0000000000000006
x20: 0x0000000000000407 x21: 0x00000001041e39a0 x22: 0x00000002837ec230 x23: 0x0000000105c09d40
x24: 0x000000016f9d4708 x25: 0x0000000105236c27 x26: 0x00000002835e3980 x27: 0x0147ae147ae147ae
x28: 0x8f5c28f5c28f5c29 fp: 0x000000016f9d3e90 lr: 0x00000001d8358b50
sp: 0x000000016f9d3e70 pc: 0x00000001ba7fd414 cpsr: 0x40000000
esr: 0x56000080 Address size fault

Binary Images:
0x100428000 - 0x103b5ffff AIModule.iOS arm64 /var/containers/Bundle/Application/E20445EC-D744-4064-A845-DE52C7F71BE8/AIModule.iOS.app/AIModule.iOS
0x104138000 - 0x1041a7fff dyld arm64e <1f4d7499ee603c5d9d542cd29e4e537c> /usr/lib/dyld
0x104228000 - 0x10536ffff LibtorchFramework arm64 /var/containers/Bundle/Application/E20445EC-D744-4064-A845-DE52C7F71BE8/AIModule.iOS.app/Frameworks/LibtorchFramework.framework/LibtorchFramework
0x105538000 - 0x1059b3fff libSkiaSharp arm64 /var/containers/Bundle/Application/E20445EC-D744-4064-A845-DE52C7F71BE8/AIModule.iOS.app/Frameworks/libSkiaSharp.framework/libSkiaSharp
0x18c49e000 - 0x18c4e0fff libdispatch.dylib arm64e /usr/lib/system/libdispatch.dylib
0x18c4e1000 - 0x18c51bfff libdyld.dylib arm64e <21b19919133438bcb233896e929945e0> /usr/lib/system/libdyld.dylib
0x18c51c000 - 0x18c787fff libicucore.A.dylib arm64e /usr/lib/libicucore.A.dylib
0x18c788000 - 0x18cb41fff CoreFoundation arm64e <727f2644eb4e3d57bc2ee6803ba92366> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x18cb42000 - 0x18ccedfff CoreServices arm64e /System/Library/Frameworks/CoreServices.framework/CoreServices
0x18ccee000 - 0x18cd36fff WirelessDiagnostics arm64e <6b8356e76aae3c4e94213e796c6d7912> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x18cd37000 - 0x18cdb3fff SystemConfiguration arm64e <97ad4485538f3f389fcdb3fb4df441c3> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x18cdb4000 - 0x18ceabfff CoreTelephony arm64e <810c9ed7d97438e19ca18fac779bab84> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x18ceac000 - 0x18d343fff CFNetwork arm64e <0ebb3119a8ce35da96245b5528802fc8> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x18d344000 - 0x18da51fff libnetwork.dylib arm64e <39506b46189e3e828f32ab8326fcc2c7> /usr/lib/libnetwork.dylib
0x18da52000 - 0x18dac8fff Accounts arm64e <8cc93a19e5983eeb8afb506477688616> /System/Library/Frameworks/Accounts.framework/Accounts
0x18dac9000 - 0x18dd84fff Foundation arm64e <7698bf3e0cf631c085e9562714f01276> /System/Library/Frameworks/Foundation.framework/Foundation
0x18dd85000 - 0x18e0e7fff ImageIO arm64e /System/Library/Frameworks/ImageIO.framework/ImageIO
0x18e101000 - 0x18e699fff CoreGraphics arm64e /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x18e69a000 - 0x18fb47fff UIKitCore arm64e <8518eae3832b3ff09fa59dbe3041f26c> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x18fb48000 - 0x18fb6afff libAccessibility.dylib arm64e <954328f073ea3677ad6e3442f7e14195> /usr/lib/libAccessibility.dylib
0x18fb6b000 - 0x18fdf1fff QuartzCore arm64e <8510f13908243686a9aa3e198539a021> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x18fdf2000 - 0x18fe5dfff BackBoardServices arm64e <7f77d33c3c1f3cca979ae1332798a25f> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x18fe5e000 - 0x18feebfff TextInput arm64e <61a52060d5843d1ca4f1864b5fb5617c> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x18ff55000 - 0x190323fff AppleMediaServices arm64e /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x190324000 - 0x1904a0fff libswiftFoundation.dylib arm64e /usr/lib/swift/libswiftFoundation.dylib
0x1904a1000 - 0x1908d2fff libswiftCore.dylib arm64e /usr/lib/swift/libswiftCore.dylib
0x1908d3000 - 0x1908ebfff UIKitServices arm64e <513a8906528a35739a45c91ea1817430> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x1908ec000 - 0x190a45fff Preferences arm64e /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x190a46000 - 0x190c6dfff ContactsUI arm64e <27576b968fb33ee08ae4009687396b75> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x190c6e000 - 0x190e25fff CoreText arm64e <58b7adf717bf3fb093fd084cb70cba54> /System/Library/Frameworks/CoreText.framework/CoreText
0x190e26000 - 0x190e40fff ExtensionKit arm64e /System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit
0x190e56000 - 0x190edafff BaseBoard arm64e /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x190edb000 - 0x191106fff CoreDuet arm64e /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x191107000 - 0x191269fff Contacts arm64e <387594fd3d2c321183e16487cc92d086> /System/Library/Frameworks/Contacts.framework/Contacts
0x19126a000 - 0x1927bffff GeoServices arm64e /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1927c0000 - 0x192855fff CoreLocation arm64e <27c07cfbfe903a308300038163f75a62> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x192856000 - 0x192a08fff CloudKit arm64e <91285302d0043991af90fe2b0f3727d0> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x192a09000 - 0x192d87fff CoreData arm64e /System/Library/Frameworks/CoreData.framework/CoreData
0x193af4000 - 0x193afefff libswiftCoreGraphics.dylib arm64e <05d0f019b7a430f5b754bd60ea5b8559> /usr/lib/swift/libswiftCoreGraphics.dylib
0x193aff000 - 0x193b3efff AppSupport arm64e /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x193b3f000 - 0x193c68fff ManagedConfiguration arm64e <73f74ef2dd093981b1d0834e9906ea6e> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x193c69000 - 0x193cdafff IMFoundation arm64e <07b9b450b39930cca73871bd618fea4b> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x193cdb000 - 0x193debfff IDS arm64e /System/Library/PrivateFrameworks/IDS.framework/IDS
0x193dec000 - 0x193f39fff Security arm64e <248431aabfe8399dad0ea942783d0e4b> /System/Library/Frameworks/Security.framework/Security
0x193f3a000 - 0x19435dfff MediaPlayer arm64e /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x19435e000 - 0x194376fff AudioSession arm64e /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession
0x194377000 - 0x194517fff AVFCore arm64e <0294540d081033fdbad051943cb01d86> /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore
0x194518000 - 0x194ac4fff Intents arm64e <397b9f43ab043a72bc5ca59dfddd48fa> /System/Library/Frameworks/Intents.framework/Intents
0x194b14000 - 0x194e2dfff CoreImage arm64e /System/Library/Frameworks/CoreImage.framework/CoreImage
0x194e2e000 - 0x194eebfff ColorSync arm64e /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x194eec000 - 0x194f27fff CoreVideo arm64e /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x194f28000 - 0x195714fff MediaToolbox arm64e <334f787e71c73676b9136c5f2a3436dc> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x195715000 - 0x195815fff CoreMedia arm64e <063231877fe13d2d9c430fdad845e776> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x195816000 - 0x195a81fff AudioToolbox arm64e <62b836837f2237f89cd6aed24461df2c> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x195a82000 - 0x195ad2fff CoreHaptics arm64e /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
0x195ad3000 - 0x195b33fff UserActivity arm64e <29d76b1b44fe376187de4059cf824d9e> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity
0x195b34000 - 0x195c3efff UIFoundation arm64e <9b241bd011ab38c2a1ac19f09ec6e1b1> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x195c3f000 - 0x195c64fff libsystem_info.dylib arm64e <4141392213e530b7907d6662a1eab27e> /usr/lib/system/libsystem_info.dylib
0x195c65000 - 0x195ce3fff libsystem_c.dylib arm64e <961a8fb0de8a3567b4375d99cd549fae> /usr/lib/system/libsystem_c.dylib
0x195ce4000 - 0x195d2ffff RunningBoardServices arm64e <697a1a06cadc3e7fa852a474d80108cb> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x195d30000 - 0x196e6afff JavaScriptCore arm64e <6142416206cc3018bd316cac8586e04f> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x19743c000 - 0x1974cdfff ContactsFoundation arm64e <34d587d357cc331889693ed5a7fa99a8> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1974ce000 - 0x19771cfff HealthKit arm64e /System/Library/Frameworks/HealthKit.framework/HealthKit
0x19771d000 - 0x197740fff ProactiveEventTracker arm64e /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x197741000 - 0x19778bfff Lexicon arm64e <0056c7867b0c3bf38f9aae60c44beb0e> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x19778c000 - 0x1977f9fff PersonalizationPortrait arm64e /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait
0x1977fa000 - 0x19784afff CoreDuetContext arm64e <6c4bdd0f96c1332584aa8536f7849456> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x19784b000 - 0x1978f6fff IOKit arm64e <92c9b0a3c0473a55b17b4c81f6b4f054> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1978f7000 - 0x197907fff DataMigration arm64e <051256fd02fd3d5381c55bef2910a0af> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x197908000 - 0x197965fff SpringBoardServices arm64e /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x197966000 - 0x197978fff ContextKit arm64e <628c4e5157e93d208e565b3760e93ca8> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
0x197979000 - 0x197becfff CoreMotion arm64e /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x197bed000 - 0x197d32fff EventKit arm64e <374caf4729133e16933429279ffba9ca> /System/Library/Frameworks/EventKit.framework/EventKit
0x19828e000 - 0x19852cfff MediaRemote arm64e <6506f7f32da538a9ae8083629db3d55b> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x19852d000 - 0x1986d5fff CoreUtils arm64e /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1986d6000 - 0x1986ecfff FamilyCircle arm64e /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
0x1986ed000 - 0x19875dfff CoreSpotlight arm64e <22dc7b9c417e35459569bcc9bb02cadb> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x198b79000 - 0x198d2afff AssistantServices arm64e /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x198d2b000 - 0x198df1fff CoreUI arm64e /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x198df2000 - 0x198e3dfff SafariSafeBrowsing arm64e <35ca14bca32336f08d2c69bfc51a4929> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x198e3e000 - 0x199837fff WebKit arm64e /System/Library/Frameworks/WebKit.framework/WebKit
0x199838000 - 0x19c19dfff WebCore arm64e /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x19c19e000 - 0x19c1fdfff libMobileGestalt.dylib arm64e <48e77331a983378c8eb4b7cc854f4a89> /usr/lib/libMobileGestalt.dylib
0x19c1fe000 - 0x19c21afff CommonUtilities arm64e <58bd77e1ead836a181a6f1f736d9bec1> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x19c21b000 - 0x19c389fff IDSFoundation arm64e <4cd55ce403cf353c8fc9c4fd458dd071> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x19c38a000 - 0x19c48efff IMSharedUtilities arm64e <0949bc0051dc3a1d8a691b38be77ef1b> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
0x19c48f000 - 0x19c539fff CoreSuggestions arm64e /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x19c53a000 - 0x19c5d7fff AddressBookLegacy arm64e <6df18e10743231e890292b8a5c5fadf1> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x19c5d8000 - 0x19c60bfff UserNotifications arm64e /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x19c60c000 - 0x19c698fff FrontBoardServices arm64e /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x19c699000 - 0x19c6bcfff libsystem_malloc.dylib arm64e /usr/lib/system/libsystem_malloc.dylib
0x19c6bd000 - 0x19c998fff MapKit arm64e <3108aac5d11938e09aaff67868010ade> /System/Library/Frameworks/MapKit.framework/MapKit
0x19c999000 - 0x19d16afff VectorKit arm64e <90f634e3fc2e3fe69b2666dda5d95c79> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x19d16b000 - 0x19d1fdfff AuthKit arm64e <2be58b7a584e3226b5551de2b35f61a6> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x19d1fe000 - 0x19d291fff AppleAccount arm64e /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x19d292000 - 0x19d394fff AVFAudio arm64e /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x19d395000 - 0x19d600fff AudioToolboxCore arm64e /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x19d635000 - 0x19d909fff StoreServices arm64e <9af8512ca5953487bb3886d2d745c84a> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x19d90a000 - 0x19da93fff Sharing arm64e <75601c205057351bb1ed9396c7d5ac2b> /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x19da94000 - 0x19db3bfff ShareSheet arm64e <5c25c6ab8f5535958e684ab408e3aec9> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x19db3c000 - 0x19dc2bfff CoreParsec arm64e /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x19dc2c000 - 0x19dc76fff PhotoFoundation arm64e /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x19dc77000 - 0x19dec7fff Photos arm64e /System/Library/Frameworks/Photos.framework/Photos
0x19dec8000 - 0x19e5f9fff PhotoLibraryServices arm64e <851fb35f210f3e68b5aab636e9e44135> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x19e5fa000 - 0x19e6bbfff AssetsLibraryServices arm64e <362f820db3fa3497b65e8a000d1008c9> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x19e6bc000 - 0x19e70dfff MobileBackup arm64e <7370a46dfbb33cdf90900f10f4d1b481> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x19e70e000 - 0x19e722fff MSUDataAccessor arm64e <9140891644fe38208059c1cae5afb001> /System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor
0x19e723000 - 0x19e749fff MobileAsset arm64e /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x19e74a000 - 0x19e759fff libsystem_networkextension.dylib arm64e <72e9b04cefb3311398130faa22fd28af> /usr/lib/system/libsystem_networkextension.dylib
0x19e75a000 - 0x19e9abfff NetworkExtension arm64e <7f3e9729ca2e39ada585c363f6a7a9dc> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x19e9e3000 - 0x19edaffff CoreML arm64e /System/Library/Frameworks/CoreML.framework/CoreML
0x19edb0000 - 0x19f535fff Espresso arm64e /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x19f536000 - 0x19f633fff VideoToolbox arm64e /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x19f634000 - 0x19f680fff OnBoardingKit arm64e <8f99950c3c9430e792f6f1283c1fe2de> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
0x19f77f000 - 0x19f790fff AXCoreUtilities arm64e /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x1a0686000 - 0x1a07fcfff Montreal arm64e /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1a07fd000 - 0x1a0912fff LanguageModeling arm64e /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1a0913000 - 0x1a091bfff InternationalSupport arm64e <05ea5f19fb0b33a5b9f3ceea6808df34> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1a091c000 - 0x1a0b6ffff iTunesCloud arm64e <6ee9c0bdef7834cf8a10a759a67a9ec6> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x1a0b70000 - 0x1a0bb2fff libswiftUIKit.dylib arm64e <6918464affe03199b2614026e35cd5cf> /usr/lib/swift/libswiftUIKit.dylib
0x1a0ccd000 - 0x1a0d76fff CalendarDatabase arm64e <583e4c36c98f31a29e9bfc4ab998029f> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x1a0dc7000 - 0x1a0ea7fff LinkPresentation arm64e /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
0x1a0ea8000 - 0x1a0fccfff Combine arm64e <15b9213c595936be871f3f582776b8c4> /System/Library/Frameworks/Combine.framework/Combine
0x1a105b000 - 0x1a106cfff UniformTypeIdentifiers arm64e <15720249377a3189b5acde89ce28022a> /System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers
0x1a106d000 - 0x1a10effff CloudDocs arm64e <5c79358501373d9abc186d693fa39c67> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
0x1a1611000 - 0x1a164ffff MediaServices arm64e <415230c3259e36d78f62e8f1a9ce73e5> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x1a1650000 - 0x1a17e2fff SearchFoundation arm64e <48cef8a1fb9f35419debe221493a2d08> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x1a17e3000 - 0x1a183efff WebBookmarks arm64e <63ad88de89e63b1c9db361d1b3c1d56a> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1a18c0000 - 0x1a18f6fff libobjc.A.dylib arm64e /usr/lib/libobjc.A.dylib
0x1a18f7000 - 0x1a1959fff LoggingSupport arm64e <0877d599d2bd33008d700d1f8abca399> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x1a195a000 - 0x1a19b8fff libc++.1.dylib arm64e <4a0b48d835483ad794c55e54ab10b6fa> /usr/lib/libc++.1.dylib
0x1a19b9000 - 0x1a19d2fff libc++abi.dylib arm64e <2c28dce19a893752bcfc907e99183a63> /usr/lib/libc++abi.dylib
0x1a19d3000 - 0x1a1a15fff SetupAssistant arm64e /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x1a1a16000 - 0x1a1a30fff OctagonTrust arm64e <2d16a2c8cf9f3fafab49ac4651023814> /System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust
0x1a1b62000 - 0x1a1ba5fff CoreAutoLayout arm64e <942d516f2be635879821a450f305f686> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout
0x1a1ba6000 - 0x1a1d04fff Network arm64e <9d7e4a86670f3742b6c188f150e74705> /System/Library/Frameworks/Network.framework/Network
0x1a1d05000 - 0x1a1d3bfff MobileKeyBag arm64e /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1a1f7f000 - 0x1a1f93fff BaseBoardUI arm64e <7e55d9022dc833f28d3849f639a75367> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x1a1f94000 - 0x1a2046fff libvDSP.dylib arm64e <981103e3468c336db8c5a574394ff73e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1a2047000 - 0x1a207afff libAudioToolboxUtility.dylib arm64e /usr/lib/libAudioToolboxUtility.dylib
0x1a2258000 - 0x1a22e4fff CoreNLP arm64e /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1a22e5000 - 0x1a23fffff FileProvider arm64e /System/Library/Frameworks/FileProvider.framework/FileProvider
0x1a2400000 - 0x1a2410fff BiomeStorage arm64e <509921cb2fa5390596301daff9c71805> /System/Library/PrivateFrameworks/BiomeStorage.framework/BiomeStorage
0x1a2411000 - 0x1a2429fff libswiftDispatch.dylib arm64e /usr/lib/swift/libswiftDispatch.dylib
0x1a242a000 - 0x1a2460fff DataDetectorsCore arm64e /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1a2461000 - 0x1a24f1fff Symbolication arm64e /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
0x1a24f2000 - 0x1a250ffff CrashReporterSupport arm64e <3f0cb4bfb6f3385db83720e08fba9808> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1a256f000 - 0x1a2641fff TelephonyUtilities arm64e /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x1a267b000 - 0x1a2869fff MPSNeuralNetwork arm64e <333d91ab35473c47a5edf7be06a3deae> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1a286a000 - 0x1a28c0fff MPSCore arm64e /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1a2a1e000 - 0x1a2a8bfff CalendarFoundation arm64e <8e19bc8376fc3ea2840bc8f09e08649c> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x1a2aef000 - 0x1a2bdbfff NLP arm64e /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1a2bdc000 - 0x1a2c04fff AppSupportUI arm64e <011c4ba7c2093f3f8b97723ebf5360b3> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x1a2c0e000 - 0x1a2c63fff FTServices arm64e <98551da414093f84a430ffed2219c046> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x1a2d15000 - 0x1a2d2cfff ProtocolBuffer arm64e /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1a2d2d000 - 0x1a2e3afff AVKit arm64e <5ef8c42722333fbbbfe902dda8002e0f> /System/Library/Frameworks/AVKit.framework/AVKit
0x1a2fae000 - 0x1a2fbdfff AssertionServices arm64e <6c4a8e5fe94534898cc33f75e1215b11> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1a2fbe000 - 0x1a2fe7fff CloudServices arm64e <3da5db7d44f8346bab10a1ca4ee427a2> /System/Library/PrivateFrameworks/CloudServices.framework/CloudServices
0x1a303a000 - 0x1a311afff Metal arm64e /System/Library/Frameworks/Metal.framework/Metal
0x1a311b000 - 0x1a326ffff MediaExperience arm64e <4cae8c9c6156321788986d02541aaf56> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x1a367d000 - 0x1a3693fff libsystem_trace.dylib arm64e <3520924c65a7351dadbea07268a9bca7> /usr/lib/system/libsystem_trace.dylib
0x1a36c6000 - 0x1a372efff SafariCore arm64e <44f3df2a84793d78800f3dcdf00e19da> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x1a372f000 - 0x1a396cfff SafariShared arm64e <41c6945e293936a28f1d83b9a159c37c> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x1a42fe000 - 0x1a43a1fff SAObjects arm64e <0e51de0329ee3389a4880eee96514db6> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x1a43a2000 - 0x1a43e8fff VoiceServices arm64e /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x1a43e9000 - 0x1a43f1fff GraphicsServices arm64e <1959c615fa0830de8461884a5bbc8037> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1a43f2000 - 0x1a4448fff DeviceManagement arm64e /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
0x1a4449000 - 0x1a45c6fff Translation arm64e /System/Library/PrivateFrameworks/Translation.framework/Translation
0x1a45c7000 - 0x1a45dcfff PowerLog arm64e /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1a45dd000 - 0x1a4606fff DuetActivityScheduler arm64e <6052f6a592943092afe626b8be3e70ed> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
0x1a5f14000 - 0x1a61c0fff Vision arm64e /System/Library/Frameworks/Vision.framework/Vision
0x1a621e000 - 0x1a628cfff ProactiveSupport arm64e <7e62581a0bba374c8ce4c8478f407c4b> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x1a62ba000 - 0x1a62d9fff ApplePushService arm64e /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1a62da000 - 0x1a6303fff BoardServices arm64e <66c745c0795a341aa2c9b01043957b83> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x1a6472000 - 0x1a64a2fff libncurses.5.4.dylib arm64e /usr/lib/libncurses.5.4.dylib
0x1a64a3000 - 0x1a64f2fff OSAnalytics arm64e /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x1a64f3000 - 0x1a6552fff CoreBluetooth arm64e <07157e457e543ae4ad87685503c2db42> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x1a673d000 - 0x1a6782fff TemplateKit arm64e <6b482aed10ac36148dade82298354632> /System/Library/PrivateFrameworks/TemplateKit.framework/TemplateKit
0x1a6783000 - 0x1a67b8fff MobileInstallation arm64e <35568a91b3b536acbdefa885f098b7d0> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x1a67b9000 - 0x1a6847fff libTelephonyUtilDynamic.dylib arm64e /usr/lib/libTelephonyUtilDynamic.dylib
0x1a6848000 - 0x1a68b7fff NanoRegistry arm64e <0485700048f43d22b3423d2a7d8d7c16> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1a699c000 - 0x1a69bafff CoreMaterial arm64e <58b98f6de8df3813bb3416c568c45f9c> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
0x1a6a31000 - 0x1a6bbafff libsqlite3.dylib arm64e <2963f7ee43003bb69529587d5302a657> /usr/lib/libsqlite3.dylib
0x1a6bbb000 - 0x1a6c81fff AVFCapture arm64e <69a24b6680d23b65a9a90ccf8fec7e69> /System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture
0x1a6c82000 - 0x1a6fe4fff CMCapture arm64e <771999efb9ed3182a75311c8d38c44e4> /System/Library/PrivateFrameworks/CMCapture.framework/CMCapture
0x1a7143000 - 0x1a73a3fff MobileSpotlightIndex arm64e <585d247349ed39baac6a3765a35afb53> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1a77e4000 - 0x1a77eefff libsystem_notify.dylib arm64e /usr/lib/system/libsystem_notify.dylib
0x1a77ef000 - 0x1a7834fff CryptoTokenKit arm64e /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit
0x1a78a2000 - 0x1a7916fff libcorecrypto.dylib arm64e <7282f135d28937129081a2b32fdb3622> /usr/lib/system/libcorecrypto.dylib
0x1a7917000 - 0x1a793bfff UserManagement arm64e <01f1ad278171339aa98d91876ef213d0> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1a7a18000 - 0x1a7a2efff libsystem_asl.dylib arm64e <6861da31b33a393eadeaa36da03ba670> /usr/lib/system/libsystem_asl.dylib
0x1a7a2f000 - 0x1a7a53fff AppSSO arm64e <3bd803adc971360994552489d7c1f2ee> /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO
0x1a7a54000 - 0x1a7a72fff SharedWebCredentials arm64e <2f34145f4fc138d9b1cfb52889c3a4f7> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
0x1a7a73000 - 0x1a7c61fff SafariServices arm64e <65633f0d99f23bb7a39bc68fad864fb9> /System/Library/Frameworks/SafariServices.framework/SafariServices
0x1a7cb8000 - 0x1a7cf0fff DataAccessExpress arm64e /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x1a7cf1000 - 0x1a7d28fff CoreServicesStore arm64e <7f13794ebc913959a201e01a396aa228> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x1a7d29000 - 0x1a7d4efff CoreAnalytics arm64e <0e3b705972c939ad9a5ca9b487f5c475> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1a7d4f000 - 0x1a7d5afff SymptomAnalytics arm64e <99e19311b5263984a27fd8976a1d70d3> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics
0x1a7f4d000 - 0x1a7f5dfff NanoPreferencesSync arm64e <04761bb803ce3b63aeec6a61cc549b85> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x1a8794000 - 0x1a87c0fff IconServices arm64e /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x1a9298000 - 0x1a955ffff vImage arm64e <235be66e7bb831bba92d486371ffc572> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1aa265000 - 0x1aa44afff IMCore arm64e <055d5603e96a3b369ff63d81e4f0a4a9> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x1aa545000 - 0x1aa55cfff IAP arm64e <82584a03eeef37229f239e9c035e9a44> /System/Library/PrivateFrameworks/IAP.framework/IAP
0x1aa55d000 - 0x1aa5b6fff ktrace arm64e <0fd4ace25e6c3e0ca5e18b2aa5f4457f> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1aa8d4000 - 0x1aa8e2fff Celestial arm64e <1637b47d575e35c19f0a61f21530746b> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1aa990000 - 0x1aa9d9fff Pegasus arm64e /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x1aa9da000 - 0x1aab62fff WebKitLegacy arm64e <0afff100bf18396c80e511f86e8b6b0c> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1aabd6000 - 0x1aac4dfff ClassKit arm64e /System/Library/Frameworks/ClassKit.framework/ClassKit
0x1abbf4000 - 0x1abbfefff IOMobileFramebuffer arm64e <75b827a40b7e31278af975faf62e320b> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1abbff000 - 0x1abc76fff ScreenTimeCore arm64e <89bcfd8aa4a73465b8b0d344ecf27ce1> /System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore
0x1abd25000 - 0x1abeadfff CloudPhotoLibrary arm64e <22f8a43f53f43d1e8fdb384c9eb56916> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1abeae000 - 0x1ac17dfff MusicLibrary arm64e <6d49922ed936305ea408c0fd4b58a0cc> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x1ac17e000 - 0x1ac1e8fff CallKit arm64e <40172deb9a033fdbb2f9c19402e18198> /System/Library/Frameworks/CallKit.framework/CallKit
0x1ac290000 - 0x1ac2b0fff PrototypeTools arm64e /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1ac2b1000 - 0x1ac2defff PersistentConnection arm64e <2c14c002f3ea300f8b45706af2444601> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1ac3c8000 - 0x1ac3edfff BiomeStreams arm64e <481c6bacabb734d5880c954cf3b38dfd> /System/Library/PrivateFrameworks/BiomeStreams.framework/BiomeStreams
0x1ac40a000 - 0x1ac6c8fff PencilKit arm64e <2ac11145139332a985805ff6843ec804> /System/Library/Frameworks/PencilKit.framework/PencilKit
0x1ac788000 - 0x1ac909fff CoreSpeech arm64e /System/Library/PrivateFrameworks/CoreSpeech.framework/CoreSpeech
0x1ac90a000 - 0x1aca62fff IMDPersistence arm64e <78a339820494334a937a395a73d2b3da> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
0x1accc9000 - 0x1acd88fff SafariSharedUI arm64e <03615ad78b143db1b422a989b2ac3835> /System/Library/PrivateFrameworks/SafariSharedUI.framework/SafariSharedUI
0x1acdc8000 - 0x1acddffff CoreFollowUp arm64e /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x1acde0000 - 0x1ace5afff Rapport arm64e <389c3d98cdc83416bc1fcc79d99002f8> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1acf3e000 - 0x1acf50fff Categories arm64e <618e0818748638f099cdb24427079637> /System/Library/PrivateFrameworks/Categories.framework/Categories
0x1ad224000 - 0x1ad24bfff LocationSupport arm64e <0c0eb39ec3583a85bf0d32b53ba29782> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x1ad24c000 - 0x1ad280fff iCalendar arm64e /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x1ad281000 - 0x1ad2acfff CoreAccessories arm64e /System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories
0x1ad2ad000 - 0x1ad3bcfff ConfigurationEngineModel arm64e /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel
0x1ad3bd000 - 0x1ad3e8fff CacheDelete arm64e /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x1ad3e9000 - 0x1ad466fff CVNLP arm64e <727497213d273a66a6dc46581dc96c91> /System/Library/PrivateFrameworks/CVNLP.framework/CVNLP
0x1ad5be000 - 0x1ad5c0fff OSAServicesClient arm64e /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
0x1ad5c1000 - 0x1ad5c3fff BiomeFoundation arm64e <6c66263730cd3192aae1a31698bd5142> /System/Library/PrivateFrameworks/BiomeFoundation.framework/BiomeFoundation
0x1ad5c4000 - 0x1ad61efff ProtectedCloudStorage arm64e <18d26651ea76381fad99579a036da0e3> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1ad61f000 - 0x1ad657fff C2 arm64e /System/Library/PrivateFrameworks/C2.framework/C2
0x1ad658000 - 0x1ad6affff DifferentialPrivacy arm64e <9029531fb2c63b538599b62afeca027f> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1ad89a000 - 0x1ae08afff EmbeddedAcousticRecognition arm64e <87b23d23e7f635aab52add8885df2059> /System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework/EmbeddedAcousticRecognition
0x1ae08b000 - 0x1ae10afff SiriInstrumentation arm64e <1a459674e7bd3c6ab8069cd93a56d034> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
0x1ae10b000 - 0x1ae14ffff BiometricKit arm64e <84245e1657b93e089d937cc9a3c8e83d> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x1ae197000 - 0x1ae24cfff CoreSymbolication arm64e <4a497d5f199b3a17b912d711e97154d7> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1ae2c4000 - 0x1ae375fff SpeakerRecognition arm64e <7f90e1de9a14316b8b4a5ff98a85e04a> /System/Library/PrivateFrameworks/SpeakerRecognition.framework/SpeakerRecognition
0x1aea34000 - 0x1aea46fff IOSurface arm64e <2bb4143452ee3bd7822950b3840218b6> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x1aea47000 - 0x1aeaa9fff MobileWiFi arm64e /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1aef7a000 - 0x1af023fff MMCS arm64e <506bc412749f3c3b853c299d3d8e9f5a> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x1af09d000 - 0x1af0d8fff libGLImage.dylib arm64e <5e1452bc1b723ea9bbee08acd20195f3> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1af0d9000 - 0x1af0e0fff libsystem_symptoms.dylib arm64e /usr/lib/system/libsystem_symptoms.dylib
0x1af128000 - 0x1af689fff CoreAudio arm64e <35f706386c053b64b34f60e273b2a83c> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1af68a000 - 0x1af6a1fff ContactsDonation arm64e <22b66b8201cd399b93ec0fa441c1efd3> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x1af6a2000 - 0x1af6c1fff IntentsCore arm64e /System/Library/PrivateFrameworks/IntentsCore.framework/IntentsCore
0x1af768000 - 0x1af7a1fff ImageCaptureCore arm64e <6e08dcb2711f3684865f97a289abef54> /System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore
0x1af909000 - 0x1afa56fff Navigation arm64e <4094fc3895f73557bab0521c707b1f67> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x1afa57000 - 0x1afa74fff SafariFoundation arm64e /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
0x1afbfb000 - 0x1afc0ffff MaterialKit arm64e <81b41c96b2b632519b4bca173398c2b8> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
0x1afd97000 - 0x1afda7fff CoreAUC arm64e /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1b05de000 - 0x1b05effff SettingsFoundation arm64e <811cb2e1f0d53fc1af2a1a3f71eb1db7> /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
0x1b0ff1000 - 0x1b1051fff ToneLibrary arm64e /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x1b18b5000 - 0x1b18c2fff MediaSafetyNet arm64e <54121c6dbfb9370ca7134c3d2139a992> /System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet
0x1b18c3000 - 0x1b1900fff TimeSync arm64e <79da117bf4763bb3901a21e4ae54c148> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync
0x1b1999000 - 0x1b19dffff ExposureNotification arm64e /System/Library/Frameworks/ExposureNotification.framework/ExposureNotification
0x1b206c000 - 0x1b2075fff CoreTime arm64e /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1b2a50000 - 0x1b2b50fff TextRecognition arm64e <761aa9ba87a73e5e8c6016cc93a4b6f9> /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition
0x1b2c66000 - 0x1b2c6ffff ContextKitExtraction arm64e <3b1d92e5f4ac37e8887e97798a3bee96> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction
0x1b2d4d000 - 0x1b2d4ffff libswiftObjectiveC.dylib arm64e <6d0b9153875939f48ebfc48dfdc4d77c> /usr/lib/swift/libswiftObjectiveC.dylib
0x1b2d50000 - 0x1b2f9afff libmorphun.dylib arm64e /usr/lib/libmorphun.dylib
0x1b4370000 - 0x1b43f4fff CoreDAV arm64e <16c1d77ae3ca3dfb93bc7e4b3968c7e3> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1b45dc000 - 0x1b45ebfff MobileIcons arm64e /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1b49da000 - 0x1b4aadfff ProofReader arm64e /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x1b5d1d000 - 0x1b5d27fff MallocStackLogging arm64e <66bfc8d3c6f335519ce3f213ab98480e> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x1b5f64000 - 0x1b5faffff MetadataUtilities arm64e /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x1b6702000 - 0x1b6761fff CoreLocationProtobuf arm64e <29e0b3b8c4d133e1a16975c207af057f> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1b6976000 - 0x1b69a8fff Bom arm64e <68852959ebe03756837b46f2c1f767ec> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1b69de000 - 0x1b69e5fff PushKit arm64e /System/Library/Frameworks/PushKit.framework/PushKit
0x1b69e6000 - 0x1b6a53fff PhotosFormats arm64e <0ec0b49423a43771a4a74ef7ef4cff4c> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x1b6bec000 - 0x1b6c7cfff Quagga arm64e /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1b6c7d000 - 0x1b6c85fff StudyLog arm64e <15e63b6cec933fa882889d0cefd8a9ef> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1b7c92000 - 0x1b7cd3fff NaturalLanguage arm64e /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
0x1b877a000 - 0x1b879afff MediaStream arm64e /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1b9437000 - 0x1b9460fff MediaConversionService arm64e <9b32aa782eb03333be43746b2d9bf1d2> /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService
0x1b95b6000 - 0x1b96f8fff CoreHandwriting arm64e /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
0x1b9eea000 - 0x1b9ef5fff AppleIDAuthSupport arm64e /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1b9f05000 - 0x1b9f1efff LocalAuthentication arm64e /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x1b9f1f000 - 0x1b9f25fff IOAccelerator arm64e /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1ba310000 - 0x1ba31afff CloudPhotoServices arm64e <6c7820d939b336adab95af21fa2b751c> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1ba35f000 - 0x1ba40dfff iTunesStore arm64e <015778fe0114317f9baf8a316844b5ca> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x1ba7d5000 - 0x1ba806fff libsystem_kernel.dylib arm64e /usr/lib/system/libsystem_kernel.dylib
0x1baa4a000 - 0x1bab54fff ResponseKit arm64e /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
0x1bab55000 - 0x1bab8ffff EmojiFoundation arm64e <36217836d7bc3bac9d094e51f9a01358> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
0x1bb1d7000 - 0x1bb1e4fff FontServices arm64e /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1bb39a000 - 0x1bb3a6fff MediaAccessibility arm64e /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1bb3e9000 - 0x1bb9a5fff SiriTTS arm64e /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x1bb9a6000 - 0x1bb9b4fff SetupAssistantSupport arm64e <4fe091f2a2e23e78bdd243577f8fffbd> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1bbab9000 - 0x1bbaebfff VirtualGarage arm64e <137b37f353293180ab19b2b8c92dea5f> /System/Library/PrivateFrameworks/VirtualGarage.framework/VirtualGarage
0x1bbaec000 - 0x1bbb12fff NetAppsUtilities arm64e /System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities
0x1bbb13000 - 0x1bbb75fff Osprey arm64e <8e97fc58b34632fbbeadf6f00b54a06e> /System/Library/PrivateFrameworks/Osprey.framework/Osprey
0x1bcd4a000 - 0x1bcd5afff libdscsym.dylib arm64e <1fc227cb8893384b8453555702030bb5> /usr/lib/libdscsym.dylib
0x1bcd5b000 - 0x1bcd6cfff HangTracer arm64e <148caf8207a83d1a87b0a476cc755f35> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1bcf2a000 - 0x1bcfe8fff SampleAnalysis arm64e <38e052d99e2032ce84bfa5e7d96c12aa> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1bcfe9000 - 0x1bd019fff PlugInKit arm64e <1b06f4b4a9c33af8875c49f515e38d78> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1bd0c9000 - 0x1bd0cafff libSystem.B.dylib arm64e <7d42c8382a04372e9fccdc7a95ef88f4> /usr/lib/libSystem.B.dylib
0x1bd3e1000 - 0x1bd3edfff MobileActivation arm64e <8b7d8a2e5934388c93ed41de5cb99df4> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
0x1bd3ee000 - 0x1bd446fff CalendarDaemon arm64e <85e7dc5c98123be4acf83e8b6da0e6d8> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x1bd53e000 - 0x1bd5aefff libarchive.2.dylib arm64e /usr/lib/libarchive.2.dylib
0x1bd5af000 - 0x1bd5d3fff libtailspin.dylib arm64e <98055fb0cc033819bc074fb958f6e656> /usr/lib/libtailspin.dylib
0x1bd5d4000 - 0x1bda89fff libBNNS.dylib arm64e <13ec7750493a31bcad11234e3950686d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1bda8a000 - 0x1bdacdfff SharedUtils arm64e /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x1bdd81000 - 0x1bdd86fff libsysdiagnose.dylib arm64e /usr/lib/libsysdiagnose.dylib
0x1bddc4000 - 0x1bded1fff CoreMediaStream arm64e <1cf71464e8143528828edfe3fb6bd4e6> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1be0ea000 - 0x1be0eafff AVFoundation arm64e <1dcd460171643d2ca077cc511181b1ec> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1be0eb000 - 0x1be0ebfff Accelerate arm64e /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1be0ec000 - 0x1be346fff libBLAS.dylib arm64e /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1be347000 - 0x1be7f1fff libLAPACK.dylib arm64e <6eea1e2a662630508a2e8b690016e7e0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1be7f2000 - 0x1be806fff libLinearAlgebra.dylib arm64e <64203c23bfb735adb6823d4fd877c7d6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1be807000 - 0x1be80bfff libQuadrature.dylib arm64e /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1be80c000 - 0x1be86efff libSparse.dylib arm64e <7244ae07ad933247aa101be5ba810cd7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1be86f000 - 0x1be880fff libSparseBLAS.dylib arm64e <2351d0bc0e6b33068c41c4e1be339920> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1be881000 - 0x1be8d9fff libvMisc.dylib arm64e /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1be8da000 - 0x1be8dafff vecLib arm64e <6cec3ecd6c1a3f2f97ae525ff2046274> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1be917000 - 0x1be928fff AssetsLibrary arm64e <5ed3398a0a533c789bace00f231f2d88> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x1bea3e000 - 0x1bea5bfff AuthenticationServices arm64e /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
0x1bf0f2000 - 0x1bf109fff ExternalAccessory arm64e /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory
0x1bf11e000 - 0x1bf147fff GLKit arm64e /System/Library/Frameworks/GLKit.framework/GLKit
0x1bf148000 - 0x1bf175fff GSS arm64e <8d83196aebda3a6e97b9345053fe33e7> /System/Library/Frameworks/GSS.framework/GSS
0x1bf2e2000 - 0x1bf435fff MLCompute arm64e <238c5cacb32d3a82b319be8226d72517> /System/Library/Frameworks/MLCompute.framework/MLCompute
0x1bf45e000 - 0x1bf477fff MetalKit arm64e /System/Library/Frameworks/MetalKit.framework/MetalKit
0x1bf478000 - 0x1bf4fefff MPSImage arm64e /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1bf4ff000 - 0x1bf525fff MPSMatrix arm64e <19c8ce40ea28340eb5e61151589d9a5b> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1bf526000 - 0x1bf564fff MPSNDArray arm64e <33d53f36a2aa3e39a9cb6f7ac2723edc> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
0x1bf565000 - 0x1bf5adfff MPSRayIntersector arm64e <826f7ecb42153845b6c81434e31d05b8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1bf5ae000 - 0x1bf5aefff MetalPerformanceShaders arm64e /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1bf94b000 - 0x1bf94bfff MobileCoreServices arm64e <013cab54d0ec301a82151c17a2a44899> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1c0549000 - 0x1c0551fff OpenGLES arm64e /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1c0552000 - 0x1c0553fff libCVMSPluginSupport.dylib arm64e <1ca789cb22ac36e1858b241da4c8dcb7> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1c0554000 - 0x1c055afff libCoreFSCache.dylib arm64e <2411f21fea7c3656a0990c3ae36e88e8> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1c055b000 - 0x1c0560fff libCoreVMClient.dylib arm64e <04bd5aee36673163b188185a5d4f02a3> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1c0561000 - 0x1c056afff libGFXShared.dylib arm64e <59b568645cb53655a427478652ed8e27> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1c0725000 - 0x1c07ecfff PDFKit arm64e <333f6e509f53397e9ad43cd0c255e123> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x1c07fc000 - 0x1c083afff QuickLookThumbnailing arm64e /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x1c0f0d000 - 0x1c105afff SoundAnalysis arm64e /System/Library/Frameworks/SoundAnalysis.framework/SoundAnalysis
0x1c105b000 - 0x1c106afff Speech arm64e /System/Library/Frameworks/Speech.framework/Speech
0x1c118e000 - 0x1c118efff UIKit arm64e /System/Library/Frameworks/UIKit.framework/UIKit
0x1c1198000 - 0x1c1261fff VideoSubscriberAccount arm64e <130a847f2a033dfb9eb7379e87aff600> /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
0x1c1262000 - 0x1c1e39fff libfaceCore.dylib arm64e <72ffb50f61c039f6b0a146ac8aa07e8d> /System/Library/Frameworks/Vision.framework/libfaceCore.dylib
0x1c23a1000 - 0x1c23a4fff AFKUser arm64e <3f4d68e133773dd2ba45c82c59125f30> /System/Library/PrivateFrameworks/AFKUser.framework/AFKUser
0x1c2469000 - 0x1c26f0fff ANECompiler arm64e /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
0x1c26f1000 - 0x1c2705fff ANEServices arm64e <892263bf8972321bafd567ad02a18d1b> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1c270a000 - 0x1c27c8fff APFS arm64e <7edafa643f783bd2a5e33a4a561da182> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1c27c9000 - 0x1c27cffff ASEProcessing arm64e /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1c3003000 - 0x1c3008fff AggregateDictionary arm64e /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1c3196000 - 0x1c326ffff AirPlaySync arm64e /System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync
0x1c337b000 - 0x1c3397fff AlgosScoreFramework arm64e <5c7187b493873ec2aaec38217477c23e> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/AlgosScoreFramework
0x1c34c9000 - 0x1c3659fff AppC3D arm64e /System/Library/PrivateFrameworks/AppC3D.framework/AppC3D
0x1c365a000 - 0x1c367dfff AppConduit arm64e <215852febc063104af8826a31fa23dd9> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
0x1c4aa1000 - 0x1c4ab0fff AppleFSCompression arm64e <34598412dc53349892b4f249fa996350> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1c4abd000 - 0x1c4ae1fff AppleIDSSOAuthentication arm64e /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1c4ae2000 - 0x1c4b27fff AppleJPEG arm64e <5fa8e99c227f39879149a9fa5275b651> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1c4bb4000 - 0x1c4bc9fff AppleNeuralEngine arm64e /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1c4bd3000 - 0x1c4bf7fff AppleSauce arm64e <5c480b789dfb3fe5ba264691c1f88a8d> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1c4c28000 - 0x1c4c46fff AssetCacheServices arm64e /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x1c4db1000 - 0x1c4e11fff AuthKitUI arm64e /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
0x1c4ea2000 - 0x1c4ebbfff BiomePubSub arm64e <14da5dc31c9f3e5dade4c9ee99c6413a> /System/Library/PrivateFrameworks/BiomePubSub.framework/BiomePubSub
0x1c51ae000 - 0x1c51bdfff BluetoothManager arm64e <42fc1b4fd49831b58684b707a38436da> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x1c546a000 - 0x1c5474fff CMCaptureCore arm64e <203549efeb873319bfec7749818fb59b> /System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore
0x1c5475000 - 0x1c548cfff CPAnalytics arm64e <4557723940203473bba8a27b4a874f29> /System/Library/PrivateFrameworks/CPAnalytics.framework/CPAnalytics
0x1c548f000 - 0x1c549efff CPMS arm64e <2a9d048276f339afa95beb6ab9557604> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x1c549f000 - 0x1c54affff CTCarrierSpace arm64e /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x1c57c5000 - 0x1c57d0fff CaptiveNetwork arm64e <438ae3c09d773cd6b3fc8172b7e68a28> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1c58fa000 - 0x1c5937fff Catalyst arm64e /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
0x1c595d000 - 0x1c5982fff CellularPlanManager arm64e <064d6e44e233300da8d4a9b1a6ac0961> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1c599b000 - 0x1c59a3fff CertUI arm64e /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x1c59ac000 - 0x1c59fcfff ChunkingLibrary arm64e /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1c5e27000 - 0x1c5e2efff CommonAuth arm64e /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x1c5e2f000 - 0x1c5e33fff CommunicationsFilter arm64e <1677964867c036c1b4e8f835fd1203bc> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x1c5f09000 - 0x1c5f0cfff ConstantClasses arm64e /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1c5f5e000 - 0x1c5fdbfff ContactsUICore arm64e /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x1c6161000 - 0x1c6258fff CoreBrightness arm64e <8779d983de8d39a898b05f1357369de9> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1c62c6000 - 0x1c62d5fff CoreDuetDaemonProtocol arm64e /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1c62d8000 - 0x1c62dafff CoreDuetDebugLogging arm64e <08c1ced4b6d23b6a9206feae90d408a3> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1c62e9000 - 0x1c62fbfff CoreEmoji arm64e <64bb59468c9d3706b0c84f94eda95fa6> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1c692c000 - 0x1c6930fff CoreOptimization arm64e /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1c6931000 - 0x1c69eefff CorePDF arm64e <2bb11630a5f03c5dbcfd9166e66dfaab> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x1c69ef000 - 0x1c69f7fff CorePhoneNumbers arm64e /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1c69f8000 - 0x1c6a4ffff CorePrediction arm64e /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1c7391000 - 0x1c739cfff CoreRecents arm64e /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x1c739d000 - 0x1c7409fff CoreRecognition arm64e <9352ef7f95f3324590ce294cf764a1d4> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x1c740a000 - 0x1c7422fff CoreSDB arm64e /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB
0x1c7423000 - 0x1c744dfff CoreSVG arm64e <012037e7a6183373b8097fa32264a57e> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x1c7624000 - 0x1c7628fff DAAPKit arm64e /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x1c7646000 - 0x1c7653fff DCIMServices arm64e <3fc921f79004309787e67a5c3a556eca> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x1c766a000 - 0x1c76a8fff DataDetectorsNaturalLanguage arm64e /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
0x1c7706000 - 0x1c7730fff DeviceIdentity arm64e <63ef4b0617b138e19c4d4416228b78c4> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1c7864000 - 0x1c789bfff DistributedEvaluation arm64e /System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation
0x1c79c6000 - 0x1c7a02fff DocumentManager arm64e /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x1c7a03000 - 0x1c7a23fff DocumentManagerCore arm64e <8081d2b7b5643eb3bc63c7f910bca3c6> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1c7aae000 - 0x1c7ab0fff DragUI arm64e <886c83486d80388ca9ae580581ff1e3d> /System/Library/PrivateFrameworks/DragUI.framework/DragUI
0x1c7ae0000 - 0x1c7b11fff EAP8021X arm64e <930411b09df032d98d485232739c903e> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1c7b41000 - 0x1c7b56fff Engram arm64e <23de13adf86432c29fe535af865666b0> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1c7c97000 - 0x1c7c9efff ExtensionFoundation arm64e /System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation
0x1c7e32000 - 0x1c7e3afff FSEvents arm64e <5b7482d4ab2730748e4209d88f096493> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
0x1c7e3b000 - 0x1c7e5afff FTAWD arm64e <33e67a3224fe3b039ea235ac08990494> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x1c7e5b000 - 0x1c7e5efff FTClientServices arm64e <1a6648eae12f3ecd9b6eeb02bbf78fe1> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x1c7e5f000 - 0x1c8273fff FaceCore arm64e /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1c827c000 - 0x1c8281fff FeatureFlagsSupport arm64e <6a50b1c3c520398b8c9a5ffb1d326e75> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport
0x1c8282000 - 0x1c828cfff FeedbackLogger arm64e /System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger
0x1c842d000 - 0x1c856ffff libFontParser.dylib arm64e /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1c8570000 - 0x1c8578fff libGSFont.dylib arm64e /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x1c8579000 - 0x1c85b6fff libGSFontCache.dylib arm64e <8971ad0fd4d53bc59dc550cf1f2b5eeb> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1c861c000 - 0x1c8629fff libhvf.dylib arm64e /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x1c8651000 - 0x1c8669fff Futhark arm64e /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1c92eb000 - 0x1c930afff GenerationalStorage arm64e <7fd0e4a64ec0376094fa7fc92b8c6ae3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x1c930b000 - 0x1c9318fff GraphVisualizer arm64e /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1c9345000 - 0x1c9351fff HID arm64e <997e4d59f29c3718ae5900013b2f93c5> /System/Library/PrivateFrameworks/HID.framework/HID
0x1c95e7000 - 0x1c9659fff Heimdal arm64e <72d2db5a8b9f37c89e0484cf25e1eeaf> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1c99f0000 - 0x1c9a67fff HomeSharing arm64e /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x1c9ac1000 - 0x1c9ac7fff IDSKVStore arm64e /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore
0x1c9df6000 - 0x1c9dfffff IOKitten arm64e <9ad896dbcfe8393cb7a210b951d9089c> /System/Library/PrivateFrameworks/IOKitten.framework/IOKitten
0x1c9e00000 - 0x1c9e02fff IOSurfaceAccelerator arm64e /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1c9e2d000 - 0x1c9e34fff IdleTimerServices arm64e <7c3d6a90eef83db9b955f7bb61ead2f8> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x1c9e3d000 - 0x1c9e43fff IncomingCallFilter arm64e <60ccbc2a7e3b3a77a0b7931b08f6f729> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x1c9f09000 - 0x1c9f16fff IntentsFoundation arm64e <20d10bef741433eda59cc0307c653aeb> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1c9f31000 - 0x1c9f33fff InternationalTextSearch arm64e <649157ff631a31c8807722a1352f0e07> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x1c9f34000 - 0x1c9f51fff IntlPreferences arm64e /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1ca1ca000 - 0x1ca1d1fff LinguisticData arm64e <312c5d7f90d3320f8aeb09937d161525> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x1ca224000 - 0x1ca25dfff LocalAuthenticationPrivateUI arm64e /System/Library/PrivateFrameworks/LocalAuthenticationPrivateUI.framework/LocalAuthenticationPrivateUI
0x1ca423000 - 0x1ca423fff Marco arm64e /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1ca734000 - 0x1caa04fff MediaLibraryCore arm64e <48bff21ece913e6bb6976e753487e23d> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x1caa05000 - 0x1caa92fff MediaPlatform arm64e <255aa9ef15f938789f6a77ccc7c0cad0> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x1cae99000 - 0x1caf6bfff MetalTools arm64e /System/Library/PrivateFrameworks/MetalTools.framework/MetalTools
0x1caf8d000 - 0x1cafeafff MetricsKit arm64e <9b10f898328d393490650ef80281158d> /System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit
0x1caffc000 - 0x1cb010fff MobileBluetooth arm64e /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x1cb093000 - 0x1cb099fff MobileSystemServices arm64e <6ba8ebc692dd38d180f292d4269cd1f1> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1cb452000 - 0x1cb458fff Netrb arm64e <260396c402443b028b7448f550e02c17> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1cb519000 - 0x1cb533fff NetworkStatistics arm64e <617ea04ac1db345aab671fdb52aa7b17> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x1cb611000 - 0x1cb652fff OTSVG arm64e <00d86fb69cf635faab22b8b6fa7cda34> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1cbca0000 - 0x1cbca2fff ParsecSubscriptionServiceSupport arm64e /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x1cbca7000 - 0x1cbcd3fff Pasteboard arm64e /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
0x1cbd05000 - 0x1cbd11fff PersonaKit arm64e <3b65e0756d4a3c9183bb04ba1e0e2949> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1cbd12000 - 0x1cbd1ffff PersonaUI arm64e <21d21ae7be723fd88d12cb4c88f33adf> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
0x1cbd58000 - 0x1cbd58fff PhoneNumbers arm64e /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1cbf28000 - 0x1cbf68fff PhotosImagingFoundation arm64e <646c4437d21d3a09bd70f5c0a981e2a8> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
0x1cbf69000 - 0x1cbfb5fff PhysicsKit arm64e /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1cc076000 - 0x1cc081fff PointerUIServices arm64e /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices
0x1cd574000 - 0x1cd57ffff RTCReporting arm64e <127230431d943bd1aefc3713879938f2> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1cd8ce000 - 0x1cd8e0fff RemoteTextInput arm64e <4957abae6a4e3edd953919ce547c19d7> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1cd8e1000 - 0x1cd94afff RemoteUI arm64e /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
0x1cd983000 - 0x1cd987fff RevealCore arm64e <44dd2868d96c3cbfabf4d6ad1ba5ef49> /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
0x1cd99e000 - 0x1cdd2afff SDAPI arm64e <3d6201e6f64f3b289ca37a65320bdae2> /System/Library/PrivateFrameworks/SDAPI.framework/SDAPI
0x1cf44d000 - 0x1cf457fff SignpostCollection arm64e <0e1a2eef68dd3fe5aeaa1d3759c46362> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1cf458000 - 0x1cf458fff SignpostMetrics arm64e <81374dd6fb9c3fb8b64db78fc1ddd1bc> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x1cf45a000 - 0x1cf49bfff SignpostSupport arm64e <62f534a6875435c5b919c1ff754031a8> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1cffcc000 - 0x1cffccfff SoftLinking arm64e <2039e1311e783ef6b012310bc4de4222> /System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking
0x1d04cd000 - 0x1d050bfff StreamingZip arm64e <2aeb745662cf308d9074f0a44f0680fd> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1d0513000 - 0x1d051dfff SymptomDiagnosticReporter arm64e <77f539309c7931b389d6e7d4f9203187> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1d054f000 - 0x1d056bfff SymptomPresentationFeed arm64e /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed
0x1d05ab000 - 0x1d05bbfff TCC arm64e <5eb3e57592fe366093d4ee98625696e1> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1d0ec2000 - 0x1d0f76fff TextureIO arm64e <39b83f8ef7013ac99b77e9994ec66025> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1d11a4000 - 0x1d11abfff URLFormatting arm64e <359aa25a10a2333290b93cb58f491102> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x1d17a1000 - 0x1d17cbfff UsageTracking arm64e <6036e5b0b4d33b0ca2079be2310b1ca7> /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking
0x1d230a000 - 0x1d23d3fff VoiceTrigger arm64e <0fe2b5552dea36dea38bf4b1b4ac657b> /System/Library/PrivateFrameworks/VoiceTrigger.framework/VoiceTrigger
0x1d249a000 - 0x1d249bfff WatchdogClient arm64e /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x1d2780000 - 0x1d2ebcfff libwebrtc.dylib arm64e <34bda496e6933eb9b9f9ba90ee83914f> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1d2f3d000 - 0x1d2f54fff WebUI arm64e <5f498fab8ff43f4a9770181d3c283988> /System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x1d3498000 - 0x1d349bfff XCTTargetBootstrap arm64e /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x1d3521000 - 0x1d3540fff caulk arm64e /System/Library/PrivateFrameworks/caulk.framework/caulk
0x1d5ab5000 - 0x1d5abafff kperf arm64e <00833ee7334a357397d803fc54a7e96a> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1d5abb000 - 0x1d5ac3fff kperfdata arm64e <5fd952a747393327b7a964c9c3bfa46d> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1d5ac4000 - 0x1d5adafff libEDR arm64e <36804b020c1c3bab8fed5f225920287a> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1d5af3000 - 0x1d5b04fff perfdata arm64e /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x1d5b05000 - 0x1d5b36fff vCard arm64e /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1d6465000 - 0x1d64a1fff libAWDSupport.dylib arm64e /usr/lib/libAWDSupport.dylib
0x1d64a2000 - 0x1d685dfff libAWDSupportFramework.dylib arm64e <71246919933032508b91042ce99281ce> /usr/lib/libAWDSupportFramework.dylib
0x1d69e0000 - 0x1d69effff libAudioStatistics.dylib arm64e /usr/lib/libAudioStatistics.dylib
0x1d6b95000 - 0x1d6bc8fff libCRFSuite.dylib arm64e <2ae9058b25ce31468ab4f02615f16d47> /usr/lib/libCRFSuite.dylib
0x1d6bc9000 - 0x1d6bcafff libCTGreenTeaLogger.dylib arm64e <216ec5a25c553a51abc186cfb4a0b607> /usr/lib/libCTGreenTeaLogger.dylib
0x1d6bcb000 - 0x1d6bd5fff libChineseTokenizer.dylib arm64e /usr/lib/libChineseTokenizer.dylib
0x1d6e8c000 - 0x1d6e93fff libIOReport.dylib arm64e <4da98ad919f939e4b6d7db4d956aba56> /usr/lib/libIOReport.dylib
0x1d6f0f000 - 0x1d6f16fff libMatch.1.dylib arm64e <4e79655369f33fbf9e66c74da713576d> /usr/lib/libMatch.1.dylib
0x1d7033000 - 0x1d7034fff libThaiTokenizer.dylib arm64e <79a2d59378b13e2d868fc11ab23b4d6c> /usr/lib/libThaiTokenizer.dylib
0x1d72aa000 - 0x1d72acfff libapp_launch_measurement.dylib arm64e /usr/lib/libapp_launch_measurement.dylib
0x1d72ad000 - 0x1d72c3fff libapple_nghttp2.dylib arm64e /usr/lib/libapple_nghttp2.dylib
0x1d72c4000 - 0x1d7355fff libate.dylib arm64e <191d61e4155c3b16a602d59611c1653e> /usr/lib/libate.dylib
0x1d73e7000 - 0x1d73f7fff libbsm.0.dylib arm64e <67259e0c8b2a3ff3a21be629e0f686ac> /usr/lib/libbsm.0.dylib
0x1d73f8000 - 0x1d7404fff libbz2.1.0.dylib arm64e <1ece9cb83cd633c79f28a480997339dc> /usr/lib/libbz2.1.0.dylib
0x1d7405000 - 0x1d7405fff libcharset.1.dylib arm64e /usr/lib/libcharset.1.dylib
0x1d7406000 - 0x1d7417fff libcmph.dylib arm64e /usr/lib/libcmph.dylib
0x1d7418000 - 0x1d742ffff libcompression.dylib arm64e <0f27f2f9302f37978c084cd6cec38432> /usr/lib/libcompression.dylib
0x1d7430000 - 0x1d7446fff libcoretls.dylib arm64e <82b845672c153d149c2e5f7d52829fcc> /usr/lib/libcoretls.dylib
0x1d7447000 - 0x1d7448fff libcoretls_cfhelpers.dylib arm64e <2fc084f0e6cb38ccb3441c80ad1393d7> /usr/lib/libcoretls_cfhelpers.dylib
0x1d746c000 - 0x1d7473fff libcupolicy.dylib arm64e <7b39fce102fa3f45892ffdb80f422f4f> /usr/lib/libcupolicy.dylib
0x1d7474000 - 0x1d747bfff libdns_services.dylib arm64e <4cac384f00653034afbbcf8288b0bfd1> /usr/lib/libdns_services.dylib
0x1d747c000 - 0x1d7499fff libedit.3.dylib arm64e /usr/lib/libedit.3.dylib
0x1d749a000 - 0x1d749afff libenergytrace.dylib arm64e /usr/lib/libenergytrace.dylib
0x1d749b000 - 0x1d74b4fff libexpat.1.dylib arm64e /usr/lib/libexpat.1.dylib
0x1d74df000 - 0x1d74e3fff libgermantok.dylib arm64e <585ec8a40b0e32e88dba53f35a07c70f> /usr/lib/libgermantok.dylib
0x1d74e4000 - 0x1d74e9fff libheimdal-asn1.dylib arm64e /usr/lib/libheimdal-asn1.dylib
0x1d74ea000 - 0x1d75dffff libiconv.2.dylib arm64e <03e7a7e4dde835508741edd69270af5f> /usr/lib/libiconv.2.dylib
0x1d75fe000 - 0x1d75fffff liblangid.dylib arm64e <1255de5ea4983685bb6973604d732267> /usr/lib/liblangid.dylib
0x1d7600000 - 0x1d760bfff liblockdown.dylib arm64e <23c07c0fc5093e37bfd7a0e276ea3d98> /usr/lib/liblockdown.dylib
0x1d760c000 - 0x1d7624fff liblzma.5.dylib arm64e <9046f47632bb38bba83c47f76e71d306> /usr/lib/liblzma.5.dylib
0x1d7653000 - 0x1d76a8fff libmecab.dylib arm64e <1248e78f670a3e80a0dd39837cf782d7> /usr/lib/libmecab.dylib
0x1d76a9000 - 0x1d78e0fff libmecabra.dylib arm64e /usr/lib/libmecabra.dylib
0x1d78e1000 - 0x1d78f4fff libmis.dylib arm64e /usr/lib/libmis.dylib
0x1d78f5000 - 0x1d790afff libnetworkextension.dylib arm64e /usr/lib/libnetworkextension.dylib
0x1d7cb5000 - 0x1d7ceffff libpcap.A.dylib arm64e <989fc8a318983af69064be81e007c38d> /usr/lib/libpcap.A.dylib
0x1d7cf0000 - 0x1d7cfefff libperfcheck.dylib arm64e /usr/lib/libperfcheck.dylib
0x1d7d06000 - 0x1d7d18fff libprequelite.dylib arm64e <1849a2dc033a3aaa8d60fcf4b10b499c> /usr/lib/libprequelite.dylib
0x1d7d19000 - 0x1d7d2bfff libprotobuf-lite.dylib arm64e <53f0e1389e0530bc9131dd569d28ecad> /usr/lib/libprotobuf-lite.dylib
0x1d7d2c000 - 0x1d7d8efff libprotobuf.dylib arm64e /usr/lib/libprotobuf.dylib
0x1d7def000 - 0x1d7e07fff libresolv.9.dylib arm64e <51b76938e8c13d458dd30429749fef91> /usr/lib/libresolv.9.dylib
0x1d7e08000 - 0x1d7e0afff libsandbox.1.dylib arm64e <09633f29d77035d9893f2a49dde7ca48> /usr/lib/libsandbox.1.dylib
0x1d7e54000 - 0x1d7e57fff libutil.dylib arm64e /usr/lib/libutil.dylib
0x1d7e58000 - 0x1d7f43fff libxml2.2.dylib arm64e <55df15ddfd323d458d67b61f9d0f9463> /usr/lib/libxml2.2.dylib
0x1d7f48000 - 0x1d7f71fff libxslt.1.dylib arm64e <6e2a5981e8ff37888498d7fd33116bfd> /usr/lib/libxslt.1.dylib
0x1d7f72000 - 0x1d7f83fff libz.1.dylib arm64e <9e35153333503f8bb9b567ec5881c5ef> /usr/lib/libz.1.dylib
0x1d8076000 - 0x1d8076fff libswiftCoreFoundation.dylib arm64e <8eb23177992d3ae683a427f98761d366> /usr/lib/swift/libswiftCoreFoundation.dylib
0x1d8077000 - 0x1d8077fff libswiftCoreImage.dylib arm64e <2c10a28b00333e82b2cb5dae5ee94b14> /usr/lib/swift/libswiftCoreImage.dylib
0x1d80d0000 - 0x1d80d9fff libswiftDarwin.dylib arm64e <53a5784711cb3c77a42392362dfa2dbb> /usr/lib/swift/libswiftDarwin.dylib
0x1d80f8000 - 0x1d80fcfff libswiftMetal.dylib arm64e /usr/lib/swift/libswiftMetal.dylib
0x1d8170000 - 0x1d8171fff libswiftQuartzCore.dylib arm64e /usr/lib/swift/libswiftQuartzCore.dylib
0x1d81d9000 - 0x1d81defff libcache.dylib arm64e <7567dfaa324e306aa66fc2dda88b033b> /usr/lib/system/libcache.dylib
0x1d81df000 - 0x1d81ecfff libcommonCrypto.dylib arm64e <25abfbdfed4431f7a628bd742e231f31> /usr/lib/system/libcommonCrypto.dylib
0x1d81ed000 - 0x1d81f0fff libcompiler_rt.dylib arm64e /usr/lib/system/libcompiler_rt.dylib
0x1d81f1000 - 0x1d81f9fff libcopyfile.dylib arm64e /usr/lib/system/libcopyfile.dylib
0x1d82e1000 - 0x1d82e1fff liblaunch.dylib arm64e <2484228087bc30c68b69739b80187b10> /usr/lib/system/liblaunch.dylib
0x1d82e2000 - 0x1d82e7fff libmacho.dylib arm64e <4228e603576133778acefc84d49a4d2f> /usr/lib/system/libmacho.dylib
0x1d82e8000 - 0x1d82eafff libremovefile.dylib arm64e <904853f042653abe93730a3ecdf39678> /usr/lib/system/libremovefile.dylib
0x1d82eb000 - 0x1d82ecfff libsystem_blocks.dylib arm64e /usr/lib/system/libsystem_blocks.dylib
0x1d82ed000 - 0x1d82effff libsystem_collections.dylib arm64e /usr/lib/system/libsystem_collections.dylib
0x1d82f0000 - 0x1d82f4fff libsystem_configuration.dylib arm64e <230a7783b6ac3c7fba6991bdfa91823d> /usr/lib/system/libsystem_configuration.dylib
0x1d82f5000 - 0x1d8307fff libsystem_containermanager.dylib arm64e <01ba22f7abce3319860fb76d10a0d6d9> /usr/lib/system/libsystem_containermanager.dylib
0x1d8308000 - 0x1d8309fff libsystem_coreservices.dylib arm64e /usr/lib/system/libsystem_coreservices.dylib
0x1d830a000 - 0x1d8313fff libsystem_darwin.dylib arm64e <63485fa6fe9235b783a00554e0194eba> /usr/lib/system/libsystem_darwin.dylib
0x1d8314000 - 0x1d831cfff libsystem_dnssd.dylib arm64e <591126c3ffdb3df8afb3cb5f5c3e79a0> /usr/lib/system/libsystem_dnssd.dylib
0x1d831d000 - 0x1d831ffff libsystem_featureflags.dylib arm64e /usr/lib/system/libsystem_featureflags.dylib
0x1d8320000 - 0x1d834dfff libsystem_m.dylib arm64e /usr/lib/system/libsystem_m.dylib
0x1d834e000 - 0x1d8354fff libsystem_platform.dylib arm64e <88fa2f54074d32c49f4879eb67e67b7b> /usr/lib/system/libsystem_platform.dylib
0x1d8355000 - 0x1d8355fff libsystem_product_info_filter.dylib arm64e <563ac8a6230f305bbada77870fec6204> /usr/lib/system/libsystem_product_info_filter.dylib
0x1d8356000 - 0x1d8361fff libsystem_pthread.dylib arm64e /usr/lib/system/libsystem_pthread.dylib
0x1d8362000 - 0x1d8365fff libsystem_sandbox.dylib arm64e /usr/lib/system/libsystem_sandbox.dylib
0x1d8366000 - 0x1d8370fff libunwind.dylib arm64e /usr/lib/system/libunwind.dylib
0x1d8371000 - 0x1d83a7fff libxpc.dylib arm64e /usr/lib/system/libxpc.dylib
0x1da7aa000 - 0x1da7bcfff SpotlightLinguistics arm64e <2c2506e0b4133cd5a272174205658e8c> /System/Library/PrivateFrameworks/SpotlightLinguistics.framework/SpotlightLinguistics

EOF