FreeCAD / FreeCAD-Bundle

Stand-alone repo to Build and Deploy installable FreeCAD images. Do not open general FreeCAD issues here.
https://freecad.org
GNU Lesser General Public License v2.1
293 stars 63 forks source link

create script to create bundles locally #82

Open looooo opened 2 years ago

stepheneb commented 2 years ago

Not very familiar with conda. Am curious what changes need to be made?

Tried this on macos.

$ brew install miniconda
...
$ conda --version
conda 4.10.3
$ git clone git@github.com:FreeCAD/FreeCAD-Bundle.git
$ cd FreeCAD-Bundle/conda/osx
$ bash ./create_bundle.sh 

...

Preparing transaction: done
Verifying transaction: done
Executing transaction: done
#
# To activate this environment, use
#
#     $ conda activate /Users/stephen/dev/freecad/FreeCAD-Bundle/conda/osx/APP/FreeCAD.app/Contents/Resources
#
# To deactivate an active environment, use
#
#     $ conda deactivate

PackagesNotFoundError: The following packages are missing from the target environment:
  - gtk2
  - gdk-pixbuf
  - llvmdev
  - clangdev

ERROR conda.cli.main_run:execute(33): Subprocess for 'conda run ['python', '../scripts/get_freecad_version.py']' command failed.  (See above for error)
Traceback (most recent call last):
  File "/Users/stephen/dev/freecad/FreeCAD-Bundle/conda/osx/../scripts/get_freecad_version.py", line 33, in <module>
    if os.environ["DEPLOY_RELEASE"] == "weekly-builds":
  File "/Users/stephen/dev/freecad/FreeCAD-Bundle/conda/osx/APP/FreeCAD.app/Contents/Resources/lib/python3.9/os.py", line 679, in __getitem__
    raise KeyError(key) from None
KeyError: 'DEPLOY_RELEASE'

######################

######################
sed: 1: "APP/FreeCAD.app/Content ...": invalid command code A
cp: APP/FreeCAD.app/Contents/Resources/bin_tmp/assistant: No such file or directory
rm: APP/FreeCAD.app/Contents/Resources/lib/python3.8/site-packages/mpmath/ctx_mp_python.py: No such file or directory
cp: APP/FreeCAD.app/Contents/Resources/lib/python3.8/site-packages/mpmath/ctx_mp_python.py: No such file or directory
............................................................................................................................................................
created: /Users/stephen/dev/freecad/FreeCAD-Bundle/conda/osx/.dmg.dmg
shasum: .dmg: No such file or directory

Questions/Notes:

  1. Am not intending to create a release so the error looking for the missing env var DEPLOY_RELEASE is expected.
  2. Not sure if the PackagesNotFoundError error is important or not?
  3. The error at the end trying to remove libb/python3.8/site-packages/mpmath/ctx_mp_python.py from the app seems strange. Not sure why it's looking in the python3.8 directory? Those files are in the python3.9 directory:
$ ls -l APP/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/mpmath
total 1000
-rw-rw-r--   1 stephen  staff    8613 Feb  9  2021 __init__.py
drwxr-xr-x   2 stephen  staff      64 Nov 22 10:27 __pycache__
drwxr-xr-x  13 stephen  staff     416 Nov 22 10:27 calculus
-rw-rw-r--   1 stephen  staff   15985 Feb  9  2021 ctx_base.py
-rw-rw-r--   1 stephen  staff    6572 Feb  9  2021 ctx_fp.py
-rw-rw-r--   1 stephen  staff   17211 Feb  9  2021 ctx_iv.py
-rw-rw-r--   1 stephen  staff   49448 Feb  9  2021 ctx_mp.py
-rw-rw-r--   1 stephen  staff   37730 Feb  9  2021 ctx_mp_python.py
-rw-rw-r--   1 stephen  staff  280518 Feb  9  2021 function_docs.py
drwxr-xr-x  16 stephen  staff     512 Nov 22 10:27 functions
-rw-rw-r--   1 stephen  staff   29253 Feb  9  2021 identification.py
drwxr-xr-x  12 stephen  staff     384 Nov 22 10:27 libmp
-rw-rw-r--   1 stephen  staff   18561 Feb  9  2021 math2.py
drwxr-xr-x   9 stephen  staff     288 Nov 22 10:27 matrices
-rw-rw-r--   1 stephen  staff    5976 Feb  9  2021 rational.py
drwxr-xr-x  39 stephen  staff    1248 Nov 22 10:27 tests
-rw-rw-r--   1 stephen  staff    3029 Feb  9  2021 usertools.py
-rw-rw-r--   1 stephen  staff   10627 Feb  9  2021 visualization.py
looooo commented 2 years ago

@stepheneb thanks for having a look at this.

  1. Am not intending to create a release so the error looking for the missing env var DEPLOY_RELEASE is expected.

should be fixed with: https://github.com/FreeCAD/FreeCAD-Bundle/commit/40207a0a2c0a233af121c63c76fd6b9d2d398335

  1. Not sure if the PackagesNotFoundError error is important or not?

not a big issue, but we can remove them from the script: https://github.com/FreeCAD/FreeCAD-Bundle/commit/e84a2b58b3f4f1c141decc6d472a0268c73db3eb

  1. The error at the end trying to remove libb/python3.8/site-packages/mpmath/ctx_mp_python.py from the app seems strange. Not sure why it's looking in the python3.8 directory? Those files are in the python3.9 directory:

https://github.com/FreeCAD/FreeCAD-Bundle/commit/b2f09dba9ef2f7b7d5a93b7b723b0de02f300c56

Maybe you can try again.

stepheneb commented 2 years ago

@looooo

Tested this morning. It's much smoother.

Noticed this at the end of the process. Not sure if it's an issue.

sed: 1: "APP/FreeCAD.app/Content ...": invalid command code A
cp: APP/FreeCAD.app/Contents/Resources/bin_tmp/assistant: No such file or directory

Running the built-in tests generates a segmentation fault on this test:

test_get_svg_from_arch_space_with_zero_vector (drafttests.test_svg.DraftSVG)

Not certain if that's a real issue with the code or related to the packaging.

Lots of details below including the segmentation fault report at the end.

Starting in my top-level FreeCAD-Bundle directory:

Update repo:

[FreeCAD-Bundle(master)]$ git status
On branch master
Your branch is up to date with 'origin/master'.

Untracked files:
  (use "git add <file>..." to include in what will be committed)
    conda/osx/.dmg-SHA256.txt
    conda/osx/.dmg.dmg
    conda/osx/APP/FreeCAD.app/Contents/Info.plist
    conda/osx/APP/FreeCAD.app/Contents/Resources/Ext/
    conda/osx/APP/FreeCAD.app/Contents/Resources/LICENSE
    conda/osx/APP/FreeCAD.app/Contents/Resources/Mod/
    conda/osx/APP/FreeCAD.app/Contents/Resources/bin/
    conda/osx/APP/FreeCAD.app/Contents/Resources/cmake/
    conda/osx/APP/FreeCAD.app/Contents/Resources/conda-meta/
    conda/osx/APP/FreeCAD.app/Contents/Resources/doc/
    conda/osx/APP/FreeCAD.app/Contents/Resources/etc/
    conda/osx/APP/FreeCAD.app/Contents/Resources/fonts/
    conda/osx/APP/FreeCAD.app/Contents/Resources/lib/
    conda/osx/APP/FreeCAD.app/Contents/Resources/libexec/
    conda/osx/APP/FreeCAD.app/Contents/Resources/man/
    conda/osx/APP/FreeCAD.app/Contents/Resources/mkspecs/
    conda/osx/APP/FreeCAD.app/Contents/Resources/phrasebooks/
    conda/osx/APP/FreeCAD.app/Contents/Resources/plugins/
    conda/osx/APP/FreeCAD.app/Contents/Resources/qml/
    conda/osx/APP/FreeCAD.app/Contents/Resources/resources/
    conda/osx/APP/FreeCAD.app/Contents/Resources/sbin/
    conda/osx/APP/FreeCAD.app/Contents/Resources/share/
    conda/osx/APP/FreeCAD.app/Contents/Resources/ssl/
    conda/osx/APP/FreeCAD.app/Contents/Resources/translations/
    conda/osx/APP/FreeCAD.app/Contents/Resources/var/
    conda/osx/APP/FreeCAD.app/Contents/packages.txt

nothing added to commit but untracked files present (use "git add" to track)
[FreeCAD-Bundle(master)]$ git pull
remote: Enumerating objects: 62, done.
remote: Counting objects: 100% (62/62), done.
remote: Compressing objects: 100% (52/52), done.
remote: Total 62 (delta 30), reused 16 (delta 8), pack-reused 0
Unpacking objects: 100% (62/62), 13.67 KiB | 237.00 KiB/s, done.
From github.com:FreeCAD/FreeCAD-Bundle
   444a06d..71f05b6  master         -> origin/master
   0e78972..1dd2ff6  0.19.3         -> origin/0.19.3
 * [new branch]      release_0.19.3 -> origin/release_0.19.3
Updating 444a06d..71f05b6
Fast-forward
 .github/workflows/source_creation.yml |  2 +-
 conda/linux/AppDir/AppRun             |  2 +-
 conda/linux/create_bundle.sh          | 27 +++++++++++----------------
 conda/osx/create_bundle.sh            |  7 -------
 conda/scripts/get_freecad_version.py  |  4 ++--
 make_version_file.py                  |  2 +-
 notes.md                              |  8 ++++++++
 7 files changed, 24 insertions(+), 28 deletions(-)
 create mode 100644 notes.md

cd into conda/osx and run the create_bundle.sh script:

[FreeCAD-Bundle(master)]$ cd conda/osx
[osx(master)]$ bash ./create_bundle.sh 
Collecting package metadata (current_repodata.json): done
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: done

## Package Plan ##

  environment location: /Users/stephen/dev/freecad/FreeCAD-Bundle/conda/osx/APP/FreeCAD.app/Contents/Resources

  added / updated specs:
    - blas[build=openblas]
    - blinker
    - calculix
    - docutils
    - freecad
    - freecad.asm3
    - gitpython
    - ifcopenshell
    - jinja2
    - libredwg
    - lxml
    - matplotlib-base
    - nine
    - numpy
    - occt=7.5
    - olefile
    - opencamlib
    - opencv
    - openglider
    - pandas
    - pycollada
    - pythonocc-core
    - pyyaml
    - qt.py
    - requests
    - scipy
    - six
    - sympy
    - vtk=9
    - xlutils

The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    charset-normalizer-2.0.8   |     pyhd8ed1ab_0          34 KB  conda-forge
    cryptography-36.0.0        |   py39h209aa08_0         1.3 MB  conda-forge
    docutils-0.18.1            |   py39h6e9494a_0         736 KB  conda-forge
    fonttools-4.28.2           |   py39h89e85a6_0         1.5 MB  conda-forge
    freecad-0.20.pre           |  py39h7ecd997_54        66.9 MB  freecad/label/dev
    libpq-13.5                 |       hea3049e_0         2.6 MB  conda-forge
    requests-2.26.0            |     pyhd8ed1ab_1          52 KB  conda-forge
    scipy-1.7.3                |   py39h056f1c0_0        20.0 MB  conda-forge
    setuptools-59.4.0          |   py39h6e9494a_0         1.0 MB  conda-forge
    sqlite-3.37.0              |       h23a322b_0         1.8 MB  conda-forge
    ------------------------------------------------------------
                                           Total:        96.0 MB

The following NEW packages will be INSTALLED:

  aom                conda-forge/osx-64::aom-3.2.0-he49afe7_2
  appdirs            conda-forge/noarch::appdirs-1.4.4-pyh9f0ad1d_0
  arpack             conda-forge/osx-64::arpack-3.7.0-hefb7bc6_2
  blas               conda-forge/osx-64::blas-2.112-openblas
  blas-devel         conda-forge/osx-64::blas-devel-3.9.0-12_osx64_openblas
  blinker            conda-forge/noarch::blinker-1.4-py_1
  boost              conda-forge/osx-64::boost-1.74.0-py39ha1f3e3e_4
  boost-cpp          conda-forge/osx-64::boost-cpp-1.74.0-hff03dee_4
  brotli             conda-forge/osx-64::brotli-1.0.9-h0d85af4_6
  brotli-bin         conda-forge/osx-64::brotli-bin-1.0.9-h0d85af4_6
  brotlipy           conda-forge/osx-64::brotlipy-0.7.0-py39h89e85a6_1003
  bzip2              conda-forge/osx-64::bzip2-1.0.8-h0d85af4_4
  c-ares             conda-forge/osx-64::c-ares-1.18.1-h0d85af4_0
  ca-certificates    conda-forge/osx-64::ca-certificates-2021.10.8-h033912b_0
  cairo              conda-forge/osx-64::cairo-1.16.0-he43a7df_1008
  calculix           conda-forge/osx-64::calculix-2.17-h5f84323_2
  certifi            conda-forge/osx-64::certifi-2021.10.8-py39h6e9494a_1
  cffi               conda-forge/osx-64::cffi-1.15.0-py39he338e87_0
  charset-normalizer conda-forge/noarch::charset-normalizer-2.0.8-pyhd8ed1ab_0
  coin3d             conda-forge/osx-64::coin3d-4.0.0-hf16527e_1011
  cryptography       conda-forge/osx-64::cryptography-36.0.0-py39h209aa08_0
  curl               conda-forge/osx-64::curl-7.80.0-hf45b732_0
  cycler             conda-forge/noarch::cycler-0.11.0-pyhd8ed1ab_0
  docutils           conda-forge/osx-64::docutils-0.18.1-py39h6e9494a_0
  double-conversion  conda-forge/osx-64::double-conversion-3.1.5-he49afe7_2
  eigen              conda-forge/osx-64::eigen-3.4.0-h940c156_0
  expat              conda-forge/osx-64::expat-2.4.1-he49afe7_0
  ezdxf              conda-forge/osx-64::ezdxf-0.17-py39hf018cea_1
  ffmpeg             conda-forge/osx-64::ffmpeg-4.4.1-h79e7b16_0
  flann              conda-forge/osx-64::flann-1.9.1-h4541d04_1008
  font-ttf-dejavu-s~ conda-forge/noarch::font-ttf-dejavu-sans-mono-2.37-hab24e00_0
  font-ttf-inconsol~ conda-forge/noarch::font-ttf-inconsolata-3.000-h77eed37_0
  font-ttf-source-c~ conda-forge/noarch::font-ttf-source-code-pro-2.038-h77eed37_0
  font-ttf-ubuntu    conda-forge/noarch::font-ttf-ubuntu-0.83-hab24e00_0
  fontconfig         conda-forge/osx-64::fontconfig-2.13.1-h10f422b_1005
  fonts-conda-ecosy~ conda-forge/noarch::fonts-conda-ecosystem-1-0
  fonts-conda-forge  conda-forge/noarch::fonts-conda-forge-1-0
  fonttools          conda-forge/osx-64::fonttools-4.28.2-py39h89e85a6_0
  freecad            freecad/label/dev/osx-64::freecad-0.20.pre-py39h7ecd997_54
  freecad.asm3       freecad/label/dev/noarch::freecad.asm3-0.10.2-pyhf0f75e1_17
  freeimage          conda-forge/osx-64::freeimage-3.18.0-h7d96ac2_7
  freetype           conda-forge/osx-64::freetype-2.10.4-h4cff582_1
  gettext            conda-forge/osx-64::gettext-0.19.8.1-hd1a6beb_1008
  gitdb              conda-forge/noarch::gitdb-4.0.9-pyhd8ed1ab_0
  gitpython          conda-forge/noarch::gitpython-3.1.24-pyhd8ed1ab_0
  gl2ps              conda-forge/osx-64::gl2ps-1.4.2-h4cff582_0
  glew               conda-forge/osx-64::glew-2.1.0-h046ec9c_2
  gmp                conda-forge/osx-64::gmp-6.2.1-h2e338ed_0
  gmpy2              conda-forge/osx-64::gmpy2-2.1.0rc1-py39hab8a6df_0
  gnutls             conda-forge/osx-64::gnutls-3.6.13-h756fd2b_1
  graphite2          conda-forge/osx-64::graphite2-1.3.13-h2e338ed_1001
  harfbuzz           conda-forge/osx-64::harfbuzz-2.9.1-h159f659_1
  hdf4               conda-forge/osx-64::hdf4-4.2.15-hefd3b78_3
  hdf5               conda-forge/osx-64::hdf5-1.10.6-nompi_hc5d9132_1114
  icu                conda-forge/osx-64::icu-68.2-he49afe7_0
  idna               conda-forge/noarch::idna-3.1-pyhd3deb0d_0
  ifcopenshell       conda-forge/osx-64::ifcopenshell-v0.6.0-py39h08985a6_5
  ilmbase            conda-forge/osx-64::ilmbase-2.5.5-hfab91a5_0
  jasper             conda-forge/osx-64::jasper-1.900.1-h636a363_1006
  jbig               conda-forge/osx-64::jbig-2.1-h0d85af4_2003
  jinja2             conda-forge/noarch::jinja2-3.0.3-pyhd8ed1ab_0
  jpeg               conda-forge/osx-64::jpeg-9d-hbcb3906_0
  json-c             conda-forge/osx-64::json-c-0.15-hcb556a6_0
  jsoncpp            conda-forge/osx-64::jsoncpp-1.9.4-h940c156_3
  jxrlib             conda-forge/osx-64::jxrlib-1.1-h35c211d_2
  kiwisolver         conda-forge/osx-64::kiwisolver-1.3.2-py39hf018cea_1
  krb5               conda-forge/osx-64::krb5-1.19.2-hcfbf3a7_3
  lame               conda-forge/osx-64::lame-3.100-h35c211d_1001
  lcms2              conda-forge/osx-64::lcms2-2.12-h577c468_0
  lerc               conda-forge/osx-64::lerc-3.0-he49afe7_0
  libblas            conda-forge/osx-64::libblas-3.9.0-12_osx64_openblas
  libbrotlicommon    conda-forge/osx-64::libbrotlicommon-1.0.9-h0d85af4_6
  libbrotlidec       conda-forge/osx-64::libbrotlidec-1.0.9-h0d85af4_6
  libbrotlienc       conda-forge/osx-64::libbrotlienc-1.0.9-h0d85af4_6
  libcblas           conda-forge/osx-64::libcblas-3.9.0-12_osx64_openblas
  libclang           conda-forge/osx-64::libclang-11.1.0-default_he082bbe_1
  libcurl            conda-forge/osx-64::libcurl-7.80.0-hf45b732_0
  libcxx             conda-forge/osx-64::libcxx-12.0.1-habf9029_0
  libdeflate         conda-forge/osx-64::libdeflate-1.8-h0d85af4_0
  libedit            conda-forge/osx-64::libedit-3.1.20191231-h0678c8f_2
  libev              conda-forge/osx-64::libev-4.33-haf1e3a3_1
  libffi             conda-forge/osx-64::libffi-3.4.2-h0d85af4_5
  libgfortran        conda-forge/osx-64::libgfortran-5.0.0-9_3_0_h6c81a4c_23
  libgfortran5       conda-forge/osx-64::libgfortran5-9.3.0-h6c81a4c_23
  libglib            conda-forge/osx-64::libglib-2.70.1-hf1fb8c0_0
  libiconv           conda-forge/osx-64::libiconv-1.16-haf1e3a3_0
  liblapack          conda-forge/osx-64::liblapack-3.9.0-12_osx64_openblas
  liblapacke         conda-forge/osx-64::liblapacke-3.9.0-12_osx64_openblas
  libllvm11          conda-forge/osx-64::libllvm11-11.1.0-hd011deb_2
  libnetcdf          conda-forge/osx-64::libnetcdf-4.8.0-nompi_hb4d10b0_103
  libnghttp2         conda-forge/osx-64::libnghttp2-1.43.0-h6f36284_1
  libogg             conda-forge/osx-64::libogg-1.3.4-h35c211d_1
  libopenblas        conda-forge/osx-64::libopenblas-0.3.18-openmp_h3351f45_0
  libopencv          conda-forge/osx-64::libopencv-4.5.3-py39h852ad08_1
  libpng             conda-forge/osx-64::libpng-1.6.37-h7cec526_2
  libpq              conda-forge/osx-64::libpq-13.5-hea3049e_0
  libprotobuf        conda-forge/osx-64::libprotobuf-3.16.0-hcf210ce_0
  libraw             conda-forge/osx-64::libraw-0.20.2-hefd3b78_1
  libredwg           conda-forge/osx-64::libredwg-0.11.3876-py39pl5321hf41e7f8_2
  libssh2            conda-forge/osx-64::libssh2-1.10.0-h52ee1ee_2
  libtheora          conda-forge/osx-64::libtheora-1.1.1-h0d85af4_1005
  libtiff            conda-forge/osx-64::libtiff-4.3.0-hd146c10_2
  libvorbis          conda-forge/osx-64::libvorbis-1.3.7-h046ec9c_0
  libvpx             conda-forge/osx-64::libvpx-1.11.0-he49afe7_3
  libwebp-base       conda-forge/osx-64::libwebp-base-1.2.1-h0d85af4_0
  libxcb             conda-forge/osx-64::libxcb-1.13-h0d85af4_1004
  libxml2            conda-forge/osx-64::libxml2-2.9.12-h93ec3fd_0
  libxslt            conda-forge/osx-64::libxslt-1.1.33-h5739fc3_2
  libzip             conda-forge/osx-64::libzip-1.8.0-h8b0c345_1
  libzlib            conda-forge/osx-64::libzlib-1.2.11-h9173be1_1013
  llvm-openmp        conda-forge/osx-64::llvm-openmp-12.0.1-hda6cdc1_1
  lml                conda-forge/noarch::lml-0.1.0-pyh9f0ad1d_0
  loguru             conda-forge/osx-64::loguru-0.5.3-py39h6e9494a_3
  lxml               conda-forge/osx-64::lxml-4.6.4-py39hf41e7f8_0
  lz4-c              conda-forge/osx-64::lz4-c-1.9.3-he49afe7_1
  markupsafe         conda-forge/osx-64::markupsafe-2.0.1-py39h89e85a6_1
  matplotlib-base    conda-forge/osx-64::matplotlib-base-3.5.0-py39hb07454d_0
  meshpy             conda-forge/osx-64::meshpy-2020.1-py39h4d6be9b_1
  mpc                conda-forge/osx-64::mpc-1.2.1-hbb51d92_0
  mpfr               conda-forge/osx-64::mpfr-4.1.0-h0f52abe_1
  mpmath             conda-forge/noarch::mpmath-1.2.1-pyhd8ed1ab_0
  munkres            conda-forge/noarch::munkres-1.1.4-pyh9f0ad1d_0
  mysql-common       conda-forge/osx-64::mysql-common-8.0.27-h694c41f_1
  mysql-libs         conda-forge/osx-64::mysql-libs-8.0.27-h115446f_1
  ncurses            conda-forge/osx-64::ncurses-6.2-h2e338ed_4
  nettle             conda-forge/osx-64::nettle-3.6-hedd7734_0
  nine               conda-forge/noarch::nine-1.1.0-py_0
  nspr               conda-forge/osx-64::nspr-4.32-hcd9eead_1
  nss                conda-forge/osx-64::nss-3.72-h31e2bf1_0
  numpy              conda-forge/osx-64::numpy-1.21.4-py39h7eed0ac_0
  occt               conda-forge/osx-64::occt-7.5.3-h23a7684_0
  olefile            conda-forge/noarch::olefile-0.46-pyh9f0ad1d_1
  openblas           conda-forge/osx-64::openblas-0.3.18-openmp_h12da7db_0
  opencamlib         conda-forge/osx-64::opencamlib-2019.07-py39h1e32b98_4
  opencv             conda-forge/osx-64::opencv-4.5.3-py39h6e9494a_1
  openexr            conda-forge/osx-64::openexr-2.5.5-h7fa7ffa_0
  openglider         conda-forge/noarch::openglider-0.0.7.1-pyhd8ed1ab_0
  openh264           conda-forge/osx-64::openh264-2.1.1-hfd3ada9_0
  openjpeg           conda-forge/osx-64::openjpeg-2.4.0-h6e7aa92_1
  openssl            conda-forge/osx-64::openssl-1.1.1l-h0d85af4_0
  packaging          conda-forge/noarch::packaging-21.3-pyhd8ed1ab_0
  pandas             conda-forge/osx-64::pandas-1.3.4-py39h4d6be9b_1
  parabem            conda-forge/osx-64::parabem-0.3.0-py39h3ee96e8_1
  pcl                conda-forge/osx-64::pcl-1.12.0-h720e7f9_0
  pcre               conda-forge/osx-64::pcre-8.45-he49afe7_0
  perl               conda-forge/osx-64::perl-5.32.1-1_h0d85af4_perl5
  pillow             conda-forge/osx-64::pillow-8.4.0-py39he9bb72f_0
  pip                conda-forge/noarch::pip-21.3.1-pyhd8ed1ab_0
  pivy               conda-forge/osx-64::pivy-0.6.6-py39hbf07d3a_0
  pixman             conda-forge/osx-64::pixman-0.40.0-hbcb3906_0
  ply                conda-forge/noarch::ply-3.11-py_1
  proj               conda-forge/osx-64::proj-7.2.0-h78d1473_2
  pthread-stubs      conda-forge/osx-64::pthread-stubs-0.4-hc929b4f_1001
  pugixml            conda-forge/osx-64::pugixml-1.11.4-he49afe7_0
  py-opencv          conda-forge/osx-64::py-opencv-4.5.3-py39h71a6800_1
  pycollada          conda-forge/noarch::pycollada-0.7.2-pyhd8ed1ab_0
  pycparser          conda-forge/noarch::pycparser-2.21-pyhd8ed1ab_0
  pyexcel-ezodf      conda-forge/noarch::pyexcel-ezodf-0.3.4-py_0
  pyexcel-io         conda-forge/noarch::pyexcel-io-0.6.4-pyhd8ed1ab_0
  pyexcel-ods3       conda-forge/noarch::pyexcel-ods3-0.5.3-py_1
  pyopenssl          conda-forge/noarch::pyopenssl-21.0.0-pyhd8ed1ab_0
  pyparsing          conda-forge/noarch::pyparsing-3.0.6-pyhd8ed1ab_0
  pyside2            conda-forge/osx-64::pyside2-5.13.2-py39hbcf2127_4
  pysocks            conda-forge/osx-64::pysocks-1.7.1-py39h6e9494a_4
  python             conda-forge/osx-64::python-3.9.7-h1248fe1_3_cpython
  python-dateutil    conda-forge/noarch::python-dateutil-2.8.2-pyhd8ed1ab_0
  python_abi         conda-forge/osx-64::python_abi-3.9-2_cp39
  pythonocc-core     conda-forge/osx-64::pythonocc-core-7.5.1-py39h874730c_0
  pytools            conda-forge/noarch::pytools-2021.2.9-pyhd8ed1ab_0
  pytz               conda-forge/noarch::pytz-2021.3-pyhd8ed1ab_0
  pyyaml             conda-forge/osx-64::pyyaml-6.0-py39h89e85a6_3
  qhull              conda-forge/osx-64::qhull-2020.2-h940c156_2
  qt                 conda-forge/osx-64::qt-5.12.9-h126340a_4
  qt.py              conda-forge/noarch::qt.py-1.2.2-py_0
  rapidjson          conda-forge/osx-64::rapidjson-1.1.0-hb1e8313_1002
  readline           conda-forge/osx-64::readline-8.1-h05e3726_0
  requests           conda-forge/noarch::requests-2.26.0-pyhd8ed1ab_1
  scipy              conda-forge/osx-64::scipy-1.7.3-py39h056f1c0_0
  setuptools         conda-forge/osx-64::setuptools-59.4.0-py39h6e9494a_0
  six                conda-forge/noarch::six-1.16.0-pyh6c4a22f_0
  smesh              conda-forge/osx-64::smesh-9.7.0.1-he6777af_0
  smmap              conda-forge/noarch::smmap-3.0.5-pyh44b312d_0
  solvespace         freecad/label/dev/osx-64::solvespace-2.4.1-py39ha7aba71_2
  soqt               conda-forge/osx-64::soqt-1.6.0-hbcdcefd_2
  sqlite             conda-forge/osx-64::sqlite-3.37.0-h23a322b_0
  svgwrite           conda-forge/noarch::svgwrite-1.4.1-pyhd8ed1ab_0
  svt-av1            conda-forge/osx-64::svt-av1-0.8.7-he49afe7_1
  sympy              conda-forge/osx-64::sympy-1.9-py39h6e9494a_1
  tbb                conda-forge/osx-64::tbb-2020.2-h940c156_4
  tbb-devel          conda-forge/osx-64::tbb-devel-2020.2-h940c156_4
  tk                 conda-forge/osx-64::tk-8.6.11-h5dbffcc_1
  typing_extensions  conda-forge/noarch::typing_extensions-4.0.0-pyha770c72_0
  tzdata             conda-forge/noarch::tzdata-2021e-he74cb21_0
  urllib3            conda-forge/noarch::urllib3-1.26.7-pyhd8ed1ab_0
  utfcpp             conda-forge/osx-64::utfcpp-3.2.1-h694c41f_0
  vtk                conda-forge/osx-64::vtk-9.0.1-no_osmesa_py39h9af63fb_109
  wheel              conda-forge/noarch::wheel-0.37.0-pyhd8ed1ab_1
  x264               conda-forge/osx-64::x264-1!161.3030-h0d85af4_1
  x265               conda-forge/osx-64::x265-3.5-h940c156_1
  xerces-c           conda-forge/osx-64::xerces-c-3.2.3-h379762d_3
  xlrd               conda-forge/noarch::xlrd-2.0.1-pyhd8ed1ab_3
  xlutils            freecad/label/dev/noarch::xlutils-2.0.0-py_0
  xlwt               conda-forge/noarch::xlwt-1.3.0-py_1
  xorg-fixesproto    conda-forge/osx-64::xorg-fixesproto-5.0-h0d85af4_1002
  xorg-inputproto    conda-forge/osx-64::xorg-inputproto-2.3.2-h35c211d_1002
  xorg-kbproto       conda-forge/osx-64::xorg-kbproto-1.0.7-h35c211d_1002
  xorg-libice        conda-forge/osx-64::xorg-libice-1.0.10-h0d85af4_0
  xorg-libsm         conda-forge/osx-64::xorg-libsm-1.2.3-h0d85af4_1000
  xorg-libx11        conda-forge/osx-64::xorg-libx11-1.7.2-h0d85af4_0
  xorg-libxau        conda-forge/osx-64::xorg-libxau-1.0.9-h35c211d_0
  xorg-libxdmcp      conda-forge/osx-64::xorg-libxdmcp-1.1.3-h35c211d_0
  xorg-libxext       conda-forge/osx-64::xorg-libxext-1.3.4-h0d85af4_1
  xorg-libxfixes     conda-forge/osx-64::xorg-libxfixes-5.0.3-h0d85af4_1004
  xorg-libxi         conda-forge/osx-64::xorg-libxi-1.7.10-h0d85af4_0
  xorg-libxmu        conda-forge/osx-64::xorg-libxmu-1.1.3-h0d85af4_0
  xorg-libxt         conda-forge/osx-64::xorg-libxt-1.2.1-h0d85af4_2
  xorg-xextproto     conda-forge/osx-64::xorg-xextproto-7.3.0-h35c211d_1002
  xorg-xproto        conda-forge/osx-64::xorg-xproto-7.0.31-h35c211d_1007
  xz                 conda-forge/osx-64::xz-5.2.5-haf1e3a3_1
  yaml               conda-forge/osx-64::yaml-0.2.5-haf1e3a3_0
  zlib               conda-forge/osx-64::zlib-1.2.11-h9173be1_1013
  zstd               conda-forge/osx-64::zstd-1.5.0-h582d3a0_0

