Giter Site home page Giter Site logo

deltachat / deltachat-ios Goto Github PK

View Code? Open in Web Editor NEW
302.0 19.0 49.0 168.83 MB

Email-based instant messaging for iOS.

License: GNU General Public License v3.0

Swift 98.73% C 0.03% Shell 0.33% Ruby 0.08% JavaScript 0.34% Objective-C 0.03% CSS 0.05% Python 0.42%
email deltachat messenger ios

deltachat-ios's Introduction

Delta Chat iOS Client

This is the iOS client for Delta Chat. It is available on Testflight and in the App Store.

For the core library and other common info, please refer to the Delta Chat Core Library.

For general contribution hints, please refer to CONTRIBUTING.md.

Screenshot Chat List Screenshot Chat View

Testing

Betas are distributed via Testflight. Just scan this QR code with the camera app of your iPhone/iPad

or open this link

https://testflight.apple.com/join/uEMc1NxS

on your iPhone or iPad to try Deltachat iOS Beta.

Check the Changelog (for TestFlight builds) at the bottom to see what's included.

How to build with Xcode

Install rustup

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Install cargo-lipo

cargo install cargo-lipo

Setup workspace

git clone [email protected]:deltachat/deltachat-ios.git
cd deltachat-ios
git submodule update --init --recursive
# Make sure the correct rust version is installed
rustup toolchain install `cat rust-toolchain`

To run the project, open deltachat-ios.xcworkspace (not the 'xcodeproj' file).

open deltachat-ios.xcworkspace

This should open Xcode. Then make sure to select the deltachat-ios scheme at the top left (see screenshot below).

Screenshot

Now build and run - e.g. by pressing Cmd-r - or click on the triangle at the top:

Screenshot

If you're on MacOS Mojave and Xcode complains about missing header files (different mac versions may or may not install all headers), you can force-install them with the following command:

$ sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /

If you get an error about that file not existing, you probably simply don't have the Xcode command line tools installed which can be remedied simply as follows:

$ xcode-select --install

On MacOS Catalina the include paths changed, /usr/include doesn't exist anymore. You'll need to manually set the CPATH variable to specify the location of the header files:

export CPATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include

Note: the default terminal switched to zsh on MacOS Catalina. All your exported variables have to move to ~/.zshrc

Running the app on M1 Mac computers

If you want to import/export a backup this is the location you want to put it (import) or retrieve it (export)

~/Library/Containers/98CC2CD0-7DED-4E02-9C0A-B4FF287AA877/Data/Documents

LICENSE

Copyright 2018-2024 merlinux Gmbh, licensed under the GPLV3 or later version: https://www.gnu.org/licenses/gpl-3.0.html

deltachat-ios's People

Contributors

adbenitez avatar allareinsch avatar cyberta avatar dignifiedquire avatar dnjfqhd12345 avatar homdx avatar hpk42 avatar jikstra avatar jonasreinsch avatar link2xt avatar nayooti avatar neilzone avatar ozancankaratas avatar r10s avatar ralphtheninja avatar rosano avatar simon-laux avatar zeitschlag avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

deltachat-ios's Issues

Bug: Sync only after sending

when checking back if new messages have arrived it seems they are only processed/displayed after I send a message (no matter which chat)

display error events to the user

filing this issue so that it is not forgotten. it's not the most urgent thing to do :)

in general, deltachat-core sends errors to the UI as DC_EVENT_ERROR (there are also DC_EVENT_WARNING and DC_EVENT_INFO, which, however, should not be displayed to the user directly).

the most recent version displays DC_EVENT_ERROR during configuration as a dialog.

however, DC_EVENT_ERROR should also be reported to the user in other situations, possibly in a non-disturbing way.

eg, you will get the DC_EVENT_ERROR event when you're offline and try to send a message. the user should be informed by this, but, as eg. in flaky networks this is quite usual, it would be too much to let the user confirm the error.
(to distinguish between the display methods, for android, we i use a simple flag showErrorAsDialog that is set before configuration and cleared afterwards. if it is set, when handling DC_EVENT_ERROR we save if as a string (as ios does now) else we show a non-disturbing message)

maybe we can use sth. as the "toast" on android for this, here is a very compact example about how this can be implemtented: https://stackoverflow.com/questions/18680891/displaying-a-message-in-ios-which-has-the-same-functionality-as-toast-in-android#answer-49454931

don't know ios, maybe there are also better ways.

maybe it is also an option to just do nothing here - messages that have errors should be flagged anyway and dc_msg_get _info() also gets the error for exactly this message.
maybe this is sufficient and there is nothing more to do :) again, it also depend on what ios users typically expect.

New Testflight iOS release

Delta/Desktop and Delta/Android are nearing bigger public releasing as 0.98 or 0.99 versions, also to F-droid, it'd be good to have a Testflight release with all of the current PRs in.

Add explanatory screen(s)

I find the UI - especially the settings - currently rather incomprehensible. Given the fact that people over at r/privacy were asking “what is chat over email?” It might benefit the entire project to explain the idea with some Alice / Bob graphics.

Especially for people that download the app without having visited the website the current UI can be overwhelming if they do not grasp the concept behind DeltaChat.

Is this part of your MVP milestone?

Best wishes

Sent with GitHawk

New Group fixes

make group creation work properly -- currently it's showing a black screen after a group has been created.

No alert for new messages

@jonasreinsch

Current behaviour (beta 6):

  • Only a vibration when a new message arrives. No indicator to be seen later.

Desired behaviour:

  • When a new message arrives there should be a message or icon somewhere to indicate that DC has a new message (like Android version).
  • Even when a chat is open new messages has to be added and marked is some way.

This is a very important feature for daily use and should be worked on with highest priority for next version!

add a hint for fetching submodules to README

It might fail with an access denied like this:

[email protected]: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Options to solve it:
A: get an ssh key registered with your GitHub account and have it setup in a way that git on your system can use it.
B: after a failed attempt open the file '.git/configand change the git/ssh urls into https ones (examplehttps://github.com/deltachat/deltachat-ios.git` instead of [email protected]:deltachat/deltachat-ios.git).

use flutter?

I wander maybe this software using flutter is batter.Beause flutter is design by compile both ios and android.
我觉得,deltachat使用flutter框架会更好。因为flutter框架同时编译ios和安卓

iPad crash after login

I tried to use the Delta Chat for iOS beta on my iPad (A1822) with iOS 12 beta with my fastmail.com account. At first I tried with an IMAP only application password. After login I got an empty list and nothing happens. When I try to click the three dots menu in the upper right, the app just closes. After removal and reinstall I tried with a Mail (IMAP/POP/SMTP) application password with no change.

I'm not sure whether the crash report was sent via TestFlight, so I'm attaching the latest one here:

{"app_name":"deltachat-ios","app_cohort":"2|date=1536811200000&sf=143443&tid=9d47b4af789c9f14c2db80e4015d64d67946b6a4333d1b2d0f56b4eb5208e92c&ttype=e","app_version":"1.0","timestamp":"2018-09-13 06:44:59.50 +0200","slice_uuid":"0f63cae9-10e6-3cae-b68e-e83aa756c7fd","adam_id":1397229747,"build_version":"2","bundleID":"com.jonasreinsch.deltachatios","share_with_app_devs":false,"is_first_party":false,"bug_type":"109","os_version":"iPhone OS 12.0 (16A5366a)","incident_id":"99FD57A2-3D16-486A-A033-BA7924CBB762","is_beta":true,"name":"deltachat-ios"}
Incident Identifier: 99FD57A2-3D16-486A-A033-BA7924CBB762
Beta Identifier:     44E3089A-012F-4E4B-869D-E946ABF7E4A9
Hardware Model:      iPad6,11
Process:             deltachat-ios [2206]
Path:                /private/var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/deltachat-ios
Identifier:          com.jonasreinsch.deltachatios
Version:             2 (1.0)
AppVariant:          iPad6,11
Beta:                YES
Code Type:           ARM-64 (Native)
Role:                Non UI
Parent Process:      launchd [1]
Coalition:           com.jonasreinsch.deltachatios [709]


Date/Time:           2018-09-13 06:44:59.3329 +0200
Launch Time:         2018-09-13 06:15:21.4566 +0200
OS Version:          iPhone OS 12.0 (16A5366a)
Baseband Version:    n/a
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

Last Exception Backtrace:
(0x19e0f2ef8 0x19d2c0a40 0x1ca725d68 0x1ca72eebc 0x1ca72c840 0x1ca4043e4 0x1ca3f2424 0x1ca42175c 0x19e080b94 0x19e07b828 0x19e07bdc8 0x19e07b5b8 0x1a02ec584 0x1ca3f87ac 0x10302096c 0x19db3bc0c)

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libsystem_kernel.dylib        	0x000000019dc88104 0x19dc65000 + 143620
1   libsystem_pthread.dylib       	0x000000019dd030e0 0x19dd01000 + 8416
2   libsystem_c.dylib             	0x000000019dbdfd78 0x19db88000 + 359800
3   libc++abi.dylib               	0x000000019d2a7f78 0x19d2a6000 + 8056
4   libc++abi.dylib               	0x000000019d2a8120 0x19d2a6000 + 8480
5   libobjc.A.dylib               	0x000000019d2c0e48 0x19d2ba000 + 28232
6   libc++abi.dylib               	0x000000019d2b40fc 0x19d2a6000 + 57596
7   libc++abi.dylib               	0x000000019d2b3cec 0x19d2a6000 + 56556
8   libobjc.A.dylib               	0x000000019d2c0c10 0x19d2ba000 + 27664
9   CoreFoundation                	0x000000019e07b624 0x19dfd5000 + 681508
10  GraphicsServices              	0x00000001a02ec584 0x1a02e1000 + 46468
11  UIKitCore                     	0x00000001ca3f87ac 0x1ca093000 + 3561388
12  deltachat-ios                 	0x000000010302096c 0x102fe8000 + 231788
13  libdyld.dylib                 	0x000000019db3bc0c 0x19db3b000 + 3084

Thread 1 name:  Dispatch queue: com.apple.root.default-qos
Thread 1:
0   libsystem_kernel.dylib        	0x000000019dc87f0c 0x19dc65000 + 143116
1   libsystem_pthread.dylib       	0x000000019dd04d48 0x19dd01000 + 15688
2   deltachat-ios                 	0x0000000102ff1b48 0x102fe8000 + 39752
3   deltachat-ios                 	0x000000010303cc3c 0x102fe8000 + 347196
4   deltachat-ios                 	0x000000010303bc14 0x102fe8000 + 343060
5   libdispatch.dylib             	0x000000019db2a6c8 0x19daca000 + 394952
6   libdispatch.dylib             	0x000000019db2b484 0x19daca000 + 398468
7   libdispatch.dylib             	0x000000019dace4d8 0x19daca000 + 17624
8   libdispatch.dylib             	0x000000019dadaa60 0x19daca000 + 68192
9   libdispatch.dylib             	0x000000019dadb308 0x19daca000 + 70408
10  libsystem_pthread.dylib       	0x000000019dd0d190 0x19dd01000 + 49552
11  libsystem_pthread.dylib       	0x000000019dd0fd00 0x19dd01000 + 60672