Downloading and Extracting Packages
docutils-0.18.1      | 736 KB    | ################################################################################################################################################### | 100% 
fonttools-4.28.2     | 1.5 MB    | ################################################################################################################################################### | 100% 
setuptools-59.4.0    | 1.0 MB    | ################################################################################################################################################### | 100% 
requests-2.26.0      | 52 KB     | ################################################################################################################################################### | 100% 
charset-normalizer-2 | 34 KB     | ################################################################################################################################################### | 100% 
cryptography-36.0.0  | 1.3 MB    | ################################################################################################################################################### | 100% 
libpq-13.5           | 2.6 MB    | ################################################################################################################################################### | 100% 
freecad-0.20.pre     | 66.9 MB   | ################################################################################################################################################### | 100% 
sqlite-3.37.0        | 1.8 MB    | ################################################################################################################################################### | 100% 
scipy-1.7.3          | 20.0 MB   | ################################################################################################################################################### | 100% 
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
#
# To activate this environment, use
#
#     $ conda activate /Users/stephen/dev/freecad/FreeCAD-Bundle/conda/osx/APP/FreeCAD.app/Contents/Resources
#
# To deactivate an active environment, use
#
#     $ conda deactivate

######################
FreeCAD_0.20-26498-OSX-x86_64-conda
######################
sed: 1: "APP/FreeCAD.app/Content ...": invalid command code A
cp: APP/FreeCAD.app/Contents/Resources/bin_tmp/assistant: No such file or directory
............................................................................................................................................................
created: /Users/stephen/dev/freecad/FreeCAD-Bundle/conda/osx/FreeCAD_0.20-26498-OSX-x86_64-conda.dmg

Looks like there is one sed error at the end.

This is what's there now:

$ ls -ltr
total 1647856
drwxr-xr-x  3 stephen  staff         96 Nov 22 10:23 APP
-rw-r--r--  1 stephen  staff       1459 Nov 22 10:23 Info.plist.template
-rwxr-xr-x  1 stephen  staff         23 Nov 22 10:23 qt.conf
-rw-r--r--  1 stephen  staff       2653 Nov 29 12:18 create_bundle.sh
-rw-r--r--@ 1 stephen  staff  843684204 Nov 29 12:25 FreeCAD_0.20-26498-OSX-x86_64-conda.dmg
-rw-r--r--  1 stephen  staff        106 Nov 29 12:25 FreeCAD_0.20-26498-OSX-x86_64-conda.dmg-SHA256.txt
[osx(master)]$ ls -ltr APP
total 0
drwxr-xr-x  3 stephen  staff  96 Nov 22 10:23 FreeCAD.app

Opening the app works:

$ open ./APP/FreeCAD.app

And this is the version info:

OS: macOS 10.16
Word size of FreeCAD: 64-bit
Version: 0.20.26498 (Git)
Build type: Release
Python version: 3.9.7
Qt version: 5.12.9
Coin version: 4.0.0
OCC version: 7.5.3
Locale: C/Default (C)

The dmg opens correctly and the extracted app reports the same version info.

Running the built-in tests generates a segment error:

[osx(master)]$ ./APP/FreeCAD.app/Contents/MacOS/FreeCAD -t 0
# packages in environment at /Users/stephen/dev/freecad/FreeCAD-Bundle/conda/osx/APP/FreeCAD.app/Contents/Resources:
#
# Name                    Version                   Build  Channel
aom                       3.2.0                he49afe7_2    conda-forge
appdirs                   1.4.4              pyh9f0ad1d_0    conda-forge
arpack                    3.7.0                hefb7bc6_2    conda-forge
blas                      2.112                  openblas    conda-forge
blas-devel                3.9.0           12_osx64_openblas    conda-forge
blinker                   1.4                        py_1    conda-forge
boost                     1.74.0           py39ha1f3e3e_4    conda-forge
boost-cpp                 1.74.0               hff03dee_4    conda-forge
brotli                    1.0.9                h0d85af4_6    conda-forge
brotli-bin                1.0.9                h0d85af4_6    conda-forge
brotlipy                  0.7.0           py39h89e85a6_1003    conda-forge
bzip2                     1.0.8                h0d85af4_4    conda-forge
c-ares                    1.18.1               h0d85af4_0    conda-forge
ca-certificates           2021.10.8            h033912b_0    conda-forge
cairo                     1.16.0            he43a7df_1008    conda-forge
calculix                  2.17                 h5f84323_2    conda-forge
certifi                   2021.10.8        py39h6e9494a_1    conda-forge
cffi                      1.15.0           py39he338e87_0    conda-forge
charset-normalizer        2.0.8              pyhd8ed1ab_0    conda-forge
coin3d                    4.0.0             hf16527e_1011    conda-forge
cryptography              36.0.0           py39h209aa08_0    conda-forge
curl                      7.80.0               hf45b732_0    conda-forge
cycler                    0.11.0             pyhd8ed1ab_0    conda-forge
docutils                  0.18.1           py39h6e9494a_0    conda-forge
double-conversion         3.1.5                he49afe7_2    conda-forge
eigen                     3.4.0                h940c156_0    conda-forge
expat                     2.4.1                he49afe7_0    conda-forge
ezdxf                     0.17             py39hf018cea_1    conda-forge
ffmpeg                    4.4.1                h79e7b16_0    conda-forge
flann                     1.9.1             h4541d04_1008    conda-forge
font-ttf-dejavu-sans-mono 2.37                 hab24e00_0    conda-forge
font-ttf-inconsolata      3.000                h77eed37_0    conda-forge
font-ttf-source-code-pro  2.038                h77eed37_0    conda-forge
font-ttf-ubuntu           0.83                 hab24e00_0    conda-forge
fontconfig                2.13.1            h10f422b_1005    conda-forge
fonts-conda-ecosystem     1                             0    conda-forge
fonts-conda-forge         1                             0    conda-forge
fonttools                 4.28.2           py39h89e85a6_0    conda-forge
freecad                   0.20.pre        py39h7ecd997_54    freecad/label/dev
freecad.asm3              0.10.2            pyhf0f75e1_17    freecad/label/dev
freeimage                 3.18.0               h7d96ac2_7    conda-forge
freetype                  2.10.4               h4cff582_1    conda-forge
gettext                   0.19.8.1          hd1a6beb_1008    conda-forge
gitdb                     4.0.9              pyhd8ed1ab_0    conda-forge
gitpython                 3.1.24             pyhd8ed1ab_0    conda-forge
gl2ps                     1.4.2                h4cff582_0    conda-forge
glew                      2.1.0                h046ec9c_2    conda-forge
gmp                       6.2.1                h2e338ed_0    conda-forge
gmpy2                     2.1.0rc1         py39hab8a6df_0    conda-forge
gnutls                    3.6.13               h756fd2b_1    conda-forge
graphite2                 1.3.13            h2e338ed_1001    conda-forge
harfbuzz                  2.9.1                h159f659_1    conda-forge
hdf4                      4.2.15               hefd3b78_3    conda-forge
hdf5                      1.10.6          nompi_hc5d9132_1114    conda-forge
icu                       68.2                 he49afe7_0    conda-forge
idna                      3.1                pyhd3deb0d_0    conda-forge
ifcopenshell              v0.6.0           py39h08985a6_5    conda-forge
ilmbase                   2.5.5                hfab91a5_0    conda-forge
jasper                    1.900.1           h636a363_1006    conda-forge
jbig                      2.1               h0d85af4_2003    conda-forge
jinja2                    3.0.3              pyhd8ed1ab_0    conda-forge
jpeg                      9d                   hbcb3906_0    conda-forge
json-c                    0.15                 hcb556a6_0    conda-forge
jsoncpp                   1.9.4                h940c156_3    conda-forge
jxrlib                    1.1                  h35c211d_2    conda-forge
kiwisolver                1.3.2            py39hf018cea_1    conda-forge
krb5                      1.19.2               hcfbf3a7_3    conda-forge
lame                      3.100             h35c211d_1001    conda-forge
lcms2                     2.12                 h577c468_0    conda-forge
lerc                      3.0                  he49afe7_0    conda-forge
libblas                   3.9.0           12_osx64_openblas    conda-forge
libbrotlicommon           1.0.9                h0d85af4_6    conda-forge
libbrotlidec              1.0.9                h0d85af4_6    conda-forge
libbrotlienc              1.0.9                h0d85af4_6    conda-forge
libcblas                  3.9.0           12_osx64_openblas    conda-forge
libclang                  11.1.0          default_he082bbe_1    conda-forge
libcurl                   7.80.0               hf45b732_0    conda-forge
libcxx                    12.0.1               habf9029_0    conda-forge
libdeflate                1.8                  h0d85af4_0    conda-forge
libedit                   3.1.20191231         h0678c8f_2    conda-forge
libev                     4.33                 haf1e3a3_1    conda-forge
libffi                    3.4.2                h0d85af4_5    conda-forge
libgfortran               5.0.0           9_3_0_h6c81a4c_23    conda-forge
libgfortran5              9.3.0               h6c81a4c_23    conda-forge
libglib                   2.70.1               hf1fb8c0_0    conda-forge
libiconv                  1.16                 haf1e3a3_0    conda-forge
liblapack                 3.9.0           12_osx64_openblas    conda-forge
liblapacke                3.9.0           12_osx64_openblas    conda-forge
libllvm11                 11.1.0               hd011deb_2    conda-forge
libnetcdf                 4.8.0           nompi_hb4d10b0_103    conda-forge
libnghttp2                1.43.0               h6f36284_1    conda-forge
libogg                    1.3.4                h35c211d_1    conda-forge
libopenblas               0.3.18          openmp_h3351f45_0    conda-forge
libopencv                 4.5.3            py39h852ad08_1    conda-forge
libpng                    1.6.37               h7cec526_2    conda-forge
libpq                     13.5                 hea3049e_0    conda-forge
libprotobuf               3.16.0               hcf210ce_0    conda-forge
libraw                    0.20.2               hefd3b78_1    conda-forge
libredwg                  0.11.3876       py39pl5321hf41e7f8_2    conda-forge
libssh2                   1.10.0               h52ee1ee_2    conda-forge
libtheora                 1.1.1             h0d85af4_1005    conda-forge
libtiff                   4.3.0                hd146c10_2    conda-forge
libvorbis                 1.3.7                h046ec9c_0    conda-forge
libvpx                    1.11.0               he49afe7_3    conda-forge
libwebp-base              1.2.1                h0d85af4_0    conda-forge
libxcb                    1.13              h0d85af4_1004    conda-forge
libxml2                   2.9.12               h93ec3fd_0    conda-forge
libxslt                   1.1.33               h5739fc3_2    conda-forge
libzip                    1.8.0                h8b0c345_1    conda-forge
libzlib                   1.2.11            h9173be1_1013    conda-forge
llvm-openmp               12.0.1               hda6cdc1_1    conda-forge
lml                       0.1.0              pyh9f0ad1d_0    conda-forge
loguru                    0.5.3            py39h6e9494a_3    conda-forge
lxml                      4.6.4            py39hf41e7f8_0    conda-forge
lz4-c                     1.9.3                he49afe7_1    conda-forge
markupsafe                2.0.1            py39h89e85a6_1    conda-forge
matplotlib-base           3.5.0            py39hb07454d_0    conda-forge
meshpy                    2020.1           py39h4d6be9b_1    conda-forge
mpc                       1.2.1                hbb51d92_0    conda-forge
mpfr                      4.1.0                h0f52abe_1    conda-forge
mpmath                    1.2.1              pyhd8ed1ab_0    conda-forge
munkres                   1.1.4              pyh9f0ad1d_0    conda-forge
mysql-common              8.0.27               h694c41f_1    conda-forge
mysql-libs                8.0.27               h115446f_1    conda-forge
ncurses                   6.2                  h2e338ed_4    conda-forge
nettle                    3.6                  hedd7734_0    conda-forge
nine                      1.1.0                      py_0    conda-forge
nspr                      4.32                 hcd9eead_1    conda-forge
nss                       3.72                 h31e2bf1_0    conda-forge
numpy                     1.21.4           py39h7eed0ac_0    conda-forge
occt                      7.5.3                h23a7684_0    conda-forge
olefile                   0.46               pyh9f0ad1d_1    conda-forge
openblas                  0.3.18          openmp_h12da7db_0    conda-forge
opencamlib                2019.07          py39h1e32b98_4    conda-forge
opencv                    4.5.3            py39h6e9494a_1    conda-forge
openexr                   2.5.5                h7fa7ffa_0    conda-forge
openglider                0.0.7.1            pyhd8ed1ab_0    conda-forge
openh264                  2.1.1                hfd3ada9_0    conda-forge
openjpeg                  2.4.0                h6e7aa92_1    conda-forge
openssl                   1.1.1l               h0d85af4_0    conda-forge
packaging                 21.3               pyhd8ed1ab_0    conda-forge
pandas                    1.3.4            py39h4d6be9b_1    conda-forge
parabem                   0.3.0            py39h3ee96e8_1    conda-forge
pcl                       1.12.0               h720e7f9_0    conda-forge
pcre                      8.45                 he49afe7_0    conda-forge
perl                      5.32.1          1_h0d85af4_perl5    conda-forge
pillow                    8.4.0            py39he9bb72f_0    conda-forge
pip                       21.3.1             pyhd8ed1ab_0    conda-forge
pivy                      0.6.6            py39hbf07d3a_0    conda-forge
pixman                    0.40.0               hbcb3906_0    conda-forge
ply                       3.11                       py_1    conda-forge
proj                      7.2.0                h78d1473_2    conda-forge
pthread-stubs             0.4               hc929b4f_1001    conda-forge
pugixml                   1.11.4               he49afe7_0    conda-forge
py-opencv                 4.5.3            py39h71a6800_1    conda-forge
pycollada                 0.7.2              pyhd8ed1ab_0    conda-forge
pycparser                 2.21               pyhd8ed1ab_0    conda-forge
pyexcel-ezodf             0.3.4                      py_0    conda-forge
pyexcel-io                0.6.4              pyhd8ed1ab_0    conda-forge
pyexcel-ods3              0.5.3                      py_1    conda-forge
pyopenssl                 21.0.0             pyhd8ed1ab_0    conda-forge
pyparsing                 3.0.6              pyhd8ed1ab_0    conda-forge
pyside2                   5.13.2           py39hbcf2127_4    conda-forge
pysocks                   1.7.1            py39h6e9494a_4    conda-forge
python                    3.9.7           h1248fe1_3_cpython    conda-forge
python-dateutil           2.8.2              pyhd8ed1ab_0    conda-forge
python_abi                3.9                      2_cp39    conda-forge
pythonocc-core            7.5.1            py39h874730c_0    conda-forge
pytools                   2021.2.9           pyhd8ed1ab_0    conda-forge
pytz                      2021.3             pyhd8ed1ab_0    conda-forge
pyyaml                    6.0              py39h89e85a6_3    conda-forge
qhull                     2020.2               h940c156_2    conda-forge
qt                        5.12.9               h126340a_4    conda-forge
qt.py                     1.2.2                      py_0    conda-forge
rapidjson                 1.1.0             hb1e8313_1002    conda-forge
readline                  8.1                  h05e3726_0    conda-forge
requests                  2.26.0             pyhd8ed1ab_1    conda-forge
scipy                     1.7.3            py39h056f1c0_0    conda-forge
setuptools                59.4.0           py39h6e9494a_0    conda-forge
six                       1.16.0             pyh6c4a22f_0    conda-forge
smesh                     9.7.0.1              he6777af_0    conda-forge
smmap                     3.0.5              pyh44b312d_0    conda-forge
solvespace                2.4.1            py39ha7aba71_2    freecad/label/dev
soqt                      1.6.0                hbcdcefd_2    conda-forge
sqlite                    3.37.0               h23a322b_0    conda-forge
svgwrite                  1.4.1              pyhd8ed1ab_0    conda-forge
svt-av1                   0.8.7                he49afe7_1    conda-forge
sympy                     1.9              py39h6e9494a_1    conda-forge
tbb                       2020.2               h940c156_4    conda-forge
tbb-devel                 2020.2               h940c156_4    conda-forge
tk                        8.6.11               h5dbffcc_1    conda-forge
typing_extensions         4.0.0              pyha770c72_0    conda-forge
tzdata                    2021e                he74cb21_0    conda-forge
urllib3                   1.26.7             pyhd8ed1ab_0    conda-forge
utfcpp                    3.2.1                h694c41f_0    conda-forge
vtk                       9.0.1           no_osmesa_py39h9af63fb_109    conda-forge
wheel                     0.37.0             pyhd8ed1ab_1    conda-forge
x264                      1!161.3030           h0d85af4_1    conda-forge
x265                      3.5                  h940c156_1    conda-forge
xerces-c                  3.2.3                h379762d_3    conda-forge
xlrd                      2.0.1              pyhd8ed1ab_3    conda-forge
xlutils                   2.0.0                      py_0    freecad/label/dev
xlwt                      1.3.0                      py_1    conda-forge
xorg-fixesproto           5.0               h0d85af4_1002    conda-forge
xorg-inputproto           2.3.2             h35c211d_1002    conda-forge
xorg-kbproto              1.0.7             h35c211d_1002    conda-forge
xorg-libice               1.0.10               h0d85af4_0    conda-forge
xorg-libsm                1.2.3             h0d85af4_1000    conda-forge
xorg-libx11               1.7.2                h0d85af4_0    conda-forge
xorg-libxau               1.0.9                h35c211d_0    conda-forge
xorg-libxdmcp             1.1.3                h35c211d_0    conda-forge
xorg-libxext              1.3.4                h0d85af4_1    conda-forge
xorg-libxfixes            5.0.3             h0d85af4_1004    conda-forge
xorg-libxi                1.7.10               h0d85af4_0    conda-forge
xorg-libxmu               1.1.3                h0d85af4_0    conda-forge
xorg-libxt                1.2.1                h0d85af4_2    conda-forge
xorg-xextproto            7.3.0             h35c211d_1002    conda-forge
xorg-xproto               7.0.31            h35c211d_1007    conda-forge
xz                        5.2.5                haf1e3a3_1    conda-forge
yaml                      0.2.5                haf1e3a3_0    conda-forge
zlib                      1.2.11            h9173be1_1013    conda-forge
zstd                      1.5.0                h582d3a0_0    conda-forge
FreeCAD 0.20, Libs: 0.20R26498 (Git)
© Juergen Riegel, Werner Mayer, Yorik van Havre and others 2001-2021
FreeCAD is free and open-source software licensed under the terms of LGPL2+ license.
FreeCAD wouldn't be possible without FreeCAD community.
  #####                 ####  ###   ####  
  #                    #      # #   #   # 
  #     ##  #### ####  #     #   #  #   # 
  ####  # # #  # #  #  #     #####  #   # 
  #     #   #### ####  #    #     # #   # 
  #     #   #    #     #    #     # #   #  ##  ##  ##
  #     #   #### ####   ### #     # ####   ##  ##  ##

import TestFemImport 
import TestObjectExistance 
import TestFemCommon 
import TestObjectCreate 
import TestObjectType 
import TestObjectOpen 
import TestMaterialUnits 
import TestMeshCommon 
import TestMeshEleTetra10 
import TestMeshGroups 
import TestResult 
import TestCcxTools 
import TestSolverCalculix 
import TestSolverElmer 
import TestSolverZ88 
import TestObjectOpen 
testLoadMesh (MeshTestsApp.LoadMeshInThreadsCases) ... ok
testSphereMesh (MeshTestsApp.LoadMeshInThreadsCases) ... ok
testIntersection (MeshTestsApp.MeshGeoTestCases) ... ok
testIntersection2 (MeshTestsApp.MeshGeoTestCases) ... ok
testIntersectionCoplanar (MeshTestsApp.MeshGeoTestCases) ... ok
testIntersectionOfCollinearEdges (MeshTestsApp.MeshGeoTestCases) ... ok
testIntersectionOfIntersectingEdges (MeshTestsApp.MeshGeoTestCases) ... ok
testIntersectionOfParallelEdges (MeshTestsApp.MeshGeoTestCases) ... ok
testIntersectionOfParallelTriangles (MeshTestsApp.MeshGeoTestCases) ... ok
testIntersectionOfTransformedMesh (MeshTestsApp.MeshGeoTestCases) ... ok
testIntersectionOfWarpedEdges (MeshTestsApp.MeshGeoTestCases) ... ok
testIntersectionOnEdge (MeshTestsApp.MeshGeoTestCases) ... ok
testIntersectionOverlap (MeshTestsApp.MeshGeoTestCases) ... ok
testSelfIntersection (MeshTestsApp.MeshGeoTestCases) ... ok
testSplitFacetOnOneEdge (MeshTestsApp.MeshSplitTestCases) ... ok
testSplitFacetOnTwoEdges_01 (MeshTestsApp.MeshSplitTestCases) ... ok
testSplitFacetOnTwoEdges_02 (MeshTestsApp.MeshSplitTestCases) ... ok
testSplitFacetOnTwoEdges_10 (MeshTestsApp.MeshSplitTestCases) ... ok
testSplitFacetOnTwoEdges_12 (MeshTestsApp.MeshSplitTestCases) ... ok
testSplitFacetOnTwoEdges_20 (MeshTestsApp.MeshSplitTestCases) ... ok
testSplitFacetOnTwoEdges_21 (MeshTestsApp.MeshSplitTestCases) ... ok
testSplitFacetOnTwoEdges_5teps (MeshTestsApp.MeshSplitTestCases) ... ok
testCenterOfGravity (MeshTestsApp.MeshSubElement) ... ok
testCountSubElements (MeshTestsApp.MeshSubElement) ... ok
testFacesFromSubElement (MeshTestsApp.MeshSubElement) ... ok
testSegmentSubElement (MeshTestsApp.MeshSubElement) ... ok
testSubElements (MeshTestsApp.MeshSubElement) ... ok
testCollapseFacetsAll (MeshTestsApp.MeshTopoTestCases) ... ok
testCollapseFacetsMultible (MeshTestsApp.MeshTopoTestCases) ... ok
testCollapseFacetsSingle (MeshTestsApp.MeshTopoTestCases) ... ok
testCorruptedFacet (MeshTestsApp.MeshTopoTestCases) ... ok
testCTRIA3Element (MeshTestsApp.NastranReader) ... ERROR
testDelimitedGRIDElement (MeshTestsApp.NastranReader) ... ERROR
testEightCharGRIDElement (MeshTestsApp.NastranReader) ... ERROR
testSixteenCharGRIDElement (MeshTestsApp.NastranReader) ... ERROR
testPrimitiveCount (MeshTestsApp.PivyTestCases) ... ok
testRayPick (MeshTestsApp.PivyTestCases) ... ok
testFitBad (MeshTestsApp.PolynomialFitCases) ... ok
testFitExact (MeshTestsApp.PolynomialFitCases) ... ok
testFitGood (MeshTestsApp.PolynomialFitCases) ... ok
test_import_draft (drafttests.test_import.DraftImport)
Import the Draft module. ... 
------------------------------------------------------------------------------
  Try importing 'Draft'
ok
test_import_draft_geomutils (drafttests.test_import.DraftImport)
Import Draft geometrical utilities. ... 
------------------------------------------------------------------------------
  Try importing 'DraftGeomUtils'
ok
test_import_draft_svg (drafttests.test_import.DraftImport)
Import Draft SVG utilities. ... 
------------------------------------------------------------------------------
  Try importing 'draftfunctions.svg'
ok
test_import_draft_vecutils (drafttests.test_import.DraftImport)
Import Draft vector utilities. ... 
------------------------------------------------------------------------------
  Try importing 'DraftVecUtils'
ok
test_arc (drafttests.test_creation.DraftCreation)
Create a circular arc. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Arc'
  radius=2
  startangle=0, endangle=90
ok
test_arc_3points (drafttests.test_creation.DraftCreation)
Create a circular arc from three points. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Arc 3Points'
  a=Vector (5.0, 0.0, 0.0), b=Vector (4.0, 3.0, 0.0)
  c=Vector (0.0, 5.0, 0.0)
----------------
Arc by 3 points
p1: Vector (5.0, 0.0, 0.0)
p2: Vector (4.0, 3.0, 0.0)
p3: Vector (0.0, 5.0, 0.0)
Radius: 5.000000000000002
Center: Vector (-1.3322676295501878e-15, -1.3322676295501878e-15, 0.0)
ok
test_bezcurve (drafttests.test_creation.DraftCreation)
Create a bezier curve of six points, degree five. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft BezCurve'
  a=Vector (0.0, 0.0, 0.0), b=Vector (2.0, 2.0, 0.0)
  c=Vector (5.0, 3.0, 0.0), d=Vector (9.0, 0.0, 0.0)
  e=Vector (12.0, 5.0, 0.0), f=Vector (12.0, 8.0, 0.0)
ok
test_bspline (drafttests.test_creation.DraftCreation)
Create a BSpline of three points. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft BSpline'
  a=Vector (0.0, 0.0, 0.0), b=Vector (2.0, 0.0, 0.0)
  c=Vector (2.0, 2.0, 0.0)
ok
test_circle (drafttests.test_creation.DraftCreation)
Create a circle. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Circle'
  radius=3
ok
test_cubicbezcurve (drafttests.test_creation.DraftCreation)
Create a cubic bezier curve of four points. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft CubBezCurve'
  a=Vector (0.0, 0.0, 0.0), b=Vector (2.0, 2.0, 0.0)
  c=Vector (5.0, 3.0, 0.0), d=Vector (9.0, 0.0, 0.0)
ok
test_dimension_angular (drafttests.test_creation.DraftCreation)
Create an angular dimension between two lines at given angles. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Dimension Angular'
  Occasionally crashes
  center=Vector (0.0, 0.0, 0.0)
  angle1=20, angle2=70
  dim_line=Vector (3.0, 1.0, 0.0)
----------------
Angular dimension
center: Vector (0.0, 0.0, 0.0)
angles: [20, 70]
dim_line: Vector (3.0, 1.0, 0.0)
normal: None
ok
test_dimension_linear_obj (drafttests.test_creation.DraftCreation)
Create a linear dimension linked to an object. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Dimension'
  Occasionally crashes
  a=Vector (0.0, 0.0, 0.0), b=Vector (9.0, 0.0, 0.0)
----------------
Linear dimension
edge_object: Line
i1: 1
i2: 2
dim_line: Vector (5.0, 3.0, 0.0)
ok
test_dimension_linear_simple (drafttests.test_creation.DraftCreation)
Create a simple linear dimension not linked to an object. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Dimension'
  Occasionally crashes
  a=Vector (0.0, 0.0, 0.0), b=Vector (9.0, 0.0, 0.0)
  c=Vector (4.0, -1.0, 0.0)
----------------
Linear dimension
p1: Vector (0.0, 0.0, 0.0)
p2: Vector (9.0, 0.0, 0.0)
dim_line: Vector (4.0, -1.0, 0.0)
ok
test_dimension_radial_obj (drafttests.test_creation.DraftCreation)
Create a circle and then a radial and a diameter dimension. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Dimension Radial'
  radius=10
  startangle=0, endangle=90
----------------
Radial dimension
edge_object: Arc
index: 1
mode: radius
dim_line: Vector (1.0, 1.0, 0.0)
----------------
Radial dimension
edge_object: Arc
index: 1
mode: diameter
dim_line: Vector (3.0, 1.0, 0.0)
ok
test_ellipse (drafttests.test_creation.DraftCreation)
Create an ellipse. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Ellipse'
  major_axis=5, minor_axis=3
ok
test_facebinder (drafttests.test_creation.DraftCreation)
Create a box, and then a facebinder from its faces. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Facebinder'
  In order to test this, a selection is needed
  or an App::PropertyLinkSubList
  Box
  object='Solid' (Part::Box)
  sub-elements=('Face1', 'Face6')
ok
test_fillet (drafttests.test_creation.DraftCreation)
Create two lines, and a fillet between them. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Fillet'
  Lines
  a=Vector (0.0, 0.0, 0.0), b=Vector (8.0, 0.0, 0.0)
  b=Vector (8.0, 0.0, 0.0), c=Vector (8.0, 8.0, 0.0)
  Fillet
  radius=4
----------------
Fillet
(1): Line; length: 8.0
(2): Line001; length: 8.0
Segment 1, length: 3.999999999999999
Segment 2, length: 6.283185307179587
Segment 3, length: 3.999999999999999
Update radius currently not implemented: r=0.0 mm
Update radius currently not implemented: r=4.0 mm
ok
test_label (drafttests.test_creation.DraftCreation)
Create a label. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Label'
  Occasionally crashes
  target_point=Vector (0.0, 0.0, 0.0), distance=-25
  placement=Placement [Pos=(50,50,0), Yaw-Pitch-Roll=(0,0,0)]
----------------
Label
target_point: Vector (0.0, 0.0, 0.0)
placement: Placement [Pos=(50,50,0), Yaw-Pitch-Roll=(0,0,0)]
label_type: Custom
custom_text: Label
direction: Horizontal
distance: -25
ok
test_layer (drafttests.test_creation.DraftCreation)
Create a layer, and add a rectangle to it. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Layer'
  length=5, width=2
----------------
Layer
line_width: 2.0
draw_style: Solid
transparency: 0
ok
test_line (drafttests.test_creation.DraftCreation)
Create a line. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Line'
  a=Vector (0.0, 0.0, 0.0), b=Vector (2.0, 0.0, 0.0)
ok
test_point (drafttests.test_creation.DraftCreation)
Create a point. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Point'
  p.x=5.0, p.y=3.0, p.z=2.0
ok
test_polygon (drafttests.test_creation.DraftCreation)
Create a regular polygon. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Polygon'
  n_faces=6, radius=5
ok
test_polyline (drafttests.test_creation.DraftCreation)
Create a polyline. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Wire'
  a=Vector (0.0, 0.0, 0.0), b=Vector (2.0, 0.0, 0.0)
  c=Vector (2.0, 2.0, 0.0)
ok
test_rectangle (drafttests.test_creation.DraftCreation)
Create a rectangle. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Rectangle'
  length=5, width=2
ok
test_shapestring (drafttests.test_creation.DraftCreation)
Create a ShapeString. NOT IMPLEMENTED CURRENTLY. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft ShapeString'
  In order to test this, a font file is needed.
  text='Testing Shapestring ', font='None'
  Arguments to placeholder function
  p1=Text; p2=None
  p3=None; p4=None
  p5=None
  #-----------------------------------------------------#
  #    This test is not implemented currently
  #-----------------------------------------------------#
  Automatic PASS
ok
test_text (drafttests.test_creation.DraftCreation)
Create a text object. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftCreation'
  Test 'Draft Text'
  text='Testing testing'
----------------
Text
string: Testing testing
placement: None
ok
test_circular_array (drafttests.test_modification.DraftModification)
Create a rectangle, and a circular array. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft CircularArray'
  Rectangle
  length=4, width=2
  Array
  radial_distance=10, tangential_distance=8
  number=3, symmetry=1
  axis=Vector (0.0, 0.0, 1.0)
  center=Vector (0.0, 0.0, 0.0)
----------------
Circular array
base_object: Rectangle
r_distance: 10
tan_distance: 8
number: 3
symmetry: 1
axis: Vector (0.0, 0.0, 1.0)
center: Vector (0.0, 0.0, 0.0)
use_link: True
ok
test_clone (drafttests.test_modification.DraftModification)
Create a box, then create a clone of it. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Clone'
  object: 'Solid' (Part::Box)
  clone: 'Clone' (Part::FeaturePython)
ok
test_copy (drafttests.test_modification.DraftModification)
Create a line, then copy and move it. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Move with copy'
  Line
  a=Vector (0.0, 3.0, 0.0), b=Vector (2.0, 3.0, 0.0)
  Translation vector (copy)
  c=Vector (2.0, 2.0, 0.0)
ok
test_downgrade (drafttests.test_modification.DraftModification)
Downgrade a closed Draft Wire into three simple Part Edges. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Downgrade'
  Closed wire
  a=Vector (0.0, 0.0, 0.0), b=Vector (2.0, 2.0, 0.0)
  c=Vector (2.0, 4.0, 0.0), a=Vector (0.0, 0.0, 0.0)
----------------
Downgrade objects
Found 1 parametric object: breaking its dependencies
  1: Result 'Face' (Part::Feature)
----------------
Downgrade objects
Found 1 face: extracting its wires
  2: Result 'Wire' (Part::Feature)
----------------
Downgrade objects
Found only wires: extracting their edges
  3: Result 3 x 'Edge' (Part::Feature)
----------------
Downgrade objects
No more downgrade possible
  4: Result '[]'
  The last objects cannot be downgraded further
ok
test_draft_to_drawing (drafttests.test_modification.DraftModification)
Create a solid, and then a projected view in a Drawing page. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Drawing'
  The Drawing Workbench is obsolete since 0.17,
  consider using the TechDraw Workbench instead
  Prism
  n_sides=5
  placement=Placement [Pos=(0,0,0), Yaw-Pitch-Roll=(0,45,0)]
  Drawing view
  page=Drawing::FeaturePage
  template=
ok
test_draft_to_sketch (drafttests.test_modification.DraftModification)
Convert a Draft object to a Sketch and back. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Draft2Sketch'
  Wire
  a=Vector (0.0, 0.0, 0.0), b=Vector (2.0, 2.0, 0.0)
  c=Vector (2.0, 4.0, 0.0)
  1: Result 'Wire' (Sketcher::SketchObject)
  2: Result 'Wire' (Part::Part2DObjectPython)
ok
test_extend (drafttests.test_modification.DraftModification)
Extend a line. NOT IMPLEMENTED. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Trimex extend'
  Line
  a=Vector (0.0, 0.0, 0.0), b=Vector (1.0, 1.0, 0.0)
  Line 2
  c=Vector (2.0, 2.0, 0.0), d=Vector (4.0, 2.0, 0.0)
  Arguments to placeholder function
  p1=<Part::Part2DObject>; p2=<Part::Part2DObject>
  p3=None; p4=None
  p5=None
  #-----------------------------------------------------#
  #    This test is not implemented currently
  #-----------------------------------------------------#
  Automatic PASS
ok
test_join (drafttests.test_modification.DraftModification)
Join two lines into a single Draft Wire. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Join'
  Line 1
  a=Vector (0.0, 0.0, 0.0), b=Vector (2.0, 2.0, 0.0)
  Line 2
  b=Vector (2.0, 2.0, 0.0), c=Vector (2.0, 4.0, 0.0)
ok
test_mirror (drafttests.test_modification.DraftModification)
Create a rectangle, then a mirrored shape. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Mirror'
  Rectangle
  length=4, width=2
  Mirror axis
  p1=Vector (6.0, -2.0, 0.0)
  p2=Vector (6.0, 2.0, 0.0)
----------------
Create mirror
ok
test_move (drafttests.test_modification.DraftModification)
Create a line and move it. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Move'
  Line
  a=Vector (0.0, 2.0, 0.0), b=Vector (2.0, 2.0, 0.0)
  Translation vector
  c=Vector (3.0, 1.0, 0.0)
ok
test_offset_closed (drafttests.test_modification.DraftModification)
Create a rectangle, then produce an offset copy. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Offset'
  Rectangle
  length=4, width=2
  Offset
  vector=Vector (-1.0, -1.0, 0.0)
 something wrong with firstDir 
ok
test_offset_open (drafttests.test_modification.DraftModification)
Create a wire, then produce an offset copy. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Offset'
  Wire
  a=Vector (0.0, 2.0, 0.0), b=Vector (2.0, 4.0, 0.0)
  c=Vector (5.0, 2.0, 0.0)
  Offset
  vector=Vector (-1.0, 1.0, 0.0)
ok
test_path_array (drafttests.test_modification.DraftModification)
Create a wire, a polygon, and a path array. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft PathArray'
  Wire
  a=Vector (0.0, 0.0, 0.0), b=Vector (2.0, 2.0, 0.0)
  c=Vector (2.0, 4.0, 0.0), d=Vector (8.0, 4.0, 0.0)
  Polygon
  n_faces=3, radius=1
  Path Array
  number=4, translation=Vector (0.0, 1.0, 0.0)
  subelements=Edge1, align=False
----------------
Path array
base_object: Polygon
path_object: Wire
count: 4
extra: Vector (0.0, 1.0, 0.0)
subelements: Edge1
align: False
align_mode: Original
tan_vector: Vector (1.0, 0.0, 0.0)
force_vertical: False
vertical_vector: Vector (0.0, 0.0, 1.0)
use_link: True
ok
test_point_array (drafttests.test_modification.DraftModification)
Create a polygon, various point, and a point array. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft PointArray'
  Points
  a=Vector (0.0, 0.0, 0.0), b=Vector (2.0, 2.0, 0.0)
  c=Vector (2.0, 4.0, 0.0), d=Vector (8.0, 4.0, 0.0)
  Upgrade
----------------
Upgrade objects
Found points: creating compound
  Polygon
  n_faces=3, radius=1
  Point Array
----------------
Point array
base_object: Polygon
point_object: Block
extra: None
ok
test_polar_array (drafttests.test_modification.DraftModification)
Create a rectangle, and a polar array. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft PolarArray'
  Rectangle
  length=4, width=2
  Array
  number=5, polar_angle=180
  center=Vector (-4.0, 0.0, 0.0)
----------------
Polar array
base_object: Rectangle
number: 5
angle: 180
center: Vector (-4.0, 0.0, 0.0)
use_link: True
ok
test_rectangular_array (drafttests.test_modification.DraftModification)
Create a rectangle, and a rectangular array. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft OrthoArray'
  Rectangle
  length=4, width=2
  Array
  direction_x=Vector (5.0, 0.0, 0.0)
  direction_y=Vector (0.0, 4.0, 0.0)
  direction_z=Vector (0.0, 0.0, 6.0)
  number_x=3, number_y=4, number_z=6
----------------
Orthogonal array
base_object: Rectangle
v_x: Vector (5.0, 0.0, 0.0)
v_y: Vector (0.0, 4.0, 0.0)
v_z: Vector (0.0, 0.0, 6.0)
n_x: 3
n_y: 4
n_z: 6
use_link: True
ok
test_rotate (drafttests.test_modification.DraftModification)
Create a line, then rotate it. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Rotate'
  Line
  a=Vector (1.0, 1.0, 0.0), b=Vector (3.0, 1.0, 0.0)
  Rotation
  angle=90 degrees
ok
test_scale_part_feature_arcs (drafttests.test_modification.DraftModification)
Create and scale a part feature (arcs). ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Scale part feature (arcs)'
ok
test_scale_part_feature_lines (drafttests.test_modification.DraftModification)
Create and scale a part feature (lines). ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Scale part feature (lines)'
ok
test_scale_rectangle (drafttests.test_modification.DraftModification)
Create and scale a rectangle. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Scale rectangle'
ok
test_scale_spline (drafttests.test_modification.DraftModification)
Create and scale a spline. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Scale spline'
ok
test_scale_wire (drafttests.test_modification.DraftModification)
Create and scale a wire. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Scale wire'
ok
test_shape_2d_view (drafttests.test_modification.DraftModification)
Create a prism and then a 2D projection of it. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Shape2DView'
  Prism
  n_sides=5
  placement=Placement [Pos=(0,0,0), Yaw-Pitch-Roll=(0,45,0)]
  Projection 2D view
  direction=Vector (0.0, 0.0, 1.0)
ok
test_split (drafttests.test_modification.DraftModification)
Split a Draft Wire into two Draft Wires. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft_Split'
  Wire
  a=Vector (0.0, 0.0, 0.0), b=Vector (2.0, 2.0, 0.0)
  c=Vector (2.0, 4.0, 0.0), d=Vector (6.0, 4.0, 0.0)
  Split at
  p=Vector (2.0, 2.0, 0.0), index=1
ok
test_stretch (drafttests.test_modification.DraftModification)
Stretch a line. NOT IMPLEMENTED. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Stretch'
  This test requires an object and a selection
  Line
  a=Vector (0.0, 0.0, 0.0), b=Vector (1.0, 1.0, 0.0)
  Arguments to placeholder function
  p1=<Part::Part2DObject>; p2=Vector (4.0, 1.0, 0.0)
  p3=None; p4=None
  p5=None
  #-----------------------------------------------------#
  #    This test is not implemented currently
  #-----------------------------------------------------#
  Automatic PASS
ok
test_trim (drafttests.test_modification.DraftModification)
Trim a line. NOT IMPLEMENTED. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Trimex trim'
  Line
  a=Vector (0.0, 0.0, 0.0), b=Vector (3.0, 3.0, 0.0)
  Line 2
  c=Vector (2.0, 2.0, 0.0), d=Vector (4.0, 2.0, 0.0)
  Arguments to placeholder function
  p1=<Part::Part2DObject>; p2=<Part::Part2DObject>
  p3=None; p4=None
  p5=None
  #-----------------------------------------------------#
  #    This test is not implemented currently
  #-----------------------------------------------------#
  Automatic PASS
ok
test_upgrade (drafttests.test_modification.DraftModification)
Upgrade two Lines into a closed Wire, then draftify it. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft Upgrade'
  Line 1
  a=Vector (0.0, 0.0, 0.0), b=Vector (2.0, 2.0, 0.0)
  Line 2
  b=Vector (2.0, 2.0, 0.0), c=Vector (2.0, 4.0, 0.0)
----------------
Upgrade objects
Found several wires or edges: wiring them
  1: Result 'Wire' (Part::Feature)
----------------
Upgrade objects
trying: closing it
Found 1 open wire: closing it
  2: Result 'Wire' (Part::Feature)
----------------
Upgrade objects
Found closed wires: creating faces
  3: Result 'Face' (Part::Feature)
----------------
Upgrade objects
Found 1 non-parametric objects: draftifying it
  4: Result 'Wire' (Part::Part2DObjectPython)
----------------
Upgrade objects
Unable to upgrade these objects.
  The last object cannot be upgraded further
ok
test_wire_to_bspline (drafttests.test_modification.DraftModification)
Convert a polyline to BSpline and back. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftModification'
  Test 'Draft WireToBSpline'
  Wire
  a=Vector (0.0, 0.0, 0.0), b=Vector (2.0, 2.0, 0.0)
  c=Vector (2.0, 4.0, 0.0)
  1: Result 'BSpline' (Part::Part2DObjectPython)
  2: Result 'Wire' (Part::Part2DObjectPython)
ok
test_get_extended_wire (drafttests.test_draftgeomutils.TestDraftGeomUtils)
Test the DraftGeomUtils.get_extended_wire function. ... 
------------------------------------------------------------------------------
  Test 'DraftGeomUtils.get_extended_wire'
  Running tests with wire1
  Running tests with wire2
  Running tests with wire3
  Running tests with wire4
  Running tests with wire5
  Running tests with wire6
  Running tests with wire7
  Running tests with wire8
  Test completed, 248 subtests run
ok
test_export_svg (drafttests.test_svg.DraftSVG)
Create some figures and export them to an SVG file. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftSVG'
  Test 'importSVG.export'
  file=/Users/stephen/dev/freecad/FreeCAD-Bundle/conda/osx/APP/FreeCAD.app/Contents/Resources/share/Mod/Draft/drafttest/out_test.svg
  exists=False
  Arguments to placeholder function
  p1=/Users/stephen/dev/freecad/FreeCAD-Bundle/conda/osx/APP/FreeCAD.app/Contents/Resources/share/Mod/Draft/drafttest/out_test.svg; p2=None
  p3=None; p4=None
  p5=None
  #-----------------------------------------------------#
  #    This test is not implemented currently
  #-----------------------------------------------------#
  Automatic PASS
ok
test_get_svg_from_arch_space_with_zero_vector (drafttests.test_svg.DraftSVG)
Try to get a svg string from an Arch Space with a zero-vector as direction. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftSVG'
./APP/FreeCAD.app/Contents/MacOS/FreeCAD: line 19: 27107 Segmentation fault: 11  "${PREFIX}/bin/freecad" $@

Here's the macOS segmentation fault report.

Process:               freecad [27107]
Path:                  /Users/USER/*/FreeCAD.app/Contents/Resources/bin/freecad
Identifier:            freecad
Version:               0
Code Type:             X86-64 (Native)
Parent Process:        ??? [27101]
Responsible:           Terminal [33093]
User ID:               503

Date/Time:             2021-11-29 12:32:25.074 -0500
OS Version:            macOS 11.6.1 (20G224)
Report Version:        12
Anonymous UUID:        ADF0ECAA-333F-0B9F-EE69-D1F843D8F9F8

Time Awake Since Boot: 1200000 seconds

System Integrity Protection: enabled

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Signal:    Segmentation fault: 11
Termination Reason:    Namespace SIGNAL, Code 0xb
Terminating Process:   exc handler [27107]

VM Regions Near 0:
--> 
    __TEXT                      101b18000-101b20000    [   32K] r-x/r-x SM=COW  /Users/*/FreeCAD.app/Contents/Resources/bin/freecad

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_platform.dylib        0x00007fff204cb552 _platform_strlen + 18
1   libFreeCADApp.dylib             0x000000010319a65d App::ObjectIdentifier::access(App::ObjectIdentifier::ResolveResults const&, Py::Object*, std::__1::map<App::DocumentObject*, std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::less<App::DocumentObject*>, std::__1::allocator<std::__1::pair<App::DocumentObject* const, std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > > >*) const::$_0::operator()(App::DocumentObject*, App::Property*, char const*) const + 637
2   libFreeCADApp.dylib             0x0000000103196007 App::ObjectIdentifier::access(App::ObjectIdentifier::ResolveResults const&, Py::Object*, std::__1::map<App::DocumentObject*, std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::less<App::DocumentObject*>, std::__1::allocator<std::__1::pair<App::DocumentObject* const, std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > > >*) const + 2823
3   libFreeCADApp.dylib             0x000000010319515f App::ObjectIdentifier::getDep(std::__1::map<App::DocumentObject*, std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::less<App::DocumentObject*>, std::__1::allocator<std::__1::pair<App::DocumentObject* const, std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > > >&, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >*) const + 159
4   libFreeCADApp.dylib             0x000000010319509c App::ObjectIdentifier::getDep(bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >*) const + 44
5   libFreeCADApp.dylib             0x0000000103111e9e App::Expression::getDeps(std::__1::map<App::DocumentObject*, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<App::ObjectIdentifier, std::__1::allocator<App::ObjectIdentifier> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::vector<App::ObjectIdentifier, std::__1::allocator<App::ObjectIdentifier> > > > >, std::__1::less<App::DocumentObject*>, std::__1::allocator<std::__1::pair<App::DocumentObject* const, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<App::ObjectIdentifier, std::__1::allocator<App::ObjectIdentifier> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::vector<App::ObjectIdentifier, std::__1::allocator<App::ObjectIdentifier> > > > > > > >&, int) const + 286
6   libFreeCADApp.dylib             0x00000001031122fc App::Expression::getDeps(int) const + 44
7   libFreeCADApp.dylib             0x000000010321e527 App::PropertyExpressionEngine::buildGraphStructures(App::ObjectIdentifier const&, std::__1::shared_ptr<App::Expression>, boost::unordered::unordered_map<App::ObjectIdentifier, int, boost::hash<App::ObjectIdentifier>, std::__1::equal_to<App::ObjectIdentifier>, std::__1::allocator<std::__1::pair<App::ObjectIdentifier const, int> > >&, boost::unordered::unordered_map<int, App::ObjectIdentifier, boost::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, App::ObjectIdentifier> > >&, std::__1::vector<std::__1::pair<int, int>, std::__1::allocator<std::__1::pair<int, int> > >&) const + 183
8   libFreeCADApp.dylib             0x000000010322062b App::PropertyExpressionEngine::buildGraph(boost::unordered::unordered_map<App::ObjectIdentifier const, App::PropertyExpressionEngine::ExpressionInfo, boost::hash<App::ObjectIdentifier const>, std::__1::equal_to<App::ObjectIdentifier const>, std::__1::allocator<std::__1::pair<App::ObjectIdentifier const, App::PropertyExpressionEngine::ExpressionInfo> > > const&, boost::unordered::unordered_map<int, App::ObjectIdentifier, boost::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, App::ObjectIdentifier> > >&, boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, boost::no_property, boost::no_property, boost::no_property, boost::listS>&, App::PropertyExpressionEngine::ExecuteOption) const + 507
9   libFreeCADApp.dylib             0x000000010321fc73 App::PropertyExpressionEngine::validateExpression(App::ObjectIdentifier const&, std::__1::shared_ptr<App::Expression const>) const + 1187
10  libFreeCADApp.dylib             0x000000010321f0cf App::PropertyExpressionEngine::setValue(App::ObjectIdentifier const&, std::__1::shared_ptr<App::Expression>) + 223
11  libFreeCADApp.dylib             0x00000001030ace22 App::DocumentObject::setExpression(App::ObjectIdentifier const&, std::__1::shared_ptr<App::Expression>) + 66
12  libFreeCADApp.dylib             0x00000001030cac68 App::DocumentObjectPy::setExpression(_object*) + 824
13  libFreeCADApp.dylib             0x00000001030c6790 App::DocumentObjectPy::staticCallback_setExpression(_object*, _object*) + 80
14  libpython3.9.dylib              0x0000000102caaa5a cfunction_call + 90
15  libpython3.9.dylib              0x0000000102c48ac8 _PyObject_MakeTpCall + 136
16  libpython3.9.dylib              0x0000000102d864a3 call_function + 323
17  libpython3.9.dylib              0x0000000102d83efc _PyEval_EvalFrameDefault + 44668
18  libpython3.9.dylib              0x0000000102c49eb2 _PyFunction_Vectorcall + 242
19  libpython3.9.dylib              0x0000000102d8640f call_function + 175
20  libpython3.9.dylib              0x0000000102d83e5a _PyEval_EvalFrameDefault + 44506
21  libpython3.9.dylib              0x0000000102c49eb2 _PyFunction_Vectorcall + 242
22  libpython3.9.dylib              0x0000000102d8640f call_function + 175
23  libpython3.9.dylib              0x0000000102d83e5a _PyEval_EvalFrameDefault + 44506
24  libpython3.9.dylib              0x0000000102c49eb2 _PyFunction_Vectorcall + 242
25  libpython3.9.dylib              0x0000000102d8640f call_function + 175
26  libpython3.9.dylib              0x0000000102d83e5a _PyEval_EvalFrameDefault + 44506
27  libpython3.9.dylib              0x0000000102c49eb2 _PyFunction_Vectorcall + 242
28  libpython3.9.dylib              0x0000000102d8640f call_function + 175
29  libpython3.9.dylib              0x0000000102d83efc _PyEval_EvalFrameDefault + 44668
30  libpython3.9.dylib              0x0000000102c49eb2 _PyFunction_Vectorcall + 242
31  libpython3.9.dylib              0x0000000102d8640f call_function + 175
32  libpython3.9.dylib              0x0000000102d83efc _PyEval_EvalFrameDefault + 44668
33  libpython3.9.dylib              0x0000000102c49eb2 _PyFunction_Vectorcall + 242
34  libpython3.9.dylib              0x0000000102c4d36b method_vectorcall + 363
35  libFreeCADApp.dylib             0x000000010313798a App::FeaturePythonImp::onChanged(App::Property const*) + 554
36  Part.so                         0x00000001154ed360 App::FeaturePythonT<Part::Feature>::onChanged(App::Property const*) + 112
37  libFreeCADApp.dylib             0x000000010319e46d App::Property::hasSetValue() + 61
38  libFreeCADApp.dylib             0x0000000103202586 App::PropertyEnumeration::setPyObject(_object*) + 1046
39  libFreeCADApp.dylib             0x00000001031aae37 App::PropertyContainerPy::setCustomAttributes(char const*, _object*) + 823
40  libFreeCADApp.dylib             0x00000001031aa9a8 App::PropertyContainerPy::_setattr(char const*, _object*) + 24
41  Part.so                         0x00000001154f81b0 App::FeaturePythonPyT<Part::PartFeaturePy>::_setattr(char const*, _object*) + 96
42  Part.so                         0x00000001154f7f5b App::FeaturePythonPyT<Part::PartFeaturePy>::__setattro(_object*, _object*, _object*) + 91
43  libpython3.9.dylib              0x0000000102cb182f PyObject_SetAttr + 95
44  libpython3.9.dylib              0x0000000102d7ecaa _PyEval_EvalFrameDefault + 23594
45  libpython3.9.dylib              0x0000000102c49eb2 _PyFunction_Vectorcall + 242
46  libpython3.9.dylib              0x0000000102c48d8d _PyObject_FastCallDictTstate + 109
47  libpython3.9.dylib              0x0000000102cd6540 slot_tp_init + 192
48  libpython3.9.dylib              0x0000000102ce1800 type_call + 272
49  libpython3.9.dylib              0x0000000102c48ac8 _PyObject_MakeTpCall + 136
50  libpython3.9.dylib              0x0000000102d864a3 call_function + 323
51  libpython3.9.dylib              0x0000000102d83f2e _PyEval_EvalFrameDefault + 44718
52  libpython3.9.dylib              0x0000000102d77834 _PyEval_EvalCode + 548
53  libpython3.9.dylib              0x0000000102c49f6b _PyFunction_Vectorcall + 427
54  libpython3.9.dylib              0x0000000102d8640f call_function + 175
55  libpython3.9.dylib              0x0000000102d83efc _PyEval_EvalFrameDefault + 44668
56  libpython3.9.dylib              0x0000000102c49eb2 _PyFunction_Vectorcall + 242
57  libpython3.9.dylib              0x0000000102c4d29e method_vectorcall + 158
58  libpython3.9.dylib              0x0000000102d8640f call_function + 175
59  libpython3.9.dylib              0x0000000102d83f2e _PyEval_EvalFrameDefault + 44718
60  libpython3.9.dylib              0x0000000102c49eb2 _PyFunction_Vectorcall + 242
61  libpython3.9.dylib              0x0000000102d8640f call_function + 175
62  libpython3.9.dylib              0x0000000102d83e5a _PyEval_EvalFrameDefault + 44506
63  libpython3.9.dylib              0x0000000102d77834 _PyEval_EvalCode + 548
64  libpython3.9.dylib              0x0000000102c49f6b _PyFunction_Vectorcall + 427
65  libpython3.9.dylib              0x0000000102c4d36b method_vectorcall + 363
66  libpython3.9.dylib              0x0000000102d84139 _PyEval_EvalFrameDefault + 45241
67  libpython3.9.dylib              0x0000000102d77834 _PyEval_EvalCode + 548
68  libpython3.9.dylib              0x0000000102c49f6b _PyFunction_Vectorcall + 427
69  libpython3.9.dylib              0x0000000102c48d8d _PyObject_FastCallDictTstate + 109
70  libpython3.9.dylib              0x0000000102cd4b7b slot_tp_call + 187
71  libpython3.9.dylib              0x0000000102c48ac8 _PyObject_MakeTpCall + 136
72  libpython3.9.dylib              0x0000000102d864a3 call_function + 323
73  libpython3.9.dylib              0x0000000102d83f2e _PyEval_EvalFrameDefault + 44718
74  libpython3.9.dylib              0x0000000102d77834 _PyEval_EvalCode + 548
75  libpython3.9.dylib              0x0000000102c49f6b _PyFunction_Vectorcall + 427
76  libpython3.9.dylib              0x0000000102c4d36b method_vectorcall + 363
77  libpython3.9.dylib              0x0000000102d84139 _PyEval_EvalFrameDefault + 45241
78  libpython3.9.dylib              0x0000000102d77834 _PyEval_EvalCode + 548
79  libpython3.9.dylib              0x0000000102c49f6b _PyFunction_Vectorcall + 427
80  libpython3.9.dylib              0x0000000102c48d8d _PyObject_FastCallDictTstate + 109
81  libpython3.9.dylib              0x0000000102cd4b7b slot_tp_call + 187
82  libpython3.9.dylib              0x0000000102c48ac8 _PyObject_MakeTpCall + 136
83  libpython3.9.dylib              0x0000000102d864a3 call_function + 323
84  libpython3.9.dylib              0x0000000102d83f2e _PyEval_EvalFrameDefault + 44718
85  libpython3.9.dylib              0x0000000102d77834 _PyEval_EvalCode + 548
86  libpython3.9.dylib              0x0000000102c49f6b _PyFunction_Vectorcall + 427
87  libpython3.9.dylib              0x0000000102c4d36b method_vectorcall + 363
88  libpython3.9.dylib              0x0000000102d84139 _PyEval_EvalFrameDefault + 45241
89  libpython3.9.dylib              0x0000000102d77834 _PyEval_EvalCode + 548
90  libpython3.9.dylib              0x0000000102c49f6b _PyFunction_Vectorcall + 427
91  libpython3.9.dylib              0x0000000102c48d8d _PyObject_FastCallDictTstate + 109
92  libpython3.9.dylib              0x0000000102cd4b7b slot_tp_call + 187
93  libpython3.9.dylib              0x0000000102c48ac8 _PyObject_MakeTpCall + 136
94  libpython3.9.dylib              0x0000000102d864a3 call_function + 323
95  libpython3.9.dylib              0x0000000102d83f2e _PyEval_EvalFrameDefault + 44718
96  libpython3.9.dylib              0x0000000102d77834 _PyEval_EvalCode + 548
97  libpython3.9.dylib              0x0000000102c49f6b _PyFunction_Vectorcall + 427
98  libpython3.9.dylib              0x0000000102c4d36b method_vectorcall + 363
99  libpython3.9.dylib              0x0000000102d84139 _PyEval_EvalFrameDefault + 45241
100 libpython3.9.dylib              0x0000000102d77834 _PyEval_EvalCode + 548
101 libpython3.9.dylib              0x0000000102c49f6b _PyFunction_Vectorcall + 427
102 libpython3.9.dylib              0x0000000102c48d8d _PyObject_FastCallDictTstate + 109
103 libpython3.9.dylib              0x0000000102cd4b7b slot_tp_call + 187
104 libpython3.9.dylib              0x0000000102c48ac8 _PyObject_MakeTpCall + 136
105 libpython3.9.dylib              0x0000000102d864a3 call_function + 323
106 libpython3.9.dylib              0x0000000102d83f2e _PyEval_EvalFrameDefault + 44718
107 libpython3.9.dylib              0x0000000102c49eb2 _PyFunction_Vectorcall + 242
108 libpython3.9.dylib              0x0000000102d8640f call_function + 175
109 libpython3.9.dylib              0x0000000102d83e5a _PyEval_EvalFrameDefault + 44506
110 libpython3.9.dylib              0x0000000102c49eb2 _PyFunction_Vectorcall + 242
111 libpython3.9.dylib              0x0000000102d8640f call_function + 175
112 libpython3.9.dylib              0x0000000102d83efc _PyEval_EvalFrameDefault + 44668
113 libpython3.9.dylib              0x0000000102d77834 _PyEval_EvalCode + 548
114 libpython3.9.dylib              0x0000000102dec6f1 PyRun_StringFlags + 337
115 libFreeCADBase.dylib            0x0000000103569dfb Base::InterpreterSingleton::runString(char const*) + 91
116 libFreeCADGui.dylib             0x0000000102012865 Gui::MainWindow::delayedStartup() + 181
117 libQt5Core.5.12.9.dylib         0x000000010409585d QObject::event(QEvent*) + 687
118 ???                             0x00007ffb1c76b920 0 + 140716491061536

Thread 1:: com.apple.CFSocket.private
0   libsystem_kernel.dylib          0x00007fff2045b656 __select + 10
1   com.apple.CoreFoundation        0x00007fff205a6a03 __CFSocketManager + 630
2   libsystem_pthread.dylib         0x00007fff204888fc _pthread_start + 224
3   libsystem_pthread.dylib         0x00007fff20484443 thread_start + 15