Thread 2 name:  com.apple.uikit.eventfetch-thread
Thread 2:
0   libsystem_kernel.dylib        	0x000000019dc7ced0 0x19dc65000 + 98000
1   libsystem_kernel.dylib        	0x000000019dc7c3a8 0x19dc65000 + 95144
2   CoreFoundation                	0x000000019e080fb0 0x19dfd5000 + 704432
3   CoreFoundation                	0x000000019e07be4c 0x19dfd5000 + 683596
4   CoreFoundation                	0x000000019e07b5b8 0x19dfd5000 + 681400
5   Foundation                    	0x000000019ea6d6a4 0x19ea65000 + 34468
6   Foundation                    	0x000000019ea6d550 0x19ea65000 + 34128
7   UIKitCore                     	0x00000001ca355d14 0x1ca093000 + 2895124
8   Foundation                    	0x000000019eba03b0 0x19ea65000 + 1291184
9   libsystem_pthread.dylib       	0x000000019dd0c2fc 0x19dd01000 + 45820
10  libsystem_pthread.dylib       	0x000000019dd0c25c 0x19dd01000 + 45660
11  libsystem_pthread.dylib       	0x000000019dd0fd08 0x19dd01000 + 60680

Thread 3 name:  Dispatch queue: com.apple.root.default-qos
Thread 3:
0   libsystem_kernel.dylib        	0x000000019dc87f0c 0x19dc65000 + 143116
1   libsystem_pthread.dylib       	0x000000019dd04d48 0x19dd01000 + 15688
2   deltachat-ios                 	0x0000000102fff7e8 0x102fe8000 + 96232
3   deltachat-ios                 	0x0000000102ff19e8 0x102fe8000 + 39400
4   deltachat-ios                 	0x000000010303cbf4 0x102fe8000 + 347124
5   deltachat-ios                 	0x000000010303bc14 0x102fe8000 + 343060
6   libdispatch.dylib             	0x000000019db2a6c8 0x19daca000 + 394952
7   libdispatch.dylib             	0x000000019db2b484 0x19daca000 + 398468
8   libdispatch.dylib             	0x000000019dace4d8 0x19daca000 + 17624
9   libdispatch.dylib             	0x000000019dadaa60 0x19daca000 + 68192
10  libdispatch.dylib             	0x000000019dadb308 0x19daca000 + 70408
11  libsystem_pthread.dylib       	0x000000019dd0d190 0x19dd01000 + 49552
12  libsystem_pthread.dylib       	0x000000019dd0fd00 0x19dd01000 + 60672

Thread 4:
0   libsystem_pthread.dylib       	0x000000019dd0fcfc 0x19dd01000 + 60668

Thread 5:
0   libsystem_pthread.dylib       	0x000000019dd0fcfc 0x19dd01000 + 60668

Thread 6 name:  com.apple.NSURLConnectionLoader
Thread 6:
0   libsystem_kernel.dylib        	0x000000019dc7ced0 0x19dc65000 + 98000
1   libsystem_kernel.dylib        	0x000000019dc7c3a8 0x19dc65000 + 95144
2   CoreFoundation                	0x000000019e080fb0 0x19dfd5000 + 704432
3   CoreFoundation                	0x000000019e07be4c 0x19dfd5000 + 683596
4   CoreFoundation                	0x000000019e07b5b8 0x19dfd5000 + 681400
5   CFNetwork                     	0x000000019e699e18 0x19e698000 + 7704
6   Foundation                    	0x000000019eba03b0 0x19ea65000 + 1291184
7   libsystem_pthread.dylib       	0x000000019dd0c2fc 0x19dd01000 + 45820
8   libsystem_pthread.dylib       	0x000000019dd0c25c 0x19dd01000 + 45660
9   libsystem_pthread.dylib       	0x000000019dd0fd08 0x19dd01000 + 60680

Thread 7:
0   libsystem_pthread.dylib       	0x000000019dd0fcfc 0x19dd01000 + 60668

Thread 8:
0   libsystem_pthread.dylib       	0x000000019dd0fcfc 0x19dd01000 + 60668

Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x0000000000000000   x2: 0x0000000000000000   x3: 0x00000002811c87b7
    x4: 0x000000019d2b7b81   x5: 0x000000016ce174b0   x6: 0x000000000000006e   x7: 0xffffffffffffffec
    x8: 0x0000000000000800   x9: 0x000000019dd078d8  x10: 0x000000019dd02f64  x11: 0x0000000000000003
   x12: 0x000000000000000f  x13: 0x0000000000000000  x14: 0x0000000000000010  x15: 0x0000000000000024
   x16: 0x0000000000000148  x17: 0x0000000000000000  x18: 0x0000000000000000  x19: 0x0000000000000006
   x20: 0x0000000103396b80  x21: 0x000000016ce174b0  x22: 0x0000000000000303  x23: 0x0000000103396c60
   x24: 0x0000000283dfc3b0  x25: 0x0000000000000000  x26: 0x0000000000000001  x27: 0x0000000000000000
   x28: 0x000000016ce17b00   fp: 0x000000016ce17410   lr: 0x000000019dd030e0
    sp: 0x000000016ce173e0   pc: 0x000000019dc88104 cpsr: 0x00000000