Thread 2:
0   libsystem_kernel.dylib          0x00007fff20455cde __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff20488e49 _pthread_cond_wait + 1298
2   libomp.dylib                    0x000000012354564b void __kmp_suspend_64<false, true>(int, kmp_flag_64<false, true>*) + 299
3   libomp.dylib                    0x000000012352c1b7 kmp_flag_64<false, true>::wait(kmp_info*, int, void*) + 1671
4   libomp.dylib                    0x0000000123527fe6 __kmp_hyper_barrier_release(barrier_type, kmp_info*, int, int, int, void*) + 166
5   libomp.dylib                    0x000000012352b76d __kmp_fork_barrier(int, int) + 445
6   libomp.dylib                    0x0000000123506e8a __kmp_launch_thread + 314
7   libomp.dylib                    0x0000000123543eba __kmp_launch_worker(void*) + 330
8   libsystem_pthread.dylib         0x00007fff204888fc _pthread_start + 224
9   libsystem_pthread.dylib         0x00007fff20484443 thread_start + 15

Thread 3:
0   libsystem_kernel.dylib          0x00007fff20455cde __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff20488e49 _pthread_cond_wait + 1298
2   libomp.dylib                    0x000000012354564b void __kmp_suspend_64<false, true>(int, kmp_flag_64<false, true>*) + 299
3   libomp.dylib                    0x000000012352c1b7 kmp_flag_64<false, true>::wait(kmp_info*, int, void*) + 1671
4   libomp.dylib                    0x0000000123527fe6 __kmp_hyper_barrier_release(barrier_type, kmp_info*, int, int, int, void*) + 166
5   libomp.dylib                    0x000000012352b76d __kmp_fork_barrier(int, int) + 445
6   libomp.dylib                    0x0000000123506e8a __kmp_launch_thread + 314
7   libomp.dylib                    0x0000000123543eba __kmp_launch_worker(void*) + 330
8   libsystem_pthread.dylib         0x00007fff204888fc _pthread_start + 224
9   libsystem_pthread.dylib         0x00007fff20484443 thread_start + 15

Thread 4:
0   libsystem_kernel.dylib          0x00007fff204532ba mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff2045362c mach_msg + 60
2   com.apple.CoreFoundation        0x00007fff2058049f __CFRunLoopServiceMachPort + 316
3   com.apple.CoreFoundation        0x00007fff2057eb7f __CFRunLoopRun + 1328
4   com.apple.CoreFoundation        0x00007fff2057df8c CFRunLoopRunSpecific + 563
5   com.apple.CoreFoundation        0x00007fff206048b2 CFRunLoopRun + 40
6   com.3dconnexion.driver.client   0x00000001045613c0 -[ConnexionClientAPI clientThreadEntry] + 220
7   com.apple.Foundation            0x00007fff21308437 __NSThread__start__ + 1068
8   libsystem_pthread.dylib         0x00007fff204888fc _pthread_start + 224
9   libsystem_pthread.dylib         0x00007fff20484443 thread_start + 15

Thread 5:
0   libsystem_pthread.dylib         0x00007fff20484420 start_wqthread + 0

Thread 6:: Thread (pooled)
0   libsystem_kernel.dylib          0x00007fff20455cde __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff20488e49 _pthread_cond_wait + 1298
2   libQt5Core.5.12.9.dylib         0x0000000103f76b28 0x103f5b000 + 113448

Thread 7:: Thread (pooled)
0   libsystem_kernel.dylib          0x00007fff20455cde __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff20488e49 _pthread_cond_wait + 1298
2   libQt5Core.5.12.9.dylib         0x0000000103f76b28 0x103f5b000 + 113448

Thread 8:: Thread (pooled)
0   libsystem_kernel.dylib          0x00007fff20455cde __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff20488e49 _pthread_cond_wait + 1298
2   libQt5Core.5.12.9.dylib         0x0000000103f76b28 0x103f5b000 + 113448

Thread 9:: Thread (pooled)
0   libsystem_kernel.dylib          0x00007fff20455cde __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff20488e49 _pthread_cond_wait + 1298
2   libQt5Core.5.12.9.dylib         0x0000000103f76b28 0x103f5b000 + 113448

Thread 10:: Thread (pooled)
0   libsystem_kernel.dylib          0x00007fff20455cde __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff20488e49 _pthread_cond_wait + 1298
2   libQt5Core.5.12.9.dylib         0x0000000103f76b28 0x103f5b000 + 113448

Thread 11:: Thread (pooled)
0   libsystem_kernel.dylib          0x00007fff20455cde __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff20488e49 _pthread_cond_wait + 1298
2   libQt5Core.5.12.9.dylib         0x0000000103f76b28 0x103f5b000 + 113448

Thread 12:: Thread (pooled)
0   libsystem_kernel.dylib          0x00007fff20455cde __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff20488e49 _pthread_cond_wait + 1298
2   libQt5Core.5.12.9.dylib         0x0000000103f76b28 0x103f5b000 + 113448

Thread 13:: Thread (pooled)
0   libsystem_kernel.dylib          0x00007fff20455cde __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff20488e49 _pthread_cond_wait + 1298
2   libQt5Core.5.12.9.dylib         0x0000000103f76b28 0x103f5b000 + 113448

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000103  rbx: 0x00007ffb0c162690  rcx: 0x0000000000000000  rdx: 0x0000000000000000
  rdi: 0x0000000000000000  rsi: 0x00000000e983b977  rbp: 0x00007ffeee0dfc80  rsp: 0x00007ffeee0dfc80
   r8: 0x0000000000005e6f   r9: 0x0000000000000018  r10: 0x00007ffb0c100000  r11: 0x0000000000000000
  r12: 0x00007ffb0c162660  r13: 0x00007ffb1cebe600  r14: 0x00007ffeee0e0180  r15: 0x00007ffb0c162688
  rip: 0x00007fff204cb552  rfl: 0x0000000000010246  cr2: 0x0000000000000000

Logical CPU:     0
Error Code:      0x00000004 (no mapping for user data read)
Trap Number:     14

Thread 0 instruction stream:
  29 07 c5 fc 29 47 20 48-83 c7 40 48 83 ea 40 77  )...)G H..@H..@w
  ed c5 fc 11 04 17 c5 fc-11 44 17 20 c5 f8 77 5d  .........D. ..w]
  c3 48 89 34 17 48 83 ea-08 73 f6 48 83 c2 08 74  .H.4.H...s.H...t
  0b 40 88 74 17 ff 48 83-ea 01 75 f5 5d c3 90 90  .@.t..H...u.]...
  90 90 90 90 90 90 90 90-90 90 90 90 90 90 55 48  ..............UH
  89 e5 48 89 f9 48 89 fa-48 83 e7 f0 66 0f ef c0  ..H..H..H...f...
 [66]0f 74 07 66 0f d7 f0-48 83 e1 0f 48 83 c8 ff  f.t.f...H...H... <==
  48 d3 e0 21 c6 74 17 0f-bc c6 48 29 d7 48 01 f8  H..!.t....H).H..
  5d c3 66 2e 0f 1f 84 00-00 00 00 00 66 90 48 83  ].f.........f.H.
  c7 10 66 0f ef c0 66 0f-74 07 66 0f d7 f0 85 f6  ..f...f.t.f.....
  74 ec eb d3 65 48 8b 0c-25 18 00 00 00 41 89 c8  t...eH..%....A..
  31 c0 f0 4c 0f b1 07 0f-85 cf 20 00 00 e9 00 00  1..L...... .....

Thread 0 last branch register state not available.

Binary Images:
       0x101b18000 -        0x101b1ffff +freecad (0) <0528A125-B610-3D04-B773-37164C8AC2F7> /Users/USER/*/FreeCAD.app/Contents/Resources/bin/freecad
       0x101b24000 -        0x101b26fff +libcom_err.3.0.dylib (0) <08D38297-0D82-3883-AF93-38B49191B158> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libcom_err.3.0.dylib
       0x101b2a000 -        0x102742fff +libFreeCADGui.dylib (0) <77BF2B29-BDAA-3ADC-A903-BF353D379CE6> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libFreeCADGui.dylib
       0x102bd4000 -        0x102f37fff +libpython3.9.dylib (0) <7A1FE251-31C3-375E-8743-2498505E2D07> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libpython3.9.dylib
       0x102ff8000 -        0x103334fff +libFreeCADApp.dylib (0) <7EA40BF7-C0DD-3B7E-8797-CC25B25CCEAF> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libFreeCADApp.dylib
       0x103525000 -        0x103644fff +libFreeCADBase.dylib (0) <4B11FD69-EC7F-3E64-9A6C-B5A0025FE4A2> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libFreeCADBase.dylib
       0x1036e4000 -        0x103a4dfff +libQt5Widgets.5.12.9.dylib (0) <00AFF60B-705A-3D60-A414-43CF49D96574> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5Widgets.5.12.9.dylib
       0x103bb1000 -        0x103e5afff +libQt5Gui.5.12.9.dylib (0) <8004CD7B-65A0-3F5E-88AE-60FA9FEA242F> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5Gui.5.12.9.dylib
       0x103f5b000 -        0x1042fbfff +libQt5Core.5.12.9.dylib (0) <CFCFE7C0-8CD1-39E0-A333-401310DC044D> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5Core.5.12.9.dylib
       0x1043b7000 -        0x104435fff +libc++.1.0.dylib (0) <C31DF5BC-B55F-3D08-842B-2E5D38E351A6> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libc++.1.0.dylib
       0x10448e000 -        0x10449dfff +libboost_filesystem.dylib (0) <AD7B8BAC-B90F-3681-9B50-64282E07E466> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libboost_filesystem.dylib
       0x1044a8000 -        0x104529fff +libboost_regex.dylib (0) <B7D33B26-1920-33A6-BFC9-19681BD010B6> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libboost_regex.dylib
       0x10455c000 -        0x104563fff +com.3dconnexion.driver.client (1.2.0 - 1.2.0.252) <E8677B56-E7F7-3029-845C-B6C904EA5CC8> /Library/Frameworks/3DconnexionClient.framework/Versions/A/3DconnexionClient
       0x10457c000 -        0x1045a3fff +libQt5PrintSupport.5.12.9.dylib (0) <C50EF94E-C649-36E2-A436-018B1CCAFDCA> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5PrintSupport.5.12.9.dylib
       0x1045c6000 -        0x1045f3fff +libQt5Svg.5.12.9.dylib (0) <83DEEC1B-F33C-3019-85B5-8A46CF6FD2A0> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5Svg.5.12.9.dylib
       0x104610000 -        0x10462afff +libpyside2.cpython-39-darwin.5.13.2.dylib (0) <D17A529B-71F5-3C30-9D85-91220B619DEC> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libpyside2.cpython-39-darwin.5.13.2.dylib
       0x10463d000 -        0x10483cfff +libxerces-c-3.2.dylib (0) <0A929F1B-0D22-3184-B1BC-CA5ECB81BA4D> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libxerces-c-3.2.dylib
       0x10497c000 -        0x10499cfff +libQt5Xml.5.12.9.dylib (0) <D8426C69-74EE-383D-A480-BBA68D119D66> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5Xml.5.12.9.dylib
       0x1049ad000 -        0x1049e0fff +libshiboken2.cpython-39-darwin.5.13.2.dylib (0) <C3918351-7518-304F-9FC3-A6EAC6A0D464> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libshiboken2.cpython-39-darwin.5.13.2.dylib
       0x1049f7000 -        0x104accfff +libQt5Network.5.12.9.dylib (0) <5398445A-F736-3174-84DB-38D21B1E2707> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5Network.5.12.9.dylib
       0x104b14000 -        0x104b42fff +libboost_program_options.dylib (0) <D870FE5A-B374-3BDB-9BBE-536D9667960C> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libboost_program_options.dylib
       0x104b72000 -        0x104c0dfff  dyld (852.2) <14C5D17F-5032-37A2-9CD8-F437EB4A3992> /usr/lib/dyld
       0x104c8a000 -        0x105164fff +libCoin.4.0.0.dylib (0) <7E613383-DFEF-3CF2-8D2B-375A5C368DCB> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libCoin.4.0.0.dylib
       0x105401000 -        0x105416fff +libz.1.2.11.dylib (0) <F5046AF2-6E10-3D5B-9718-4E7E61333A26> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libz.1.2.11.dylib
       0x10541a000 -        0x10549cfff +libcurl.4.dylib (0) <406E0D52-8C48-3D11-96AB-0951D5FBF0C5> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libcurl.4.dylib
       0x1054b3000 -        0x105611fff +libicuuc.68.2.dylib (0) <963A4765-B993-3D60-8A71-A4892495D782> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libicuuc.68.2.dylib
       0x105686000 -        0x1056a7fff +libnghttp2.14.dylib (0) <6F8E8E3D-2080-3CE7-9E1A-0B421CB89FD5> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libnghttp2.14.dylib
       0x1056b1000 -        0x1056e3fff +libssh2.1.0.1.dylib (0) <81BB134A-0798-32F5-937F-1E817DE53D60> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libssh2.1.0.1.dylib
       0x1056ef000 -        0x10574bfff +libssl.1.1.dylib (0) <BFFA8668-1264-3061-9B1F-7002C95E4E71> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libssl.1.1.dylib
       0x105774000 -        0x10595afff +libcrypto.1.1.dylib (0) <05000044-0DB3-3892-A18D-EB49E2E507B3> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libcrypto.1.1.dylib
       0x1059ea000 -        0x105a20fff +libgssapi_krb5.2.2.dylib (0) <C8B8D0C7-B6ED-3168-AEB4-54D0B1DEF86C> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libgssapi_krb5.2.2.dylib
       0x105a30000 -        0x105abcfff +libkrb5.3.3.dylib (0) <0966B9E2-D8DB-3BB5-93F0-6875058E9700> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libkrb5.3.3.dylib
       0x105af2000 -        0x105b00fff +libk5crypto.3.1.dylib (0) <9138DA01-20F1-3E7E-9139-F1810F78D488> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libk5crypto.3.1.dylib
       0x105b07000 -        0x105b0efff +libkrb5support.1.1.dylib (0) <B767DEE5-F573-3FC1-8794-AE06B54854A3> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libkrb5support.1.1.dylib
       0x105b13000 -        0x107652fff +libicudata.68.2.dylib (0) <2287A9D8-AFD2-30F9-A3CE-F6E851743A0A> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libicudata.68.2.dylib
       0x107654000 -        0x107849fff +libicui18n.68.2.dylib (0) <56A85559-A20B-32FF-882D-A4C16601FE74> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libicui18n.68.2.dylib
       0x107953000 -        0x107977fff +libexpat.1.8.1.dylib (0) <7D1124C2-7D6C-31B6-8565-642265338A6F> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libexpat.1.8.1.dylib
       0x10797f000 -        0x1079acfff +libpng16.16.dylib (0) <D34CA7DD-0A29-3F52-A226-03657F1BFE6B> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libpng16.16.dylib
       0x1079b5000 -        0x107c41fff +libQt5Qml.5.12.9.dylib (0) <923FF871-A606-370A-BD04-4FC04353E5E2> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5Qml.5.12.9.dylib
       0x107f45000 -        0x107f48fff +_heapq.cpython-39-darwin.so (0) <B960D008-5143-302F-95E8-F35A218CD2A7> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_heapq.cpython-39-darwin.so
       0x107fcb000 -        0x107fccfff +_opcode.cpython-39-darwin.so (0) <8D311334-A4DD-3D6A-A328-4BFCFDE7587F> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_opcode.cpython-39-darwin.so
       0x107fcf000 -        0x107fd9fff +math.cpython-39-darwin.so (0) <5EDEDD8B-ECB9-3926-9F9C-587FBBE19E5E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/math.cpython-39-darwin.so
       0x107fde000 -        0x107feefff +_datetime.cpython-39-darwin.so (0) <721F6469-311F-3A92-9474-FBE71A048589> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_datetime.cpython-39-darwin.so
       0x107ff6000 -        0x107ff7fff +grp.cpython-39-darwin.so (0) <3F03AAC9-4A5C-334A-A9A2-73FB76253EAA> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/grp.cpython-39-darwin.so
       0x107ffa000 -        0x107ffcfff +_posixsubprocess.cpython-39-darwin.so (0) <7FDEA01B-E10D-36B6-9CD9-2D1688061213> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_posixsubprocess.cpython-39-darwin.so
       0x10e15f000 -        0x10e163fff +select.cpython-39-darwin.so (0) <42922E9B-9EE3-3F7A-9798-9BF2BAA86E82> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/select.cpython-39-darwin.so
       0x10e1a7000 -        0x10e1acfff +binascii.cpython-39-darwin.so (0) <3F49A22E-09A8-3B6D-B0A3-9D1B92DC9A8D> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/binascii.cpython-39-darwin.so
       0x10e1b0000 -        0x10e1b6fff +_struct.cpython-39-darwin.so (0) <02B07B86-C4BF-329B-BEB5-73D990FA2791> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_struct.cpython-39-darwin.so
       0x10e1bc000 -        0x10e1e6fff +pyexpat.cpython-39-darwin.so (0) <4C1DBF27-3A54-3E3D-904B-4EB7C25FDC6F> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/pyexpat.cpython-39-darwin.so
       0x10e279000 -        0x10e382fff +libqcocoa.dylib (0) <B335D95F-D6A3-3196-9E90-A2B219CB64BD> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/platforms/libqcocoa.dylib
       0x10e3cf000 -        0x10e41cfff +libQt5DBus.5.12.9.dylib (0) <3FF3B298-B871-3596-9CFB-375121C4F31D> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5DBus.5.12.9.dylib
       0x10f513000 -        0x10f522fff  libobjc-trampolines.dylib (824) <32D9DE67-F53E-3B15-AFE6-39B7F27D172F> /usr/lib/libobjc-trampolines.dylib
       0x1116e8000 -        0x11170bfff +libqmacstyle.dylib (0) <50131779-1E21-3B54-91BD-E787851FCF7B> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/styles/libqmacstyle.dylib
       0x11196b000 -        0x111970fff +libqgif.dylib (0) <77512C60-1DCD-3DA1-890C-30C6A3B498A8> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/imageformats/libqgif.dylib
       0x111974000 -        0x11197afff +libqicns.dylib (0) <F66AB08D-1A4B-3AAE-9A52-0674F81DE3FD> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/imageformats/libqicns.dylib
       0x11197f000 -        0x111984fff +libqico.dylib (0) <773ED31F-4D3B-344F-B71D-55C81D146AB8> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/imageformats/libqico.dylib
       0x111989000 -        0x11198ffff +libqjpeg.dylib (0) <7AB3F433-47B1-3F42-B9D3-E5A813A3AFDE> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/imageformats/libqjpeg.dylib
       0x111995000 -        0x1119cdfff +libjpeg.9.dylib (0) <2B5C90F8-892F-3494-9CAF-17102A00B45E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libjpeg.9.dylib
       0x1119d4000 -        0x1119d9fff +libqmacheif.dylib (0) <01A839C8-6464-3E53-9DEB-D2725CF9CDE1> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/imageformats/libqmacheif.dylib
       0x1119de000 -        0x1119e3fff +libqmacjp2.dylib (0) <58D71431-6616-30DA-86E9-623A6EDEE7D9> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/imageformats/libqmacjp2.dylib
       0x1119e8000 -        0x1119ecfff +libqsvg.dylib (0) <CD1C4A73-96EA-375E-904F-BB4133CFA201> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/imageformats/libqsvg.dylib
       0x1119f1000 -        0x1119f4fff +libqtga.dylib (0) <9ABF4F11-E300-36AD-99D0-5183B9799BA3> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/imageformats/libqtga.dylib
       0x1119f8000 -        0x111a52fff +libqtiff.dylib (0) <15B2D869-C6CE-3C56-9654-A27EA2002B48> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/imageformats/libqtiff.dylib
       0x111a5a000 -        0x111a5dfff +libqwbmp.dylib (0) <5F89AD5B-1EA3-39EB-9B5B-8A7A423824BA> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/imageformats/libqwbmp.dylib
       0x111a61000 -        0x111ac6fff +libqwebp.dylib (0) <765F0CC6-C5E5-3E6F-95D3-E7CDDEF16AFB> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/imageformats/libqwebp.dylib
       0x111c78000 -        0x111c7dfff +zlib.cpython-39-darwin.so (0) <1A2471AC-ED25-3F7D-9248-92CA9753A135> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/zlib.cpython-39-darwin.so
       0x111c81000 -        0x111c86fff +_lzma.cpython-39-darwin.so (0) <13773E31-0703-3A0C-A612-0DF5A6B25A50> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_lzma.cpython-39-darwin.so
       0x111c8a000 -        0x111c8bfff +_bisect.cpython-39-darwin.so (0) <F68C96C6-DA45-3387-B835-56DA9603F243> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_bisect.cpython-39-darwin.so
       0x111c91000 -        0x111c93fff +_random.cpython-39-darwin.so (0) <D2FAFE0B-65CD-37B1-A22F-B4B7FC20246D> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_random.cpython-39-darwin.so
       0x111ead000 -        0x111ebefff +_bz2.cpython-39-darwin.so (0) <8C7C2B1E-D34B-333B-AF68-3C4B826ADA29> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_bz2.cpython-39-darwin.so
       0x111ec5000 -        0x111ec6fff +_scproxy.cpython-39-darwin.so (0) <121A0596-F70E-3415-9479-65F3EA6647CE> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_scproxy.cpython-39-darwin.so
       0x111ecc000 -        0x111ed0fff +_sha512.cpython-39-darwin.so (0) <030F093F-24AE-3793-ABE4-E5C951A107FD> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_sha512.cpython-39-darwin.so
       0x112868000 -        0x112f44fff +_coin.so (0) <80F00E6D-4149-3B9D-8AD6-8E4C7A75C405> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/pivy/_coin.so
       0x113856000 -        0x113876fff +liblzma.5.dylib (0) <6024540C-D32D-39B9-84D0-5E45AB5CAD16> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/liblzma.5.dylib
       0x11387c000 -        0x11387efff +shiboken2.cpython-39-darwin.so (0) <2FCA6113-EF64-3AD5-AEE5-892718BDAF57> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/shiboken2/shiboken2.cpython-39-darwin.so
       0x113882000 -        0x113b83fff +QtCore.cpython-39-darwin.so (0) <ADB21F97-852E-319C-9409-617313368D93> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/PySide2/QtCore.cpython-39-darwin.so
       0x113e1b000 -        0x11416bfff +QtGui.cpython-39-darwin.so (0) <ECA2E04F-6C7E-32AE-9E85-55124702E98A> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/PySide2/QtGui.cpython-39-darwin.so
       0x114430000 -        0x114ac0fff +QtWidgets.cpython-39-darwin.so (0) <DF6EDBDB-9F6D-33FE-9174-6D3C9A11F369> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/PySide2/QtWidgets.cpython-39-darwin.so
       0x114f06000 -        0x114f19fff +_ctypes.cpython-39-darwin.so (0) <73E9D654-2571-3514-B6AA-4C583D12D6DA> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_ctypes.cpython-39-darwin.so
       0x114f25000 -        0x114f2bfff +libffi.8.dylib (0) <9890603E-E8DB-3BA2-9741-5E303942F58C> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libffi.8.dylib
       0x114f6f000 -        0x114f76fff +_hashlib.cpython-39-darwin.so (0) <D8645FBA-AE3F-3E9A-ADC6-1F1082F4A110> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_hashlib.cpython-39-darwin.so
       0x114f7d000 -        0x114f84fff +_blake2.cpython-39-darwin.so (0) <4B018BFC-C194-3B17-8FF1-DE66D7BBF4B6> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_blake2.cpython-39-darwin.so
       0x114fc8000 -        0x114fd5fff +_socket.cpython-39-darwin.so (0) <1C543826-D4E5-339E-A456-C5A4426236F2> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_socket.cpython-39-darwin.so
       0x114fdb000 -        0x114fe3fff +array.cpython-39-darwin.so (0) <8ED2187D-5127-3F26-90DB-2FAADBE1EE1E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/array.cpython-39-darwin.so
       0x1150a9000 -        0x1150befff +_ssl.cpython-39-darwin.so (0) <CB031895-1364-36D2-AA2E-B463FC2C1653> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_ssl.cpython-39-darwin.so
       0x115110000 -        0x115116fff +_json.cpython-39-darwin.so (0) <99826BC0-8767-3137-823F-150C2C8D95DE> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_json.cpython-39-darwin.so
       0x11519a000 -        0x11519dfff +mmap.cpython-39-darwin.so (0) <5741CBC0-C451-323E-9D7C-32C7E987FFD1> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/mmap.cpython-39-darwin.so
       0x115261000 -        0x115263fff +termios.cpython-39-darwin.so (0) <93BFB937-24D6-3205-A75B-2ABE4363E1AB> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/termios.cpython-39-darwin.so
       0x1153a6000 -        0x1153a6fff +_uuid.cpython-39-darwin.so (0) <7E8818B3-1EB7-3B7A-A4D5-4B452A902332> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_uuid.cpython-39-darwin.so
       0x115469000 -        0x11546ffff +libqsvgicon.dylib (0) <51E84513-17A8-3085-A794-7054E03E03BE> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/iconengines/libqsvgicon.dylib
       0x1154b4000 -        0x1157dffff +Part.so (0) <B538CD8D-E4BB-33D5-94CA-9059CE485F80> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/Part.so
       0x115955000 -        0x1159e8fff +libTKMesh.7.5.3.dylib (0) <1B1E8CD9-41F8-313A-A1FF-2080BD24A3A7> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKMesh.7.5.3.dylib
       0x115a2d000 -        0x115ce9fff +libTKIGES.7.5.3.dylib (0) <624263E8-94BD-3F84-B6FD-7552439E3F59> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKIGES.7.5.3.dylib
       0x115e05000 -        0x115e14fff +libTKSTL.7.5.3.dylib (0) <A12078A6-90B1-3769-BF81-0407DBE12F17> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKSTL.7.5.3.dylib
       0x115e1e000 -        0x115fd9fff +libTKOffset.7.5.3.dylib (0) <B2795D20-45E4-3D57-859E-E6E507AC5685> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKOffset.7.5.3.dylib
       0x116027000 -        0x116232fff +libTKSTEP.7.5.3.dylib (0) <13EB932D-3151-39B2-A854-6FAFE601CD18> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKSTEP.7.5.3.dylib
       0x1163ad000 -        0x11648cfff +libTKHLR.7.5.3.dylib (0) <72065134-60E3-3CAC-93B8-1C1296AC2219> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKHLR.7.5.3.dylib
       0x1164ce000 -        0x1165eefff +libTKFeat.7.5.3.dylib (0) <CFE65D53-E754-3E50-AD64-D20F079132BA> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKFeat.7.5.3.dylib
       0x116618000 -        0x1166b9fff +libfreetype.6.dylib (0) <42C54F8E-61EC-3A30-AD32-543F5A70E8FC> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libfreetype.6.dylib
       0x1166d1000 -        0x11694afff +libTKFillet.7.5.3.dylib (0) <5E8824B7-ED92-3C10-ACCF-86E8BE643298> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKFillet.7.5.3.dylib
       0x1169b7000 -        0x116a2bfff +libTKSTEPAttr.7.5.3.dylib (0) <E7C5D0F9-9205-3B54-948C-8C57AFAF33B5> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKSTEPAttr.7.5.3.dylib
       0x116aa8000 -        0x116af4fff +libTKSTEP209.7.5.3.dylib (0) <4B32F768-19DD-3C04-8EC6-809B043038C5> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKSTEP209.7.5.3.dylib
       0x116b44000 -        0x116c58fff +libTKSTEPBase.7.5.3.dylib (0) <0051ABCA-5D4F-3F31-A22B-091843292906> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKSTEPBase.7.5.3.dylib
       0x116d86000 -        0x116f33fff +libTKXSBase.7.5.3.dylib (0) <8CFDB91A-45AA-39CA-A845-D3135DB68AAF> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKXSBase.7.5.3.dylib
       0x116fe7000 -        0x11734efff +libTKBool.7.5.3.dylib (0) <65C65B83-41C0-31FB-BD26-1401B13D100C> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKBool.7.5.3.dylib
       0x1173ff000 -        0x1175a6fff +libTKBO.7.5.3.dylib (0) <A54A9672-9C37-3906-AD5F-DB1B7791CFC8> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKBO.7.5.3.dylib
       0x117622000 -        0x1178a5fff +libTKShHealing.7.5.3.dylib (0) <42EC1FD5-D23E-33DE-AAEE-23F90410AA81> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKShHealing.7.5.3.dylib
       0x117912000 -        0x11795bfff +libTKPrim.7.5.3.dylib (0) <3DA41005-0E75-384B-9B2B-3C753FCAF2BD> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKPrim.7.5.3.dylib
       0x11797a000 -        0x117bedfff +libTKTopAlgo.7.5.3.dylib (0) <7E760835-903D-38A2-85D8-953C3064E735> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKTopAlgo.7.5.3.dylib
       0x117c74000 -        0x118124fff +libTKGeomAlgo.7.5.3.dylib (0) <67350E4F-3BA9-3D31-A276-9FE4E7CF284A> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKGeomAlgo.7.5.3.dylib
       0x1181f0000 -        0x11829efff +libTKBRep.7.5.3.dylib (0) <2EAF066D-CC06-3DEC-A6D3-2498A359982B> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKBRep.7.5.3.dylib
       0x1182e3000 -        0x118741fff +libTKGeomBase.7.5.3.dylib (0) <166FEB3C-71B7-30A2-B614-86C863A5B925> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKGeomBase.7.5.3.dylib
       0x118821000 -        0x1188e1fff +libTKG3d.7.5.3.dylib (0) <B178DA16-EA8C-390E-8CA1-0EB244481888> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKG3d.7.5.3.dylib
       0x118930000 -        0x118963fff +libTKG2d.7.5.3.dylib (0) <55D5BECB-9359-326C-B466-4CAC38ABEB22> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKG2d.7.5.3.dylib
       0x118988000 -        0x118b83fff +libTKMath.7.5.3.dylib (0) <4299FEB8-B0DF-3499-933F-B5A6ACB7FBF4> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKMath.7.5.3.dylib
       0x118c1e000 -        0x118d74fff +libTKernel.7.5.3.dylib (0) <0160237B-6C4A-3A63-A935-C981B4486E19> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKernel.7.5.3.dylib
       0x118dd3000 -        0x118df1fff +libtbb.dylib (0) <7DD0A07F-9B1E-385B-88DA-11BF4338124C> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libtbb.dylib
       0x118e1d000 -        0x118e2bfff +libtbbmalloc.dylib (0) <9C757FFD-A630-3752-99C5-4792D8F3A875> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libtbbmalloc.dylib
       0x118f18000 -        0x118f1efff +cmath.cpython-39-darwin.so (0) <E0CA92F7-BA09-3695-A6ED-92EFC75657B8> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/cmath.cpython-39-darwin.so
       0x118fa4000 -        0x118fa9fff +libqquickwidget.dylib (0) <64E20C11-1FF3-3E1E-B675-044D4D9162C3> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/designer/libqquickwidget.dylib
       0x118fad000 -        0x118fb7fff +libQt5QuickWidgets.5.12.9.dylib (0) <E8D1D343-68E7-3919-8BCF-7F74A0CB65ED> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5QuickWidgets.5.12.9.dylib
       0x118fc3000 -        0x119309fff +libQt5Designer.5.12.9.dylib (0) <C0FFAEEF-FF5B-3F87-A50D-678E606B2DF3> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5Designer.5.12.9.dylib
       0x1193df000 -        0x119640fff +libQt5Quick.5.12.9.dylib (0) <DC981F66-8D6B-3B52-8B45-9A73002FEABB> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5Quick.5.12.9.dylib
       0x11974b000 -        0x119751fff +libqwebengineview.dylib (0) <31B18AE6-9AC3-3D6D-A7C4-885A9070F49A> /Users/USER/*/FreeCAD.app/Contents/Resources/plugins/designer/libqwebengineview.dylib
       0x119756000 -        0x119774fff +libQt5WebEngineWidgets.5.12.9.dylib (0) <61F6FAD4-0E77-359D-8150-43C333DD7C7D> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5WebEngineWidgets.5.12.9.dylib
       0x119798000 -        0x11e437fff +libQt5WebEngineCore.5.12.9.dylib (@SHORT_VERSION@ - @FULL_VERSION@) <3277594A-E67B-38CE-B55A-2582F07C6DB8> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5WebEngineCore.5.12.9.dylib
       0x11eaa3000 -        0x11eab6fff +libQt5WebChannel.5.12.9.dylib (0) <2226A86A-5889-3BB2-BAA4-7A8172B667DF> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5WebChannel.5.12.9.dylib
       0x11eac2000 -        0x11eb05fff +libQt5Positioning.5.12.9.dylib (0) <442112B8-1465-3705-A4B5-6DCA386362D0> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5Positioning.5.12.9.dylib
       0x11ebdf000 -        0x11ef70fff +_multiarray_umath.cpython-39-darwin.so (0) <63BCF254-2061-3FAF-BFBA-BC9A5B28B283> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/core/_multiarray_umath.cpython-39-darwin.so
       0x11effa000 -        0x122cc0fff +libopenblasp-r0.3.18.dylib (0) <6B85C400-ECD8-3887-9BFD-8001167B1F14> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libopenblasp-r0.3.18.dylib
       0x122ec0000 -        0x1234c8fff +libgfortran.5.dylib (0) <D3D54518-2C5F-3BD5-838B-882D5DBC52BA> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libgfortran.5.dylib
       0x1234e6000 -        0x123565fff +libomp.dylib (0) <DC23F9AE-FC22-3FE2-82EC-10FBCAC10BC0> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libomp.dylib
       0x123598000 -        0x1235defff +libquadmath.0.dylib (0) <96902C8C-CA1A-342C-9C44-F879612DE83F> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libquadmath.0.dylib
       0x1235e2000 -        0x1235f9fff +libgcc_s.1.dylib (0) <BA5C96AD-625B-3085-B46D-318A1093D414> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libgcc_s.1.dylib
       0x143646000 -        0x14365ffff +_pickle.cpython-39-darwin.so (0) <F343F9BA-84EB-3BF1-90D7-E0220C9A8821> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_pickle.cpython-39-darwin.so
       0x143767000 -        0x143777fff +_multiarray_tests.cpython-39-darwin.so (0) <06F7B130-4D80-3353-9276-6E8D400427A7> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/core/_multiarray_tests.cpython-39-darwin.so
       0x143801000 -        0x143803fff +lapack_lite.cpython-39-darwin.so (0) <E20A1033-F483-3CA5-B6A6-0A6756D78BAA> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/linalg/lapack_lite.cpython-39-darwin.so
       0x143806000 -        0x14381ffff +_umath_linalg.cpython-39-darwin.so (0) <14BBB599-8E7E-3592-B433-F73D77905B44> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/linalg/_umath_linalg.cpython-39-darwin.so
       0x1438e7000 -        0x1438fafff +_pocketfft_internal.cpython-39-darwin.so (0) <CFABAE24-5FC3-3914-B2DA-3CFDEB84BC42> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/fft/_pocketfft_internal.cpython-39-darwin.so
       0x14393d000 -        0x1439a9fff +mtrand.cpython-39-darwin.so (0) <8CA6870F-9BBC-38D9-A123-F98BCAFBDB4D> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/random/mtrand.cpython-39-darwin.so
       0x1439ec000 -        0x143a08fff +bit_generator.cpython-39-darwin.so (0) <5A4FAAD4-F11A-3B57-8669-EAB22ABB038E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/random/bit_generator.cpython-39-darwin.so
       0x143a19000 -        0x143a47fff +_common.cpython-39-darwin.so (0) <C2EE45E3-6EED-3C77-BAB1-BFEBA0214721> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/random/_common.cpython-39-darwin.so
       0x143a56000 -        0x143a9cfff +_bounded_integers.cpython-39-darwin.so (0) <26C067E5-F434-3647-BE9A-432953894195> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/random/_bounded_integers.cpython-39-darwin.so
       0x143ab3000 -        0x143ac1fff +_mt19937.cpython-39-darwin.so (0) <EE37DEFD-99F4-3558-97A5-24FD4C638AC6> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/random/_mt19937.cpython-39-darwin.so
       0x143ac9000 -        0x143ad4fff +_philox.cpython-39-darwin.so (0) <8B5D003B-CEAF-379B-9FA7-F45E182D74F7> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/random/_philox.cpython-39-darwin.so
       0x143adc000 -        0x143aebfff +_pcg64.cpython-39-darwin.so (0) <67FE0E6E-DF1A-3DC8-98B8-7F899AD36980> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/random/_pcg64.cpython-39-darwin.so
       0x143af5000 -        0x143afcfff +_sfc64.cpython-39-darwin.so (0) <8131C938-9C78-3466-AC07-A19AC55FBCE1> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/random/_sfc64.cpython-39-darwin.so
       0x143b02000 -        0x143b84fff +_generator.cpython-39-darwin.so (0) <D0EDBE7C-B2E4-3828-843C-79E5C7A7FD13> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/numpy/random/_generator.cpython-39-darwin.so
       0x16bd49000 -        0x16bdccfff +_slvs.so (0) <E6911F9B-DB91-31C0-9991-02961AFFAE17> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/_slvs.so
       0x16d683000 -        0x16d6d3fff +gmpy2.cpython-39-darwin.so (0) <5931CA5B-55D4-3D6B-8775-51491F486E9E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/gmpy2/gmpy2.cpython-39-darwin.so
       0x16d6ed000 -        0x16d6fffff +libmpc.3.dylib (0) <5FF87260-9EE7-360A-A0E0-1F2CFF794DF5> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libmpc.3.dylib
       0x16d705000 -        0x16d769fff +libmpfr.6.dylib (0) <75B2BF21-3C87-3B34-833F-506B75813116> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libmpfr.6.dylib
       0x16d775000 -        0x16d800fff +libgmp.10.dylib (0) <5CE8BCC6-9490-3FFA-B62D-4F9BFACBC264> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libgmp.10.dylib
       0x16dbd0000 -        0x16dc12fff +_decimal.cpython-39-darwin.so (0) <F41C1B52-FFE7-3B94-BCDE-82203D823733> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_decimal.cpython-39-darwin.so
       0x16e29d000 -        0x16e3a8fff +unicodedata.cpython-39-darwin.so (0) <F055D14C-D9A5-3E9D-97E0-CD9DA364625B> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/unicodedata.cpython-39-darwin.so
       0x16ebac000 -        0x16ebb7fff +_ccallback_c.cpython-39-darwin.so (0) <1B626E52-2560-3B62-8045-9453C5154386> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/_lib/_ccallback_c.cpython-39-darwin.so
       0x16ec00000 -        0x16ec07fff +minpack2.cpython-39-darwin.so (0) <29FB80C7-E335-37B3-96C4-6CF5D4AF4F5D> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/minpack2.cpython-39-darwin.so
       0x16ec0b000 -        0x16f032fff +_sparsetools.cpython-39-darwin.so (0) <A2938E93-A852-357D-B3C6-98AFC8838FE5> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/sparse/_sparsetools.cpython-39-darwin.so
       0x16f102000 -        0x16f16bfff +_csparsetools.cpython-39-darwin.so (0) <0BFD9CF1-47EB-3C73-86CC-DFBF05FA5768> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/sparse/_csparsetools.cpython-39-darwin.so
       0x16f1ca000 -        0x16f213fff +_shortest_path.cpython-39-darwin.so (0) <40414F19-411B-3877-9248-51D16DB2F9EF> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/sparse/csgraph/_shortest_path.cpython-39-darwin.so
       0x16f22e000 -        0x16f249fff +_tools.cpython-39-darwin.so (0) <CCCD392E-2DD3-3A86-B121-BB9354FC3B3F> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/sparse/csgraph/_tools.cpython-39-darwin.so
       0x16f258000 -        0x16f270fff +_traversal.cpython-39-darwin.so (0) <AE9C9D26-B9F8-30B8-8B83-11E90B0D5B6C> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/sparse/csgraph/_traversal.cpython-39-darwin.so
       0x16f27c000 -        0x16f298fff +_min_spanning_tree.cpython-39-darwin.so (0) <9DD4599A-3087-3B2D-8FCC-AB460DD382F2> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/sparse/csgraph/_min_spanning_tree.cpython-39-darwin.so
       0x16f2a6000 -        0x16f2ccfff +_flow.cpython-39-darwin.so (0) <8A883F15-3715-31D0-8173-94902EE9FD25> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/sparse/csgraph/_flow.cpython-39-darwin.so
       0x16f2de000 -        0x16f30cfff +_matching.cpython-39-darwin.so (0) <7A8F01E6-1DB1-3396-870B-9B7FABC6EBBE> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/sparse/csgraph/_matching.cpython-39-darwin.so
       0x16f320000 -        0x16f348fff +_reordering.cpython-39-darwin.so (0) <379F406C-8EA5-3E45-8FE6-98110C528444> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/sparse/csgraph/_reordering.cpython-39-darwin.so
       0x16f359000 -        0x16f387fff +_iterative.cpython-39-darwin.so (0) <EFCED4D1-471F-3BD2-AF43-776BA66DE5B0> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/sparse/linalg/isolve/_iterative.cpython-39-darwin.so
       0x16f3dc000 -        0x16f437fff +_fblas.cpython-39-darwin.so (0) <4AF4D37A-6E43-3C5B-8980-C4A406310C6E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/linalg/_fblas.cpython-39-darwin.so
       0x16f468000 -        0x16f594fff +_flapack.cpython-39-darwin.so (0) <3A0E684D-6E4E-3A61-8E9E-24483AFEF4B4> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/linalg/_flapack.cpython-39-darwin.so
       0x16f67a000 -        0x16f685fff +_flinalg.cpython-39-darwin.so (0) <A9569D45-89B1-36BF-B49A-8646D51C9200> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/linalg/_flinalg.cpython-39-darwin.so
       0x16f68c000 -        0x16f6aefff +_solve_toeplitz.cpython-39-darwin.so (0) <6A88CF16-75B1-339F-80B2-18476507BF6C> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/linalg/_solve_toeplitz.cpython-39-darwin.so
       0x16f6bd000 -        0x16f6dafff +_matfuncs_sqrtm_triu.cpython-39-darwin.so (0) <E8D7F1B4-908C-3E8C-8A12-4BC4FAC84090> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/linalg/_matfuncs_sqrtm_triu.cpython-39-darwin.so
       0x16f728000 -        0x16f75dfff +_decomp_update.cpython-39-darwin.so (0) <8EB07EDC-A83A-3B64-9370-668EB1C49377> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/linalg/_decomp_update.cpython-39-darwin.so
       0x16f76c000 -        0x16f790fff +cython_blas.cpython-39-darwin.so (0) <7F5BAE65-70BB-3BDD-ADB9-4407DDEED384> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/linalg/cython_blas.cpython-39-darwin.so
       0x16f7a2000 -        0x16f80cfff +cython_lapack.cpython-39-darwin.so (0) <47873E68-68FE-34C9-96D3-D8E8566F8A37> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/linalg/cython_lapack.cpython-39-darwin.so
       0x16f840000 -        0x16f88efff +_superlu.cpython-39-darwin.so (0) <ED2D7CC7-C624-38F1-A6FE-7BC8382BF4F6> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/sparse/linalg/dsolve/_superlu.cpython-39-darwin.so
       0x16f8d7000 -        0x16f94efff +_arpack.cpython-39-darwin.so (0) <DF221A25-9974-3E2E-B1BA-3B5C70C7E210> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/sparse/linalg/eigen/arpack/_arpack.cpython-39-darwin.so
       0x16f96c000 -        0x16fadefff +_ufuncs.cpython-39-darwin.so (0) <F9F9D2B9-5278-34DC-B340-43855B76D846> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/special/_ufuncs.cpython-39-darwin.so
       0x16fb24000 -        0x16fb38fff +_ufuncs_cxx.cpython-39-darwin.so (0) <9D2EB895-9259-3AF9-BB2B-A36B3101F3D8> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/special/_ufuncs_cxx.cpython-39-darwin.so
       0x16fb81000 -        0x16fc2efff +specfun.cpython-39-darwin.so (0) <52A8842B-7B87-32FD-A499-1A45B0C6ED2F> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/special/specfun.cpython-39-darwin.so
       0x16fc3c000 -        0x16fc3ffff +_comb.cpython-39-darwin.so (0) <A25EBA68-A24F-31AC-8519-ABAA3A58D315> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/special/_comb.cpython-39-darwin.so
       0x16fc44000 -        0x16fc50fff +_ellip_harm_2.cpython-39-darwin.so (0) <66A050C9-A472-3613-9C61-470EDFB9DC08> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/special/_ellip_harm_2.cpython-39-darwin.so
       0x16fc57000 -        0x16fc60fff +_group_columns.cpython-39-darwin.so (0) <0F4EC11F-392C-3F83-AF53-F4DD26F7E509> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/_group_columns.cpython-39-darwin.so
       0x16fca6000 -        0x16fcd8fff +_trlib.cpython-39-darwin.so (0) <224372FD-49CD-36F7-8DC9-516425774795> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/_trlib/_trlib.cpython-39-darwin.so
       0x16fce9000 -        0x16fceefff +messagestream.cpython-39-darwin.so (0) <AE9439FB-FA30-3102-B15D-7832AE886A81> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/_lib/messagestream.cpython-39-darwin.so
       0x16fd33000 -        0x16fd4ffff +_lbfgsb.cpython-39-darwin.so (0) <8F8E7E48-EC9E-36AA-BA64-4D77224954AB> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/_lbfgsb.cpython-39-darwin.so
       0x16fd54000 -        0x16fd5efff +moduleTNC.cpython-39-darwin.so (0) <C67B52D4-3D51-3EA4-93F4-0C1454C77942> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/moduleTNC.cpython-39-darwin.so
       0x16fd61000 -        0x16fd78fff +_cobyla.cpython-39-darwin.so (0) <75EF4D80-5FAE-358D-A112-7CF7656712A0> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/_cobyla.cpython-39-darwin.so
       0x16fd7d000 -        0x16fd97fff +_slsqp.cpython-39-darwin.so (0) <2121E9D6-E5F1-3CE7-A629-0507839FD59E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/_slsqp.cpython-39-darwin.so
       0x16fd9c000 -        0x16fdb7fff +_minpack.cpython-39-darwin.so (0) <1E92B463-833F-3A24-9C83-93C2C35EB9A9> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/_minpack.cpython-39-darwin.so
       0x16fdfc000 -        0x16fe13fff +givens_elimination.cpython-39-darwin.so (0) <5419D742-04FC-357C-B5F1-E22C17B5CBCC> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/_lsq/givens_elimination.cpython-39-darwin.so
       0x16fe5f000 -        0x16fe60fff +_zeros.cpython-39-darwin.so (0) <5CBAF2A8-4786-3B43-911E-5F32BDD29020> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/_zeros.cpython-39-darwin.so
       0x16fe63000 -        0x16fe6bfff +__nnls.cpython-39-darwin.so (0) <7C3EF7F7-8B3D-35DC-A925-9F842F80FD65> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/__nnls.cpython-39-darwin.so
       0x16fe6f000 -        0x16fff9fff +_highs_wrapper.cpython-39-darwin.so (0) <30AB82C2-F1B5-339A-B9AA-F6D82A51D8F4> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/_highs/_highs_wrapper.cpython-39-darwin.so
       0x170061000 -        0x170064fff +_highs_constants.cpython-39-darwin.so (0) <D7645DB2-685D-3109-B856-FCA48A844693> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/_highs/_highs_constants.cpython-39-darwin.so
       0x170069000 -        0x1700effff +_interpolative.cpython-39-darwin.so (0) <493B46F9-86D2-391F-A5D8-C40B055212F4> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/linalg/_interpolative.cpython-39-darwin.so
       0x170150000 -        0x17017afff +_bglu_dense.cpython-39-darwin.so (0) <846D1E95-49FD-3B75-AB58-A9B14D44931E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/_bglu_dense.cpython-39-darwin.so
       0x17018c000 -        0x17018ffff +_lsap_module.cpython-39-darwin.so (0) <4865DD61-F407-3E9F-B4E1-6A15D910440F> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/optimize/_lsap_module.cpython-39-darwin.so
       0x170192000 -        0x170214fff +ckdtree.cpython-39-darwin.so (0) <FFD6743C-0991-3A3B-81F8-659F999860FB> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/spatial/ckdtree.cpython-39-darwin.so
       0x17023c000 -        0x17030cfff +qhull.cpython-39-darwin.so (0) <ECAF0639-AC97-3929-A396-01741D5B3291> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/spatial/qhull.cpython-39-darwin.so
       0x170373000 -        0x17038cfff +_voronoi.cpython-39-darwin.so (0) <B0BAD03E-61BC-36C0-B3BD-8270F453D9D4> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/spatial/_voronoi.cpython-39-darwin.so
       0x170398000 -        0x1703a5fff +_distance_wrap.cpython-39-darwin.so (0) <D079D161-49A1-3E80-B800-0FEBCA3B7FC0> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/spatial/_distance_wrap.cpython-39-darwin.so
       0x1703ab000 -        0x1703c5fff +_hausdorff.cpython-39-darwin.so (0) <60E39D01-801A-3C58-B67F-0D6B18987D1E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/spatial/_hausdorff.cpython-39-darwin.so
       0x1703d1000 -        0x170406fff +_distance_pybind.cpython-39-darwin.so (0) <47F4991D-F0A2-3AEE-A245-320E8DD95913> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/spatial/_distance_pybind.cpython-39-darwin.so
       0x170459000 -        0x1704bcfff +rotation.cpython-39-darwin.so (0) <6BD00A7E-1387-3A96-9A80-1C84515671C2> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/scipy/spatial/transform/rotation.cpython-39-darwin.so
       0x1705e4000 -        0x1706a4fff +_PartDesign.so (0) <76CE6557-E230-3679-9D82-E40027C5AA8A> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/_PartDesign.so
       0x17072d000 -        0x170883fff +Sketcher.so (0) <755C6B73-D049-3F79-A966-FB49B1C6BC71> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/Sketcher.so
       0x170954000 -        0x170bbbfff +PartDesignGui.so (0) <AB537013-B1B7-3779-BAE7-29312225A61F> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/PartDesignGui.so
       0x170ca1000 -        0x170fc2fff +PartGui.so (0) <D0788F68-AC41-3D2F-901A-A615504E4DA5> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/PartGui.so
       0x1710ce000 -        0x171446fff +SketcherGui.so (0) <9755B7E4-A390-3787-B657-5C15957B192C> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/SketcherGui.so
       0x1715c4000 -        0x171818fff +Mesh.so (0) <69F11DC7-F2B7-3AB7-A864-628DE454C7EC> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/Mesh.so
       0x1718f7000 -        0x1718fafff +libQt5Concurrent.5.12.9.dylib (0) <5E4109C3-2764-3C7A-89B5-7FE8CC064275> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5Concurrent.5.12.9.dylib
       0x171a3e000 -        0x171a5bfff +libSMESHDS.dylib (0) <AEAAD6A8-0B72-3288-B411-E3E60A1A0A8E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libSMESHDS.dylib
       0x171abe000 -        0x171bacfff +Fem.so (0) <6288EF3F-3F13-3A9C-AF5A-4246A2A79556> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/Fem.so
       0x171c5a000 -        0x171c9ffff +libNETGENPlugin.dylib (0) <637FFF14-F2E1-37C7-BC2B-DB1DE066CACD> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libNETGENPlugin.dylib
       0x171cc4000 -        0x171f4cfff +libStdMeshers.dylib (0) <A3C01065-AED7-37B8-9A80-3F8223E45E02> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libStdMeshers.dylib
       0x171fef000 -        0x17210efff +libSMESH.dylib (0) <F8166C41-FB80-3164-AF4B-CD62E89F83CC> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libSMESH.dylib
       0x172169000 -        0x1721adfff +libSMDS.dylib (0) <A31BC31E-B721-33CB-94FA-919B41468549> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libSMDS.dylib
       0x1721e4000 -        0x1722ddfff +libvtkFiltersExtraction-9.0.9.0.1.dylib (0) <B94C1BC3-2A73-36C2-9284-935D7CEA422C> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkFiltersExtraction-9.0.9.0.1.dylib
       0x17232b000 -        0x17239efff +libvtkIOXML-9.0.9.0.1.dylib (0) <76CF35D9-F32C-346F-ADBD-9D21386CAF2F> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkIOXML-9.0.9.0.1.dylib
       0x1723f5000 -        0x172445fff +libvtkIOLegacy-9.0.9.0.1.dylib (0) <E3161C7B-3C30-3BC3-A93A-B5BE5D14BF8B> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkIOLegacy-9.0.9.0.1.dylib
       0x172476000 -        0x1724b3fff +libvtkIOCore-9.0.9.0.1.dylib (0) <32C44255-491A-389D-8ACA-E86572B69085> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkIOCore-9.0.9.0.1.dylib
       0x1724df000 -        0x17253cfff +libvtkFiltersSources-9.0.9.0.1.dylib (0) <7D4BC1D9-A4DA-3696-AF4B-3AF53465EEBF> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkFiltersSources-9.0.9.0.1.dylib
       0x172576000 -        0x172785fff +libvtkFiltersGeneral-9.0.9.0.1.dylib (0) <D827A23E-0DC4-398A-9D74-27A104910868> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkFiltersGeneral-9.0.9.0.1.dylib
       0x17283d000 -        0x172c42fff +libvtkFiltersCore-9.0.9.0.1.dylib (0) <979A0845-B9C2-37CE-998A-F29CDDC8F419> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkFiltersCore-9.0.9.0.1.dylib
       0x172d0e000 -        0x172d64fff +libvtkCommonExecutionModel-9.0.9.0.1.dylib (0) <A96326D6-0943-308E-8D7D-9447FD6F5707> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkCommonExecutionModel-9.0.9.0.1.dylib
       0x172db2000 -        0x17306ffff +libvtkCommonDataModel-9.0.9.0.1.dylib (0) <5B80A966-6C78-33F0-B7DE-E490117D1188> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkCommonDataModel-9.0.9.0.1.dylib
       0x173198000 -        0x1734c1fff +libvtkCommonCore-9.0.9.0.1.dylib (0) <4137BD41-571A-30F6-BE6F-C7341EE2AD4A> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkCommonCore-9.0.9.0.1.dylib
       0x173616000 -        0x1738bcfff +libnglib4smesh.dylib (0) <692927B6-1A0D-3DE6-A8AA-A0D824295AD0> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libnglib4smesh.dylib
       0x173985000 -        0x1739bcfff +libControls.dylib (0) <94382E4C-EB33-3B42-A3E4-731FA0A3C9BD> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libControls.dylib
       0x1739f1000 -        0x173aa6fff +libSMESHUtils.dylib (0) <BA2E8082-8730-35C4-80D5-DB228385FC4C> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libSMESHUtils.dylib
       0x173ae1000 -        0x173ae8fff +libKernel.dylib (0) <3543374F-46CB-36F7-BAB2-2483039E05C5> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libKernel.dylib
       0x173af1000 -        0x173b02fff +libMEFISTO2.dylib (0) <7E63D4F9-C6EE-3BC9-85E7-B0ACE3D1D7C6> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libMEFISTO2.dylib
       0x173b0d000 -        0x173b2ffff +libboost_serialization.dylib (0) <F140E092-BD58-3FF7-B91C-B8615402A92E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libboost_serialization.dylib
       0x173b68000 -        0x173b82fff +libGeom.dylib (0) <84D0E457-09FD-37C1-9D0D-32488D862E98> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libGeom.dylib
       0x173b96000 -        0x173b9afff +libDriverDAT.dylib (0) <610E8A67-EF8F-303B-86C6-D12A9CCACC4D> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libDriverDAT.dylib
       0x173b9e000 -        0x173ba6fff +libDriverSTL.dylib (0) <0F6539EB-940B-356B-B6D8-45494DB4B2DD> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libDriverSTL.dylib
       0x173bb0000 -        0x173bc2fff +libDriverUNV.dylib (0) <2B5FFC82-F0AE-3E1E-A3BF-8D606D554927> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libDriverUNV.dylib
       0x173bcc000 -        0x173be1fff +libDriverGMF.dylib (0) <EE89656C-E264-341C-8572-920DD8F8E508> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libDriverGMF.dylib
       0x173be9000 -        0x173c1afff +libTKCDF.7.5.3.dylib (0) <BA95E752-A545-3E93-8CF3-07131BD37C96> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKCDF.7.5.3.dylib
       0x173c3c000 -        0x173c46fff +libboost_thread.dylib (0) <79FB2FCD-4121-371B-AA26-D21900186EA7> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libboost_thread.dylib
       0x173c52000 -        0x173c55fff +libDriver.dylib (0) <8F42D988-DC1D-3B3A-B003-288ADB03F4EB> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libDriver.dylib
       0x173c5b000 -        0x173c6bfff +libvtkFiltersVerdict-9.0.9.0.1.dylib (0) <F944E721-9157-3B13-98E0-D4BF5C5AFF41> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkFiltersVerdict-9.0.9.0.1.dylib
       0x173c7a000 -        0x173e9dfff +libTKV3d.7.5.3.dylib (0) <43C1651B-81B3-3AF5-849D-DBC85FD9B871> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKV3d.7.5.3.dylib
       0x173f5d000 -        0x17400efff +libTKService.7.5.3.dylib (0) <BA7DF0DB-AF1F-331E-8341-20624A421462> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKService.7.5.3.dylib
       0x174060000 -        0x174105fff +libfreeimage.3.18.0.dylib (0) <781B0D3D-65CA-39AF-B031-2E9295F68477> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libfreeimage.3.18.0.dylib
       0x17412b000 -        0x1741a7fff +libtiff.5.dylib (0) <D885312C-A2E8-33F3-9A2C-D7914474333F> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libtiff.5.dylib
       0x1741ba000 -        0x17420bfff +libopenjp2.2.4.0.dylib (0) <DA1C41CD-D8DC-390A-9E3F-C22FB1CFA7F6> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libopenjp2.2.4.0.dylib
       0x174214000 -        0x17421dfff +libwebpmux.3.dylib (0) <D2DEB4A8-1034-3F12-8DF3-B766293F986E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libwebpmux.3.dylib
       0x174221000 -        0x174298fff +libwebp.7.dylib (0) <3E2E2D0B-3E92-32DC-A18D-FF084F842F49> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libwebp.7.dylib
       0x1742a7000 -        0x1742bffff +libjxrglue.1.1.dylib (0) <AA95C1D7-E4A1-3D61-A9B2-A527FDEB6F5D> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libjxrglue.1.1.dylib
       0x1742ca000 -        0x174373fff +libraw.20.dylib (0) <5708F827-AD22-31AA-B882-456F6AF81E8C> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libraw.20.dylib
       0x1743d7000 -        0x174678fff +libIlmImf.25.0.4.dylib (0) <01D7A595-1323-3952-8345-C26BB06AA395> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libIlmImf.25.0.4.dylib
       0x1746c3000 -        0x174715fff +libIex.25.0.4.dylib (0) <E724C977-C843-3ABF-86F5-8E50D4434FA3> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libIex.25.0.4.dylib
       0x174776000 -        0x1747b8fff +libHalf.25.0.4.dylib (0) <230D591F-5E7A-34D4-8AEC-E992CF7AE26F> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libHalf.25.0.4.dylib
       0x1747bb000 -        0x1748e2fff +libzstd.1.5.0.dylib (0) <F470375C-5AB5-33BB-80CA-B088401D9ADB> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libzstd.1.5.0.dylib
       0x1748ed000 -        0x17495dfff +libLerc.dylib (0) <D092E650-422D-3116-ADBE-88DD7428DD62> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libLerc.dylib
       0x174969000 -        0x174978fff +libdeflate.0.dylib (0) <05348ECA-29A8-3953-88C5-43636FEE5BF0> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libdeflate.0.dylib
       0x17497b000 -        0x1749bdfff +libjpegxr.1.1.dylib (0) <BDC36397-27E1-3148-BEC6-E2928720CDDE> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libjpegxr.1.1.dylib
       0x1749c3000 -        0x174a14fff +liblcms2.2.dylib (0) <24559A4E-2C06-38FC-A746-C4ACF5DAB28E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/liblcms2.2.dylib
       0x174a27000 -        0x174a34fff +libImath.25.0.4.dylib (0) <05DC35D6-40C1-3443-B64E-F95378A74C53> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libImath.25.0.4.dylib
       0x174a3c000 -        0x174a3ffff +libIlmThread.25.0.4.dylib (0) <138AC0C3-2C07-32C9-862E-A66644B9E9B6> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libIlmThread.25.0.4.dylib
       0x174a45000 -        0x174a5dfff +libvtkCommonTransforms-9.0.9.0.1.dylib (0) <1AFFA1D0-9E96-3DFD-B5D6-FC6024DDB2EE> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkCommonTransforms-9.0.9.0.1.dylib
       0x174a6f000 -        0x174a80fff +libvtkCommonMisc-9.0.9.0.1.dylib (0) <A6C3F8ED-E180-3020-B7E3-B544BDC77425> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkCommonMisc-9.0.9.0.1.dylib
       0x174a8a000 -        0x174a96fff +libvtkCommonSystem-9.0.9.0.1.dylib (0) <6720E09F-A5E3-393D-866C-070ECB3007B8> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkCommonSystem-9.0.9.0.1.dylib
       0x174aa2000 -        0x174abafff +libvtkCommonMath-9.0.9.0.1.dylib (0) <BC9AD878-663F-3A3E-AC83-A77A2AD6C121> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkCommonMath-9.0.9.0.1.dylib
       0x174ac4000 -        0x174af6fff +libvtksys-9.0.9.0.1.dylib (0) <49683624-701A-3BDC-8285-96F2B176D2F3> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtksys-9.0.9.0.1.dylib
       0x174b11000 -        0x174b2afff +libvtkloguru-9.0.9.0.1.dylib (0) <57D4D55E-A01B-361E-855E-5AD81233BC38> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkloguru-9.0.9.0.1.dylib
       0x174b3a000 -        0x174b5dfff +libvtkverdict-9.0.9.0.1.dylib (0) <2B57600F-989F-37E7-82D3-D22A6337AAA2> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkverdict-9.0.9.0.1.dylib
       0x174b67000 -        0x174bf8fff +libTKXDESTEP.7.5.3.dylib (0) <3EC61E03-AE43-3485-841D-55DA99271AEE> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKXDESTEP.7.5.3.dylib
       0x174c3d000 -        0x174c4cfff +libTKXDEIGES.7.5.3.dylib (0) <D66F4FA1-462F-3427-BDF2-36C78F1DED71> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKXDEIGES.7.5.3.dylib
       0x174c57000 -        0x174cdffff +libTKXCAF.7.5.3.dylib (0) <7E03F16C-B752-3713-A5C5-F0DC198D5817> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKXCAF.7.5.3.dylib
       0x174d1e000 -        0x174d9efff +libTKLCAF.7.5.3.dylib (0) <76CA19B6-293B-3585-B492-62FB9C4D63AE> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKLCAF.7.5.3.dylib
       0x174de8000 -        0x174e0ffff +libTKVCAF.7.5.3.dylib (0) <062A430C-5CAB-3CC0-BD64-9B819CFD66E9> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKVCAF.7.5.3.dylib
       0x174e28000 -        0x174e91fff +libTKCAF.7.5.3.dylib (0) <99F05E1F-5DDE-320A-A08A-7F92CDD25FB0> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libTKCAF.7.5.3.dylib
       0x174ebd000 -        0x174f43fff +libvtkFiltersStatistics-9.0.9.0.1.dylib (0) <59643FE5-7C7C-3F14-9523-DBACCB48443C> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkFiltersStatistics-9.0.9.0.1.dylib
       0x174f71000 -        0x174f76fff +libvtkParallelDIY-9.0.9.0.1.dylib (0) <4A5AABD7-48C4-3B87-93A5-C96DD4E134DF> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkParallelDIY-9.0.9.0.1.dylib
       0x174f7c000 -        0x174fb6fff +libvtkParallelCore-9.0.9.0.1.dylib (0) <5D779BF8-94C4-35E3-947C-2D3C701A6B73> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkParallelCore-9.0.9.0.1.dylib
       0x174fcf000 -        0x174fecfff +libvtkImagingFourier-9.0.9.0.1.dylib (0) <3DE07537-0FCA-3FF8-9B80-4F316115E484> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkImagingFourier-9.0.9.0.1.dylib
       0x174ffb000 -        0x1751c9fff +libvtkImagingCore-9.0.9.0.1.dylib (0) <A66825D5-715C-3D0C-81A8-245245815028> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkImagingCore-9.0.9.0.1.dylib
       0x17521b000 -        0x17522efff +libvtkCommonComputationalGeometry-9.0.9.0.1.dylib (0) <0470FBDB-5234-3938-A3FF-11A71F2D4290> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkCommonComputationalGeometry-9.0.9.0.1.dylib
       0x175244000 -        0x175253fff +libvtkIOXMLParser-9.0.9.0.1.dylib (0) <878CE2E1-67C9-34D9-BD57-6F408254F9F9> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkIOXMLParser-9.0.9.0.1.dylib
       0x175261000 -        0x17526efff +libdouble-conversion.3.1.5.dylib (0) <246D5BCD-1250-3160-859F-6C65198268B5> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libdouble-conversion.3.1.5.dylib
       0x175273000 -        0x17529afff +liblz4.1.9.3.dylib (0) <AF780F03-15FF-31F1-9846-69865327715C> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/liblz4.1.9.3.dylib
       0x17529e000 -        0x175508fff +FemGui.so (0) <85952168-CE14-3A1F-A846-CA349F6E5410> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/FemGui.so
       0x1755c1000 -        0x17560cfff +libvtkFiltersGeometry-9.0.9.0.1.dylib (0) <BE741954-C487-3709-8170-EF55C52480CA> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libvtkFiltersGeometry-9.0.9.0.1.dylib
       0x175673000 -        0x175682fff +Measure.so (0) <FB6EE6D4-03FA-38A0-8429-4C2B19AF1F29> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/Measure.so
       0x175692000 -        0x175813fff +TechDraw.so (0) <84B655BD-92A2-32F5-9FED-E5B882F4E318> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/TechDraw.so
       0x1758f2000 -        0x175956fff +Drawing.so (0) <3AC37032-FDA1-3683-8B55-AD5F19A3E707> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/Drawing.so
       0x175996000 -        0x175a1cfff +Import.so (0) <523E90EC-0E33-3DB0-B27D-9B3CBFC33620> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/Import.so
       0x175a51000 -        0x175c42fff +libQt5XmlPatterns.5.12.9.dylib (0) <15FA2659-9E9F-378A-9B21-8228D36F1CD2> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5XmlPatterns.5.12.9.dylib
       0x175c91000 -        0x175d09fff +Spreadsheet.so (0) <5DFBD99D-DA7F-3984-B30F-D53D704AF3BC> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/Spreadsheet.so
       0x175d64000 -        0x175e48fff +Path.so (0) <55F093DA-B41D-31BF-8ED8-D4CFCAAC8531> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/Path.so
       0x175eb1000 -        0x175f2bfff +libarea-native.dylib (0) <3D61048F-C8A8-3C80-AE02-DFE94D2037B1> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libarea-native.dylib
       0x175f4b000 -        0x176228fff +PathGui.so (0) <9D38F8A3-2862-3167-81CE-8C4407E914DD> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/PathGui.so
       0x17631e000 -        0x17636efff +area.so (0) <7F287472-6760-37EB-85E3-2A363C02F764> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/area.so
       0x1767f5000 -        0x176801fff +PathSimulator.so (0) <8CC5AEC2-1BDA-3C2C-921F-A4EC19F37126> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/PathSimulator.so
       0x17688c000 -        0x176891fff +_csv.cpython-39-darwin.so (0) <166BC667-634C-3DDD-9738-EBB991106751> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/lib-dynload/_csv.cpython-39-darwin.so
       0x176a55000 -        0x176a58fff +Start.so (0) <75F67F0B-0861-3698-AC50-D4B252A0C14B> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/Start.so
       0x176a5d000 -        0x176a7cfff +QtSvg.cpython-39-darwin.so (0) <08292B57-B9BE-3A5B-A514-052AD56B0477> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/python3.9/site-packages/PySide2/QtSvg.cpython-39-darwin.so
       0x176ad5000 -        0x176b18fff +WebGui.so (0) <9D9F7AAC-BE96-3E08-BF03-948B82B4A65E> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/WebGui.so
       0x177776000 -        0x1778c9fff +MeshGui.so (0) <4BFB4DA5-596D-3F67-9A7A-660365B253EE> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/MeshGui.so
       0x177954000 -        0x177a08fff +MeshPartGui.so (0) <7A83A583-1E9A-331F-9271-9CD3DEBF681F> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/MeshPartGui.so
       0x17833f000 -        0x1783c1fff +flatmesh.so (0) <63BB9064-5F62-3A23-8CA6-87415432CCAE> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/flatmesh.so
       0x1b4666000 -        0x1b469ffff +libfontconfig.1.dylib (0) <2929AF1C-6A03-3143-9E5C-072F7CE70369> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libfontconfig.1.dylib
       0x1b46ab000 -        0x1b47d9fff +libxml2.2.dylib (0) <E9B52BAC-0648-325A-A78D-6565ABE9F683> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libxml2.2.dylib
       0x1b4809000 -        0x1b48e7fff +libiconv.2.dylib (0) <4CD077B5-DD9B-3A07-8DE7-9D9F8845A3AD> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libiconv.2.dylib
       0x1e8f03000 -        0x1e8fa8fff +DrawingGui.so (0) <0D16BA26-CE97-3DF3-8956-8D056F1D943A> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/DrawingGui.so
       0x1e8feb000 -        0x1e901afff +libQt5OpenGL.5.12.9.dylib (0) <70D2B681-26E6-320C-94C5-9614E5EA7770> /Users/USER/*/FreeCAD.app/Contents/Resources/lib/libQt5OpenGL.5.12.9.dylib
    0x7fff201c0000 -     0x7fff201c1fff  libsystem_blocks.dylib (79) <4DF6D8F5-D9C2-3A96-8DE4-5E99D6B73DC8> /usr/lib/system/libsystem_blocks.dylib
    0x7fff201c2000 -     0x7fff201f7fff  libxpc.dylib (2038.120.1) <0397FC9F-BD11-31FC-882E-9EDAA1E5CA65> /usr/lib/system/libxpc.dylib
    0x7fff201f8000 -     0x7fff2020ffff  libsystem_trace.dylib (1277.120.1) <0A24EB90-5396-36B0-A7E6-E9288702856D> /usr/lib/system/libsystem_trace.dylib
    0x7fff20210000 -     0x7fff202adfff  libcorecrypto.dylib (1000.140.4) <57E7471E-3960-3398-8918-20DF446EA99B> /usr/lib/system/libcorecrypto.dylib
    0x7fff202ae000 -     0x7fff202dafff  libsystem_malloc.dylib (317.140.5) <10C22FD0-FC7B-3325-852E-FEC4E88D2BC5> /usr/lib/system/libsystem_malloc.dylib
    0x7fff202db000 -     0x7fff2031ffff  libdispatch.dylib (1271.120.2) <BA7AD614-F2C2-3E89-9043-43DD548AE5B1> /usr/lib/system/libdispatch.dylib
    0x7fff20320000 -     0x7fff20359fff  libobjc.A.dylib (824) <6C842797-3EA9-30B4-A36D-E948DAF0EC89> /usr/lib/libobjc.A.dylib
    0x7fff2035a000 -     0x7fff2035cfff  libsystem_featureflags.dylib (28.60.1) <6EB33926-8E22-3000-B2F1-C6182B8CBD8F> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff2035d000 -     0x7fff203e5fff  libsystem_c.dylib (1439.141.1) <8447A4B8-0751-3EF1-AA9B-042E40EFA07D> /usr/lib/system/libsystem_c.dylib
    0x7fff203e6000 -     0x7fff2043bfff  libc++.1.dylib (905.6) <81674ADB-670F-3B19-AF5D-F3F66CB93D44> /usr/lib/libc++.1.dylib
    0x7fff2043c000 -     0x7fff20451fff  libc++abi.dylib (905.6) <78CE7863-E224-3D0B-98F1-E5E3E382322D> /usr/lib/libc++abi.dylib
    0x7fff20452000 -     0x7fff20481fff  libsystem_kernel.dylib (7195.141.8) <8DFE5B9F-B718-3D48-ABB1-238122989218> /usr/lib/system/libsystem_kernel.dylib
    0x7fff20482000 -     0x7fff2048dfff  libsystem_pthread.dylib (454.120.2) <49670AEC-4D5D-3383-906C-23F568351FCB> /usr/lib/system/libsystem_pthread.dylib
    0x7fff2048e000 -     0x7fff204c9fff  libdyld.dylib (852.2) <5FBD0E1A-ACCE-36DB-B11C-622F26C85132> /usr/lib/system/libdyld.dylib
    0x7fff204ca000 -     0x7fff204d3fff  libsystem_platform.dylib (254.80.2) <A85D12B6-6213-34EE-84D8-8E993C19E330> /usr/lib/system/libsystem_platform.dylib
    0x7fff204d4000 -     0x7fff204fffff  libsystem_info.dylib (542.40.3) <36329FC6-9982-306A-87F9-D018E7F49F4B> /usr/lib/system/libsystem_info.dylib
    0x7fff20500000 -     0x7fff2099dfff  com.apple.CoreFoundation (6.9 - 1778.101) <CE026405-2DAF-39D2-A601-743B3A61366E> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff2099e000 -     0x7fff20bd3fff  com.apple.LaunchServices (1122.45 - 1122.45) <2E70B4AB-38AF-37CC-A45B-ABEE3421A3A0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff20bd4000 -     0x7fff20ca8fff  com.apple.gpusw.MetalTools (1.0 - 1) <72B42432-B432-381F-8EA6-F1B829C3EE5D> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff20ca9000 -     0x7fff20f05fff  libBLAS.dylib (1336.140.1) <333A7ED7-D38C-3489-88A1-51F1D8414E47> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff20f06000 -     0x7fff20f53fff  com.apple.Lexicon-framework (1.0 - 86.2) <FE0BC1AF-D1A0-3A6B-A404-A187AEF07704> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff20f54000 -     0x7fff20fc2fff  libSparse.dylib (106) <95043C27-910C-3B53-ADE7-0E7907E579C9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff20fc3000 -     0x7fff21040fff  com.apple.SystemConfiguration (1.20 - 1.20) <AE4BE9DB-6F7D-3D4A-BA51-D86DDFC6B5B2> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff21041000 -     0x7fff21075fff  libCRFSuite.dylib (50) <95816B40-6F71-33EB-9324-E2942543DDD4> /usr/lib/libCRFSuite.dylib
    0x7fff21076000 -     0x7fff212aefff  libmecabra.dylib (929.10) <1E492E01-642F-3A9D-8A04-CF648C32696C> /usr/lib/libmecabra.dylib
    0x7fff212af000 -     0x7fff2160dfff  com.apple.Foundation (6.9 - 1778.101) <68B22A79-76E0-3BE4-9B53-0F38991C5A08> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff2160e000 -     0x7fff216f6fff  com.apple.LanguageModeling (1.0 - 247.3) <D7E3186D-41DD-3826-85C8-D9ECC7D17197> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff216f7000 -     0x7fff2182dfff  com.apple.CoreDisplay (237.4 - 237.4) <07520DBC-E1BB-310C-AD92-6F313820D60E> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff2182e000 -     0x7fff21a9efff  com.apple.audio.AudioToolboxCore (1.0 - 1181.72.1) <92B2E9B6-7FA8-3BE5-AD1A-25A2BC36821E> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff21a9f000 -     0x7fff21c84fff  com.apple.CoreText (677.6.0.2 - 677.6.0.2) <4C194C5B-3B53-347A-B558-AF0070B6D27B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff21c85000 -     0x7fff22316fff  com.apple.audio.CoreAudio (5.0 - 5.0) <7178815E-1890-3A3D-B0FD-F93EBB529E78> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff22317000 -     0x7fff2266efff  com.apple.security (7.0 - 59754.141.1) <7EC1D1C5-672E-3DFD-902C-D511ECE6C110> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff2266f000 -     0x7fff228cefff  libicucore.A.dylib (66112) <251FC896-7EA1-3505-A9AA-80BAE7A6FD2B> /usr/lib/libicucore.A.dylib
    0x7fff228cf000 -     0x7fff228d8fff  libsystem_darwin.dylib (1439.141.1) <29F82ABE-E1A0-3BC2-B91E-ADC010CF23FA> /usr/lib/system/libsystem_darwin.dylib
    0x7fff228d9000 -     0x7fff22bc4fff  com.apple.CoreServices.CarbonCore (1307.3 - 1307.3) <8191DB78-205F-3709-8E42-E257F3AD4459> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff22bc5000 -     0x7fff22c03fff  com.apple.CoreServicesInternal (476.1.1 - 476.1.1) <E07F95A5-AE7E-34A2-84CC-3870DCDC45D6> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff22c04000 -     0x7fff22c3efff  com.apple.CSStore (1122.45 - 1122.45) <AF990E23-4698-33A2-B1E0-665D4619D6C4> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff22c3f000 -     0x7fff22cedfff  com.apple.framework.IOKit (2.0.2 - 1845.120.6) <61CDC69E-EC9E-32B1-8A63-532619BA310F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff22cee000 -     0x7fff22cf9fff  libsystem_notify.dylib (279.40.4) <608B5A07-D31A-3BEC-86BF-C2E498C085AF> /usr/lib/system/libsystem_notify.dylib
    0x7fff22cfa000 -     0x7fff22d47fff  libsandbox.1.dylib (1441.141.4) <3848F6F5-6C83-37D2-A591-4EA4393F0372> /usr/lib/libsandbox.1.dylib
    0x7fff22d48000 -     0x7fff23a93fff  com.apple.AppKit (6.9 - 2022.60.128) <39481583-0997-3314-B9C2-0854C9B56C0A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff23a94000 -     0x7fff23ce2fff  com.apple.UIFoundation (1.0 - 728.9) <A7628FB1-C04A-3F24-A14A-DDCD4CE67A00> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff23ce3000 -     0x7fff23cf5fff  com.apple.UniformTypeIdentifiers (637 - 637) <5C5C0766-21EC-3C7C-9887-3DF23CBFCB84> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
    0x7fff23cf6000 -     0x7fff23e80fff  com.apple.desktopservices (1.21 - 1346.6.1) <F2D70A76-BF47-31DC-8337-D4D929DA4A27> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff23e94000 -     0x7fff240a2fff  com.apple.CoreDuet (1.0 - 1) <EA0886E1-AC18-3A4C-A9BB-0870D2DA3CF0> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
    0x7fff24160000 -     0x7fff247e6fff  libnetwork.dylib (2288.140.7) <6D702F3B-34C0-3809-8CEC-1D59D58CF8BB> /usr/lib/libnetwork.dylib
    0x7fff247e7000 -     0x7fff24c85fff  com.apple.CFNetwork (1240.0.4 - 1240.0.4) <5AC97239-B546-33F2-80B0-ACBFD66C0E58> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff24c86000 -     0x7fff24c94fff  libsystem_networkextension.dylib (1295.140.3) <022BE26C-C058-3CC7-8E0B-348B3D3B639C> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff24c95000 -     0x7fff24c95fff  libenergytrace.dylib (22.100.1) <13CE770E-37DA-35D5-84A7-2F6C07F3B707> /usr/lib/libenergytrace.dylib
    0x7fff24c96000 -     0x7fff24cf2fff  libMobileGestalt.dylib (978.140.1) <23C1C24D-9C1B-323A-9B84-42221F9257AC> /usr/lib/libMobileGestalt.dylib
    0x7fff24cf3000 -     0x7fff24d09fff  libsystem_asl.dylib (385) <47B99A49-749E-356F-9D81-6D3A0B1544AB> /usr/lib/system/libsystem_asl.dylib
    0x7fff24d0a000 -     0x7fff24d22fff  com.apple.TCC (1.0 - 1) <0C03114C-CBE1-3E8F-945E-CC11F0845978> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff24d23000 -     0x7fff25088fff  com.apple.SkyLight (1.600.0 - 588.8) <338D12B6-9059-3AED-B409-61EA90715BDA> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff25089000 -     0x7fff25712fff  com.apple.CoreGraphics (2.0 - 1463.18.4.1) <F720E729-88DF-304D-B498-A6C4459A9670> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff25713000 -     0x7fff25809fff  com.apple.ColorSync (4.13.0 - 3473.5.3) <475BCA90-8D51-3695-AD75-29F5024C4515> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff2580a000 -     0x7fff25865fff  com.apple.HIServices (1.22 - 716) <6118C8D4-70EA-3FD5-A375-0B500896506A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff25959000 -     0x7fff25b19fff  com.apple.Montreal (1.0 - 142) <2BA11519-6F86-3EC3-98DB-248C9832B6CE> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal
    0x7fff25c0c000 -     0x7fff2602bfff  com.apple.CoreData (120 - 1048) <C5D60909-0D12-316D-8455-9023884A60BE> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff2602c000 -     0x7fff26041fff  com.apple.ProtocolBuffer (1 - 285.24.10.20.1) <A2E727C2-659A-3791-8076-2DA387C440F9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff26042000 -     0x7fff261f5fff  libsqlite3.dylib (321.3) <AC4BFB61-2C0C-3FE6-A776-E97BE0F8EFF3> /usr/lib/libsqlite3.dylib
    0x7fff261f6000 -     0x7fff26272fff  com.apple.Accounts (113 - 113) <A4533970-D42E-3A4E-8244-2ACC60504923> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff26273000 -     0x7fff2628afff  com.apple.commonutilities (8.0 - 900) <56BAD997-43B7-3AF5-8E99-9F0810619899> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff2628b000 -     0x7fff2630afff  com.apple.BaseBoard (526 - 526) <A59E4406-C169-3723-9CC5-396A3ED80F49> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff2630b000 -     0x7fff26353fff  com.apple.RunningBoardServices (1.0 - 505.100.9) <596F75F9-6D8E-3113-BE54-B4CA556D2770> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff26354000 -     0x7fff263c8fff  com.apple.AE (918.6 - 918.6) <2AC07F95-A6EB-3D82-B8AC-D6516E42C60F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff263c9000 -     0x7fff263cffff  libdns_services.dylib (1310.140.1) <9D69602C-7ADF-3701-8A4E-F7C7B0A1AC37> /usr/lib/libdns_services.dylib
    0x7fff263d0000 -     0x7fff263d7fff  libsystem_symptoms.dylib (1431.140.1) <EA6435E7-8F85-315B-8AED-C20A07DE7F96> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff263d8000 -     0x7fff26563fff  com.apple.Network (1.0 - 1) <95AC4C13-4BD4-36AB-B0CE-BFB9B0812930> /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff26564000 -     0x7fff26593fff  com.apple.analyticsd (1.0 - 1) <13CBC16D-996E-3FCC-B5FA-787896CC6CED> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff26594000 -     0x7fff26596fff  libDiagnosticMessagesClient.dylib (112) <2FCF6C74-5FAF-3968-AE36-294C9EF3AA75> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff26597000 -     0x7fff265e3fff  com.apple.spotlight.metadata.utilities (1.0 - 2150.26) <2775C636-B8B5-3ED3-A8FC-7C2CB8C737A9> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff265e4000 -     0x7fff2667efff  com.apple.Metadata (10.7.0 - 2150.26) <A3A109B8-0C44-3377-A1BA-482D7AC72C0E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff2667f000 -     0x7fff26685fff  com.apple.DiskArbitration (2.7 - 2.7) <C121EA04-ABB5-34B6-80DD-360A75945764> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff26686000 -     0x7fff26cedfff  com.apple.vImage (8.1 - 544.4) <AD7CE38E-4FC4-3AFA-9643-337552CDD639> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff26cee000 -     0x7fff26fcbfff  com.apple.QuartzCore (1.11 - 927.24) <5330EF82-E120-34A4-B9DF-68F4C7C13DCF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff26fcc000 -     0x7fff2700dfff  libFontRegistry.dylib (309) <ACF99477-688E-33DA-8100-3191721EB052> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff2700e000 -     0x7fff2714efff  com.apple.coreui (2.1 - 692.1) <CC1F2421-0338-3912-86BE-A15BFDDF5C00> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff2714f000 -     0x7fff2723afff  com.apple.ViewBridge (553.1 - 553.1) <B5CC51A9-EA5C-3BE2-914C-5672C30A0311> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff2723b000 -     0x7fff27246fff  com.apple.PerformanceAnalysis (1.278.3 - 278.3) <4460D0DF-74B4-3EDB-9391-733525F1D0C6> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff27247000 -     0x7fff27256fff  com.apple.OpenDirectory (11.6 - 230.40.1) <E204DA2B-17DA-3A4B-A03C-8F3B673D5CCD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff27257000 -     0x7fff27276fff  com.apple.CFOpenDirectory (11.6 - 230.40.1) <9294B2FA-1269-3173-AB57-E80EBD2FE3E1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff27277000 -     0x7fff27283fff  com.apple.CoreServices.FSEvents (1290.120.5 - 1290.120.5) <87C05C54-DD61-3555-8246-F56E535072D2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff27284000 -     0x7fff272a8fff  com.apple.coreservices.SharedFileList (144 - 144) <FC634ADE-7F29-3A8D-AEB4-2F5A34685C88> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff272a9000 -     0x7fff272abfff  libapp_launch_measurement.dylib (14.1) <34296F0E-D81B-383B-8B45-137CA086BC4D> /usr/lib/libapp_launch_measurement.dylib
    0x7fff272ac000 -     0x7fff272f3fff  com.apple.CoreAutoLayout (1.0 - 21.10.1) <0AA28C77-F6DE-3B5B-BD3B-6BDCE805B634> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
    0x7fff272f4000 -     0x7fff273d6fff  libxml2.2.dylib (34.10) <6750E272-224C-3FDD-9A1C-87249E63DA07> /usr/lib/libxml2.2.dylib
    0x7fff273d7000 -     0x7fff27424fff  com.apple.CoreVideo (1.8 - 414.7) <7E4736C8-AB84-3A3A-BB7C-A6A9A36BCE79> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff27425000 -     0x7fff27427fff  com.apple.loginsupport (1.0 - 1) <F0181B5E-C653-3769-B7D2-8AEB1210898C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff27428000 -     0x7fff2744ffff  com.apple.aps.framework (4.0 - 4.0) <26AA00EA-98DF-397D-A610-A64BB735EB76> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x7fff27450000 -     0x7fff2746bfff  com.apple.UserManagement (1.0 - 1) <844C9F98-08E1-36EB-978D-660B4F4FA17E> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
    0x7fff2746c000 -     0x7fff275fdfff  com.apple.cloudkit.CloudKit (990 - 990) <DB51AB84-4B93-383A-B485-FD897CDFC83E> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff27680000 -     0x7fff27a0ffff  com.apple.CoreML (1.0 - 1) <60D26BDF-5B31-3780-9BB9-44202D6DB00F> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML
    0x7fff28362000 -     0x7fff283defff  com.apple.corelocation (2420.19.23 - 2420.19.23) <5CD8DDEE-0438-3A38-8877-10227C5A0A56> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff283df000 -     0x7fff283effff  libsystem_containermanager.dylib (318.100.4) <E0A89571-6D3E-3184-9F39-C6094C87B92B> /usr/lib/system/libsystem_containermanager.dylib
    0x7fff283f0000 -     0x7fff28401fff  com.apple.IOSurface (290.8.1 - 290.8.1) <9D6CA654-3E6F-3719-B9B9-65C4CDA41BC5> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff28402000 -     0x7fff2840bfff  com.apple.IOAccelerator (442.9 - 442.9) <CF36BA06-85BA-3CCF-B59D-6A92EAB5EABB> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff2840c000 -     0x7fff2852ffff  com.apple.Metal (244.303 - 244.303) <1A5DBC62-5F40-3407-8BBA-FE2B56CFA993> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff28530000 -     0x7fff2854cfff  com.apple.audio.caulk (1.0 - 70) <B2CA358A-CC85-3B89-810C-B0209F0EEAEA> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff2854d000 -     0x7fff28637fff  com.apple.CoreMedia (1.0 - 2780.10.4.1) <FDE1187A-BDBD-3B4E-A200-A3E2E22694B5> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff28638000 -     0x7fff28794fff  libFontParser.dylib (305.6.0.4) <7A6DF449-3B4B-34FC-9D5C-B00FE59E6031> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff28795000 -     0x7fff28a90fff  com.apple.HIToolbox (2.1.1 - 1062) <028D8F63-A386-33B9-A797-FF5C82B44C2F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff28a91000 -     0x7fff28aa4fff  com.apple.framework.DFRFoundation (1.0 - 267) <236EDA40-6A75-3BFE-9300-F9E4AAD36256> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff28aa5000 -     0x7fff28aa8fff  com.apple.dt.XCTTargetBootstrap (1.0 - 18119.1) <EAD6AFB0-E0FC-32FE-866B-8D017C12D868> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff28aa9000 -     0x7fff28ad2fff  com.apple.CoreSVG (1.0 - 149) <01655535-CA23-3F54-A8CE-92423D73CC99> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff28ad3000 -     0x7fff28d0ffff  com.apple.ImageIO (3.3.0 - 2130.7.3) <190A681F-44CD-35BC-AFC0-D09CC31280AC> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff28d10000 -     0x7fff2908bfff  com.apple.CoreImage (16.3.0 - 1140.2) <E05C48FC-81E3-3270-A37C-D206F364FF62> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff2908c000 -     0x7fff290f2fff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <6AE9618A-B8C9-3D0F-A389-71382F438DF8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff290f3000 -     0x7fff290f6fff  libsystem_configuration.dylib (1109.140.1) <89E70992-616F-3DD3-9430-67025F759A1B> /usr/lib/system/libsystem_configuration.dylib
    0x7fff290f7000 -     0x7fff290fbfff  libsystem_sandbox.dylib (1441.141.4) <087B0ADD-EF39-3E80-800F-F111FD65ABBA> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff290fc000 -     0x7fff290fdfff  com.apple.AggregateDictionary (1.0 - 1) <9FD9D68F-7B02-31A6-9583-EFF60B2A9F1C> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff290fe000 -     0x7fff29101fff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <0B523600-B02C-359B-BDD7-6EADCE8B5AD8> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff29102000 -     0x7fff29103fff  liblangid.dylib (136) <5645ED02-635B-3BA0-ACEF-D6C8BC74FAF0> /usr/lib/liblangid.dylib
    0x7fff29104000 -     0x7fff291a8fff  com.apple.CoreNLP (1.0 - 245.2) <24291100-1C4C-361B-B53B-B99CB4B53906> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff291a9000 -     0x7fff291affff  com.apple.LinguisticData (1.0 - 399) <55FF3554-9E14-3351-8E3C-3280C9CB664B> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff291b0000 -     0x7fff29858fff  libBNNS.dylib (288.100.5) <9A4AB8C3-BCF1-3BAB-896C-FA460E3A68D0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff29859000 -     0x7fff29a2bfff  libvDSP.dylib (760.100.3) <FF0A256C-B4CD-3BB1-9784-3F0054D62A91> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff29a2c000 -     0x7fff29a3dfff  com.apple.CoreEmoji (1.0 - 128.4) <37352743-CFF8-3196-8234-6AF30E531759> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff29a3e000 -     0x7fff29a48fff  com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <A6497A63-1658-3652-91ED-D3AF0EFAFABD> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
    0x7fff29a49000 -     0x7fff29b1bfff  com.apple.framework.CoreWLAN (16.0 - 1657) <5887F6C3-D272-3B6C-8CC8-262701FD9862> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff29b1c000 -     0x7fff29d1dfff  com.apple.CoreUtils (6.6 - 660.37) <CC8A07A0-797C-3943-BEFF-A9E3466A0B7C> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff29d1e000 -     0x7fff29d40fff  com.apple.MobileKeyBag (2.0 - 1.0) <70A80CF0-3682-32A6-AB83-8647FD8B2E52> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff29d41000 -     0x7fff29d51fff  com.apple.AssertionServices (1.0 - 505.100.9) <968E021C-1BCD-3249-BBAD-FEE64370EB1F> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff29d52000 -     0x7fff29dddfff  com.apple.securityfoundation (6.0 - 55240.40.4) <DB010D41-F904-3592-9301-BB75A0FA2FD4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff29dde000 -     0x7fff29de7fff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <B222BEB6-CE24-3D70-903B-A9034D6FC6F6> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff29de8000 -     0x7fff29decfff  com.apple.xpc.ServiceManagement (1.0 - 1) <E1167FFF-E757-3C96-B26A-C0CE98EAA899> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff29ded000 -     0x7fff29deffff  libquarantine.dylib (119.40.2) <B1418CB0-CDC7-3EB2-ABC3-8609ADC92BC4> /usr/lib/system/libquarantine.dylib
    0x7fff29df0000 -     0x7fff29dfbfff  libCheckFix.dylib (31) <AA2CA9EF-88C2-3DB6-89E4-7E946131788D> /usr/lib/libCheckFix.dylib
    0x7fff29dfc000 -     0x7fff29e13fff  libcoretls.dylib (169.100.1) <972397D6-A93B-302D-9CA3-C8B12C93899B> /usr/lib/libcoretls.dylib
    0x7fff29e14000 -     0x7fff29e24fff  libbsm.0.dylib (68.40.1) <FEA138A5-B03E-3AD5-9E21-3F35405D147F> /usr/lib/libbsm.0.dylib
    0x7fff29e25000 -     0x7fff29e6efff  libmecab.dylib (929.10) <E391699C-D139-338C-8919-1B2817BC1E25> /usr/lib/libmecab.dylib
    0x7fff29e6f000 -     0x7fff29e74fff  libgermantok.dylib (24) <3DF990AD-8806-36B2-8168-4F18762C74A4> /usr/lib/libgermantok.dylib
    0x7fff29e75000 -     0x7fff29e8afff  libLinearAlgebra.dylib (1336.140.1) <0D201041-7BAB-3492-898D-ABDDD9D85D48> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff29e8b000 -     0x7fff2a0a9fff  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <5B727E28-3ACF-3DBB-B787-B1633CFB2413> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff2a0aa000 -     0x7fff2a0f9fff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <315027A8-ADFD-3DC7-9B2A-6F1457E4D32E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff2a0fa000 -     0x7fff2a25bfff  com.apple.MLCompute (1.0 - 1) <E0A748E2-21DA-319C-8B28-80A853090B86> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
    0x7fff2a25c000 -     0x7fff2a292fff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <5D3C245B-BF53-31B0-B405-E4EB0FA608ED> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff2a293000 -     0x7fff2a2e9fff  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <C251786D-BC17-3C99-94E7-10EC828139D4> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff2a2ea000 -     0x7fff2a37afff  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <AAE88278-E296-3976-9FCC-345F71C8005D> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff2a37b000 -     0x7fff2a38afff  com.apple.AppleFSCompression (125 - 1.0) <EAA1DBD4-02EE-3E39-A9F8-C40AA535C32A> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff2a38b000 -     0x7fff2a397fff  libbz2.1.0.dylib (44) <90425CDA-B4E1-3004-800B-7E4A87DCBCD2> /usr/lib/libbz2.1.0.dylib
    0x7fff2a398000 -     0x7fff2a39cfff  libsystem_coreservices.dylib (127.1) <7AE405FC-6A44-34A0-86AD-6BD80B0050BB> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff2a39d000 -     0x7fff2a3cafff  com.apple.CoreServices.OSServices (1122.45 - 1122.45) <8D3DFB6A-1621-38D0-BA1C-A972C343D839> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff2a3cb000 -     0x7fff2a4fafff  com.apple.AuthKit (1.0 - 1) <BE5EBFF1-F354-3F16-9B16-B30B6867ED3E> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff2a4fb000 -     0x7fff2a529fff  com.apple.UserNotifications (1.0 - 348.5) <F6D81ADE-EDF8-39FA-995A-4249DDC7E696> /System/Library/Frameworks/UserNotifications.framework/Versions/A/UserNotifications
    0x7fff2a599000 -     0x7fff2a5abfff  libz.1.dylib (76) <73C471D3-07CE-307D-A531-92C5D0E4C0E9> /usr/lib/libz.1.dylib
    0x7fff2a5ac000 -     0x7fff2a5f3fff  libsystem_m.dylib (3186.100.3) <EA0354A3-8618-3D76-A760-E550AC60CE95> /usr/lib/system/libsystem_m.dylib
    0x7fff2a5f4000 -     0x7fff2a5f4fff  libcharset.1.dylib (59) <E389024B-7CAC-32A5-BF12-DF20C8A3B050> /usr/lib/libcharset.1.dylib
    0x7fff2a5f5000 -     0x7fff2a5fafff  libmacho.dylib (980) <1FCE2BE3-4F6F-3EAA-9BC5-A9892A45CF0D> /usr/lib/system/libmacho.dylib
    0x7fff2a5fb000 -     0x7fff2a616fff  libkxld.dylib (7195.141.8) <A4FF718B-9B75-339A-BDDF-987C38610870> /usr/lib/system/libkxld.dylib
    0x7fff2a617000 -     0x7fff2a622fff  libcommonCrypto.dylib (60178.120.3) <7E242F29-1CB6-30EF-8C9A-C768A90FDBA0> /usr/lib/system/libcommonCrypto.dylib
    0x7fff2a623000 -     0x7fff2a62dfff  libunwind.dylib (201) <A5B040A8-847F-36EE-B13D-5DD1F5CD5BED> /usr/lib/system/libunwind.dylib
    0x7fff2a62e000 -     0x7fff2a635fff  liboah.dylib (203.58) <26D08622-69F5-32DB-80D2-9B4651A9F0CC> /usr/lib/liboah.dylib
    0x7fff2a636000 -     0x7fff2a640fff  libcopyfile.dylib (173.40.2) <8C783785-0F5F-3DC5-B815-B29CEBA75737> /usr/lib/system/libcopyfile.dylib
    0x7fff2a641000 -     0x7fff2a648fff  libcompiler_rt.dylib (102.2) <1FDC92D1-8A17-30AF-8E72-4F0517AEA157> /usr/lib/system/libcompiler_rt.dylib
    0x7fff2a649000 -     0x7fff2a64bfff  libsystem_collections.dylib (1439.141.1) <11D5775A-AD4C-35ED-BC05-616AB67ACBBE> /usr/lib/system/libsystem_collections.dylib
    0x7fff2a64c000 -     0x7fff2a64efff  libsystem_secinit.dylib (87.60.1) <27982311-637E-3308-9F55-4871762736F4> /usr/lib/system/libsystem_secinit.dylib
    0x7fff2a64f000 -     0x7fff2a651fff  libremovefile.dylib (49.120.1) <5973CED7-797B-3288-9589-C1856752F91A> /usr/lib/system/libremovefile.dylib
    0x7fff2a652000 -     0x7fff2a652fff  libkeymgr.dylib (31) <AAA929A0-45E5-3186-8ABD-37EB25B2C939> /usr/lib/system/libkeymgr.dylib
    0x7fff2a653000 -     0x7fff2a65afff  libsystem_dnssd.dylib (1310.140.1) <4A85F13B-E3AD-3C44-B327-091F56D35CC1> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff2a65b000 -     0x7fff2a660fff  libcache.dylib (83) <435668CB-666B-3379-AD65-F604A72099F4> /usr/lib/system/libcache.dylib
    0x7fff2a661000 -     0x7fff2a662fff  libSystem.B.dylib (1292.120.1) <2553EE0F-3C42-3ACE-9400-EF055BD5BE8E> /usr/lib/libSystem.B.dylib
    0x7fff2a663000 -     0x7fff2a666fff  libfakelink.dylib (3) <C7E36B51-4FD6-3704-975E-AB9B46DF6D30> /usr/lib/libfakelink.dylib
    0x7fff2a667000 -     0x7fff2a667fff  com.apple.SoftLinking (1.0 - 1) <AF16BDE9-8995-39F5-A0ED-C65232A61095> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
    0x7fff2a668000 -     0x7fff2a69ffff  libpcap.A.dylib (98.100.3) <7EB940E4-BB5E-327D-B7F8-951F22F27D72> /usr/lib/libpcap.A.dylib
    0x7fff2a6a0000 -     0x7fff2a790fff  libiconv.2.dylib (59) <1F132286-CEA4-37A4-93F7-3C0A60C3645B> /usr/lib/libiconv.2.dylib
    0x7fff2a791000 -     0x7fff2a7a2fff  libcmph.dylib (8) <8A5DF97C-1CDA-36BC-86E8-EF8B7F314EDC> /usr/lib/libcmph.dylib
    0x7fff2a7a3000 -     0x7fff2a814fff  libarchive.2.dylib (83.100.2) <BAF76083-029C-3AC5-96E5-AE54786574A6> /usr/lib/libarchive.2.dylib
    0x7fff2a815000 -     0x7fff2a87cfff  com.apple.SearchKit (1.4.1 - 1.4.1) <7B3B1E70-2C63-30E2-B5CF-6BC8EE7EA418> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff2a87d000 -     0x7fff2a87efff  libThaiTokenizer.dylib (3) <84E7B443-74C5-386F-AEFF-FD48B94A04EB> /usr/lib/libThaiTokenizer.dylib
    0x7fff2a87f000 -     0x7fff2a8a1fff  com.apple.applesauce (1.0 - 16.28) <0F9016E9-9DBB-3047-A1C3-A9FC85BAFE20> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff2a8a2000 -     0x7fff2a8b9fff  libapple_nghttp2.dylib (1.41) <B730D1A0-8F61-3497-B63A-5661EB887E73> /usr/lib/libapple_nghttp2.dylib
    0x7fff2a8ba000 -     0x7fff2a8d0fff  libSparseBLAS.dylib (1336.140.1) <89309B8D-FA44-3525-BA00-21E87D51D424> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2a8d1000 -     0x7fff2a8d2fff  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <295CF572-CFF5-3C5D-8006-F63988CFB5B7> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff2a8d3000 -     0x7fff2a8d7fff  libpam.2.dylib (28.40.1) <B2457D3D-DADD-3157-8BFD-CF76F982FC13> /usr/lib/libpam.2.dylib
    0x7fff2a8d8000 -     0x7fff2a8f7fff  libcompression.dylib (96.120.1) <788EAF3B-62D8-3A5F-9E42-E4CEDB3DAB51> /usr/lib/libcompression.dylib
    0x7fff2a8f8000 -     0x7fff2a8fdfff  libQuadrature.dylib (7) <EA417A8F-8395-32AC-A67A-FA75DC2110CB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2a8fe000 -     0x7fff2ac9bfff  libLAPACK.dylib (1336.140.1) <4A2BD114-000A-372A-B4CD-091360A39058> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2ac9c000 -     0x7fff2acebfff  com.apple.DictionaryServices (1.2 - 341) <960CC0D7-B2C6-3308-A120-C86F41A2301C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff2acec000 -     0x7fff2ad04fff  liblzma.5.dylib (16) <933D5DEC-E8E8-3946-A16E-1056F2075602> /usr/lib/liblzma.5.dylib
    0x7fff2ad05000 -     0x7fff2ad06fff  libcoretls_cfhelpers.dylib (169.100.1) <E2AC5901-93EC-3F67-A8B1-738E76B49804> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff2ad07000 -     0x7fff2ae02fff  com.apple.APFS (1677.141.2 - 1677.141.2) <C4CDA06B-22D5-35A4-BA73-856DC272FAB5> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff2ae03000 -     0x7fff2ae10fff  libxar.1.dylib (452.0.4) <F45E7073-9E81-30DE-9DCB-FABA46E5DBBC> /usr/lib/libxar.1.dylib
    0x7fff2ae11000 -     0x7fff2ae14fff  libutil.dylib (58.40.2) <AE460378-5737-3BD8-90D9-E4E7603C4002> /usr/lib/libutil.dylib
    0x7fff2ae15000 -     0x7fff2ae3dfff  libxslt.1.dylib (17.6) <BFB2EA40-332D-3DB4-AA3E-025966219E88> /usr/lib/libxslt.1.dylib
    0x7fff2ae3e000 -     0x7fff2ae48fff  libChineseTokenizer.dylib (37.1) <344E5492-4BD5-354A-8274-047F8388A826> /usr/lib/libChineseTokenizer.dylib
    0x7fff2ae49000 -     0x7fff2af06fff  libvMisc.dylib (760.100.3) <90F4EDF5-52D8-3345-9D57-2DC2E522959F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2af07000 -     0x7fff2af9efff  libate.dylib (3.0.6) <6F17C1CE-1F4D-3291-919D-A49E32E35344> /usr/lib/libate.dylib
    0x7fff2af9f000 -     0x7fff2afa6fff  libIOReport.dylib (64.100.1) <4690B952-7BCF-31DB-A796-996D8094AB24> /usr/lib/libIOReport.dylib
    0x7fff2afa7000 -     0x7fff2afbafff  com.apple.CrashReporterSupport (10.13 - 15053.1) <4DF43384-1E50-3AB8-9DA7-5C328381A847> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff2afd2000 -     0x7fff2b04ffff  com.apple.CVNLP (1.0 - 119) <2800BA19-1061-3032-8C0D-0E8FC72274C5> /System/Library/PrivateFrameworks/CVNLP.framework/Versions/A/CVNLP
    0x7fff2b071000 -     0x7fff2b0a7fff  com.apple.pluginkit.framework (1.0 - 1) <545963FE-A289-3F66-B6EA-9122340016DD> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fff2b0a8000 -     0x7fff2b0affff  libMatch.1.dylib (38) <E1296A96-E533-39A6-A519-05A0AE78181E> /usr/lib/libMatch.1.dylib
    0x7fff2b0b0000 -     0x7fff2b13bfff  libCoreStorage.dylib (554.140.2) <AEE8AC91-7058-3275-90D4-B0217A41BED6> /usr/lib/libCoreStorage.dylib
    0x7fff2b13c000 -     0x7fff2b18ffff  com.apple.AppleVAFramework (6.1.3 - 6.1.3) <DC3B87A5-AA7D-3534-BF4F-089E16226C0D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff2b190000 -     0x7fff2b1a9fff  libexpat.1.dylib (26.141.1) <F579645F-A493-3F2D-A9DB-C77664A1BCA1> /usr/lib/libexpat.1.dylib
    0x7fff2b1aa000 -     0x7fff2b1b3fff  libheimdal-asn1.dylib (597.140.2) <D59F68F4-A2E2-3F98-8167-DD5DDDAB568B> /usr/lib/libheimdal-asn1.dylib
    0x7fff2b1b4000 -     0x7fff2b1c8fff  com.apple.IconFoundation (479.4 - 479.4) <6B77361F-69AF-393F-97B8-9BDED38304B0> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
    0x7fff2b1c9000 -     0x7fff2b235fff  com.apple.IconServices (479.4 - 479.4) <727B7BC3-AC02-31F7-9149-0014FDBCF17B> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff2b236000 -     0x7fff2b2d4fff  com.apple.MediaExperience (1.0 - 1) <B71F329D-70E3-34A8-A789-82D7ACA63C34> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
    0x7fff2b2d5000 -     0x7fff2b2fdfff  com.apple.persistentconnection (1.0 - 1.0) <E05B6AF9-376E-3E4D-B2F5-3A7A85D7CBB3> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff2b2fe000 -     0x7fff2b30cfff  com.apple.GraphVisualizer (1.0 - 100.1) <09C716AC-B62A-3EF0-85A1-98A949EB88B3> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff2b30d000 -     0x7fff2b728fff  com.apple.vision.FaceCore (4.3.2 - 4.3.2) <0E25BE9A-551C-3457-B7E8-7ED414223E3A> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff2b729000 -     0x7fff2b770fff  com.apple.OTSVG (1.0 - 677.6.0.2) <53E2913D-E023-3685-9161-A14608F89DC1> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff2b771000 -     0x7fff2b777fff  com.apple.xpc.AppServerSupport (1.0 - 2038.120.1) <523B9C03-A39E-3FF4-8216-34309C158113> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
    0x7fff2b778000 -     0x7fff2b78afff  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <53477D30-E8A6-3935-A3B1-7CBDE387210A> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff2b78b000 -     0x7fff2b78dfff  libspindump.dylib (295.2) <003C7E84-C242-311A-A2FA-4622B66E3F24> /usr/lib/libspindump.dylib
    0x7fff2b78e000 -     0x7fff2b84efff  com.apple.Heimdal (4.0 - 2.0) <22D8BF25-5FD0-3EE3-A547-B3F55FC09330> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff2b84f000 -     0x7fff2b869fff  com.apple.login (3.0 - 3.0) <6A0F479C-875F-3280-A99F-4424C3ED9448> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff2b86a000 -     0x7fff2b941fff  com.apple.corebrightness (1.0 - 1) <D9088C56-2629-305D-B664-479950849BE1> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
    0x7fff2b9ea000 -     0x7fff2b9edfff  libodfde.dylib (26) <5E7BCB99-7876-3088-80E8-15A4DBE7D341> /usr/lib/libodfde.dylib
    0x7fff2b9ee000 -     0x7fff2ba2afff  com.apple.bom (14.0 - 235) <8C9005F1-FC51-3CF3-9CAC-264C1D8031F7> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff2ba2b000 -     0x7fff2ba74fff  com.apple.AppleJPEG (1.0 - 1) <D751A39A-DC50-3E2E-9C2D-70284574EC84> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff2ba75000 -     0x7fff2bb54fff  libJP2.dylib (2130.7.3) <8DDCF1C9-288C-3389-A82A-8CF285C22351> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff2bb55000 -     0x7fff2bb58fff  com.apple.WatchdogClient.framework (1.0 - 98.120.2) <13BB2B82-DF17-33C3-A19B-432E03744896> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff2bb59000 -     0x7fff2bb8ffff  com.apple.MultitouchSupport.framework (4440.3 - 4440.3) <8B7FB5F9-E38B-3193-98AC-51EF565F61CB> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff2bb90000 -     0x7fff2bceefff  com.apple.VideoToolbox (1.0 - 2780.10.4.1) <1134D8C6-EA97-32B4-BD4C-DD02901F4B0B> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff2bcef000 -     0x7fff2bd22fff  libAudioToolboxUtility.dylib (1181.72.1) <3043E7BD-6B6A-39EA-B482-4BDB39E1DF85> /usr/lib/libAudioToolboxUtility.dylib
    0x7fff2bd23000 -     0x7fff2bd43fff  libPng.dylib (2130.7.3) <763FCB19-AE0C-3BFC-93F9-5E1D84658A1B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff2bd44000 -     0x7fff2bda3fff  libTIFF.dylib (2130.7.3) <D411022D-EA85-379D-A8FB-84CE2583ECE5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff2bda4000 -     0x7fff2bdc0fff  com.apple.IOPresentment (58 - 37) <990B304C-15B6-397D-8B7E-636DA14AE1D3> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff2bdc1000 -     0x7fff2bdc8fff  com.apple.GPUWrangler (6.3.5 - 6.3.5) <E07D5D60-104E-3141-90CC-F81074D95E0D> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff2bdc9000 -     0x7fff2bdccfff  libRadiance.dylib (2130.7.3) <26086575-E7FE-3EA8-A099-B1EA1E1509C5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff2bdcd000 -     0x7fff2bdd2fff  com.apple.DSExternalDisplay (3.1 - 380) <DCD6682A-9C61-3779-A81D-8E1FBED38C69> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff2bdd3000 -     0x7fff2bdf7fff  libJPEG.dylib (2130.7.3) <EE8BD43F-037C-3AA8-AA5F-685BC1E858BE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff2bdf8000 -     0x7fff2be27fff  com.apple.ATSUI (1.0 - 1) <92428504-C766-3ACE-BC36-89F1A5CAB61C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff2be28000 -     0x7fff2be2cfff  libGIF.dylib (2130.7.3) <EE211D7D-4994-3BFB-BC49-C63069B800E8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff2be2d000 -     0x7fff2be36fff  com.apple.CMCaptureCore (1.0 - 82.6) <C1960208-BCA3-3D47-9DBE-CF1A81C2053B> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
    0x7fff2be37000 -     0x7fff2be7efff  com.apple.print.framework.PrintCore (16.1 - 531.1) <8139D1A2-7037-3B4F-AB8F-2BF38D64D798> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff2be7f000 -     0x7fff2bf4cfff  com.apple.TextureIO (3.10.9 - 3.10.9) <0E29AC8D-246E-3F7F-A8A0-10E09DD64603> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff2bf4d000 -     0x7fff2bf55fff  com.apple.InternationalSupport (1.0 - 61.1) <8E0C26AC-7462-34B5-B608-0DB611CCB687> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff2bf56000 -     0x7fff2bfd0fff  com.apple.datadetectorscore (8.0 - 674) <3E182298-355E-337F-A398-B266DEC5E6F3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff2bfd1000 -     0x7fff2c02efff  com.apple.UserActivity (439 - 439) <E011EB02-BB18-3154-8010-AD4C6D21792B> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
    0x7fff2c02f000 -     0x7fff2c7cbfff  com.apple.MediaToolbox (1.0 - 2780.10.4.1) <A90F330D-ACB5-30FC-9F25-CA12F6D8DE3C> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff2cc73000 -     0x7fff2cc9bfff  com.apple.locationsupport (2420.19.23 - 2420.19.23) <0CED90D1-F2D8-34B3-8501-236B0EAA8C7F> /System/Library/PrivateFrameworks/LocationSupport.framework/Versions/A/LocationSupport
    0x7fff2cc9c000 -     0x7fff2cccdfff  libSessionUtility.dylib (76.69) <E6D8E0BB-3C76-343B-B8EA-03C411971A6C> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
    0x7fff2ccce000 -     0x7fff2ce02fff  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <7C7D69A5-6686-3040-88F4-87B892B96C0D> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff2ce03000 -     0x7fff2ce68fff  com.apple.audio.AudioSession (1.0 - 76.69) <3E7FD009-AC1B-398E-A5BE-D892725A73C7> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
    0x7fff2ce69000 -     0x7fff2ce7bfff  libAudioStatistics.dylib (27.64) <2072394F-C2D4-3EBE-8259-CEBBC87DB2C7> /usr/lib/libAudioStatistics.dylib
    0x7fff2ce7c000 -     0x7fff2ce8bfff  com.apple.speech.synthesis.framework (9.0.66 - 9.0.66) <3FADC203-0E7D-3208-9BF7-CD8AE1B9D204> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff2ce8c000 -     0x7fff2cef8fff  com.apple.ApplicationServices.ATS (377 - 516) <79E67A4C-DAED-3E60-AF13-23BF0C11A3CA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff2cef9000 -     0x7fff2cf11fff  libresolv.9.dylib (68) <E2B9E465-C557-3CEA-85F9-4DAF5D550503> /usr/lib/libresolv.9.dylib
    0x7fff2cf12000 -     0x7fff2cf25fff  libsasl2.2.dylib (214) <BB375531-9020-3B34-BB66-BF3108F71CED> /usr/lib/libsasl2.2.dylib
    0x7fff2cfdf000 -     0x7fff2d043fff  com.apple.CoreMediaIO (1000.0 - 5325) <4139F0CF-51D7-3742-80CB-ED04E249D254> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff2d044000 -     0x7fff2d123fff  libSMC.dylib (20) <B45BD314-B645-3948-B1C2-1FDA40453078> /usr/lib/libSMC.dylib
    0x7fff2d124000 -     0x7fff2d183fff  libcups.2.dylib (494.3) <353033B4-E6E6-375A-8BC7-0EE2F67FC8C3> /usr/lib/libcups.2.dylib
    0x7fff2d184000 -     0x7fff2d193fff  com.apple.LangAnalysis (1.7.0 - 254) <EE21E044-0B25-3D3E-A892-A276452D8EC8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff2d194000 -     0x7fff2d19efff  com.apple.NetAuth (6.2 - 6.2) <08F7BAF1-D834-3FAF-9FCC-7FBC32BAF037> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff2d19f000 -     0x7fff2d1a6fff  com.apple.ColorSyncLegacy (4.13.0 - 1) <67ED2EE7-B12F-301E-B164-059F452084DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff2d1a7000 -     0x7fff2d1b2fff  com.apple.QD (4.0 - 416) <41CBD1BE-1975-3983-B4E0-32E511997BB5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff2d1b3000 -     0x7fff2d807fff  com.apple.audio.AudioResourceArbitration (1.0 - 1) <882F280D-B129-3299-B098-D1E59B78841A> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
    0x7fff2d808000 -     0x7fff2d813fff  com.apple.perfdata (1.0 - 67.40.1) <B80E66C3-5A5F-391A-9475-15DB16BA72E8> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
    0x7fff2d814000 -     0x7fff2d822fff  libperfcheck.dylib (41) <A9A6BE18-57EA-35F6-96BC-D71C49013A09> /usr/lib/libperfcheck.dylib
    0x7fff2d823000 -     0x7fff2d832fff  com.apple.Kerberos (3.0 - 1) <06AAAB8C-AA8B-344E-A3F3-4CEDF0AF8C78> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff2d833000 -     0x7fff2d883fff  com.apple.GSS (4.0 - 2.0) <604B241D-5B83-3F6C-85D3-F3AB29C950D8> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff2d884000 -     0x7fff2d894fff  com.apple.CommonAuth (4.0 - 2.0) <90C46CDE-4DD0-338C-9609-68F4BCDD3F03> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff2d895000 -     0x7fff2d8bcfff  com.apple.MobileAssets (1.0 - 659.100.21) <5516BEA4-1FAC-353E-8195-23EEFFA08AB7> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
    0x7fff2d8ea000 -     0x7fff2d909fff  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <92FFAD21-9FA8-3194-8764-946F3D8F429E> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff2d90a000 -     0x7fff2d912fff  com.apple.CorePhoneNumbers (1.0 - 1) <A667EA02-1F06-36D7-8290-0B6CD36F89BC> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff2d913000 -     0x7fff2d99cfff  libTelephonyUtilDynamic.dylib (5359.1) <77A0F846-3480-31C8-9373-80A8D0056B54> /usr/lib/libTelephonyUtilDynamic.dylib
    0x7fff2da65000 -     0x7fff2da65fff  liblaunch.dylib (2038.120.1) <A3F46CC6-BD89-39DB-8732-C885B881A635> /usr/lib/system/liblaunch.dylib
    0x7fff2e247000 -     0x7fff2e392fff  com.apple.Sharing (1630 - 1630) <76D1A200-27A3-3B3E-8B30-4026ABD24217> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff2e393000 -     0x7fff2e4b4fff  com.apple.Bluetooth (8.0.5 - 8.0.5d7) <2197F126-63A6-39DE-B3AB-6DD8B1F79398> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff2e4ce000 -     0x7fff2e527fff  com.apple.ProtectedCloudStorage (1.0 - 1) <4BCCB350-CAA2-3217-8AE6-6A6B25755D9F> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff2e528000 -     0x7fff2e587fff  com.apple.QuickLookFramework (5.0 - 928.5) <F2695014-0FAE-389B-8099-5933BC9CF6B6> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff2e588000 -     0x7fff2e5a3fff  com.apple.MetalKit (147.1 - 147.1) <53DEED6A-862C-3ADA-8146-071DDD34DBFD> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit
    0x7fff2e787000 -     0x7fff2fc82fff  com.apple.GeoServices (1.0 - 1757.26.6.2.2) <6DA1AB95-612F-3B54-B5FC-C817C9FF609F> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff2fc83000 -     0x7fff2fc8efff  com.apple.DirectoryService.Framework (11.6 - 230.40.1) <5F74B94B-E5FE-308E-8FF6-203162A1DA9D> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff2fc8f000 -     0x7fff2fcb6fff  com.apple.RemoteViewServices (2.0 - 163) <5A16528F-4822-3B0C-BB89-A79459F3AF87> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff2fcb7000 -     0x7fff2fcc6fff  com.apple.SpeechRecognitionCore (6.1.25 - 6.1.25) <80F52037-912C-335F-B1DA-22AFD73DBDA2> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff2fcc7000 -     0x7fff2fccefff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <00007833-3C2A-3F10-97ED-838FB606B5FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff2fefc000 -     0x7fff2fefcfff  libsystem_product_info_filter.dylib (8.40.1) <6CA8DEA4-5BD4-375F-9AA7-3338135306C5> /usr/lib/system/libsystem_product_info_filter.dylib
    0x7fff2ffd4000 -     0x7fff2ffd4fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <BA7C5415-119A-30E5-8177-B24AB40624A3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff2fffa000 -     0x7fff2fffafff  com.apple.CoreServices (1122.45 - 1122.45) <0B568FBF-B224-3C1C-8602-8124A23112CB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff301b6000 -     0x7fff301b6fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <515931D4-4026-3320-8805-60E7892CB527> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff301f7000 -     0x7fff30202fff  com.apple.MediaAccessibility (1.0 - 130) <9F936D44-8663-3C49-9B14-3D906CEC361C> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff30203000 -     0x7fff30222fff  com.apple.networking.AlgosScoreFramework (1.0 - 1) <D0286FFC-1658-30C0-A2C6-FBE9C94331EB> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/Versions/A/AlgosScoreFramework
    0x7fff30223000 -     0x7fff30227fff  com.apple.AppleSRP (5.0 - 1) <DA2F374E-D025-3E62-B688-8D2772B23FC0> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff30228000 -     0x7fff30233fff  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <657A98E1-0365-3F99-9B79-8091C19A4BAD> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff30234000 -     0x7fff3026bfff  com.apple.framework.SystemAdministration (1.0 - 1.0) <E1515270-7FDA-3D66-80FD-04FD5118792C> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
    0x7fff309f8000 -     0x7fff30a5dfff  com.apple.CoreBluetooth (1.0 - 1) <3045519A-D711-3CD1-9E87-D7581A430423> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff30a5e000 -     0x7fff30a67fff  com.apple.SymptomDiagnosticReporter (1.0 - 79.120.1) <22A34196-22AD-3021-88CD-CC9A7C0AF006> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
    0x7fff30a68000 -     0x7fff30a7afff  com.apple.PowerLog (1.0 - 1) <134B88CE-59B5-3B92-91E0-A3079C8B3952> /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog
    0x7fff30a7b000 -     0x7fff30a87fff  com.apple.AppleIDAuthSupport (1.0 - 1) <B80B4F16-3756-303D-A349-3486A08B2216> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff30a88000 -     0x7fff30b30fff  com.apple.DiscRecording (9.0.3 - 9030.4.5) <647A8433-AFF3-3F20-A07E-3471F427DA80> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff30b31000 -     0x7fff30b64fff  com.apple.MediaKit (16 - 927.40.2) <88268EAB-5430-3BCB-9263-E3B4BCC34609> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff30b65000 -     0x7fff30c50fff  com.apple.DiskManagement (14.0 - 1733.140.2) <4BF7BFA4-4950-3582-B43B-25A4B6A3E7B7> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
    0x7fff30c51000 -     0x7fff3100bfff  com.apple.CoreAUC (326.2.0 - 326.2.0) <2CA2A80E-FEA5-3631-AD13-A8CC304C7FF7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff3100c000 -     0x7fff3100ffff  com.apple.Mangrove (1.0 - 25) <00241832-3B38-3D76-88DA-0F0ADEEBFAAC> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff31010000 -     0x7fff3103dfff  com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <D4FFFBBA-0AD9-31D0-99A1-7FC249867A20> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff3103e000 -     0x7fff3118dfff  com.apple.FileProvider (349.141.1 - 349.141.1) <B17CE44C-07C0-3C92-BA3B-40CF881F4C78> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
    0x7fff3118e000 -     0x7fff311b0fff  com.apple.GenerationalStorage (2.0 - 323) <9419BDA9-3F2D-32A8-8ABD-5CAF5B6DB77F> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff31526000 -     0x7fff315f4fff  com.apple.CoreTelephony (113 - 8260.1) <3D3D1409-4F24-3964-97E6-7A8C3B6B69C0> /System/Library/Frameworks/CoreTelephony.framework/Versions/A/CoreTelephony
    0x7fff31619000 -     0x7fff317adfff  com.apple.AVFCore (1.0 - 2020.10) <70A422C7-FCC6-3C1F-A78E-686B861847F4> /System/Library/PrivateFrameworks/AVFCore.framework/Versions/A/AVFCore
    0x7fff317ae000 -     0x7fff3181dfff  com.apple.FrontBoardServices (703.16 - 703.16) <1B6F7F55-D9F7-342F-8361-E66465F2A617> /System/Library/PrivateFrameworks/FrontBoardServices.framework/Versions/A/FrontBoardServices
    0x7fff3181e000 -     0x7fff31847fff  com.apple.BoardServices (1.0 - 526) <12D89B26-4E91-34A2-83D9-3023D199255C> /System/Library/PrivateFrameworks/BoardServices.framework/Versions/A/BoardServices
    0x7fff31889000 -     0x7fff318a4fff  com.apple.ExtensionKit (19.4 - 19.4) <A9753B92-EFA2-32EF-AF39-58E5605FBB61> /System/Library/PrivateFrameworks/ExtensionKit.framework/Versions/A/ExtensionKit
    0x7fff318a5000 -     0x7fff318abfff  com.apple.ExtensionFoundation (19.4 - 19.4) <2D46CB26-6391-398E-A8DA-F2D370D0A0CE> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/Versions/A/ExtensionFoundation
    0x7fff318ac000 -     0x7fff318f1fff  com.apple.CryptoTokenKit (1.0 - 1) <20C8FFAD-1B83-3867-A960-38841AFEB424> /System/Library/Frameworks/CryptoTokenKit.framework/Versions/A/CryptoTokenKit
    0x7fff318f2000 -     0x7fff31908fff  com.apple.LocalAuthentication (1.0 - 827.140.1) <5ABF445B-C0BA-383F-925F-04B1EF500DBA> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication
    0x7fff31909000 -     0x7fff31936fff  com.apple.CoreAuthentication.SharedUtils (1.0 - 827.140.1) <6582D8B0-2FC8-30B8-99B9-7DD482A0E345> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils
    0x7fff319ab000 -     0x7fff319ecfff  com.apple.CoreHaptics (1.0 - 1) <CE726154-01B5-3D7F-B886-8207554AD019> /System/Library/Frameworks/CoreHaptics.framework/Versions/A/CoreHaptics
    0x7fff319fa000 -     0x7fff31a39fff  com.apple.AppleVPAFramework (3.26.1 - 3.26.1) <07AE0E16-85CC-30F2-A575-A51458366DD9> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff31aec000 -     0x7fff31b27fff  com.apple.DebugSymbols (195.1 - 195.1) <C94557E3-11DD-3007-B001-DC2509CFE14D> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff31b28000 -     0x7fff31bddfff  com.apple.CoreSymbolication (12.5 - 64544.81.1) <1D4A9F11-AB1C-3F5F-90A1-38C3EAA7BE1F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff31bde000 -     0x7fff31be7fff  com.apple.CoreTime (284.0.4) <FC81E173-26AA-349F-BF34-21EEF521B84F> /System/Library/PrivateFrameworks/CoreTime.framework/Versions/A/CoreTime
    0x7fff31be8000 -     0x7fff31c5dfff  com.apple.Rapport (2.6.0 - 260.3) <F0117B24-BE94-300E-936F-19019FE81850> /System/Library/PrivateFrameworks/Rapport.framework/Versions/A/Rapport
    0x7fff32532000 -     0x7fff3257efff  com.apple.coreduetcontext (1.0 - 1) <9DB089D7-90D0-3073-BFAE-3DB94AB3A876> /System/Library/PrivateFrameworks/CoreDuetContext.framework/Versions/A/CoreDuetContext
    0x7fff3257f000 -     0x7fff32aebfff  com.apple.Intents (1.0 - 1) <EBAA7FE2-516C-3C64-9569-280DE870B0B4> /System/Library/Frameworks/Intents.framework/Versions/A/Intents
    0x7fff32aec000 -     0x7fff32b4ffff  com.apple.framework.Apple80211 (17.0 - 1728) <533F7734-3B2E-3F8C-AAF6-971011659A95> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff32b50000 -     0x7fff32ca1fff  com.apple.CoreWiFi (3.0 - 341) <B6423C61-FA72-35FD-9D43-4F6CC39F23CB> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff32ca2000 -     0x7fff32cbcfff  com.apple.BackBoardServices (1.0 - 1.0) <A7D65AAF-EFEF-3BC9-BF87-973374EBA5D7> /System/Library/PrivateFrameworks/BackBoardServices.framework/Versions/A/BackBoardServices
    0x7fff32cbd000 -     0x7fff32cf4fff  com.apple.LDAPFramework (2.4.28 - 194.5) <156E9C09-EE7C-396E-A32C-C28362D5AAE5> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff32cf5000 -     0x7fff32cf6fff  com.apple.TrustEvaluationAgent (2.0 - 35) <2F6327D6-E9A1-3CC5-93C8-CA189B5C2D22> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff32cf7000 -     0x7fff32dfcfff  libcrypto.44.dylib (56.60.2) <EABB89E9-DE3C-3E34-A388-DA11D201E304> /usr/lib/libcrypto.44.dylib
    0x7fff32dfd000 -     0x7fff32e2afff  libssl.46.dylib (56.60.2) <B18A8F32-FC30-3811-A1FA-FC67D207D262> /usr/lib/libssl.46.dylib
    0x7fff32e2b000 -     0x7fff32edafff  com.apple.DiskImagesFramework (595.140.1 - 595.140.1) <3D758232-F6EA-3CCC-8B22-EB9DC459CB10> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff32f12000 -     0x7fff32f21fff  com.apple.RemoteServiceDiscovery (1.0 - 1.120.1) <4D674B64-AC7B-3654-8A51-E256FCD9D524> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
    0x7fff32f7f000 -     0x7fff32f82fff  com.apple.help (1.3.8 - 71) <F94CF2A6-2886-3552-A1E5-8D83452AE773> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff32f83000 -     0x7fff32f8afff  com.apple.EFILogin (2.0 - 2) <A86695A6-1567-330B-870D-805FDB9EE437> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff32f8b000 -     0x7fff32f96fff  libcsfde.dylib (554.140.2) <678CA1E1-733D-3709-A327-2208B49C6C1A> /usr/lib/libcsfde.dylib
    0x7fff32f97000 -     0x7fff32ffdfff  libcurl.4.dylib (121.101.1) <517F6BB3-5752-3B40-9107-E35C627A1E43> /usr/lib/libcurl.4.dylib
    0x7fff32ffe000 -     0x7fff33005fff  com.apple.LoginUICore (4.0 - 4.0) <19B20CB0-6E46-311A-88E4-F7C536475912> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
    0x7fff33006000 -     0x7fff33068fff  com.apple.AppSupport (1.0.0 - 29) <9DF0F117-4F1B-3E0B-A4E3-BDCAB2EB1740> /System/Library/PrivateFrameworks/AppSupport.framework/Versions/A/AppSupport
    0x7fff33108000 -     0x7fff331ccfff  com.apple.GameController (1.0 - 1) <4DE4F06A-F295-3430-B253-D1BAE4F7ED5E> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
    0x7fff331d5000 -     0x7fff331d5fff  com.apple.ApplicationServices (48 - 50) <4F5BA3E6-0A85-3250-AEA7-B7F3897B2113> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff33397000 -     0x7fff333d6fff  com.apple.AppleIDSSOAuthentication (1.0 - 1) <836444C4-6FDD-3659-81EB-1F366C9F1C71> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/Versions/A/AppleIDSSOAuthentication
    0x7fff334ea000 -     0x7fff334eafff  libHeimdalProxy.dylib (79) <2572CF4E-C22E-346A-A72F-9BD07BA56057> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
    0x7fff3359d000 -     0x7fff3359dfff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <92D76741-76FC-3010-A9C1-8885E9D5DE18> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff335c1000 -     0x7fff33604fff  com.apple.StreamingZip (1.0 - 1) <7F9BB412-0B57-3261-BAC1-8FAA2704710E> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
    0x7fff33605000 -     0x7fff33623fff  com.apple.DuetActivityScheduler (1.0 - 1) <7B51AE4F-579A-318D-93B6-FB58DE7402C3> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/Versions/A/DuetActivityScheduler
    0x7fff33638000 -     0x7fff33644fff  com.apple.IntentsFoundation (1.0 - 1) <AAEE66E2-F3D5-3689-B09B-6E1768FABC53> /System/Library/PrivateFrameworks/IntentsFoundation.framework/Versions/A/IntentsFoundation
    0x7fff33645000 -     0x7fff3364afff  com.apple.PushKit (1.0 - 1) <31E9D56F-55EF-3840-905E-BD487ABB1747> /System/Library/Frameworks/PushKit.framework/Versions/A/PushKit
    0x7fff3364b000 -     0x7fff3367efff  com.apple.C2 (1.3 - 573) <CFEF2E5F-94C4-3DEA-8F06-F68ED73E13EF> /System/Library/PrivateFrameworks/C2.framework/Versions/A/C2
    0x7fff3367f000 -     0x7fff336affff  com.apple.QuickLookThumbnailing (1.0 - 135.5) <5681E46A-FF2A-3D9C-BC39-C20EA57D0D6A> /System/Library/Frameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
    0x7fff336b0000 -     0x7fff33eb1fff  com.apple.vision.EspressoFramework (1.0 - 256.4.4) <A207A19F-47D1-38C7-A792-9E0CCC778EF3> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
    0x7fff33eb2000 -     0x7fff33ec9fff  com.apple.ANEServices (4.76 - 4.76) <3C70C879-5C89-3890-AEE6-A72BA53ACCFC> /System/Library/PrivateFrameworks/ANEServices.framework/Versions/A/ANEServices
    0x7fff33fde000 -     0x7fff33fe0fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <C2B49AAE-5792-397F-AB3A-5F59B36A7733> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
    0x7fff33fe1000 -     0x7fff33fedfff  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <D4989410-F136-3A95-8F83-9672F4869DD1> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
    0x7fff3456d000 -     0x7fff345bdfff  com.apple.ChunkingLibrary (334.1 - 334.1) <1F0C24A0-F8F0-3773-91FF-39956CF3A1F8> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff34e31000 -     0x7fff34e46fff  com.apple.CoreML.AppleNeuralEngine (1.0 - 1) <14E9F653-6DB2-3E6B-805F-C3FA91EAF4FC> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/Versions/A/AppleNeuralEngine
    0x7fff34e9c000 -     0x7fff34f07fff  com.apple.audio.midi.CoreMIDI (2.0 - 88) <074EA20A-790C-31D1-B240-05F8C937EB04> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x7fff34fcd000 -     0x7fff34fd0fff  com.apple.Cocoa (6.11 - 23) <E8E14342-DDF9-3351-B93D-8DEDBA5CAABA> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff3501a000 -     0x7fff3540efff  com.apple.AppleMediaServices (1.0 - 1) <5EB8EBFF-B2EE-3580-A990-33D63C390F8B> /System/Library/PrivateFrameworks/AppleMediaServices.framework/Versions/A/AppleMediaServices
    0x7fff35bba000 -     0x7fff35bc1fff  com.apple.DisplayServicesFW (3.1 - 380) <8054192B-AB2B-36CB-99F3-30EBC04E451F> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff36434000 -     0x7fff36454fff  com.apple.MarkupUI (1.0 - 383.6) <16B68DE7-3443-31D9-AB85-6A2988EF8F1C> /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI
    0x7fff36469000 -     0x7fff3648cfff  com.apple.openscripting (1.7 - 190) <96A579D8-4148-31DD-9752-D41F9E121051> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff3648d000 -     0x7fff36490fff  com.apple.securityhi (9.0 - 55008) <4933616C-D994-3E1E-AFEA-E1E460A1A39E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff36491000 -     0x7fff36494fff  com.apple.ink.framework (10.15 - 227) <FDE6A6E5-DDD2-31DE-9695-6148EE88005B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff36495000 -     0x7fff36498fff  com.apple.CommonPanels (1.2.6 - 101) <623B24C3-6256-388A-949B-C7A37AD72690> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff36499000 -     0x7fff364a0fff  com.apple.ImageCapture (1711.5.2.1 - 1711.5.2.1) <DF34BF94-579A-3CD7-8785-F49C06525E50> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff364a1000 -     0x7fff37691fff  com.apple.JavaScriptCore (16611 - 16611.3.10.1.6) <C81585E1-7118-3D00-849C-16485B8668C7> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff376fd000 -     0x7fff3780ffff  com.apple.AVFCapture (1.0 - 82.6) <119E6F65-DB53-38B4-B4FA-7AFB5645476D> /System/Library/PrivateFrameworks/AVFCapture.framework/Versions/A/AVFCapture
    0x7fff37810000 -     0x7fff378a3fff  com.apple.Quagga (47 - 47) <7DABFA1D-0B1C-3F38-8B71-FDA918DF066E> /System/Library/PrivateFrameworks/Quagga.framework/Versions/A/Quagga
    0x7fff378a4000 -     0x7fff37aeefff  com.apple.CMCapture (1.0 - 82.6) <FBCE95F0-81D5-38F1-8B39-88F51E3EC323> /System/Library/PrivateFrameworks/CMCapture.framework/Versions/A/CMCapture
    0x7fff384ea000 -     0x7fff384f9fff  com.apple.HID (1.0 - 1) <B6B1791D-B625-337C-8D2F-05C9F95F494B> /System/Library/PrivateFrameworks/HID.framework/Versions/A/HID
    0x7fff384fa000 -     0x7fff38621fff  com.apple.QuickLookUIFramework (5.0 - 928.5) <8661B2DA-061A-309C-BD42-9DEE6D7F9E3E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fff392c2000 -     0x7fff392c9fff  com.apple.URLFormatting (146 - 146.22) <22DEF2D9-9562-3894-B49E-EABD33DD746B> /System/Library/PrivateFrameworks/URLFormatting.framework/Versions/A/URLFormatting
    0x7fff3bd2b000 -     0x7fff3bd4dfff  com.apple.quicklook.QuickLookSupport (1.0 - 135.5) <B6FB31F8-4790-3A43-9051-58FDB5A0BB88> /System/Library/PrivateFrameworks/QuickLookSupport.framework/Versions/A/QuickLookSupport
    0x7fff3bd4e000 -     0x7fff3bde5fff  com.apple.AirPlaySync (1.0 - 2780.10.4.1) <AD221FBA-7DFB-310F-AB9C-760D0F1F37B2> /System/Library/PrivateFrameworks/AirPlaySync.framework/Versions/A/AirPlaySync
    0x7fff3c976000 -     0x7fff3c9f9fff  com.apple.CorePDF (4.0 - 529) <24987CDD-9F92-3359-AA4C-F3E9C2E9DD13> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff3c9fa000 -     0x7fff3c9fdfff  com.apple.print.framework.Print (15 - 271) <47961FDE-D450-3357-948E-CFDEFA763A7B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff3c9fe000 -     0x7fff3ca01fff  com.apple.Carbon (160 - 164) <0939DBF6-0BC9-3342-8053-1AD741298E3C> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff3cafa000 -     0x7fff3cafafff  com.apple.avfoundation (2.0 - 2020.10) <19FE20E3-D0AC-3846-A30D-E1B9EC6731C3> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff3ccb4000 -     0x7fff3ccd3fff  com.apple.private.SystemPolicy (1.0 - 1) <328482A7-11FC-3DF4-B4B3-C73796A1FEA1> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
    0x7fff3ce77000 -     0x7fff3ce94fff  com.apple.sidecar-core (1.0 - 231.0.1) <0D792284-3B63-3245-AC0C-B30AB7028133> /System/Library/PrivateFrameworks/SidecarCore.framework/Versions/A/SidecarCore
    0x7fff3ce95000 -     0x7fff3ce98fff  com.apple.QuickLookNonBaseSystem (1.0 - 1) <D371CEC5-4326-3218-A9A4-280DA8DF6D85> /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem
    0x7fff3d2b0000 -     0x7fff3d2b6fff  com.apple.FeatureFlagsSupport (1.0 - 28.60.1) <E972A36A-AD54-356D-8B85-B632DBE29898> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/Versions/A/FeatureFlagsSupport
    0x7fff3d427000 -     0x7fff3d43efff  com.apple.SafariServices.framework (16611 - 16611.3.10.1.6) <A204D970-9F32-371A-B194-A9A652A7B2AE> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
    0x7fff3d5f1000 -     0x7fff3d5fcfff  com.apple.MallocStackLogging (1.0 - 1) <80F5AFE5-59AD-39BF-9A19-C055FE2468F1> /System/Library/PrivateFrameworks/MallocStackLogging.framework/Versions/A/MallocStackLogging
    0x7fff3d611000 -     0x7fff3d623fff  libmis.dylib (274.140.2) <F4EE6883-6A50-33B0-9AF9-5131DA07E3D3> /usr/lib/libmis.dylib
    0x7fff3d640000 -     0x7fff3d7affff  com.apple.CoreHandwriting (161 - 1.2) <4A2F7C42-4376-3AB3-8B82-5E9CB99C8378> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting
    0x7fff3d7b0000 -     0x7fff3da0bfff  com.apple.imageKit (3.0 - 1100) <BB7249A7-AABA-39D2-8632-609871885248> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
    0x7fff3da0c000 -     0x7fff3db22fff  com.apple.PencilKit (1.0 - 1) <3B310B07-A578-356A-B7B6-696EAC2CB933> /System/Library/Frameworks/PencilKit.framework/Versions/A/PencilKit
    0x7fff3db23000 -     0x7fff3db34fff  com.apple.sidecar-ui (1.0 - 231.0.1) <2BFBDB5D-449F-312D-8DB0-BAF97EAA1C5D> /System/Library/PrivateFrameworks/SidecarUI.framework/Versions/A/SidecarUI
    0x7fff3e157000 -     0x7fff3e1b9fff  com.apple.ImageCaptureCore (1711.5.2.1 - 1711.5.2.1) <B2AF26AA-B52B-3B72-8AB2-CD9EE596838B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff3e1ba000 -     0x7fff3e1dffff  com.apple.quartzfilters (1.10.0 - 98) <2B9E46C1-57D6-3432-BADF-A1F3A96B138D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
    0x7fff3e89b000 -     0x7fff3e9c7fff  com.apple.AnnotationKit (1.0 - 383.6) <4351CE42-686C-38AD-AFB1-14409718883A> /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit
    0x7fff3e9c8000 -     0x7fff3ee68fff  com.apple.QuartzComposer (5.1 - 383) <28A84577-F578-3CCC-8163-F4417FEBCA57> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
    0x7fff3ee69000 -     0x7fff3ef51fff  com.apple.PDFKit (1.0 - 950.40.3) <A9CE6759-E17D-3C9C-81A4-5ABEDFC6E236> /System/Library/Frameworks/PDFKit.framework/Versions/A/PDFKit
    0x7fff40eb0000 -     0x7fff40eb3fff  com.apple.quartzframework (1.5 - 25) <33CBA95A-CD84-3348-9187-F5255FF5966C> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff412d8000 -     0x7fff412f6fff  libCGInterfaces.dylib (544.4) <4C0BFB8B-23F1-3C97-A945-6D0CECE4F7A8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff43885000 -     0x7fff43af8fff  com.apple.RawCamera.bundle (9.10.0 - 1450.3) <9CF8B9F4-AA5E-335B-A17F-BBBFDC66E9C5> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff463cb000 -     0x7fff463d6fff  libGPUSupportMercury.dylib (18.5.9) <833F5327-1ABE-3378-8294-1342F2D4321A> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
    0x7fff47a01000 -     0x7fff47a41fff  com.apple.osanalytics.OSAnalytics (1.0 - 1) <0827F522-B66F-33E7-8670-7DC967961979> /System/Library/PrivateFrameworks/OSAnalytics.framework/Versions/A/OSAnalytics
    0x7fff516c0000 -     0x7fff5175ffff  com.apple.Symbolication (12.5 - 64544.70.1) <6D9C8333-6369-3964-A972-5BF99B0AC549> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff53fe7000 -     0x7fff5401dfff  com.apple.ReplayKit (1.0 - 1) <438FB59E-E6C0-3336-896D-05F2FEE1E87B> /System/Library/Frameworks/ReplayKit.framework/Versions/A/ReplayKit
    0x7fff55614000 -     0x7fff55617fff  com.apple.ForceFeedback (1.0.6 - 1.0.6) <21453E43-7BA5-3E6B-8CA4-CD66F4E1FEF0> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback
    0x7fff60ce7000 -     0x7fff613aefff  libclh.dylib (16.0.13) <AD3CC731-03BB-31CE-BFCF-005C48B41878> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x7fff613af000 -     0x7fff61cc2fff  com.apple.GeForceGLDriver (16.0.13 - 16.0.0) <25DF5520-7E62-3F79-BB03-63D9A55AA38D> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0x7fff65cc9000 -     0x7fff661dcfff  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (16.5.4 - 16.0.5) <EE702423-9F6F-3A74-8951-052D4BB60834> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver
    0x7fff6bb5b000 -     0x7fff6bb61fff  libCoreFSCache.dylib (200.11) <A10745F3-1533-329E-B42A-6DE60871F7C0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff6bb62000 -     0x7fff6bb66fff  libCoreVMClient.dylib (200.11) <3370F902-DA03-3297-804C-EB5F7FD67A01> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff6bb67000 -     0x7fff6bb76fff  com.apple.opengl (18.5.9 - 18.5.9) <2A421CC5-4D60-339C-9772-3AC991232BD8> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff6bb77000 -     0x7fff6bb79fff  libCVMSPluginSupport.dylib (18.5.9) <BF44FEB3-FB8E-3FD8-8988-AD56AD53CFD4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff6bb7a000 -     0x7fff6bb82fff  libGFXShared.dylib (18.5.9) <C4751529-359A-3ECC-84B2-74A23EFAD42A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff6bb83000 -     0x7fff6bbb6fff  libGLImage.dylib (18.5.9) <C153E192-20A3-3F7D-A897-533DACE748EC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff6bbb7000 -     0x7fff6bbf3fff  libGLU.dylib (18.5.9) <8275A6AB-AAD5-3222-A80B-411C0FAFCA63> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff6bbf4000 -     0x7fff6bd87fff  libGLProgrammability.dylib (18.5.9) <A8A0ED0E-5850-31E2-AAF5-6B434239551A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff6bd88000 -     0x7fff6bd92fff  libGL.dylib (18.5.9) <C6BE589B-CD26-3142-BD18-10C13D404904> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff6bd93000 -     0x7fff6bf10fff  GLEngine (18.5.9) <108F9A6E-A502-3C2D-AD83-1852F8539E26> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
    0x7fff6bf11000 -     0x7fff6bf39fff  GLRendererFloat (18.5.9) <6554D864-074A-3E97-AD03-4111E27B0E06> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
    0x7fff6d1d2000 -     0x7fff6d22afff  com.apple.opencl (4.6 - 4.6) <79DA4138-12AB-3561-9967-D49EFB14B437> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff6e2d4000 -     0x7fff6e2dbfff  com.apple.agl (3.3.4 - AGL-3.3.3) <92B718FF-EBC6-36DD-9711-5035FFE32DE4> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x7fff6e2dc000 -     0x7fff6e3c3fff  com.apple.audio.AVFAudio (1.0 - 477.88) <B2C8331B-60D4-3651-B9A0-B9914A230C36> /System/Library/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
    0x7fff6f945000 -     0x7fff6f957fff  com.apple.CMImaging (1.0 - 82.6) <F60EEDA0-C221-3B51-B537-EE2FE48E19E9> /System/Library/PrivateFrameworks/CMImaging.framework/Versions/A/CMImaging
    0x7fff73c59000 -     0x7fff73c64fff  com.apple.SymptomAnalytics (1.0 - 1431.140.1) <B5FD8A0F-E68E-3663-9FA0-7BE8D87AF51E> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/Versions/A/SymptomAnalytics
    0x7fff73e7a000 -     0x7fff73e92fff  com.apple.SymptomPresentationFeed (1.0 - 1431.140.1) <2BCD1681-9B58-33E4-9AD2-448A686BDA9F> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/Versions/A/SymptomPresentationFeed
    0x7fff77a0a000 -     0x7fff77a11fff  libRosetta.dylib (203.58) <26D08622-69F5-32DB-80D2-9B4651A9F0CC> /usr/lib/libRosetta.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=1.3G resident=0K(0%) swapped_out_or_unallocated=1.3G(100%)
Writable regions: Total=1.6G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.6G(100%)

                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Activity Tracing                   256K        1 
CG backing stores                 1440K        6 
CoreAnimation                        4K        1 
CoreUI image data                   76K        1 
Dispatch continuations            64.0M        1 
Foundation                          16K        1 
Kernel Alloc Once                    8K        1 
MALLOC                           279.1M      531 
MALLOC guard page                   32K        8 
MALLOC_LARGE (reserved)           9024K       55         reserved VM address space (unallocated)
PROTECTED_MEMORY                     4K        1 
STACK GUARD                       56.1M       14 
Stack                             29.6M       14 
VM_ALLOCATE                      468.7M      394 
VM_ALLOCATE (reserved)           768.0M        3         reserved VM address space (unallocated)
__DATA                            60.6M      804 
__DATA_CONST                      29.5M      249 
__DATA_DIRTY                      1142K      157 
__FONT_DATA                          4K        1 
__GLSLBUILTINS                    5176K        1 
__LINKEDIT                       567.0M      313 
__OBJC_RO                         70.3M        1 
__OBJC_RW                         2496K        2 
__TEXT                           722.1M      717 
__UNICODE                          588K        1 
mapped file                       81.4M       19 
shared memory                      760K       15 
===========                     =======  ======= 
TOTAL                              3.1G     3312 
TOTAL, minus reserved VM space     2.4G     3312 
looooo commented 2 years ago

Running the built-in tests generates a segmentation fault on this test:

Is this also failing with the current weekly-build?

stepheneb commented 2 years ago

Yes,

$ ~/Downloads/FreeCAD.app/Contents/MacOS/FreeCAD -t 0
...
test_export_svg (drafttests.test_svg.DraftSVG)
Create some figures and export them to an SVG file. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftSVG'
  Test 'importSVG.export'
  file=/Users/stephen/Downloads/FreeCAD.app/Contents/Resources/share/Mod/Draft/drafttest/out_test.svg
  exists=False
  Arguments to placeholder function
  p1=/Users/stephen/Downloads/FreeCAD.app/Contents/Resources/share/Mod/Draft/drafttest/out_test.svg; p2=None
  p3=None; p4=None
  p5=None
  #-----------------------------------------------------#
  #    This test is not implemented currently
  #-----------------------------------------------------#
  Automatic PASS
ok
test_get_svg_from_arch_space_with_zero_vector (drafttests.test_svg.DraftSVG)
Try to get a svg string from an Arch Space with a zero-vector as direction. ... 
------------------------------------------------------------------------------
  Temporary document 'DraftSVG'
/Users/stephen/Downloads/FreeCAD.app/Contents/MacOS/FreeCAD: line 19: 34921 Segmentation fault: 11  "${PREFIX}/bin/freecad" $@
stepheneb commented 2 years ago

Also noticed the app icons are different. image

looooo commented 2 years ago

@stepheneb ok, so we should report this issue to FreeCAD. Not sure about the icon issue.