Binary Images:
0x102fe8000 - 0x1030f7fff deltachat-ios arm64  <0f63cae910e63caeb68ee83aa756c7fd> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/deltachat-ios
0x10313c000 - 0x103197fff MessageKit arm64  <662c96b78d3237029441378ddf7a8246> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/MessageKit.framework/MessageKit
0x1031bc000 - 0x1031c3fff libswiftCoreAudio.dylib arm64  <c701bca66b0e3d04a5b15cf01202f284> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftCoreAudio.dylib
0x1031cc000 - 0x1031d3fff libswiftCoreFoundation.dylib arm64  <c16d75fec7f83c3da31f1d7dfd066df2> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftCoreFoundation.dylib
0x1031dc000 - 0x1031effff libswiftCoreGraphics.dylib arm64  <b6ccc77096b730909f3a6fa8c5dd4dfc> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftCoreGraphics.dylib
0x103200000 - 0x103207fff libswiftCoreImage.dylib arm64  <1698d22231c337c1b0ab730386bd7ec6> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftCoreImage.dylib
0x103210000 - 0x103217fff libswiftCoreLocation.dylib arm64  <cbf38f1d682c37f08a6ada0fb06d780b> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftCoreLocation.dylib
0x103220000 - 0x10322bfff libswiftDarwin.dylib arm64  <720a190a39d337aeaa34a60937757801> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftDarwin.dylib
0x103238000 - 0x103253fff libswiftDispatch.dylib arm64  <c3f97fe4f4683648bccda3829bfeecd6> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftDispatch.dylib
0x103268000 - 0x10326ffff libswiftMapKit.dylib arm64  <fb0b6289e667372395d7532d891128ff> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftMapKit.dylib
0x103278000 - 0x10327ffff libswiftMetal.dylib arm64  <5b19347436d731c59d92892894621893> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftMetal.dylib
0x103288000 - 0x10328ffff libswiftObjectiveC.dylib arm64  <9089b515f2a838088bdaafa11ec3a079> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftObjectiveC.dylib
0x10329c000 - 0x1032a3fff libswiftQuartzCore.dylib arm64  <8a8e88af931834909c2c1cd64a97ff49> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftQuartzCore.dylib
0x1032ac000 - 0x1032bbfff libswiftUIKit.dylib arm64  <53ae604d97ee384b9de2d8e9351f8afd> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftUIKit.dylib
0x1032c8000 - 0x1032dbfff libswiftAVFoundation.dylib arm64  <82c7b4155cb63dfeb0425fcadc0103a0> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftAVFoundation.dylib
0x1032e8000 - 0x1032effff libswiftCoreMedia.dylib arm64  <2d240dd7fa5c36d687a19318d85cfe2a> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftCoreMedia.dylib
0x1032fc000 - 0x10335ffff dyld arm64  <14da2253b5583393bb3ddf5b97c0c281> /usr/lib/dyld
0x1033cc000 - 0x1036d7fff libswiftCore.dylib arm64  <5defeba1dd883b4c9d79b11e39e2629c> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftCore.dylib
0x103794000 - 0x1038effff libswiftFoundation.dylib arm64  <f3390f4666a936fdb6e234c4c26aed15> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftFoundation.dylib
0x103944000 - 0x10397ffff libswiftsimd.dylib arm64  <7260da6c19ba37eba2006b13ea304300> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftsimd.dylib
0x103994000 - 0x10399bfff libswiftos.dylib arm64  <96a7217772ab3d05b593f917aa0ba359> /var/containers/Bundle/Application/CABBD2C1-7AB1-4D19-B672-31CE535EF61F/deltachat-ios.app/Frameworks/libswiftos.dylib
0x103c88000 - 0x103c93fff libobjc-trampolines.dylib arm64  <5c422976f1c53a9d95d66b13b3280bad> /usr/lib/libobjc-trampolines.dylib
0x19d249000 - 0x19d24afff libSystem.B.dylib arm64  <d89997a4fbfc3e7fb8fc428598754bb0> /usr/lib/libSystem.B.dylib
0x19d24b000 - 0x19d2a5fff libc++.1.dylib arm64  <9319594b3a0237a08cbc2c83f4da440d> /usr/lib/libc++.1.dylib
0x19d2a6000 - 0x19d2b9fff libc++abi.dylib arm64  <eb81671cd91730a985be81bf067b38e5> /usr/lib/libc++abi.dylib
0x19d2ba000 - 0x19da42fff libobjc.A.dylib arm64  <68e1654579453adf836a5248bae87f45> /usr/lib/libobjc.A.dylib
0x19da43000 - 0x19da48fff libcache.dylib arm64  <71077e47cbcb3af189a1d51310b046f2> /usr/lib/system/libcache.dylib
0x19da49000 - 0x19da54fff libcommonCrypto.dylib arm64  <072007ec15e533f7aff2ecf13e3db7aa> /usr/lib/system/libcommonCrypto.dylib
0x19da55000 - 0x19da59fff libcompiler_rt.dylib arm64  <569e39f061ed36709bad2a41be909820> /usr/lib/system/libcompiler_rt.dylib
0x19da5a000 - 0x19da62fff libcopyfile.dylib arm64  <91f8d06005b43319a838eed25fbbd3c8> /usr/lib/system/libcopyfile.dylib
0x19da63000 - 0x19dac9fff libcorecrypto.dylib arm64  <02887fad23d43dba8bfcea553383fa6b> /usr/lib/system/libcorecrypto.dylib
0x19daca000 - 0x19db3afff libdispatch.dylib arm64  <fffacf25324434fab47666fb64a8ecec> /usr/lib/system/libdispatch.dylib
0x19db3b000 - 0x19db65fff libdyld.dylib arm64  <9ba12f5f79783f8da614501b6de70962> /usr/lib/system/libdyld.dylib
0x19db66000 - 0x19db66fff liblaunch.dylib arm64  <e6c53af9ee1b37188e481cf527e4d173> /usr/lib/system/liblaunch.dylib
0x19db67000 - 0x19db6cfff libmacho.dylib arm64  <8559c554d0ee3dcd8c8dfe6b7aff345e> /usr/lib/system/libmacho.dylib
0x19db6d000 - 0x19db6efff libremovefile.dylib arm64  <81351d31f4de30d28ea973e559557495> /usr/lib/system/libremovefile.dylib
0x19db6f000 - 0x19db86fff libsystem_asl.dylib arm64  <e641094f5fe130ffb3542bf5c118dc55> /usr/lib/system/libsystem_asl.dylib
0x19db87000 - 0x19db87fff libsystem_blocks.dylib arm64  <d42c156488ac394497df1f330a05ef2c> /usr/lib/system/libsystem_blocks.dylib
0x19db88000 - 0x19dc06fff libsystem_c.dylib arm64  <bef10c3a4ffc36b886f0ea6c26423e4c> /usr/lib/system/libsystem_c.dylib
0x19dc07000 - 0x19dc0bfff libsystem_configuration.dylib arm64  <0d0a3e13059634d692159de8b0348048> /usr/lib/system/libsystem_configuration.dylib
0x19dc0c000 - 0x19dc13fff libsystem_containermanager.dylib arm64  <13fcedc3e1f53e6a92991394303ccac5> /usr/lib/system/libsystem_containermanager.dylib
0x19dc14000 - 0x19dc15fff libsystem_coreservices.dylib arm64  <3864cd1369dc3db2932f50987d5a889d> /usr/lib/system/libsystem_coreservices.dylib
0x19dc16000 - 0x19dc1cfff libsystem_darwin.dylib arm64  <85abc09fc1483eeb8f3511ccab0aca93> /usr/lib/system/libsystem_darwin.dylib
0x19dc1d000 - 0x19dc23fff libsystem_dnssd.dylib arm64  <6c861e8cabc334498b9395f96f0b4a11> /usr/lib/system/libsystem_dnssd.dylib
0x19dc24000 - 0x19dc64fff libsystem_info.dylib arm64  <e77815994a0937b28d7c244bcf2bace4> /usr/lib/system/libsystem_info.dylib
0x19dc65000 - 0x19dc8ffff libsystem_kernel.dylib arm64  <d5fc3b84732e3da7b617fa4d4a6ee231> /usr/lib/system/libsystem_kernel.dylib
0x19dc90000 - 0x19dcbdfff libsystem_m.dylib arm64  <34a4061d017c3d6886ae179d5e82b90d> /usr/lib/system/libsystem_m.dylib
0x19dcbe000 - 0x19dce1fff libsystem_malloc.dylib arm64  <5a812ec7421137b4a58984f8df07108c> /usr/lib/system/libsystem_malloc.dylib
0x19dce2000 - 0x19dceefff libsystem_networkextension.dylib arm64  <adf6d017b1bb38ffbe41f64292446d4c> /usr/lib/system/libsystem_networkextension.dylib
0x19dcef000 - 0x19dcf5fff libsystem_notify.dylib arm64  <5a43fe416f2331439deee924b80a06f0> /usr/lib/system/libsystem_notify.dylib
0x19dcf6000 - 0x19dd00fff libsystem_platform.dylib arm64  <0f7f400e3db0396ea548d60ce69f3cb2> /usr/lib/system/libsystem_platform.dylib
0x19dd01000 - 0x19dd11fff libsystem_pthread.dylib arm64  <1056b1bb99db3a3fa584d898b4fb33be> /usr/lib/system/libsystem_pthread.dylib
0x19dd12000 - 0x19dd14fff libsystem_sandbox.dylib arm64  <a44547b1cb9f3362b25beb326852ec5b> /usr/lib/system/libsystem_sandbox.dylib
0x19dd15000 - 0x19dd1cfff libsystem_symptoms.dylib arm64  <f965a1311cc332998a6a61f62cd44e46> /usr/lib/system/libsystem_symptoms.dylib
0x19dd1d000 - 0x19dd32fff libsystem_trace.dylib arm64  <f6e84ea2e10c34adbb5fad9353663f27> /usr/lib/system/libsystem_trace.dylib
0x19dd33000 - 0x19dd38fff libunwind.dylib arm64  <f22a151e2a963caf90ee53be531669b9> /usr/lib/system/libunwind.dylib
0x19dd39000 - 0x19dd67fff libxpc.dylib arm64  <8ee5ce1e48c535fdaad041ea492c49ee> /usr/lib/system/libxpc.dylib
0x19dd68000 - 0x19dfc2fff libicucore.A.dylib arm64  <8c801e5029eb3963aba5a9de0e57d1a7> /usr/lib/libicucore.A.dylib
0x19dfc3000 - 0x19dfd4fff libz.1.dylib arm64  <52dca571376737aeab968ee5a065ab4d> /usr/lib/libz.1.dylib
0x19dfd5000 - 0x19e33afff CoreFoundation arm64  <af49b170860f3869985d552bbdc94a31> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x19e33b000 - 0x19e34bfff libbsm.0.dylib arm64  <21bb125d9d163bbc80827cbe50f8e8cc> /usr/lib/libbsm.0.dylib
0x19e34c000 - 0x19e34cfff libenergytrace.dylib arm64  <fcf084b0ca2d38bd80871896f820a67d> /usr/lib/libenergytrace.dylib
0x19e34d000 - 0x19e3dafff IOKit arm64  <63e3075d812c3ce2960d8edc7347bda7> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x19e3db000 - 0x19e4c3fff libxml2.2.dylib arm64  <d8147b4de4313fef94f828e68a27a3b2> /usr/lib/libxml2.2.dylib
0x19e4c4000 - 0x19e4d1fff libbz2.1.0.dylib arm64  <bf80e256d90e3cf9aa0dac413eca0746> /usr/lib/libbz2.1.0.dylib
0x19e4d2000 - 0x19e4eafff liblzma.5.dylib arm64  <452a2d328fba38e8a6753fda5dadadd4> /usr/lib/liblzma.5.dylib
0x19e4eb000 - 0x19e664fff libsqlite3.dylib arm64  <1da4e97cb42f384c84c1c2fdd8f21f57> /usr/lib/libsqlite3.dylib
0x19e665000 - 0x19e697fff libMobileGestalt.dylib arm64  <33cf21dc19f43f4da616607659667002> /usr/lib/libMobileGestalt.dylib
0x19e698000 - 0x19ea64fff CFNetwork arm64  <2edf2d7c1b5b3ef588d6d0c311f043ae> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x19ea65000 - 0x19ed71fff Foundation arm64  <45846ed6cab13382b9a8c8155088fa82> /System/Library/Frameworks/Foundation.framework/Foundation
0x19ed72000 - 0x19ee7dfff Security arm64  <7c894c5eba043b6e9b0fd3928d4695af> /System/Library/Frameworks/Security.framework/Security
0x19ee7e000 - 0x19eeecfff SystemConfiguration arm64  <4ff8dc2101fc306f99090671944dc61e> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x19eeed000 - 0x19ef22fff libCRFSuite.dylib arm64  <291911e2b87f33fcbb45fa1f05bdfeec> /usr/lib/libCRFSuite.dylib
0x19ef23000 - 0x19ef39fff libapple_nghttp2.dylib arm64  <62c4c4456bd236edaf4c5e4279784246> /usr/lib/libapple_nghttp2.dylib
0x19ef3a000 - 0x19ef63fff libarchive.2.dylib arm64  <2cde7f5b8bef35dbba4b92dd8931abea> /usr/lib/libarchive.2.dylib
0x19ef64000 - 0x19f033fff libboringssl.dylib arm64  <6cd956f1ecd9312b98d6ca59c309e5b3> /usr/lib/libboringssl.dylib
0x19f034000 - 0x19f04afff libcoretls.dylib arm64  <4ac0f3662adc35c19e68fe44120b7cc9> /usr/lib/libcoretls.dylib
0x19f04b000 - 0x19f04cfff libcoretls_cfhelpers.dylib arm64  <fa2b1ebbc66a39cfb702132e129c959b> /usr/lib/libcoretls_cfhelpers.dylib
0x19f04d000 - 0x19f04efff liblangid.dylib arm64  <f481e089e5b8328f844c89b4796bf12c> /usr/lib/liblangid.dylib
0x19f04f000 - 0x19f3c4fff libnetwork.dylib arm64  <1fd8165bb59837d58504a119afdca290> /usr/lib/libnetwork.dylib
0x19f3c5000 - 0x19f3fafff libpcap.A.dylib arm64  <0c77d053f5483157b39172aef546e3c4> /usr/lib/libpcap.A.dylib
0x19f3fb000 - 0x19f458fff libusrtcp.dylib arm64  <791e62f8337b327587d17f1879fe4e0d> /usr/lib/libusrtcp.dylib
0x19f459000 - 0x19f465fff IOSurface arm64  <6279c54de1033a8688d27bbf1c0f7ef9> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x19f466000 - 0x19f519fff libBLAS.dylib arm64  <e3b50b7db4253928b14ed11961933101> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x19f51a000 - 0x19f839fff libLAPACK.dylib arm64  <cb3820c2c6cc3c81944daeb1439a0b17> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x19f83a000 - 0x19faacfff vImage arm64  <714e34537ce4306eb9d15da1ab82eb46> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x19faad000 - 0x19fabefff libSparseBLAS.dylib arm64  <e4d46f770d48369a90846cabbdb849fe> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x19fabf000 - 0x19fb1bfff libvMisc.dylib arm64  <5b11020156e5383cb3f0116d69b483b2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x19fb1c000 - 0x19fb4bfff libBNNS.dylib arm64  <26f8580b3bb13e8dab2fbfb4978cf521> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x19fb4c000 - 0x19fb60fff libLinearAlgebra.dylib arm64  <3899a07a95f23b41bca3aa4a99f565f6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x19fb61000 - 0x19fb65fff libQuadrature.dylib arm64  <efd9dd2a9b573eb7b711b029059c6baf> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x19fb66000 - 0x19fbd6fff libSparse.dylib arm64  <ffe59fdde534390ca4d8d1a8b1609eeb> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x19fbd7000 - 0x19fc65fff libvDSP.dylib arm64  <1ae8f521840330378b18225a33a14b63> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x19fc66000 - 0x19fc66fff vecLib arm64  <9626730f3fc23316a4ea5da0036af0f8> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x19fc67000 - 0x19fc67fff Accelerate arm64  <e6236a798351380ab1870aac962c7388> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x19fc68000 - 0x19fc80fff libcompression.dylib arm64  <ece089b7543b34ef9d5667a4951fea42> /usr/lib/libcompression.dylib
0x19fc81000 - 0x1a022cfff CoreGraphics arm64  <e7447ec8c20d394da9732f4a755c5709> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x1a022d000 - 0x1a0232fff IOAccelerator arm64  <50436764223a3b87b351336b6b139aae> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1a0233000 - 0x1a0238fff libCoreFSCache.dylib arm64  <35da74d9bc4c3031817f63f562280068> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1a0239000 - 0x1a02e0fff Metal arm64  <10334a1240bf3875a9a2b6a45c3b6a9e> /System/Library/Frameworks/Metal.framework/Metal
0x1a02e1000 - 0x1a02f4fff GraphicsServices arm64  <d0c7a30856ee31e8a6e212403cb9fafc> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1a02f5000 - 0x1a02f5fff MobileCoreServices arm64  <3ff49e90f1a73519bf7c5d6816628e5c> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1a02f6000 - 0x1a02f8fff IOSurfaceAccelerator arm64  <b037bd0c65bb30d5af86b261c59db576> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1a02f9000 - 0x1a033bfff AppleJPEG arm64  <2f35050a87ff340da1aaa23f07a356e3> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1a033c000 - 0x1a0900fff ImageIO arm64  <998e9c95a5c33074bce59dab623aaad1> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x1a0901000 - 0x1a0974fff BaseBoard arm64  <8cce33fc8c0b3f809771fc27a5fb1b0b> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x1a0975000 - 0x1a098cfff AssertionServices arm64  <f0883ece493338b29a1007eecf1b30d0> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1a098d000 - 0x1a0995fff CorePhoneNumbers arm64  <696678ccc83f35a282938bf96932e84f> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1a0996000 - 0x1a09dbfff AppSupport arm64  <8d36383a49293836a9d2e8a99d03e407> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1a09dc000 - 0x1a09f5fff CrashReporterSupport arm64  <a821773e298e3f8ea4c6e8c8e97efbcc> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1a09f6000 - 0x1a09fbfff AggregateDictionary arm64  <56f1b96f8b4930bca8552628aa236278> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1a09fc000 - 0x1a0a84fff libTelephonyUtilDynamic.dylib arm64  <5e1215c7af47364daad0e7cb039221fa> /usr/lib/libTelephonyUtilDynamic.dylib
0x1a0a85000 - 0x1a0aa4fff ProtocolBuffer arm64  <0bc7c46b122f3191bfd616b2c030f5e3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1a0aa5000 - 0x1a0ad5fff MobileKeyBag arm64  <ee5215e3b3503fba89f1c2a3f0537695> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1a0ad6000 - 0x1a0b12fff BackBoardServices arm64  <c27d9d3e768a3d29a21b10325bd6b639> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x1a0b13000 - 0x1a0b7bfff FrontBoardServices arm64  <36e3879127163f42b03ba44a6f6f2607> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1a0b7c000 - 0x1a0bc3fff SpringBoardServices arm64  <df320b87777b34ff862641bf98afc23b> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x1a0bc4000 - 0x1a0bd7fff PowerLog arm64  <92b1acb8d7d53dd4882d3854d96fbf2e> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1a0bd8000 - 0x1a0bf3fff CommonUtilities arm64  <7283d2181ee634959d27586f0b6db7cb> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1a0bf4000 - 0x1a0bfffff liblockdown.dylib arm64  <ffe843aa2a5230169b8162e3cda42010> /usr/lib/liblockdown.dylib
0x1a0c00000 - 0x1a0f3efff CoreData arm64  <1a2df7f1b6133a71827953c432d5ffa7> /System/Library/Frameworks/CoreData.framework/CoreData
0x1a0f3f000 - 0x1a0f46fff TCC arm64  <4e5af1c821ac3e3a920ae3550506489d> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1a0f47000 - 0x1a0f4ffff libcupolicy.dylib arm64  <d655513c88f53739a1513d45396d40e0> /usr/lib/libcupolicy.dylib
0x1a0f50000 - 0x1a102afff CoreTelephony arm64  <d5b439a69387381f87e3b8ce5a91c914> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1a102b000 - 0x1a108cfff Accounts arm64  <e00d2c4f1c093023b75e2b7c627d952a> /System/Library/Frameworks/Accounts.framework/Accounts
0x1a108d000 - 0x1a10b6fff AppleSauce arm64  <96e5fc9dbeed3d87ae74a6f4f61f4ca2> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1a10b7000 - 0x1a10c0fff DataMigration arm64  <f7b3c632e6fe3cee96daa2087fa6c98f> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1a10c1000 - 0x1a10c8fff Netrb arm64  <f95207006265396d9427f3660e071ddc> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1a10c9000 - 0x1a10fdfff PersistentConnection arm64  <23ad80e152a23e5a96f4cac86fa4aabd> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1a10fe000 - 0x1a110ffff libmis.dylib arm64  <de7c9b1a04493be285cfe1c45ccffb30> /usr/lib/libmis.dylib
0x1a1110000 - 0x1a1215fff ManagedConfiguration arm64  <61c4ff5c813b3a21abb0224dede48a16> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1a1216000 - 0x1a121bfff libReverseProxyDevice.dylib arm64  <192231b2f174316ca2dfd85c67996ea7> /usr/lib/libReverseProxyDevice.dylib
0x1a121c000 - 0x1a122efff libamsupport.dylib arm64  <b1243caf3a1a3bbfabbc5fc7ca0acdc2> /usr/lib/libamsupport.dylib
0x1a122f000 - 0x1a1234fff libCoreVMClient.dylib arm64  <81f0919955b43b289eb296dc32853d75> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1a1235000 - 0x1a1236fff libCVMSPluginSupport.dylib arm64  <9a16cdc832e330ee9017db9e6697035b> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1a1237000 - 0x1a123afff libutil.dylib arm64  <b2d55f8aac6932358af278c441d4cdf7> /usr/lib/libutil.dylib
0x1a123b000 - 0x1a127afff libGLImage.dylib arm64  <bf88c17a57db3859ad57cc33754fc892> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1a127b000 - 0x1a12f2fff APFS arm64  <9141d27c2af337189406d08c64f42d1e> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1a12f3000 - 0x1a1324fff MediaKit arm64  <d8b9da9c9e39309d803b1b7fab2a27f1> /System/Library/PrivateFrameworks/MediaKit.framework/MediaKit
0x1a1325000 - 0x1a1341fff libSERestoreInfo.dylib arm64  <d70aa284039a398fae4fc3daf9219adc> /usr/lib/updaters/libSERestoreInfo.dylib
0x1a1348000 - 0x1a1384fff DiskImages arm64  <6617c826c2cc372db910582ab9dcb60a> /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages
0x1a1385000 - 0x1a138efff libGFXShared.dylib arm64  <257e0d5b0fad3c538a0d95a7676ecbcd> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1a138f000 - 0x1a13dbfff libauthinstall.dylib arm64  <3111b648519a3eb690a3ca0dfd0654b9> /usr/lib/libauthinstall.dylib
0x1a13dc000 - 0x1a13e4fff IOMobileFramebuffer arm64  <f5fdfba100ea39f79831c79a5828d30f> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1a13e5000 - 0x1a13f0fff OpenGLES arm64  <910fd178a4973268babf598a15198d69> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1a13f1000 - 0x1a148efff ColorSync arm64  <98ee7be3cf75304c9742aba7085b8b12> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x1a148f000 - 0x1a14bdfff CoreVideo arm64  <e3f99a3743053dae9127cc61151b7cc9> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x1a14be000 - 0x1a14bffff libCTGreenTeaLogger.dylib arm64  <c26543dc7e2a3a26adadd28250e62555> /usr/lib/libCTGreenTeaLogger.dylib
0x1a14c0000 - 0x1a162ffff CoreAudio arm64  <481927fc83d932928fd50c20766ef0db> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1a1653000 - 0x1a1656fff UserFS arm64  <35ee505f8ead36d0aef87efcc6c4b175> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
0x1a1657000 - 0x1a17f2fff CoreMedia arm64  <1a53e06ca2a93003b21e83eac413a02a> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x1a17f3000 - 0x1a1805fff libprotobuf-lite.dylib arm64  <a038754def89372a932e9e6a35153c5d> /usr/lib/libprotobuf-lite.dylib
0x1a1806000 - 0x1a186bfff libprotobuf.dylib arm64  <70a62a60150e393bb406786fd22e4ec8> /usr/lib/libprotobuf.dylib
0x1a186c000 - 0x1a1b82fff libAWDSupportFramework.dylib arm64  <fe6a528d7ff831a6a5dbfef28b19450b> /usr/lib/libAWDSupportFramework.dylib
0x1a1b83000 - 0x1a1bcdfff WirelessDiagnostics arm64  <8cc8316e101333c3aeaa6d8a855d0c6b> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x1a1bce000 - 0x1a1c8efff VideoToolbox arm64  <62720a23333536d5a42c7ba2c054328e> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x1a1c8f000 - 0x1a1d9afff libFontParser.dylib arm64  <77ad915395493cc683f639ed84a7582b> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1a1d9b000 - 0x1a1d9bfff FontServices arm64  <7169bfe3420d309c9f3bff5b183a9073> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1a1d9c000 - 0x1a1efdfff CoreText arm64  <c87029707fe234a29ae89762302d19ca> /System/Library/Frameworks/CoreText.framework/CoreText
0x1a1efe000 - 0x1a1f0dfff IntlPreferences arm64  <32c00a121c0a38d695d319032b495418> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1a1f0e000 - 0x1a1f17fff RTCReporting arm64  <d69682ebd180333d9efa7aebe46e0baa> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1a1f18000 - 0x1a1f90fff CoreBrightness arm64  <71bd70e2be62333292390270c4e8e981> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1a1f91000 - 0x1a1f9bfff libAudioStatistics.dylib arm64  <ba8ba9171fd23877a07fb7470cf2105f> /usr/lib/libAudioStatistics.dylib
0x1a1f9c000 - 0x1a258cfff AudioToolbox arm64  <ee2c4adc1d64300ab5c86d0ded2650fe> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x1a258d000 - 0x1a27c4fff QuartzCore arm64  <6a8456a9c1b134d3b624e1a22a465c02> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x1a27c5000 - 0x1a27d0fff MediaAccessibility arm64  <1a6dec8677323947bd111f44f06587be> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1a27d1000 - 0x1a28c3fff libiconv.2.dylib arm64  <64260797d64931428713a63d40bb0d78> /usr/lib/libiconv.2.dylib
0x1a28c4000 - 0x1a28dffff NetworkStatistics arm64  <7540079b3a213d9fb67f14a7c106dfa5> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x1a28e0000 - 0x1a28fefff MPSCore arm64  <22bd22251b013435bbabd5d33dfc9037> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1a28ff000 - 0x1a2973fff MPSImage arm64  <d0bdb323c39f335ea1fd16a42c9c4924> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1a2974000 - 0x1a2998fff MPSMatrix arm64  <1e668f385fd83e0082d629057edf0a56> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1a2999000 - 0x1a29a7fff CoreAUC arm64  <20a4c36556513d98959da2e4eeb5e714> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1a29a8000 - 0x1a3044fff MediaToolbox arm64  <53fabb6b82833a91bdfd010d03568021> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x1a3045000 - 0x1a31aefff MPSNeuralNetwork arm64  <56d8443e1bf330ecb14e0c3622d5f7b9> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1a31af000 - 0x1a31affff MetalPerformanceShaders arm64  <031f0cfa92683c15af518fa19410695c> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1a31b0000 - 0x1a35cdfff FaceCore arm64  <6ce98b6e78143b36852fe9cad284851f> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1a35ce000 - 0x1a35dbfff GraphVisualizer arm64  <824648177dcd327391038ce0f2765816> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1a35dc000 - 0x1a3783fff libFosl_dynamic.dylib arm64  <79da528e7de4328589f622fcbb4dd691> /usr/lib/libFosl_dynamic.dylib
0x1a3784000 - 0x1a3a08fff CoreImage arm64  <da0dd020a02f3308909a56637599e533> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1a3a09000 - 0x1a3c39fff CoreMotion arm64  <3009626d73a03339a191d99bbf67fb75> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x1a3c3a000 - 0x1a3c6afff CoreBluetooth arm64  <1cd2bd0ec00a358dbd492a295c6c3bb0> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x1a3c6b000 - 0x1a3c8efff PlugInKit arm64  <d3da367f27803452ae7223ec6437ec3b> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1a3c8f000 - 0x1a3ef3fff Celestial arm64  <42d7c97de37d377aaa4a27d7b8cdf696> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1a3ef4000 - 0x1a3f7efff Quagga arm64  <c5bc03e8aa5130819a60abdfb9a5db05> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1a3f7f000 - 0x1a4082fff AVFAudio arm64  <18b63d104b6c32b8b7e756e2a29d2349> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x1a4083000 - 0x1a428ffff AVFoundation arm64  <e709cd8aa552302fa20a1da8cee70064> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1a4290000 - 0x1a42b0fff CacheDelete arm64  <5d71eb8824963ddf9689c7c47de8c34b> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x1a42b1000 - 0x1a42edfff StreamingZip arm64  <0915c041230a3c0f9a8a43677041653d> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1a42ee000 - 0x1a4301fff CoreEmoji arm64  <4bb61f2d0bbd3523a0069bc2649d388f> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1a4302000 - 0x1a4351fff CoreLocationProtobuf arm64  <040fadd9b60a35f7b0576c70546e4dcc> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1a4352000 - 0x1a435afff SymptomDiagnosticReporter arm64  <7e713a6521553a5fb612c1fbd780ad76> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1a435b000 - 0x1a4d6bfff GeoServices arm64  <48f2b82ee1f3363ba36437eb8ee4c97b> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1a4d6c000 - 0x1a4d86fff MobileAsset arm64  <8153db59d4e93a6eab2e876fe5bfa535> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x1a4d87000 - 0x1a4dc7fff Lexicon arm64  <f8500f1998af351eb4c6a8f5d77e6a0b> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1a4dc8000 - 0x1a4dd9fff libcmph.dylib arm64  <5a772e3523883340a4395762c65eecc2> /usr/lib/libcmph.dylib
0x1a4dda000 - 0x1a4f00fff LanguageModeling arm64  <da2df1fc71ba3194b607ef24a107c061> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1a4f19000 - 0x1a4fbdfff CoreLocation arm64  <33e697b0aaaa3a71a46ee0a827693a54> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x1a4fbe000 - 0x1a4fbefff PhoneNumbers arm64  <3caaa8bb663339b69ed8326ed3416f23> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1a4fbf000 - 0x1a4fcafff libChineseTokenizer.dylib arm64  <7ceec81de78f3d5f88f39ce3ec4d0277> /usr/lib/libChineseTokenizer.dylib
0x1a4fcb000 - 0x1a5087fff libmecab_em.dylib arm64  <f81cc14031fb393ba9b092981e76d622> /usr/lib/libmecab_em.dylib
0x1a5088000 - 0x1a5089fff libThaiTokenizer.dylib arm64  <84f1f40627473c4eb09005b71fd0db46> /usr/lib/libThaiTokenizer.dylib
0x1a508a000 - 0x1a508efff libgermantok.dylib arm64  <5a6c3a65bea33b80a67f8827ce3e69dc> /usr/lib/libgermantok.dylib
0x1a508f000 - 0x1a50fcfff CoreNLP arm64  <7ef58470bd473813bb49b9f78a7d00f0> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1a5109000 - 0x1a52dbfff MobileSpotlightIndex arm64  <381d7caf12073930841f67b924daea73> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1a52dc000 - 0x1a5342fff CoreSpotlight arm64  <af0ef6b60f203a059e9f671bfdfe02e7> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x1a5343000 - 0x1a5f19fff JavaScriptCore arm64  <0fa126d1f13b33b69f864c96836bc622> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1a5f1a000 - 0x1a5f1ffff libheimdal-asn1.dylib arm64  <b326bcb4be3f3bcbb277c531c45db171> /usr/lib/libheimdal-asn1.dylib
0x1a5f20000 - 0x1a5f9afff libate.dylib arm64  <bee82de89bde388aa3196a7398a93330> /usr/lib/libate.dylib
0x1a5f9b000 - 0x1a6044fff TextureIO arm64  <912beb4042903ed5bd167bc466a035c0> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1a6045000 - 0x1a6108fff CoreUI arm64  <4377d19a4e3133d3add02ee3aa12b101> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x1a6109000 - 0x1a6116fff MobileIcons arm64  <8b858fb7b67a3b7595d8db7aeaf715ca> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1a6117000 - 0x1a6126fff AppleFSCompression arm64  <ac92e26efd823724a3c1c3ff198b30b9> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1a6127000 - 0x1a618ffff TextInput arm64  <f64d1305f2073357bccb5df538d36268> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x1a61ba000 - 0x1a61effff DataDetectorsCore arm64  <ccaca8069cfa35c6a5b725befe633bb2> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1a61f0000 - 0x1a628bfff FileProvider arm64  <adae6274761b31bb804bba86e4a3c211> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x1a628c000 - 0x1a63a3fff NLP arm64  <ef237b96d9d93d159fab0c386dcc363c> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1a63a4000 - 0x1a647bfff ProofReader arm64  <1051999db47a3d78a9e6e5c7530b6409> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x1a647c000 - 0x1a6491fff libAccessibility.dylib arm64  <3dfd4a4ba0f3394fad5744d0d3beaab8> /usr/lib/libAccessibility.dylib
0x1a6492000 - 0x1a6938fff libwebrtc.dylib arm64  <38bb9649e2523d38af5c620a0e8fa870> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1a6939000 - 0x1a69a5fff ContactsFoundation arm64  <d11637013d423edda4f5604b782cfd18> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1a69a6000 - 0x1a8242fff WebCore arm64  <457e6cf0eed83148aed216f184f042ea> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1a8243000 - 0x1a83cefff WebKitLegacy arm64  <fd5edff43b363d79bdf8e5d8ef9e5b4c> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1a83cf000 - 0x1a8400fff DataAccessExpress arm64  <54224a8ffc2332cca60bf5cbaefd8c3a> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x1a8401000 - 0x1a849bfff AddressBookLegacy arm64  <79499983781238ad94d8130bc6d61db0> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x1a849c000 - 0x1a84f7fff ProtectedCloudStorage arm64  <d1bef798658035b586ab831875985e5a> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1a84f8000 - 0x1a852cfff UserNotifications arm64  <9f53040e940d33dfabf4629a75d99089> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1a852d000 - 0x1a8538fff AppleIDAuthSupport arm64  <d4c44d49ded33112983ee2fea52413e9> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1a8539000 - 0x1a8594fff AuthKit arm64  <a23f973a55e63af6a20114e79ffe847d> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x1a85d5000 - 0x1a85d5fff UIKit arm64  <f0753a92e0d63707bcc5c97da321a52d> /System/Library/Frameworks/UIKit.framework/UIKit
0x1a85d6000 - 0x1a85e9fff DocumentManagerCore arm64  <ebd06bc5772230aba285321879f2560a> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1a85ea000 - 0x1a85f8fff HangTracer arm64  <286396629199397d8f84ec72a11c288c> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1a85f9000 - 0x1a864dfff PhysicsKit arm64  <1bd25a113ead3bf98efbf5e087047881> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1a864e000 - 0x1a8652fff StudyLog arm64  <4ddb1d588d133ca899e16358fa70b375> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1a8653000 - 0x1a8740fff UIFoundation arm64  <f7fb7015b01939719883620e3057a20c> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x1a8741000 - 0x1a8868fff CloudKit arm64  <0e02160eeb1c34f59864c18593caaff4> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1a8869000 - 0x1a8870fff IntentsFoundation arm64  <cdccec1740553c6dab81c82eb648754b> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1a8871000 - 0x1a8b59fff Intents arm64  <2736a84abb513458abdf23e6e66feaa3> /System/Library/Frameworks/Intents.framework/Intents
0x1a8b5a000 - 0x1a8b72fff libresolv.9.dylib arm64  <2f6993c0d8e03e78bb1d16753fef8a5d> /usr/lib/libresolv.9.dylib
0x1a8b73000 - 0x1a8b75fff CoreDuetDebugLogging arm64  <7299661adcf932b5bf6875efc04da4e2> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1a8b76000 - 0x1a8ba7fff libtidy.A.dylib arm64  <ed38e4683f5e3903878a86ee7a827b29> /usr/lib/libtidy.A.dylib
0x1a8ba8000 - 0x1a8d74fff CoreDuet arm64  <96768a859fad302e92856eb28b2674ff> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x1a8d75000 - 0x1a8d97fff CoreDuetContext arm64  <4fb7f8eca6c234c6b35cbf29a2e1b8d1> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x1a8d98000 - 0x1a8daafff CoreDuetDaemonProtocol arm64  <0d0ec4c74e063c7ba38d4ed3a48883a9> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1a8dab000 - 0x1a8e19fff IMFoundation arm64  <419353d3ea8334dd8133f7c6fca6c49f> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x1a8e1a000 - 0x1a8e4bfff vCard arm64  <401e56eda0163f35bb63866b8cc87381> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1a8e4c000 - 0x1a8f61fff Contacts arm64  <18c2b42d6cf23297a703c2bca37967d1> /System/Library/Frameworks/Contacts.framework/Contacts
0x1a8f62000 - 0x1a8f63fff DiagnosticLogCollection arm64  <e60f6b328bbe3bb6b25398d6ea72c313> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
0x1a8f64000 - 0x1a8f65fff Marco arm64  <81b31318be5730b680612242d96373d7> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1a8f66000 - 0x1a8f6dfff MessageProtection arm64  <6f0f1802e03e3d87a83511a031b16b39> /System/Library/PrivateFrameworks/MessageProtection.framework/MessageProtection
0x1a8f6e000 - 0x1a927ffff StoreServices arm64  <2341a5dc695a3eee93a4681b8abb396b> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x1a9280000 - 0x1a9297fff Engram arm64  <f3208fa9f239309dadc4eb907caf60ce> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1a9298000 - 0x1a93b0fff IDSFoundation arm64  <467deebc61b533919ba101724aba18a8> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1a93b1000 - 0x1a93bcfff CaptiveNetwork arm64  <e0fe82ba31ac3808a8b7a64c5651e9cd> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1a93bd000 - 0x1a93edfff EAP8021X arm64  <f1c208a35288383f94d6fb317108af24> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1a93ee000 - 0x1a942bfff MobileWiFi arm64  <216a1c795dbb3d559fef9b1d868982a5> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1a942c000 - 0x1a942efff OAuth arm64  <2643dc117770331383863e05174b191b> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x1a942f000 - 0x1a9431fff CommonAuth arm64  <e736197e3e303d289d17fd1594138f48> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x1a9432000 - 0x1a94a2fff Heimdal arm64  <ab3aa3cb72203546b3d27f4537148b02> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1a94a3000 - 0x1a94ccfff GSS arm64  <53e2ee81487a327dbd8e1038eb8f0948> /System/Library/Frameworks/GSS.framework/GSS
0x1a94cd000 - 0x1a94e6fff ApplePushService arm64  <74b60e91dd433b43b219beee7c9d975b> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1a94e7000 - 0x1a9581fff AccountsDaemon arm64  <7417b5ef75783a38a2b97693d79228ec> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x1a9582000 - 0x1a95a4fff AppleIDSSOAuthentication arm64  <92b39388d9ff35d0a01d599c33821ad8> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1a95a5000 - 0x1a9629fff AppleAccount arm64  <f71332117fab33e295c777613e038188> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x1a962a000 - 0x1a9780fff CoreUtils arm64  <20eeefab00843b2ab6dc64bb4ff519db> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1a9781000 - 0x1a9894fff IDS arm64  <a57f96ab5ad53e13b57edcbe6bbd0c41> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1a9895000 - 0x1a98bafff MediaServices arm64  <b4f2d27181bc39fab2553b08a54ed3ed> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x1a98bb000 - 0x1a9a9bfff MediaRemote arm64  <61eb0f01f95a3ce89a03e951c6b557bf> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x1a9a9c000 - 0x1a9ab7fff UserManagement arm64  <5e85448ec3753caebb310eb537efe118> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1a9ab8000 - 0x1a9ac7fff MobileBluetooth arm64  <ff97fe61d2e53934b25dae7d17c24cfd> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x1a9ac8000 - 0x1a9af8fff Bom arm64  <2fe7e08e74513a5f962b5ec219085836> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1a9af9000 - 0x1a9afdfff CommunicationsFilter arm64  <1e9d96037bd030efa69e252555a2644a> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x1a9afe000 - 0x1a9b22fff FTAWD arm64  <bf0db4ecb49f3d9a96e6d89b214323fb> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x1a9b23000 - 0x1a9b7cfff FTServices arm64  <332430d93b5e3998aba9e58bd571e057> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x1a9bb6000 - 0x1a9bc1fff ProactiveEventTracker arm64  <f060af7e6df83d939feb1fbb4c9266b1> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1a9bc2000 - 0x1a9c10fff ChunkingLibrary arm64  <1f76dbad6c643ae78a10bf27eed11452> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1a9c11000 - 0x1a9c1ffff libnetworkextension.dylib arm64  <f298eb12d8c53f2a84c7d47e0ab0a595> /usr/lib/libnetworkextension.dylib
0x1aab8b000 - 0x1aad44fff NetworkExtension arm64  <c52fd8dc3e08365594ac24f4286ec950> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x1aad45000 - 0x1ab19efff SiriTTS arm64  <b9a84ccec2fb368a92dadb06e42d1b3e> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x1ab1fd000 - 0x1ab23efff VoiceServices arm64  <62ab6e07efd33dc8a9e3980adef66287> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x1ab388000 - 0x1ab3a7fff AssetCacheServices arm64  <447745c201043a8a975ceca4bfc2d9ed> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x1ab3a8000 - 0x1ab464fff NetworkServiceProxy arm64  <b7fa0e56f37534e58d15b4c0943952df> /System/Library/PrivateFrameworks/NetworkServiceProxy.framework/NetworkServiceProxy
0x1ab465000 - 0x1ab53dfff MMCS arm64  <35ab1a9f8a6e32f88ea9bad64f944bb3> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x1ab53e000 - 0x1ab54afff BluetoothManager arm64  <87141b80a9623b90a9b176a035011dfc> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x1ab5f2000 - 0x1ab600fff PersonaKit arm64  <d840a0b46c543ab9b111c3d6afc7a2e7> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1ab65a000 - 0x1ab68afff PhotosFormats arm64  <3157eadfd9b83c499eb846b7141e2c7b> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x1ab784000 - 0x1ab8fcfff CloudPhotoLibrary arm64  <b21f1efd9d963e2187fcc1ad2cd26c3c> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1ab9ed000 - 0x1aba21fff AssetsLibraryServices arm64  <68a40c0a9c133904beb8ddcbc0437b34> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x1aba57000 - 0x1aba78fff DCIMServices arm64  <7921c57c0f8b3ebdb8da50c42b1188f8> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x1aba79000 - 0x1abbb4fff CoreMediaStream arm64  <6bbb8ede0c7d38edbc2ee64235017a39> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1abbb5000 - 0x1abbbcfff XPCKit arm64  <7a32a780a5d53ffeb1436afd0febbf18> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
0x1abca2000 - 0x1abcc0fff CloudPhotoServices arm64  <b34c7592e4343eda9bf3b0821fa53d1c> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1abcc1000 - 0x1abcccfff CoreRecents arm64  <8f74da500039310b8deb13acdd99dae6> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x1abccd000 - 0x1abcebfff MediaStream arm64  <45a28f6c4f8136b9a056bc89e75709d6> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1abcec000 - 0x1ac230fff PhotoLibraryServices arm64  <c4705a42e7453d01b8aafaa518abad2f> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x1ac231000 - 0x1ac24dfff PrototypeTools arm64  <5e497a0fc3133a94a5be413f2d5da6af> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1ac24e000 - 0x1ac2d7fff CoreSymbolication arm64  <60cc74e4e24c32b7b94822983b033527> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1ac2d8000 - 0x1ac41dfff SearchFoundation arm64  <59895e5c092f32739583155c4809c79e> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x1ac41e000 - 0x1ac424fff IncomingCallFilter arm64  <19d7b247a4da3fed82c39a0fd8701ec1> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x1ac425000 - 0x1ac4defff iTunesStore arm64  <59eb8af9a50434218fc6d87f6ffaca8a> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x1ac4df000 - 0x1ac4e5fff libtzupdate.dylib arm64  <ab0cbb5d8ba839c2904302220cc8864a> /usr/lib/libtzupdate.dylib
0x1ac4e6000 - 0x1ac63bfff Preferences arm64  <f738202ce47e321d84ca1a4ea307c8f9> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x1ac63c000 - 0x1ac644fff CoreTime arm64  <bebd7e9d7c4b3cae98be17957698191d> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1ac645000 - 0x1ac697fff CoreAppleCVA arm64  <9104a9d77e2c34918f2a0e3c3aee03de> /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA
0x1ac698000 - 0x1ac6d8fff DifferentialPrivacy arm64  <216a9563665b3598949367d280beb658> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1ac6d9000 - 0x1ac865fff AppleCVA arm64  <ef3315b32a59335981a8c2e86971b581> /System/Library/PrivateFrameworks/AppleCVA.framework/AppleCVA
0x1ac866000 - 0x1ac903fff Montreal arm64  <982bf68bb62a3956bb0cf8629a4eccee> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1ac904000 - 0x1acbd4fff Espresso arm64  <6dcaa467360837d4becba7db711707d6> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1acbd5000 - 0x1acbdbfff MobileSystemServices arm64  <61739c7336bf3d44ba6fa01558f87e46> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1acded000 - 0x1ad050fff CoreML arm64  <0bc1aefa675a339b8c3b0ad64507cfe8> /System/Library/Frameworks/CoreML.framework/CoreML
0x1ad051000 - 0x1ad055fff CoreOptimization arm64  <5a47419bbbbd30f0a609e20fa02d6fbe> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1ad056000 - 0x1ad0b3fff SafariCore arm64  <37a57cf0146e3c8c89c8e121155033bc> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x1ad0b4000 - 0x1ad10efff CorePrediction arm64  <2d94b4e4b67d3651ac6cba29b588baa8> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1ad10f000 - 0x1ad215fff Navigation arm64  <6a072c8433be312e8b1771e6d8d29d2d> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x1ad216000 - 0x1ad22ffff ContactsDonation arm64  <6fc72fcf86fc3b7e96f24e93bcbee346> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x1ad230000 - 0x1ad25cfff Futhark arm64  <9ad20c98aa913e83af03023e6c2eae69> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1ad25d000 - 0x1ad2d5fff NanoRegistry arm64  <c55255b9fdf131d6827e81274e79b10d> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1ad2d6000 - 0x1ad32bfff ToneLibrary arm64  <54a17bfb167530dd9b55638effc2cbef> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x1ad344000 - 0x1ad39ffff ContactsUICore arm64  <0d184906e72532cbbe95d5bcca5d3099> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x1ad3a0000 - 0x1ad510fff ContactsUI arm64  <3369dbea7b963f378320afdcee8c6f51> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x1ad511000 - 0x1ad5dcfff CorePDF arm64  <bcb4b9f6629d32e9946a969bb89cb1d6> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x1ad5dd000 - 0x1ad8a1fff Vision arm64  <3a2c8eb5993930bc95cd68f5ce624322> /System/Library/Frameworks/Vision.framework/Vision
0x1ad8a2000 - 0x1add6cfff WebKit arm64  <8be85338fdf73e16b259683283260d84> /System/Library/Frameworks/WebKit.framework/WebKit
0x1add6d000 - 0x1ade0efff BulletinBoard arm64  <2b0cbcb912da335d80f124254ced3889> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard
0x1ade0f000 - 0x1ade14fff ConstantClasses arm64  <5377386f49e33c9986452bf598a8cc32> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1ade15000 - 0x1ade1dfff CertUI arm64  <e147788fafdc3165ace82debcdadc87b> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x1adf1a000 - 0x1adfb8fff MediaPlatform arm64  <f624d7a0503a333baff0e03acb7b9cbf> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x1adfb9000 - 0x1ae023fff WebBookmarks arm64  <7b7d7f69ab153b998b136c63ba7f27f5> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1ae024000 - 0x1ae02ffff DAAPKit arm64  <8bad20d27b853663932976c7fd3ee426> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x1ae130000 - 0x1ae442fff MediaLibraryCore arm64  <87a913293d933d2eab25f4f562d32050> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x1ae445000 - 0x1ae6d9fff MusicLibrary arm64  <89b04f20798c3c02956f8e65398539a9> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x1ae6da000 - 0x1aed34fff VectorKit arm64  <1afaeaf774013e5b99732eafc8286cfb> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x1aed35000 - 0x1aef82fff MapKit arm64  <6704cd4ec66033dda73c530935044d6a> /System/Library/Frameworks/MapKit.framework/MapKit
0x1aef83000 - 0x1af126fff iTunesCloud arm64  <8f1ac14ec6a6387e92288a6ff8a840bc> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x1af127000 - 0x1af1c8fff HomeSharing arm64  <894c37b8e796398bbe1635e0b49c766c> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x1af34b000 - 0x1af7c1fff MediaPlayer arm64  <2d4e38d8c3e232429dfa375b8b56975f> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x1af7c2000 - 0x1af7e7fff MobileInstallation arm64  <89531c03794e33a2a4db329409f9344c> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x1af7f3000 - 0x1af7f5fff InternationalTextSearch arm64  <a5d3721e5e2c3724986ba1a9e979e736> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x1af852000 - 0x1af889fff ProactiveSupport arm64  <2d180bece7473936bf7c64ab46bb59b3> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x1af8c4000 - 0x1af98efff TelephonyUtilities arm64  <91f73fb08561308c828816f8f0b5deb9> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x1afa48000 - 0x1afa5bfff AssetsLibrary arm64  <cd76e539beae3058b22db2aedfb362b4> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x1afd3a000 - 0x1afddbfff Social arm64  <1b9af922c60c3a77a75decd66a643b81> /System/Library/Frameworks/Social.framework/Social
0x1afe77000 - 0x1afe8ffff CoreFollowUp arm64  <e36387a078633c64a71b48e7fc29cb9c> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x1afe90000 - 0x1aff03fff CoreSuggestions arm64  <4d06726e3e5432c790ac224a2a8cc618> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x1aff15000 - 0x1affa8fff CoreRecognition arm64  <110d7130b81f36a0810149acb9e96d76> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x1b0361000 - 0x1b0405fff CoreParsec arm64  <b4e22777d3ae31d99e8481a60eead86a> /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x1b0436000 - 0x1b0468fff SharedUtils arm64  <33ccd9a0d65f3e0fbb4f33cbfdac5745> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x1b04ab000 - 0x1b0573fff VideoSubscriberAccount arm64  <9b7303ab95b7371da4ac7b36d80b3124> /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
0x1b0574000 - 0x1b05a7fff Pegasus arm64  <04bcd35c948139a5a250f55283a120a4> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x1b0684000 - 0x1b0687fff SharedWebCredentials arm64  <f88c2447f2c43a50a937ba370fe95703> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
0x1b0689000 - 0x1b06a3fff SafariFoundation arm64  <5228ac60e8d9387a9e596aa6c34bff14> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
0x1b0872000 - 0x1b0888fff LocalAuthentication arm64  <821a28784ff138768b34cbf768ecff6b> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x1b0889000 - 0x1b088bfff ParsecSubscriptionServiceSupport arm64  <9111c545e089391b8563302748ce9a0f> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x1b0934000 - 0x1b0b81fff SafariShared arm64  <fe26a598bcde3c77a954d016f8348417> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x1b0b82000 - 0x1b0bc5fff WebUI arm64  <238c0867df623075bd2954b024f099a2> /System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x1b0bc6000 - 0x1b0bd3fff SetupAssistantSupport arm64  <14f020e2d55f38c1ac0a915118aa66b1> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1b0bd4000 - 0x1b0bfffff SetupAssistant arm64  <77c99c59777f33dbb7fd8661e08334a3> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x1b190b000 - 0x1b1911fff LinguisticData arm64  <55e55d97465f33d5aee9e3b9627d1c9e> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x1b207e000 - 0x1b2093fff EmojiFoundation arm64  <d7f13a753a763eeb86c32c2c660b7288> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
0x1b21c4000 - 0x1b21defff MetalKit arm64  <2f1f1ad19d1c3700805165729990ff33> /System/Library/Frameworks/MetalKit.framework/MetalKit
0x1b2f99000 - 0x1b3060fff PDFKit arm64  <5c2e136fc7b83b7697b41c13846d9e72> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x1b336a000 - 0x1b33b2fff Pasteboard arm64  <dfd919193d4c32a8a86d7be0c0ccc5d5> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
0x1b3407000 - 0x1b3419fff MobileDeviceLink arm64  <6c83bb2817cb3df4ab1f4839ba31211f> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
0x1b3505000 - 0x1b354dfff MobileBackup arm64  <3ad36a990d52316085f8d1734899b315> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x1b354e000 - 0x1b359bfff SafariSafeBrowsing arm64  <f05f725bcabc3168b710c5328f058abd> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x1b35b9000 - 0x1b36f2fff SafariServices arm64  <5aabb4e69b8b3ab9875e0f16e93f89c9> /System/Library/Frameworks/SafariServices.framework/SafariServices
0x1b477c000 - 0x1b4787fff MobileActivation arm64  <d560ced1c60b3c8299dfea902ae2c9d5> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
0x1b48b8000 - 0x1b4a4dfff Sharing arm64  <0f1c1fe161433d05af78709e07b248de> /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x1b5f46000 - 0x1b5f99fff LoggingSupport arm64  <e186357f86893d1e8259a2583b62e7a0> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x1b62f9000 - 0x1b6302fff FamilyCircle arm64  <35e3bd2cafcd3f9983abd09b04a4c024> /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
0x1b803e000 - 0x1b8062fff AppSupportUI arm64  <7d9a7d1f28ca329aa503b2cc0160e086> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x1b8aca000 - 0x1b8b10fff Catalyst arm64  <9c6865c970953785b4e899c03e06cb77> /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
0x1b8e13000 - 0x1b8e18fff kperf arm64  <7fa26dae9032339eb1945b9962470010> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1b9070000 - 0x1b9096fff CellularPlanManager arm64  <c77d20c5ce2733bd8bb40373807e0401> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1b9097000 - 0x1b90ecfff DeviceManagement arm64  <885e05b2d3db3ab9a5019f468dbbd864> /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
0x1b927e000 - 0x1b9286fff kperfdata arm64  <034d14e024063f21bd230459ebd1b49d> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1b92c8000 - 0x1b92d0fff libdscsym.dylib arm64  <3c8229b2e598393f99dc96323cc840d9> /usr/lib/libdscsym.dylib
0x1b9699000 - 0x1b96d4fff ktrace arm64  <1cb7275b8fda34f6bc9586aee82e1871> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1bb8f5000 - 0x1bb93cfff BiometricKit arm64  <5ce52db2031e3f6ca0bf5e00978ecc16> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x1bb95c000 - 0x1bb96bfff CTCarrierSpace arm64  <d6360abcc2c138f094383d4ecc391c11> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x1bbdf9000 - 0x1bbe0dfff DeviceIdentity arm64  <ad236ea7229d353e91de56a5538fb592> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1bdf08000 - 0x1bdf43fff Rapport arm64  <9092fae1bc0432e681b883f670cde6ac> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1bdf80000 - 0x1bdf9dfff SignpostSupport arm64  <4c559dc5f8af3a2a914ff8036b05abf3> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1bef40000 - 0x1bef5cfff libtailspin.dylib arm64  <8c0698c5fc163fe8970222a96e7823fd> /usr/lib/libtailspin.dylib
0x1bf70c000 - 0x1bf720fff libCGInterfaces.dylib arm64  <9d50cac3d78c36c2b67c759fabb0a3bb> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x1c1c7b000 - 0x1c1c86fff ContextKit arm64  <95795e30fe2932379530fed4829244da> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
0x1c259e000 - 0x1c25affff libGSFontCache.dylib arm64  <671cb279745f3a18a05a1ccfae6db786> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1c25b0000 - 0x1c25e2fff libTrueTypeScaler.dylib arm64  <7c4e5679eedb398ab3b9dabefb397079> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
0x1c40d9000 - 0x1c40ddfff InternationalSupport arm64  <dba3b6eb1d9c31b8a937d36912cc96fd> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1c5258000 - 0x1c5264fff PersonaUI arm64  <f948027402fc39dab5c2aa6654c63e63> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
0x1c55d7000 - 0x1c55e1fff SignpostCollection arm64  <d5ac3807c96431c8b3d28f19f57b169c> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1c5c3b000 - 0x1c5c41fff TextInputUI arm64  <6ea36799ae98386581574ebded781f54> /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI
0x1c6160000 - 0x1c6163fff XCTTargetBootstrap arm64  <393950f7cc7a3007a97100ccb7266550> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x1c61a6000 - 0x1c61b8fff libEDR arm64  <2f16f70586d93e3eb582af9f5fecde7f> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1c6df9000 - 0x1c6df9fff libcharset.1.dylib arm64  <3ba4a9a18cdd384c8f803efff65eead7> /usr/lib/libcharset.1.dylib
0x1c79f4000 - 0x1c79fefff AuthenticationServices arm64  <458829dc516d3778896a445fda635daa> /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
0x1c7a89000 - 0x1c7bdcfff CoreServices arm64  <0bcac2c82e983c36a2f56270bf215f98> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x1c7c09000 - 0x1c7c22fff MPSRayIntersector arm64  <c9be7d8ade91373e837e06a16f202834> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1c7c52000 - 0x1c7d8dfff Network arm64  <2b04dc214e7030cebc4d838ac8817459> /System/Library/Frameworks/Network.framework/Network
0x1c7d9d000 - 0x1c7da4fff AXCoreUtilities arm64  <9f191e669cc73dfa8664532ae29eb79e> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x1c801b000 - 0x1c8156fff AppleMediaServices arm64  <3b985088e4d83e0ba28e915b28027932> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x1c82b4000 - 0x1c82eafff C2 arm64  <9db41f56378832c4855a91d5da36cc3a> /System/Library/PrivateFrameworks/C2.framework/C2
0x1c8475000 - 0x1c8480fff Categories arm64  <5377cb29ad133bcaafc96356c5bb4133> /System/Library/PrivateFrameworks/Categories.framework/Categories
0x1c8488000 - 0x1c85a9fff ConfigurationEngineModel arm64  <f65c2e83df26372e9c6389d954086023> /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel
0x1c87fc000 - 0x1c8854fff DocumentManager arm64  <a525fb27bd713309b8fe808f6eac8692> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x1c88a6000 - 0x1c88aafff IdleTimerServices arm64  <2d9c331cc1d436b49618f4235c0d3246> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x1c8913000 - 0x1c893efff MetadataUtilities arm64  <a277a93d951c371e994ea9c757967359> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x1c8ec5000 - 0x1c8f16fff OTSVG arm64  <84293207dd8d35f4818caed2dd98b687> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1c8ff1000 - 0x1c9050fff PhotoFoundation arm64  <2c63da445d133388af86b10b4b3f2932> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x1c9140000 - 0x1c91a0fff ROCKit arm64  <d86103a87e6e3ce897666e7297e4ff69> /System/Library/PrivateFrameworks/ROCKit.framework/ROCKit
0x1c930c000 - 0x1c9368fff RemoteManagement arm64  <f5beb2fd6ff935e79d6ecebd5513cb8d> /System/Library/PrivateFrameworks/RemoteManagement.framework/RemoteManagement
0x1c9369000 - 0x1c937bfff RemoteTextInput arm64  <d412dcc964a4331d80b31f8a779db294> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1c9384000 - 0x1c941efff SampleAnalysis arm64  <8660f702b5313d66a35d501002e72773> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1c94f6000 - 0x1c94f6fff SignpostNotification arm64  <fafbe2375a1e364cbfa78c57eab770c4> /System/Library/PrivateFrameworks/SignpostNotification.framework/SignpostNotification
0x1c9565000 - 0x1c956dfff StatsKit arm64  <d24cb93260423d20b77cffc7fbf3c267> /System/Library/PrivateFrameworks/StatsKit.framework/StatsKit
0x1ca093000 - 0x1cb1b3fff UIKitCore arm64  <9e0817dfc8923453af6a1f226e1a97dd> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1cb1b4000 - 0x1cb1befff UIKitServices arm64  <8acdbddd644f3894856144f4424d2780> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x1cb1bf000 - 0x1cb1c6fff URLFormatting arm64  <e1dce6b265f13b59928f5fe9fdc888bc> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x1cb1c7000 - 0x1cb1e9fff UsageTracking arm64  <7c576252d7f43338a5b6ec105b4dcc07> /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking

EOF

SSL errors

When trying to use pop.easyname.com and smtp.easyname.com as mail servers, delta chat returns SSL errors -- but the certificates look okay to me (*.easyname.com).

Would you please check whether it works for you? Thank you so much.

Improve ChatView

properly show dates, fine-tune the distances of speach "bubbles", adjust colors, maybe allow backgorund image, try to get metadata (dates etc.) into speach bubbles so it better works with custom backgrounds.

'librpgp.h' file not found

Not able to compile the project facing below issue
'librpgp.h' file not found
Need help thanks in advance.

Can't see or even receive incoming messages

Beta 6, Installation at IOS 12.1, provider web.de

  • All settings checked: Seemed to be ok
  • Can't see any message which is incoming. Neither to an existing chat nor any other messages.

Android version has the logging facility where you can see the internal log by "settings->Info->About Delta Chat->(pushing text)".
Is this existing in IOS version too? When: How to use it? It would help to see if IMAP server is connected.

Rename "mr" to "dc" and prepare for mrmailbox.h removal.

In order to be able to remove the legacy definitions of MR it seems that Delta/iOS is the last project that still uses the old MR definitions. I think there needs to be some global systematic replace along the lines of the string substitutions that mrmailbox.h does.

Minimum Target is iOS 11

If you try to compile to a version before 11 it fails with swift errors.
I got it to compile to iOS 10 by the help of Xcode (if #available) but to compile it to 9.0 it needs 3 more of those errors fixed.
As I'm new to swift and iOS native development I'm not so sure if I should attempt to fix those..

TL;DR;
We should support older devices too - as far as apple allows it (currently iOS 8).

This beta test is full.

Can you please increase the amount of testers? I would like to try DeltaChat but TestFlight tells me the Beta is full.

Feature Request: Show sync status

it would be great to show what the current state is, so I know if there are no new messages or if I have to wait for them to sync. Also pull down to refresh would be great to manually trigger a sync

didPressPhotoButton triggers panic in simulator

The reason is that the sourceType = .camera is not available, in the simulator.

Some more details: https://stackoverflow.com/questions/42571497/while-running-on-ios-simulator-app-crashes-when-source-of-imagepicker-is-camera

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Source type must be UIImagePickerControllerSourceTypeCamera'
*** First throw call stack:
(
	0   CoreFoundation                      0x000000010cfda1bb __exceptionPreprocess + 331
	1   libobjc.A.dylib                     0x000000010b6c3735 objc_exception_throw + 48
	2   UIKitCore                           0x00000001174422d6 -[UIImagePickerController _cameraViewController] + 0
	3   UIKitCore                           0x0000000117442af4 -[UIImagePickerController setCameraDevice:] + 29
	4   deltachat-ios                       0x000000010a924815 $S13deltachat_ios18ChatViewControllerC19didPressPhotoButtonyyF + 197
	5   deltachat-ios                       0x000000010a9248b4 $S13deltachat_ios18ChatViewControllerC19didPressPhotoButtonyyFTo + 36
	6   UIKitCore                           0x0000000117b25ecb -[UIApplication sendAction:to:from:forEvent:] + 83
	7   UIKitCore                           0x000000011726695b __45-[_UIButtonBarTargetAction _invoke:forEvent:]_block_invoke + 154
	8   UIKitCore                           0x0000000117266894 -[_UIButtonBarTargetAction _invoke:forEvent:] + 152
	9   UIKitCore                           0x0000000117b25ecb -[UIApplication sendAction:to:from:forEvent:] + 83
	10  UIKitCore                           0x00000001175610bd -[UIControl sendAction:to:forEvent:] + 67
	11  UIKitCore                           0x00000001175613da -[UIControl _sendActionsForEvents:withEvent:] + 450
	12  UIKitCore                           0x000000011756031e -[UIControl touchesEnded:withEvent:] + 583
	13  UIKitCore                           0x0000000117b610a4 -[UIWindow _sendTouchesForEvent:] + 2729
	14  UIKitCore                           0x0000000117b627a0 -[UIWindow sendEvent:] + 4080
	15  UIKitCore                           0x0000000117b40394 -[UIApplication sendEvent:] + 352
	16  UIKitCore                           0x0000000117c155a9 __dispatchPreprocessedEventFromEventQueue + 3054
	17  UIKitCore                           0x0000000117c181cb __handleEventQueueInternal + 5948
	18  CoreFoundation                      0x000000010cf3f721 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
	19  CoreFoundation                      0x000000010cf3ef93 __CFRunLoopDoSources0 + 243
	20  CoreFoundation                      0x000000010cf3963f __CFRunLoopRun + 1263
	21  CoreFoundation                      0x000000010cf38e11 CFRunLoopRunSpecific + 625
	22  GraphicsServices                    0x0000000111f5e1dd GSEventRunModal + 62
	23  UIKitCore                           0x0000000117b2481d UIApplicationMain + 140
	24  deltachat-ios                       0x000000010a931177 main + 71
	25  libdyld.dylib                       0x000000010ef06575 start + 1
	26  ???                                 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException

Use git submodules for dependencies?

I just worked through updating deltachat-core, but it was hard to tell which version was currently being used.

I would suggest to use git submodules for both libetpan, as well as deltachat-core, as that would make it much easier to update, and track what version is being used.

Important daily usage options are missing

This is a summary issue for some important points to use IOS version daily:

  1. Alert for incoming mails is not guaranteed and stable. Phone is vibrating but no further hint for new messages. New messages are only seen if a chat is closed and shown again (similar to that). No tune, no number at icon.
  2. no possibility to send attachments
  3. no possibility to add new contacts or to use contacts in address book

In the moment even basic operation is not possible. At least point 1-3 should be solved to hand over the application to a user. Point 1. is the most important. Without this even simplest message exchange is not possible reasonable!

All this is a feedback from a fried which agreed to make a try with that early IOS version.

future of "contacts" tab

currently, we have a "contacts" tab on the main screen.

it is currently unclear if it is needed and wanted at all as it has some drawbacks as:

  • there is no real "contacts" or "address" database in deltachat, the current dc_contact_t are mainly used to make chats work and are indented to be used more as input help. showing the contacts in this rather prominent way may raise some expectations we just cannot fulfill currently
  • eg. if a contact is deleted it will be re-added automatically when a mail with this contact comes in (blocking, however, is possible)

not saying, we shall delete the tab, however, i would suggest for now not to depend from the user flow on the "contacts" tag, eg. creating chats, blocking contacts, viewing profiles should be possible without it.

Localization

iOS needs to support localization -- a bit unclear how soon as it's probably more interesting to get some basic features first (as of May 2019).

next paragraph is from @r10s, sorry, @hpk42 for writing in your issue. but such feature lists are rather useful ;)

  • target the issue of strings used as IDs as written down below
  • check which format is used by ios
  • write a shell or python script that pulls strings.xml translations in all languages from transifex and converts them to the format used by ios
  • replace hard-coded strings by replaceable strings in the way this is done typically by ios
  • make sure, delta chat is shown in the system language

Import existing private key?

I haven't followed Delta Chat and Autocrypt development very closely. Is there a way to import my existing PGP private key into Delta Chat iOS? Is it at all possible and only the support is missing? I don't mind doing stuff by hand. I remember some talk about setup messages, but I don't know if that is implemented yet or ever will be.

Nothing happens when writing a message

I'm testing Delta Chat on my iPad. When I added a contact and sent a message nothing seems to happen. I don't see my own message in Delta Chat and I don't see any change in my IMAP account or the destination account. I'm using fastmail.com.

Export and Import DC data

for moving from testflight to appstore it would be good to support export/import functionality like it is done on Android. @jonasreinsch do you know how we can export to a local file and import that file from another app (which we'll have if we release to appstore). If export/import proves too hard we can also drop it especially for the may release.

Bug: Chat scroll position

It is only updated on incoming messages, not on outgoing messages. Which results in a scrolled up state after having sent a reply.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.