Compare commits

...

16 Commits

Author SHA1 Message Date
Ryan Volz
39df06e488 Fix copying metapackage (now with .conda extension) to dist directory 2025-03-14 17:24:45 -04:00
Ryan Volz
cc22a509ed Re-render 2025.03.14 again 2025-03-14 16:48:29 -04:00
Ryan Volz
42557de690 Re-render 2025.03.14 2025-03-14 15:05:57 -04:00
Ryan Volz
e75596daee Update link to Zadig to point to GitHub release 2025-03-13 19:00:07 -04:00
Ryan Volz
60a03f2712 Re-render 2025.03.13 2025-03-13 10:11:27 -04:00
Ryan Volz
a269619ce3 Constrain to mamba <2, since mamba 2 gives me OOM errors on Windows 2025-03-13 10:06:36 -04:00
Ryan Volz
3992c4cc89 Re-render 2025.03.12 2025-03-12 12:07:47 -04:00
Ryan Volz
315fb797db Unset CONDARC when running sh installer, b/c it errors with no-rc option 2025-03-11 17:31:05 -04:00
Ryan Volz
fafef943bf Re-render 2025-03-11 16:41:01 -04:00
Ryan Volz
85c47dbcaf Mamba 2 no longer depends on conda, so add conda dep to installer 2025-03-11 15:21:18 -04:00
Ryan Volz
16b8c79246 Update setup-micromamba action 2025-03-11 11:42:43 -04:00
Ryan Volz
b454867514 Update README 2025-03-11 11:38:37 -04:00
Ryan Volz
ca06616777 Re-render 2025.03.11 2025-03-11 11:29:57 -04:00
Ryan Volz
7ddb132e7c Update NSIS template and installer spec so we can re-render. 2025-03-11 11:29:10 -04:00
Ryan Volz
e8eb6a3709 Bump bundled micromamba version (on Unix) to match current miniforge 2025-03-11 11:28:16 -04:00
Ryan Volz
c2a17b750e Add gnuradio-funcube and soapysdr-module-fcdpp for linux. 2025-03-11 11:22:39 -04:00
30 changed files with 11744 additions and 9152 deletions

2
.gitattributes vendored
View File

@ -1,2 +1,4 @@
# github helper pieces to make some files not show up in diffs automatically
installer_specs/*.lock linguist-generated=true
# SCM syntax highlighting & preventing 3-way merges
pixi.lock merge=binary linguist-language=YAML linguist-generated=true

View File

@ -60,7 +60,7 @@ jobs:
run: brew install coreutils
- name: Install python environment
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
environment-file: installer_specs/buildenv.conda-lock.yml
environment-name: buildenv
@ -99,6 +99,7 @@ jobs:
ARCH: ${{ matrix.ARCH }}
INSTALL_PATH: ${{ github.workspace }}/test_installation
run: |
unset CONDARC
bash dist/$DISTNAME-*-$OS_NAME-$ARCH.sh -b -p $INSTALL_PATH
eval "$($INSTALL_PATH/bin/conda shell.bash hook)"
conda info

4
.gitignore vendored
View File

@ -138,3 +138,7 @@ dmypy.json
cython_debug/
.vscode/
# pixi environments
.pixi
*.egg-info

View File

@ -15,24 +15,26 @@ and support for the following SDR devices and device libraries:
| [Airspy R2/Mini/HF+][2] | airspy/airspyhf ([setup](#airspy-r2-mini-hf)) |
| [BladeRF][3] | bladeRF ([setup](#bladerf)) |
| [Ettus USRPs][4] | UHD ([setup](#uhd-ettus-usrp)) |
| [HackRF][5] | HackRF ([setup](#hackrf)) |
| [LimeSDR][6] | Lime Suite ([setup](#limesdr)) |
| [Mirics MSi001 + MSi2500 SDR devices][7] | libmirisdr ([setup](#mirisdr)) |
| [Red Pitaya][8] | SoapyRedPitaya |
| [RFSpace/NetSDR/CloudSDR][9] | SoapyNetSDR |
| [RTL-SDR][10] | rtl-sdr ([setup](#rtl-sdr)) |
| [Funcube Dongle Pro/Pro+][5] | SoapyFCDPP / gr-funcube |
| [HackRF][6] | HackRF ([setup](#hackrf)) |
| [LimeSDR][7] | Lime Suite ([setup](#limesdr)) |
| [Mirics MSi001 + MSi2500 SDR devices][8] | libmirisdr ([setup](#mirisdr)) |
| [Red Pitaya][9] | SoapyRedPitaya |
| [RFSpace/NetSDR/CloudSDR][10] | SoapyNetSDR |
| [RTL-SDR][11] | rtl-sdr ([setup](#rtl-sdr)) |
| Sound Card / Audio devices | SoapyAudio |
[1]: https://www.analog.com/en/design-center/evaluation-hardware-and-software/evaluation-boards-kits/adalm-pluto.html
[2]: https://airspy.com/
[3]: https://www.nuand.com/
[4]: https://www.ettus.com/products/
[5]: https://greatscottgadgets.com/hackrf/
[6]: https://limemicro.com/products/boards/
[7]: https://github.com/f4exb/libmirisdr-4
[8]: https://redpitaya.com/
[9]: http://www.rfspace.com/RFSPACE/Home.html
[10]: https://www.rtl-sdr.com/buy-rtl-sdr-dvb-t-dongles/
[5]: https://www.funcubedongle.com/
[6]: https://greatscottgadgets.com/hackrf/
[7]: https://limemicro.com/products/boards/
[8]: https://github.com/f4exb/libmirisdr-4
[9]: https://redpitaya.com/
[10]: http://www.rfspace.com/RFSPACE/Home.html
[11]: https://www.rtl-sdr.com/buy-rtl-sdr-dvb-t-dongles/
The complete list of packages can be found [here](https://github.com/ryanvolz/radioconda/blob/master/radioconda.yaml). You can [**suggest additional software to include**](https://github.com/ryanvolz/radioconda/issues) by filing an [issue](https://github.com/ryanvolz/radioconda/issues). If you've built additional software from source on top of radioconda, [**document your results**](https://github.com/ryanvolz/radioconda/issues) in an [issue](https://github.com/ryanvolz/radioconda/issues) to help others (and help me in packaging it!).
@ -44,18 +46,16 @@ Once installed, you will have a fully functional conda distribution/environment,
Radioconda installers are available here: https://github.com/ryanvolz/radioconda/releases.
| OS | Architecture | Installer Type | Download |
| ------- | ------------------------- | -------------- | -------------------------------------------------------------------------------------------------------------------- |
| Linux | x86_64 (amd64) | Command-line | [radioconda-Linux-x86_64.sh](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-Linux-x86_64.sh) |
| Linux | aarch64 (arm64) | Command-line | [radioconda-Linux-aarch64.sh](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-Linux-aarch64.sh) |
| Linux | ppc64le (POWER8/9) | Command-line | [radioconda-Linux-ppc64le.sh](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-Linux-ppc64le.sh) |
| macOS | x86_64 (Intel) | Command-line | [radioconda-MacOSX-x86_64.sh](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-MacOSX-x86_64.sh) |
| macOS | x86_64 (Intel) | Graphical | [radioconda-MacOSX-x86_64.pkg](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-MacOSX-x86_64.pkg) |
| macOS | arm64 (Apple Silicon)[^1] | Command-line | [radioconda-MacOSX-arm64.sh](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-MacOSX-arm64.sh) |
| macOS | arm64 (Apple Silicon)[^1] | Graphical | [radioconda-MacOSX-arm64.pkg](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-MacOSX-arm64.pkg) |
| Windows | x86_64 (amd64) | Graphical | [radioconda-Windows-x86_64.exe](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-Windows-x86_64.exe) |
[^1]: Apple silicon builds are experimental and haven't had testing like the other platforms.
| OS | Architecture | Installer Type | Download |
| ------- | --------------------- | -------------- | -------------------------------------------------------------------------------------------------------------------- |
| Linux | x86_64 (amd64) | Command-line | [radioconda-Linux-x86_64.sh](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-Linux-x86_64.sh) |
| Linux | aarch64 (arm64) | Command-line | [radioconda-Linux-aarch64.sh](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-Linux-aarch64.sh) |
| Linux | ppc64le (POWER8/9) | Command-line | [radioconda-Linux-ppc64le.sh](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-Linux-ppc64le.sh) |
| macOS | x86_64 (Intel) | Command-line | [radioconda-MacOSX-x86_64.sh](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-MacOSX-x86_64.sh) |
| macOS | x86_64 (Intel) | Graphical | [radioconda-MacOSX-x86_64.pkg](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-MacOSX-x86_64.pkg) |
| macOS | arm64 (Apple Silicon) | Command-line | [radioconda-MacOSX-arm64.sh](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-MacOSX-arm64.sh) |
| macOS | arm64 (Apple Silicon) | Graphical | [radioconda-MacOSX-arm64.pkg](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-MacOSX-arm64.pkg) |
| Windows | x86_64 (amd64) | Graphical | [radioconda-Windows-x86_64.exe](https://glare-sable.vercel.app/ryanvolz/radioconda/radioconda-.*-Windows-x86_64.exe) |
## Install
@ -311,7 +311,7 @@ Install a udev rule by creating a link into your radioconda installation:
Many USB devices use libusb and need a WinUSB driver installed on Windows. Follow this procedure to install the driver for your device:
1. Download and run [Zadig](https://zadig.akeo.ie/)
1. Download and run [Zadig](https://github.com/pbatard/libwdi/releases/download/v1.5.1/zadig-2.9.exe)
2. Select your device
- It may be auto-selected since it is missing a driver

View File

@ -93,7 +93,7 @@ if __name__ == "__main__":
)
parser.add_argument(
"--micromamba_version",
default="1.3.1",
default="1.5.12",
help=(
"Version of micromamba to download and bundle into the installer."
" (default: %(default)s)"

View File

@ -146,7 +146,7 @@ if __name__ == "__main__":
sys.exit(1)
bldpkgs_dir = pathlib.Path(conda_build_config.croot) / env_dict["platform"]
pkg_paths = list(bldpkgs_dir.glob(f"{env_dict['name']}-{env_dict['version']}*.bz2"))
pkg_paths = list(bldpkgs_dir.glob(f"{env_dict['name']}-{env_dict['version']}*.conda"))
pkg_out_dir = args.output_dir / env_dict["platform"]
pkg_out_dir.mkdir(parents=True, exist_ok=True)

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,446 +1,471 @@
# Generated by conda-lock.
# platform: linux-64
# input_hash: e303fe6f96435ccd8a6086da314e7d83fc9cea2590e278908232175cfa22f3e3
# input_hash: 7100ac7bf64ca1b64db833332c7c66e99d313a7ae60ba3b5634e4448d37fe041
@EXPLICIT
https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81
https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda#2f4327a1cbe7f022401b236e915a5fef
https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45
https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6
https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb
https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda#cbbe59391138ea5ad3658c76912e147f
https://conda.anaconda.org/conda-forge/linux-64/hicolor-icon-theme-0.17-ha770c72_2.tar.bz2#bbf6f174dcd3254e19a2f5d2295ce808
https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_1.conda#33b7851c39c25da14f6a233a8ccbeeca
https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-hc0a3c3a_7.conda#53ebd4c833fa01cb2c6353e99f905406
https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2#9a66894dfd07c4510beb6b3f9672ccc0
https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2#878f923dd6acc8aeb47a75da6c4098be
https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda#d786502c97404c94d7d58d258a445a65
https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-leo-data-1.0.0.post105+12a346f-unix_0.tar.bz2#07a7b1d08dcc3bdb0939dfb23a648b02
https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h77fa898_7.conda#abf3fec87c2563697defa759dec3d639
https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab
https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h77fa898_7.conda#72ec1b1b04c4d15d4204ece1ecea5978
https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.11-hd590300_1.conda#0bb492cca54017ea314b809b1ee3a176
https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.0-hac33072_0.conda#93a3bf248e5bc729807db198a9c89f07
https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2#d9c69a24ad678ffce24c6543a0176b00
https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda#69b8b6202a07720f448be700e300ccf4
https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda#dcde58ff9a1f30b0037a2315d1846d1f
https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda#418c6ca5929a611cbd69204907a83995
https://conda.anaconda.org/conda-forge/linux-64/epoxy-1.5.10-h166bdaf_1.tar.bz2#a089d06164afd2d511347d3f87214e0b
https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda#35ef8bc24bd34074ebae3c943d551728
https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2#ac7bc6a654f8f41b352b38f4051135f8
https://conda.anaconda.org/conda-forge/linux-64/gettext-tools-0.22.5-h59595ed_2.conda#985f2f453fb72408d6b6f1be0f324033
https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2#cddaf2c63ea4a5901cf09524c490ecdc
https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda#e358c7c5f6824c272b5034b3816438a7
https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda#f87c7b7c2cb45f323ffbce941c78ab7c
https://conda.anaconda.org/conda-forge/linux-64/gstreamer-orc-0.4.38-hd590300_0.conda#0403d9bfababea7e9d65741144410a70
https://conda.anaconda.org/conda-forge/linux-64/gtest-1.14.0-h00ab1b0_1.conda#d362a81b815334cc921b9362782881f3
https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff
https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3
https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2#a8832b479f93521a9e7b5b743803be51
https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f
https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_h59595ed_0.conda#682bdbe046a68f749769b492f3625c5c
https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa
https://conda.anaconda.org/conda-forge/linux-64/libaio-0.3.113-h166bdaf_0.tar.bz2#06656768fe0cb08ee3ccc231a1aaf365
https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.22.5-h661eb56_2.conda#dd197c968bf9760bba0031888d431ede
https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hd590300_1.conda#aec6c91c7371c26392a06708a73c70e5
https://conda.anaconda.org/conda-forge/linux-64/libcodec2-1.0.3-h7f98852_0.tar.bz2#34d118dd0a3bbfd207f2bb0ac01cc7d7
https://conda.anaconda.org/conda-forge/linux-64/libcorrect-0.0.0-h0b41bf4_0.conda#66b045c89683a17ce93e0dcad66e8c12
https://conda.anaconda.org/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2#3f3258d8f841fbac63b36b75bdac1afd
https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.20-hd590300_0.conda#8e88f9389f1165d7c0936fe40d9a9a79
https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda#172bf1cd1ff8629f2b1179945ed45055
https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda#e7ba12deb7020dd080c6c70e7b6f6a3d
https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2#d645c6d2ac96843a2bfaccd2d62b3ac3
https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-0.22.5-h59595ed_2.conda#172bcc51059416e7ce99e7b528cede83
https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-hca663fb_7.conda#c0bd771f09a326fdcd95a60b617795bf
https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda#d66573916ffcf376178462f1b61c941e
https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda#ea25936bb4080d843790b586850f82b8
https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda#30fd6e37fe21f86f4bd26d6ee73eeec7
https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2#6e8cc2173440d77708196c5b93771680
https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2#15345e56d527b330e1cacbdf58676e8f
https://conda.anaconda.org/conda-forge/linux-64/libpcap-1.10.4-hd590300_1.conda#831d42d0b3494f267d9e85a95757ab88
https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda#48f4330bfcd959c3cfb704d424903c82
https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2#c3788462a6fbddafdb413a9f9053e58d
https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2#93840744a8552e9ebf6bb1a5dffc125a
https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2#7245a044b4a1980ed83196176b78b73a
https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda#40b61aab5c7ba9ff276c41cfffe6b80b
https://conda.anaconda.org/conda-forge/linux-64/libuv-1.48.0-hd590300_0.conda#7e8b914b1062dd4386e3de4d82a3ead6
https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.0-h59595ed_0.conda#01c76c6d71097a0f3bd8683a8f255123
https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda#b26e8aa824079e1be0294e7152ca4559
https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda#5aa797f8787fe7a17d1b0821485b5adc
https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h4ab18f5_6.conda#27329162c0dc732bcf67a4e0cd488125
https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0
https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.32.6-h59595ed_0.conda#9160cdeb523a1b20cf8d2a0bf821f45d
https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda#fcea371545eda051b6deafb24889fc69
https://conda.anaconda.org/conda-forge/linux-64/nettle-3.9.1-h7ab15ed_0.conda#2bf1915cc107738811368afcb0993a59
https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda#da0ec11a6454ae19bff5b02ed881a2b1
https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.2-hd590300_1.conda#c66f837ac65e4d1cdeb80e2a1d5fcc3d
https://conda.anaconda.org/conda-forge/linux-64/openh264-2.4.1-h59595ed_0.conda#3dfcf61b8e78af08110f5229f79580af
https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.0-h4ab18f5_3.conda#12ea6d0d4ed54530eaed18e4835c1f7c
https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda#71004cbf7924e19c02746ccde9fd7123
https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2#22dad4df6e8630e8dff2428f6f6a7036
https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda#2c97dd90633508b422c11bd3018206ab
https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda#843bbb8ace1d64ac50d64639ff38b014
https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.1.0-hac33072_0.conda#2a08edb7cd75e56623f2712292a97325
https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2#6c99772d483f566d59e25037fea2c4b1
https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2#e7f6ed84d4623d52ee581325c1587a6b
https://conda.anaconda.org/conda-forge/linux-64/xorg-compositeproto-0.4.2-h7f98852_1001.tar.bz2#8bf27eeb636d3acce5c6cb570ba63487
https://conda.anaconda.org/conda-forge/linux-64/xorg-damageproto-1.2.1-h7f98852_1002.tar.bz2#58c9bb067637c5a13a045a7124eeb027
https://conda.anaconda.org/conda-forge/linux-64/xorg-inputproto-2.3.2-h7f98852_1002.tar.bz2#bcd1b3396ec6960cbc1d2855a9e60b2b
https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2#4b230e8381279d76131116660f5a241a
https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda#b462a33c0be1421532f28bfe8f4a7514
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda#2c80dc38fface310c9bd81b17037fee5
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2#be93aabceefa2fac576e971aef407908
https://conda.anaconda.org/conda-forge/linux-64/xorg-randrproto-1.5.0-h7f98852_1001.tar.bz2#68cce654461713977dac6f9ac1bce89a
https://conda.anaconda.org/conda-forge/linux-64/xorg-recordproto-1.14.2-h7f98852_1002.tar.bz2#2f835e6c386e73c6faaddfe9eda67e98
https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2#06feff3d2634e3097ce2fe681474b534
https://conda.anaconda.org/conda-forge/linux-64/xorg-util-macros-1.19.3-h7f98852_0.tar.bz2#b1780cc89cf3949f670d6ca2aa6a7e42
https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda#bce9f945da8ad2ae9b1d7165a64d0f87
https://conda.anaconda.org/conda-forge/linux-64/xorg-xf86vidmodeproto-2.3.1-h7f98852_1002.tar.bz2#3ceea9668625c18f19530de98b15d5b0
https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2#b4a4381d54784606820704f7b5f05a15
https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0
https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2#4cb3ad778ec2d5a7acbdf254eb1c42ae
https://conda.anaconda.org/conda-forge/linux-64/codec2-1.0.3-h7f98852_0.tar.bz2#831f63cfa79af399d939ccf3abced6bf
https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.2-h59595ed_0.conda#53fb86322bdb89496d7579fe3f02fd61
https://conda.anaconda.org/conda-forge/linux-64/glog-0.6.0-h6f12383_0.tar.bz2#b31f3565cb84435407594e548a2fb7b2
https://conda.anaconda.org/conda-forge/linux-64/jack-1.9.22-h7c63dc7_2.conda#f56277b7f079f1b13cbf7fb9b4f194c4
https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.22.5-h661eb56_2.conda#02e41ab5834dcdcc8590cf29d9526f50
https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hd590300_1.conda#f07002e225d7a60a694d42a7bf5ff53f
https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hd590300_1.conda#5fc11c6020d421960607d821310fcd4d
https://conda.anaconda.org/conda-forge/linux-64/libcap-2.69-h0f662aa_0.conda#25cb5999faa414e5ccb2c1388f62d3d5
https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.120-hd590300_0.conda#7c3071bdf1d28b331a06bda6e85ab607
https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1
https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda#a1cfcc585f0c42bf8d5546bb1dfb668d
https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-devel-0.22.5-h59595ed_2.conda#b63d9b6da3653179a278077f0de20014
https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_7.conda#1b84f26d9f4f6026e179e7805d5a15cd
https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda#700ac6ea6d53d5510591c4344d5c989a
https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda#009981dd9cfcaa4dbfa25ffaed86bcae
https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda#6945825cebd2aeb16af4c69d97c32c13
https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.3-h2797004_0.conda#b3316cbe90249da4f8e84cd66e1cc55b
https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda#1f5a58e686b13bcfde88b93f547d23fe
https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2#309dec04b70a3cc0f1e84a4013683bc0
https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda#33277193f5b92bad9fdd230eb700929c
https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-hc051c1a_0.conda#5d801a4906adc712d480afc362623b59
https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.3.0-hf1915f5_4.conda#784a4df6676c581ca624fbe460703a6d
https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-system-1.0.0-1.tar.bz2#577a4bd049737b11a24524e39a16a1f3
https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2#56ee94e34b71742bbdfa832c974e47a8
https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.43-hcad00b1_0.conda#8292dea9e022d9610a11fce5e0896ed8
https://conda.anaconda.org/conda-forge/linux-64/perl-5.32.1-7_hd590300_perl5.conda#f2cfec9406850991f4e3d960cc9e3321
https://conda.anaconda.org/conda-forge/linux-64/portaudio-19.6.0-h7c63dc7_9.conda#893f2c33af6b03cfd04820a8c31f5798
https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda#47d31b792659ce70f470b5c82fdfb7a4
https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.12.0-hd2e6256_2.conda#f37afc6ce10d45b9fae2f55ddc635b9f
https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda#d453b98d9c83e71da0741bb0ff4d76bc
https://conda.anaconda.org/conda-forge/linux-64/volk-3.1.2-h59595ed_0.conda#86edf118c8397da664d9a1a1451df24c
https://conda.anaconda.org/conda-forge/linux-64/volk-gnss-sdr-0.0.18-hac33072_19.conda#95ae251b88a08a69b268d9d9c3018011
https://conda.anaconda.org/conda-forge/linux-64/wayland-1.22.0-h8c25dac_1.conda#bfe70f700e76c87e0074c3e308513e79
https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2#65ad6e1eb4aed2b0611855aff05e04f6
https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda#93ee23f12bc2e684548181256edd2cf6
https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h4ab18f5_6.conda#559d338a4234c2ad6e676f460a093e67
https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda#4d056880988120e29d75bfff282e0f45
https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hd590300_1.conda#39f910d205726805a958da408ca194ba
https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-nompi_hc118613_108.conda#6fa90698000b05dfe8ce6515794fe71a
https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda#9ae35c3d96db2c94ce0cef86efdfa2cb
https://conda.anaconda.org/conda-forge/linux-64/gettext-0.22.5-h59595ed_2.conda#219ba82e95d7614cf7140d2a4afc0926
https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda#cd95826dbd331ed1be26bdf401432844
https://conda.anaconda.org/conda-forge/linux-64/libboost-1.82.0-h6fcfa73_6.conda#05c40141d4184953616797d5c3d7947f
https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.2-hf974151_0.conda#72724f6a78ecb15559396966226d5838
https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.10.0-default_h5622ce7_1001.conda#fc2d5b79c2d3f8568fbab31db7ae02f3
https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-hb3ce162_4.conda#8a35df3cbc0c8b12cc8af9473ae75eef
https://conda.anaconda.org/conda-forge/linux-64/libllvm18-18.1.6-hb77312f_0.conda#1246fc4b9f4db452e69cc297967d4b3e
https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_h413a1c8_0.conda#a356024784da6dfd4683dc5ecf45b155
https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.20.0-hb90f79a_0.conda#9ce07c1750e779c9d4cc968047f78b0d
https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-h1dd3fc0_3.conda#66f03896ffbe1a110ffda05c7a856504
https://conda.anaconda.org/conda-forge/linux-64/libudev1-255-h3f72095_1.conda#1be97c93dfc786de0f3f68a64e28b503
https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda#e71f31f8cfb0a91439f2086fc8aa0461
https://conda.anaconda.org/conda-forge/linux-64/lua-5.4.6-h2973eb6_1.conda#a8e850a97a73e2d297385ab468ea16d3
https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.3.0-hca2cd23_4.conda#1b50eebe2a738a3146c154d2eceaa8b6
https://conda.anaconda.org/conda-forge/linux-64/nss-3.100-hca3bf56_0.conda#949c4a82290ee58b3c970cef4bcfd4ad
https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda#ac68acfa8b558ed406c75e98d3428d7b
https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-hd590300_1.conda#9bfac7ccd94d54fd21a0501296d60424
https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.0-h8ee46fc_1.conda#632413adcd8bc16b515cab87a2932913
https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-hd590300_1.conda#e995b155d938b6779da6ace6c6b13816
https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.1-h8ee46fc_1.conda#90108a432fb5c6150ccfee3f03388656
https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-h8ee46fc_0.conda#077b6e8ad6a3ddb741fce2496dd01bec
https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b
https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda#f730d54ba9cd543666d7220c9f7ed563
https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda#5e4c0743c70186509d1412e03c2d8dfa
https://conda.anaconda.org/conda-forge/linux-64/bcrypt-4.1.3-py311h5ecf98a_0.conda#93198573edfc9277806c5a5df698ff51
https://conda.anaconda.org/conda-forge/noarch/bidict-0.23.1-pyhd8ed1ab_0.conda#c9916c3975b19f470218f415701d6362
https://conda.anaconda.org/conda-forge/noarch/blinker-1.8.2-pyhd8ed1ab_0.conda#cf85c002319c15e9721934104aaa1137
https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hd590300_1.conda#f27a24d46e3ea7b70a1f98e50c62508f
https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hb755f60_1.conda#cce9e7c3f1c307f2a5fb08a2922d6164
https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a
https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda#0876280e409658fc6f9e75d035960333
https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda#7f4a9e3fcff3f6356ae99244a014da6a
https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda#f3ad426304898027fc619827ff428eca
https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99
https://conda.anaconda.org/conda-forge/noarch/construct-2.10.70-pyhd8ed1ab_0.conda#58e88566bfbbf9d3ffbeda3290e7f4f0
https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda#5cd86562580f274031ede6aa6aa24441
https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2#ecfff944ba3960ecb334b9a2663d708d
https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364
https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_0.conda#e8cd5d629f65bdf0f3bb312cde14659e
https://conda.anaconda.org/conda-forge/linux-64/ephem-4.1.5-py311h459d7ec_1.conda#371ea695a0db809a86e49324eb171ff6
https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda#8d652ea2ee8eaee02ed8dc820bc794aa
https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda#e16be50e378d8a4533b989035b196ab8
https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda#0f69b688f52ff6da70bccb7ff7001d1d
https://conda.anaconda.org/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_0.conda#650a7807e689642dddd3590eb817beed
https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.12-hb9ae30d_0.conda#201db6c2d9a3c5e46573ac4cb2e92f4f
https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.80.2-hb6ce0ca_0.conda#a965aeaf060289528a3fbe09326edae2
https://conda.anaconda.org/conda-forge/linux-64/greenlet-3.0.3-py311hb755f60_0.conda#6f4b03b4d1e0da0962ea02113382677c
https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda#c0cc1420498b17414d8617d0b9f506ca
https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_0.conda#ff7ca04134ee8dde1d7cf491a78ef7c7
https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.5-py311h9547e67_1.conda#2c65bdf442b0d37aad080c8a4e0d452f
https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda#51bb7010fc86f70eee639b4bb7a894f5
https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-22_linux64_openblas.conda#1a2a0cd3153464fee6646f3dd6dad9b8
https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp15-15.0.7-default_h127d8a8_5.conda#d0a9633b53cdc319b8a1a532ae7822b8
https://conda.anaconda.org/conda-forge/linux-64/libclang13-18.1.6-default_h5d6823c_0.conda#fbe666f653068958eb27f549cb12f202
https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h4637d8d_4.conda#d4529f4dff3057982a7617c7ac58fde3
https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_0.conda#f21c27f076a07907e70c49bb57bd0f20
https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda#ee48bf17cc83a00f59ca1494d5646869
https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.49-h4f305b6_0.conda#dfcfd72c7a430d3616763ecfbefe4ca9
https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda#2b7b0d827c6447cc1d85dc06d5b5de46
https://conda.anaconda.org/conda-forge/linux-64/libliquid1-1.6.0-hce2fd33_1.conda#f66f105dc18d8b7a5be4f06203d3686c
https://conda.anaconda.org/conda-forge/linux-64/libosmodsp0-0.4.0-hce2fd33_1.conda#4fdcd3825c97db3d07758a33380fe4c1
https://conda.anaconda.org/conda-forge/linux-64/libpq-16.3-ha72fbe1_0.conda#bac737ae28b79cfbafd515258d97d29e
https://conda.anaconda.org/conda-forge/linux-64/libusb-1.0.27-h520f47e_100.conda#82e46dc001ab1ef291554ead981b0cde
https://conda.anaconda.org/conda-forge/linux-64/lxml-5.2.2-py311hc0a218f_0.conda#5a9c71f5cbdf3c5b1ad2504e13792629
https://conda.anaconda.org/conda-forge/linux-64/m17-cxx-demod-2.3.3-hd5edb52_3.conda#812ce79d88942d3cda89525cfe9aa9a8
https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py311h459d7ec_0.conda#a322b4185121935c871d201ae00ac143
https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19
https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda#7f2e286780f072ed750df46dc2631138
https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda#248f521b64ce055e7feae3105e7abeb8
https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda#81534b420deb77da8833f2289b8d47ac
https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761
https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda#405678b942f2481cecdb3e010f4925d9
https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_2.conda#18c6deb6f9602e32446398203c8f0e91
https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263
https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883
https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda#844d9eb3b43095b031874477f7d70088
https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda#b7f5c092b8f9800150d998a71b76d5a1
https://conda.anaconda.org/conda-forge/noarch/pyopengl-3.1.6-pyhd8ed1ab_1.tar.bz2#c968eb974b0fae4676e7a7858c4cc56e
https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.2-pyhd8ed1ab_0.conda#b9a4dacf97241704529131a0dfc0494f
https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025
https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.1-pyhd8ed1ab_0.conda#98206ea9954216ee7540f0c773f2104d
https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda#3eeeeb9e4827ace8c0c1419c85d590ad
https://conda.anaconda.org/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2#2807a0becd1d986fe1ef9b7f8135f215
https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py311h459d7ec_1.conda#52719a74ad130de8fb5d047dc91f247a
https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.18.1-py311h5ecf98a_0.conda#9ce82e95681cb5c5e4bd872ed0a7aceb
https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py311h459d7ec_0.conda#7865c897d89a39abc0056d89e37bd9e9
https://conda.anaconda.org/conda-forge/noarch/setuptools-70.0.0-pyhd8ed1ab_0.conda#c8ddb4f34a208df4dd42509a0f6a1c89
https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-0.8.1-py311h9547e67_4.conda#e4d1752684316645dfcc42cfa5be63e0
https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.12.0-h297d8ca_1.conda#3ff978d8994f591818a506640c6a7071
https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095
https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96
https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4-py311h459d7ec_0.conda#cc7727006191b8f3630936b339a76cd0
https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda#3df84416a021220d8b5700c613af2dc5
https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda#6ef2fc37559256cf682d8b3375e89b80
https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda#68f0738df502a14213624b288c60c9ad
https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda#f372c576b8774922da83cda2b12f9d29
https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h8ee46fc_1.conda#9d7bcddf49cbf727730af10e71022c73
https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.41-hd590300_0.conda#81f740407b45e3f9047b3174fa94eb9e
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda#82b6df12252e6f32402b96dacc656fec
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2#e9a21aa4d5e3e5f1aed71e8cefd46b6a
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.11-hd590300_0.conda#ed67c36f215b310412b2af935bf3e530
https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h75354e8_4.conda#03cc8d9838ad9dd0060ab532e81ccb21
https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda#2e4d6bc0b14e10f895fc6791a7d9b26a
https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda#5f25798dcefd8252ce5f9dc494d5f571
https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551
https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-h3faef2a_0.conda#f907bb958910dc404647326ca80c263e
https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py311hb3a22ac_0.conda#b3469563ac5e808b0cd92810d0697043
https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f
https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.52.4-py311h331c9d8_0.conda#0a5e7e2aca2a4217b2036e0d661dcfb0
https://conda.anaconda.org/conda-forge/noarch/fs-2.4.16-pyhd8ed1ab_0.conda#a231fa7cb5f101f1f3ae8480c0002f91
https://conda.anaconda.org/conda-forge/linux-64/glib-2.80.2-hf974151_0.conda#d427988dc3dbd0a4c136f52db356cc6a
https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda#33eded89024f21659b1975886a4acf70
https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2#b21ed0883505ba1910994f1df031a428
https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_hdf9ad27_102.conda#d8cb3688b92e891e1e5f613517a50ca8
https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda#0896606848b2dc5cebdf111b6543aa04
https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda#c5d3907ad8bd7bf557521a1833cf7e6d
https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda#81a3be0b2023e1ea8555781f0ad904a2
https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda#7b86ecb7d3557821c649b3c31e3eb9f2
https://conda.anaconda.org/conda-forge/linux-64/libairspy-1.0.10-h7f98852_0.tar.bz2#69e923a1108797344d66a91d592897b9
https://conda.anaconda.org/conda-forge/linux-64/libairspyhf-1.6.8-h7f98852_0.tar.bz2#a6c1296a40a0ccafa379139f727643dd
https://conda.anaconda.org/conda-forge/linux-64/libbladerf2-2023.02-h0b41bf4_0.conda#32360ac352ac1dbe71a822279e7aac15
https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-22_linux64_openblas.conda#4b31699e0ec5de64d5896e580389c9a1
https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.3-hd590300_0.conda#32d16ad533c59bb0a3c5ffaf16110829
https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1003.conda#50c389a09b6b7babaef531eb7cb5e0ca
https://conda.anaconda.org/conda-forge/linux-64/libhackrf0-2024.02.1-hd590300_0.conda#9d9380e9cb3f4bf17ce73c59a406bf4f
https://conda.anaconda.org/conda-forge/linux-64/libhamlib4-4.5.5-h59595ed_3.conda#85f6ea1db3fb6aaa99633a8cb249f334
https://conda.anaconda.org/conda-forge/linux-64/libhidapi-0.14.0-hd590300_0.conda#04c16301e5fee4cc1fff54efc25e711c
https://conda.anaconda.org/conda-forge/linux-64/libiio-c-0.25-hc58069b_1.conda#bb8383a003a7497dcba1e6693edabbcb
https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-22_linux64_openblas.conda#b083767b6c877e24ee597d93b87ab838
https://conda.anaconda.org/conda-forge/linux-64/liblimesuite-23.11.0-h59595ed_0.conda#8dfbefa96149cf58011409ce35244a79
https://conda.anaconda.org/conda-forge/linux-64/libmirisdr4-2.0.0-hd590300_0.conda#c3fd238bcf4d9220c19dbba77e511ea1
https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.1.0-h2da1b83_7.conda#692bb11510bfceb34723c5115045096e
https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda#ef1910918dd895516a769ed36b5b3a4e
https://conda.anaconda.org/conda-forge/linux-64/libva-2.21.0-hd590300_0.conda#e50a2609159a3e336fe4092738c00687
https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.7.0-h662e7e4_0.conda#b32c0da42b1f24a98577bb3d7fc0b995
https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda#779345c95648be40d22aaa89de7d4254
https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_0.conda#629f3203c99b32e0988910c93e77f3b6
https://conda.anaconda.org/conda-forge/linux-64/pillow-10.3.0-py311h18e6fac_0.conda#6c520a9d36c9d7270988c7a6c360d6d4
https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.42-pyha770c72_0.conda#0bf64bf10eee21f46ac83c161917fa86
https://conda.anaconda.org/conda-forge/noarch/pyfiglet-0.8.post1-py_0.tar.bz2#e22d3c090f24856764e9d70e76fa3a5f
https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda#2cf4264fffb9e6eff6031c5b6884d61c
https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.0.3-py311h08a0b41_0.conda#8bef21c0a0160e7369fc2f494acf85d0
https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.1-pyhd8ed1ab_0.conda#7f391bd70d2abfb70f304ba5aa4e1261
https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda#0fc8b52192a8898627c3efae1003e9f6
https://conda.anaconda.org/conda-forge/linux-64/rtl-sdr-2.0.1-hd590300_0.conda#bd7fa64c13756031a8c08bbacae422f1
https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py311h459d7ec_0.conda#4dccc0bc3bb4d6e5c30bccbd053c4f90
https://conda.anaconda.org/conda-forge/linux-64/sip-6.7.12-py311hb755f60_0.conda#02336abab4cb5dd794010ef53c54bd09
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-module-netsdr-0.2.0-hd00649d_1.conda#8c78eeae9bf327535a92459dc5670799
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-module-redpitaya-0.1.1-hd00649d_0.conda#21cf859399dbf0b3becd739330fca292
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-module-remote-0.5.2-hee64af1_2.tar.bz2#7d044c01398c2c14525f21f159c3dd71
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-module-volk-converters-0.1.1-h2678f24_2.conda#59ad2fc7e780bc0fe9424ba915ab5c78
https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda#08807a87fa7af10754d46f63b368e016
https://conda.anaconda.org/conda-forge/linux-64/watchdog-4.0.1-py311h38be061_0.conda#1a3b92c14f3ba0b227e2e31b3398831f
https://conda.anaconda.org/conda-forge/noarch/werkzeug-3.0.3-pyhd8ed1ab_0.conda#2e60f5f388845027ee87fca6bee4ac23
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcomposite-0.4.6-h0b41bf4_1.conda#ada6777364a0ea2407a1894e54779cc4
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcursor-1.2.0-h0b41bf4_1.conda#b58859de3b5972860c36f638c8c0ebb6
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdamage-1.1.5-h7f98852_1.tar.bz2#bebd3814ec2355fab6a474b07ed73093
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h7f98852_0.tar.bz2#e77615e5141cad5a2acaa043d1cf0ca5
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxinerama-1.1.5-h27087fc_0.tar.bz2#2e1c65825c586444df23784f68bef90e
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrandr-1.5.2-h7f98852_1.tar.bz2#5b0f7da25a4556c9619c3e4b4a98ab07
https://conda.anaconda.org/conda-forge/noarch/zope.event-5.0-pyhd8ed1ab_0.conda#b4a7b86cf51f2831015e9eebd284dc0a
https://conda.anaconda.org/conda-forge/linux-64/zope.interface-6.4.post2-py311h331c9d8_0.conda#9f1cf62958a10d81330981d3667162f5
https://conda.anaconda.org/conda-forge/linux-64/airspy-1.0.10-h7f98852_0.tar.bz2#ebe51c23b8326fe505c57f186292c90d
https://conda.anaconda.org/conda-forge/linux-64/airspyhf-1.6.8-h7f98852_0.tar.bz2#d593dd163392778176e032c0eae15e8a
https://conda.anaconda.org/conda-forge/linux-64/arpack-3.8.0-nompi_h0baa96a_101.tar.bz2#bad10a5b54a3aa9680c3ac1436b7e35d
https://conda.anaconda.org/conda-forge/noarch/asciimatics-1.15.0-pyhd8ed1ab_0.conda#94bdb59db7572d651230d10dd15c188d
https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.7-py311h4a61cc7_0.conda#251f3a7b306a8b212d42d585b3d06f36
https://conda.anaconda.org/conda-forge/noarch/flask-3.0.3-pyhd8ed1ab_0.conda#dcdb937144fa20d7757bf512db1ea769
https://conda.anaconda.org/conda-forge/linux-64/gevent-23.9.0.post1-py311hcddcebc_1.conda#107f34ff066ed17473b8cd3ef429af29
https://conda.anaconda.org/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2#fb05eb5c47590b247658243d27fc32f1
https://conda.anaconda.org/conda-forge/linux-64/glfw-3.4-hd590300_0.conda#4c7a044d25e000fef39b77c10a102ea1
https://conda.anaconda.org/conda-forge/linux-64/gsl-2.7-he838d99_0.tar.bz2#fec079ba39c9cca093bf4c00001825de
https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.24.4-haf2f30d_0.conda#926c2c7ee7a0b48d6d70783a33f7bc80
https://conda.anaconda.org/conda-forge/linux-64/hackrf-2024.02.1-hce2fd33_0.conda#60c4df1d21755e40d8823dd805ab21b2
https://conda.anaconda.org/conda-forge/linux-64/hamlib-4.5.5-hf626f79_3.conda#cc1078b85932b9d8291610ec7762c29c
https://conda.anaconda.org/conda-forge/linux-64/hamlib-lua-4.5.5-lua54hd590300_3.conda#9b7d6c6ef814d6658c69a361bb092903
https://conda.anaconda.org/conda-forge/linux-64/hamlib-perl-4.5.5-pl5321hd590300_3.conda#038fcd723cf1f3a289e831128a6f8239
https://conda.anaconda.org/conda-forge/linux-64/hamlib-python-4.5.5-py311h459d7ec_3.conda#00642d2c11664ca5579dcf016d00f886
https://conda.anaconda.org/conda-forge/linux-64/hamlib-tcl-4.5.5-h7bfae61_3.conda#531a4b25be658a13e510c8d1a4a43450
https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.5.0-hfac3d4d_0.conda#f5126317dd0ce0ba26945e411ecc6960
https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda#a0e4efb5f35786a05af4809a2fb1f855
https://conda.anaconda.org/conda-forge/linux-64/libad9361-iio-0.2-hebf0105_3.tar.bz2#10c7a4eab748e60b362d6558392bd841
https://conda.anaconda.org/conda-forge/noarch/libbladerf-python-2023.02-py_0.conda#3d313832d2b63b19fe9ffe240e4fb746
https://conda.anaconda.org/conda-forge/linux-64/libgirepository-1.80.1-h003a4f0_0.conda#7259e6f93988d4469b0484554c6b9959
https://conda.anaconda.org/conda-forge/linux-64/libm2k-0.8.0-py311h5266a37_0.conda#1412cccc3a3fdc3d2643f3f27897523e
https://conda.anaconda.org/conda-forge/linux-64/libmatio-1.5.26-h31675a7_0.conda#e8675fe9ee5774156f5abad8074d9281
https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.1.0-hb045406_7.conda#d83d6787a9a002b626e20de84719da64
https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.1.0-hb045406_7.conda#928f79281dbcc73e8e8fc2096b993b97
https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.1.0-h5c03a75_7.conda#34db2a8d0504a807a735da48234e2a1d
https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.1.0-h2da1b83_7.conda#22ef5cad44c9e3caecbee37465c33fca
https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.1.0-h2da1b83_7.conda#98d53dafdd090d01ae50719eabe374e7
https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.1.0-he02047a_7.conda#e766c8a98f4efef2e9be7146fad9b6f2
https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.1.0-h5c03a75_7.conda#1eb037f090cb525857b01702b2afb6a0
https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.1.0-h07e8aee_7.conda#019fb9bcd7ce0178fa85f3c610efb8c3
https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.1.0-h07e8aee_7.conda#991c28a11b0ace4b340a445b538cece8
https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.1.0-he02047a_7.conda#2b231b8cdbd2495706526ac1ab3c821c
https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.1.0-h39126c6_7.conda#d6aac92f4b03be8c86b09f40e1f5263a
https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.1.0-he02047a_7.conda#f7a46aa4f5c53423bf3e036da8c1b632
https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-255-h3516f8a_1.conda#3366af27f0b593544a6cd453c7932ac5
https://conda.anaconda.org/conda-forge/noarch/mako-1.3.5-pyhd8ed1ab_0.conda#29fddbfa0e2361636a98de4f46ead2ac
https://conda.anaconda.org/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda#06e9bebf748a0dea03ecbe1f0e27e909
https://conda.anaconda.org/conda-forge/linux-64/mirisdr-2.0.0-hd590300_0.conda#b596937f2967722470a42907a4d7e418
https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda#a502d7aad449a1206efb366d6a12c52d
https://conda.anaconda.org/conda-forge/linux-64/pycairo-1.26.0-py311h8feb60e_0.conda#aee6d0cde17ddaa2829c1cf078939532
https://conda.anaconda.org/conda-forge/noarch/pylibiio-0.25-py_1.conda#810ae49bb989b27783c17c1b7d36595e
https://conda.anaconda.org/conda-forge/linux-64/pynacl-1.5.0-py311h459d7ec_3.conda#41431936fe7624294df31197ae699c44
https://conda.anaconda.org/conda-forge/linux-64/pyqt5-sip-12.12.2-py311hb755f60_5.conda#e4d262cc3600e70b505a6761d29f6207
https://conda.anaconda.org/conda-forge/noarch/qdarkstyle-3.2.3-pyhd8ed1ab_0.conda#ab475868d7e0b110c43bf74c90237a5f
https://conda.anaconda.org/conda-forge/noarch/requests-2.32.2-pyhd8ed1ab_0.conda#e1643b34b19df8c028a4f00bf5df58a6
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-module-airspy-0.2.0-hee64af1_0.tar.bz2#d9558641741a29473c3b182fdc35e70f
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-module-airspyhf-0.2.0-hee64af1_0.tar.bz2#8ea0a8625e6ce55767f9aa8f7bdc3d89
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-module-bladerf-0.4.1-hc1d054c_0.tar.bz2#8e8038dd00fe852f71c7aeb87762008a
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-module-hackrf-0.3.4-hee64af1_0.tar.bz2#0b2c78d40670de782eb2df4ceb733df4
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-module-lms7-23.11.0-hee1ac67_0.conda#0f10efe9011c9d744b934c12b3e8ca4c
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-module-rtlsdr-0.3.3-h44a8f8d_2.conda#fef661dc26aa8462f33331a575c07774
https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af
https://conda.anaconda.org/conda-forge/linux-64/superlu-5.2.2-h00795ac_0.tar.bz2#2fe6fcc1c7d6e2e8ea3f16ebd3306dbe
https://conda.anaconda.org/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_0.tar.bz2#00ba804b54f451d102f6a7615f08470d
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.3-h7f98852_1002.tar.bz2#a220b1a513e19d5cb56c1311d44f12e6
https://conda.anaconda.org/conda-forge/linux-64/armadillo-12.8.3-h5c5d784_0.conda#91be9008c1af00db830b756896a9a733
https://conda.anaconda.org/conda-forge/linux-64/at-spi2-core-2.40.3-h0630a04_0.tar.bz2#8cb2fc4cd6cc63f1369cfa318f581cc3
https://conda.anaconda.org/conda-forge/linux-64/bladerf-2023.02-h0b41bf4_0.conda#f7cde13b9f9a7955b4335c037c100123
https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.2.1-py311h9547e67_0.conda#74ad0ae64f1ef565e27eda87fa749e84
https://conda.anaconda.org/conda-forge/noarch/gevent-websocket-0.10.1-py_0.tar.bz2#25b4b60b6ea50368cd90b75b4d00c711
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-pmt-3.10.10.0-py311h08edcf9_6.conda#64dbd1d80045c9eb0f204c6d675e9e0e
https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.24.4-h9ad1361_0.conda#147cce520ec59367549fd0d96d404213
https://conda.anaconda.org/conda-forge/linux-64/h5py-3.11.0-nompi_py311h439e445_101.conda#a6d4f009f97ec5748abcebc9aba393c9
https://conda.anaconda.org/conda-forge/noarch/hamlib-all-4.5.5-linux_3.conda#b2e651c9688828b46dd9ac81a4f86d3d
https://conda.anaconda.org/conda-forge/noarch/ipython-8.24.0-pyh707e725_0.conda#1fb1f1fcbe053a762748dbf0ae4cfd0d
https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.22.0-pyhd8ed1ab_0.conda#b9661a4b1200d6bc7d8a4cdafdc91468
https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h8fe9dca_1.conda#c306fd9cc90c0585171167d09135a827
https://conda.anaconda.org/conda-forge/linux-64/libiio-0.25-ha770c72_1.conda#33c61f5d5a98f8137d95fff2be9b1176
https://conda.anaconda.org/conda-forge/linux-64/numexpr-2.8.4-py311h039bad6_101.conda#c6cf33cd90e2ba83c66949ff5ec2ebbf
https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.2-py311h14de704_1.conda#84e2dd379d4edec4dd6382861486104d
https://conda.anaconda.org/conda-forge/linux-64/pango-1.52.2-ha41ecd1_0.conda#a658eeabf188c3040da36b0763de2bfd
https://conda.anaconda.org/conda-forge/noarch/paramiko-3.4.0-pyhd8ed1ab_0.conda#a5e792523b028b06d7ce6e65a6cd4a33
https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-17.0-hb77b528_0.conda#07f45f1be1c25345faddb8db0de8039b
https://conda.anaconda.org/conda-forge/linux-64/pygobject-3.48.2-py311h86ed371_0.conda#a11528ad6a7c3b663b1e31cf23eca8f3
https://conda.anaconda.org/conda-forge/noarch/pyqtgraph-0.13.7-pyhd8ed1ab_0.conda#d31a6f00bd89ff46a5e457c935578c33
https://conda.anaconda.org/conda-forge/linux-64/scipy-1.13.1-py311h517d4fd_0.conda#764b0e055f59dbd7d114d32b8c6e55e6
https://conda.anaconda.org/conda-forge/noarch/simple-websocket-1.0.0-pyhd8ed1ab_1.conda#4e9136be6c66312f63b3a8ef60443389
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-module-plutosdr-0.2.2-ha0264d5_0.conda#b99a779bdc30353aaff497428f161df0
https://conda.anaconda.org/conda-forge/linux-64/uhd-4.6.0.0-py311he18404f_0.conda#af28ee99fdf6805f127283d1143c5f1d
https://conda.anaconda.org/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2#6b889f174df1e0f816276ae69281af4d
https://conda.anaconda.org/conda-forge/linux-64/digital_rf-2.6.9-py311h5bddb8e_0.conda#262fbc08f65d2b3c58dc75c071cf0fa1
https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.1.1-gpl_he44c6f3_112.conda#51a49318bcd4e848e867a5b9ea5b6545
https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.58.0-hadf69e7_1.conda#0e2b5bd9533043b41f9482ae9e2c16b5
https://conda.anaconda.org/conda-forge/linux-64/librtaudio6-5.2.0-h44925b1_3.conda#d0024284058f93a4b072c8c49b51eb34
https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.8.4-py311ha4ca890_2.conda#0848e2084cbb57014f232f48568561af
https://conda.anaconda.org/conda-forge/noarch/pyadi-iio-0.0.16-pyhd8ed1ab_0.conda#667c2c87d132e2fdf0b2f42200fbfbff
https://conda.anaconda.org/conda-forge/noarch/python-engineio-4.9.1-pyhd8ed1ab_0.conda#14eac7853ce0afb52fab40521d8ed9f7
https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-hc9dc06e_21.conda#b325046180590c868ce0dbf267b82eb8
https://conda.anaconda.org/conda-forge/linux-64/sdl2-2.30.2-hdbcbe63_0.conda#384fc41d2db4062cd67c5073810049fa
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-module-uhd-0.4.1-hd3ca1a7_10.conda#18956dec7965f9485a0e4e3d9dabd494
https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-46.0-unix_0.conda#f1dcbaeb1b69a1424b9ac618b2a7cdc8
https://conda.anaconda.org/conda-forge/linux-64/alsa-plugins-1.2.7.1-h03a20ba_10.conda#fa292a8a381318cd72aa3b12b4529e42
https://conda.anaconda.org/conda-forge/linux-64/gtk3-3.24.42-h6d40eaa_0.conda#2bc01afc2bc0dd65ffddf859966a18ad
https://conda.anaconda.org/conda-forge/linux-64/inspectrum-0.3.1-hcdab9b9_0.conda#76fa80a67d2b2fd246d54bbd6af1dd7b
https://conda.anaconda.org/conda-forge/noarch/mplcursors-0.5.3-pyhd8ed1ab_0.conda#41db08c32bbbb2849d6f57fd1d1da460
https://conda.anaconda.org/conda-forge/linux-64/pyqt-5.15.9-py311hf0fb5b6_5.conda#ec7e45bc76d9d0b69a74a2075932b8e8
https://conda.anaconda.org/conda-forge/noarch/python-socketio-5.11.2-pyhd8ed1ab_0.conda#08c4689825cdf902fc643a6a0934068e
https://conda.anaconda.org/conda-forge/linux-64/qwt-6.3.0-h7c222af_0.conda#0b860b7c4d9d39043d168a279724ce1a
https://conda.anaconda.org/conda-forge/linux-64/sdl-1.2.68-h293081c_0.conda#53326ff6864578787913ba15616ad2f9
https://conda.anaconda.org/conda-forge/linux-64/soapysdr-module-audio-0.1.1-h44a8f8d_1.conda#2bba510305a3b1b24e8d9f9edf9be2f4
https://conda.anaconda.org/conda-forge/noarch/flask-socketio-5.3.6-pyhd8ed1ab_0.conda#ef521fc208ad82733c942d150199cf3e
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-core-3.10.10.0-py311he9252ce_6.conda#4ce620608623133d5da83d11b1cebbea
https://conda.anaconda.org/conda-forge/linux-64/matplotlib-3.8.4-py311h38be061_2.conda#7667100b9559c1b7a40c728cd72dabdf
https://conda.anaconda.org/conda-forge/noarch/pyfda-0.8.4-pyh9208f05_0.conda#c772efaac9008abc155bbb8da0ed451d
https://conda.anaconda.org/conda-forge/linux-64/wxwidgets-3.2.5-h91e79f6_0.conda#451b66a57ceaeea17d7408ac080b4732
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-adsb-0.0.0.20240508.dev+gafd7fabda-unix_pyha6c0e43_0.tar.bz2#56f998dffe40fa91563395e3cbc935b7
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-dect2-0.0.0.20240502.dev+gb296af2a9-py311h99fcecf_0.tar.bz2#c83df54d6495d02eda5e0fabdd45e68b
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-filerepeater-0.0.0.20240502.dev+gd7bb8846c-py311hda6cfc9_0.tar.bz2#8c252bdf2374cef2abf36b4e8e9cb6af
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-foo-0.0.0.20240502.dev+gc53538a22-py311hb33e329_0.tar.bz2#999ce6c42795114d0e4ea5a07211661b
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-fosphor-0.0.0.20240502.dev+g656fe2f-py311h44ace63_0.tar.bz2#e8b1dc0a84f758d4542cffccdd52b5f9
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-funcube-3.10.0.rc3-py311hb137b5b_4.conda#d0799a146fd9d3b8f7ba429d49c6cd4e
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-gpredict-doppler-0.0.0.20240508.dev+gb06bc7678-unix_pyha1ad6f9_0.tar.bz2#b414c3119957d01e5edb2ec24b438bd1
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-grc-3.10.10.0-py311h281bee8_6.conda#b98ee1bb704a113bfb99a5afe00ef859
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-hermeslite2-v1.0.0.0.post17+8b17ad3-py311h99fcecf_0.tar.bz2#692c021f9aaeed6cc2016e0029b33410
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-hpsdr-0.0.0.20240507.dev+g958e157-py311h0b8ef5d_0.tar.bz2#9e73be8b9e7236ffe5c8c9276a33655e
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-iio-3.10.10.0-py311heb6058b_6.conda#e96dfe53b518469247e2719906dab34e
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-iqbalance-0.38.2-py311h92d02ad_3.conda#b77bea7b0cd1580b144effe2e17c06a6
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-iridium-1!1.0.0-py311h58ff794_11.conda#d1d34179889558e77684fc8976817c71
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-leo-1.0.0.post105+12a346f-py311hdc6996e_0.tar.bz2#7d32c3566718f0839d09b1c6f90745e1
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-lora_sdr-0.0.0.20240508.dev+g751a65269-py311hdc6996e_0.tar.bz2#b29e43dfa283f92709591f7c88263cc2
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-m2k-1.0.0-py311h7e044f9_9.conda#b9aa6fe633ea3273a304aed9b8ddedc3
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-paint-0.0.0.20240508.dev+g82696a2-py311hdc6996e_0.tar.bz2#0179c1a76a773f3701f0b00e97bf17bc
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-qtgui-3.10.10.0-py311hc430274_6.conda#46483549008c8aba27737bc21d76f5df
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-radar-0.0.0.20240525.dev+gc59350d-py311h62879e6_0.tar.bz2#fd618bf37e1d9c7ac68bd67d7d101163
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-rds-3.10.post22+g2134008-py311ha2ba05b_0.tar.bz2#383de0ff36e822b8a926a97cf36b4786
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-soapy-3.10.10.0-py311hf88367e_6.conda#c798ee5b303b2272ce6f73471e57753c
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-uhd-3.10.10.0-py311hfbb3450_6.conda#ed9fca65e956308d9fa2ce34f2ea5af1
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-video-sdl-3.10.10.0-py311hd3c0a14_6.conda#610a864ae91eaceb8446bf21321c848e
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-zeromq-3.10.10.0-py311he296fd5_6.conda#a925e1e38963f63a23ad81d4ce17031f
https://conda.anaconda.org/conda-forge/linux-64/limesuite-23.11.0-h4b40ff6_0.conda#1efd6ffdd4cd421a09d6303710ce72dc
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-3.10.10.0-py311h95f763e_6.conda#ca34ab6b9d94c8d36c510f45dad7a7f6
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-ieee802_11-0.0.0.20240507.dev+g8c058d4e0-py311hea763a6_0.tar.bz2#d01cf68aa88336b9f9020f7dbfd135cd
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-ieee802_15_4-3.6.post133+g932c76f-py311hde414dc_0.tar.bz2#df9e530ebf6be827fb4457b86dd18953
https://conda.anaconda.org/ryanvolz/linux-64/gnuradio-inspector-0.0.0.20240525.dev+g55acca6-py311h717571a_0.tar.bz2#bc585824ee149749f7b399fc26d3965c
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-osmosdr-0.2.4-py311he88b703_16.conda#fa5333b9cc57c056d835bc52222cfbc3
https://conda.anaconda.org/conda-forge/linux-64/gnuradio-satellites-5.5.0-py311h0e805ab_2.conda#e34ce44f050d5a096998c29286206fb8
https://conda.anaconda.org/conda-forge/linux-64/gnss-sdr-0.0.18-h6a4e41f_19.conda#bb486e9bfeb2ae959537539d96a481f1
https://conda.anaconda.org/conda-forge/linux-64/gqrx-2.17.5-h9fdf5f5_4.conda#daaac6ecd07eb60e57d0723ddfe2f941
https://conda.anaconda.org/t/*****/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81
https://conda.anaconda.org/t/*****/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda#19f3a56f68d2fd06c516076bff482c52
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda#49023d73832ef61042f6a237cb2687e7
https://conda.anaconda.org/t/*****/conda-forge/linux-64/hicolor-icon-theme-0.17-ha770c72_2.tar.bz2#bbf6f174dcd3254e19a2f5d2295ce808
https://conda.anaconda.org/t/*****/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2#9a66894dfd07c4510beb6b3f9672ccc0
https://conda.anaconda.org/t/*****/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2#878f923dd6acc8aeb47a75da6c4098be
https://conda.anaconda.org/t/*****/conda-forge/linux-64/python_abi-3.12-5_cp312.conda#0424ae29b104430108f5218a66db7260
https://conda.anaconda.org/t/*****/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda#dbcace4706afdfb7eb891f7b37d07c04
https://conda.anaconda.org/t/*****/conda-forge/noarch/wayland-protocols-1.41-hd8ed1ab_0.conda#790080ec41dc3f081663da8e99cd233e
https://conda.anaconda.org/t/*****/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-leo-data-1.0.0.post20250214%2Bg8f62b92-unix_2.conda#c4ae33379222c031be2cd82093e561e1
https://conda.anaconda.org/t/*****/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda#01f8d123c96816249efd255a31ad7712
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda#434ca7e50e40f4918ab701e3facd59a0
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda#06d02030237f4d5b3d9a7e7d348fe3c6
https://conda.anaconda.org/t/*****/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d
https://conda.anaconda.org/t/*****/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda#c151d5eb730e9b7480e6d48c0fc44048
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda#7df50d44d4a14d6c31a2c54f2cd92157
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda#ef504d1acbd74b7cc6849ef8af47dd03
https://conda.anaconda.org/t/*****/conda-forge/linux-64/alsa-lib-1.2.13-hb9d3cd8_0.conda#ae1370588aa6a5157c34c73e9bbb36a0
https://conda.anaconda.org/t/*****/conda-forge/linux-64/c-ares-1.34.4-hb9d3cd8_0.conda#e2775acf57efd5af15b8e3d1d74d72d3
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gettext-tools-0.23.1-h5888daf_0.conda#2f659535feef3cfb782f7053c8775a32
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gstreamer-orc-0.4.41-h17648ed_0.conda#4df121d41281f8b9ab4ce86ec712ffda
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda#41b599ed2b02abcfdd84302bff174b23
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libcodec2-1.2.0-hb9d3cd8_3.conda#64268db3bbc93f593e9ee9f5111cf781
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda#8dfae1d2e74767e9ce36d5fa0d8605db
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda#db833e03127376d461e1e13e76f09b6c
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libffi-3.4.6-h2dba641_0.conda#e3eb7806380bc8bcecba6d749ad5f026
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda#a2222a6ada71fb478682efe483ce0f92
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libgettextpo-0.23.1-h5888daf_0.conda#a09ce5decdef385bcce78c32809fa794
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda#556a4fdfac7287d349b8f09aba899693
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda#e796ff8ddc598affdf7c173d6145f087
https://conda.anaconda.org/t/*****/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda#42d5b6a0f30d3c10cd88cb8584fda1cb
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda#7c7927b404672409d9917d49bff5f2d6
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda#a78c856b6dc6bf4ea8daeb9beaaa3fb0
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libtasn1-4.20.0-hb9d3cd8_0.conda#942cd32b349ec84fb3879955fa68f994
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libuv-1.50.0-hb9d3cd8_0.conda#771ee65e13bc599b0b62af5359d80169
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda#63f790534398730f59e1b899c3644d4a
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda#edb0dca6bc32e4f4789199455a1dbeb8
https://conda.anaconda.org/t/*****/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda#47e340acb35de30501a76c7c799c41d7
https://conda.anaconda.org/t/*****/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda#41adf927e746dc75ecf0ef841c454e48
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda#b3c17d95b5a10c6e64a21fa17573e70e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda#fb901ff28063514abb6046c9ec2c4a45
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda#f6ebe2cb3f82ba6c057dde5d9debe4f7
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda#8035c64cb77ed555e3f150b7b3972480
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxshmfence-1.3.3-hb9d3cd8_0.conda#9a809ce9f65460195777f2f2116bae02
https://conda.anaconda.org/t/*****/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2#d9c69a24ad678ffce24c6543a0176b00
https://conda.anaconda.org/t/*****/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda#62ee74e96c5ebb0af99386de58cf9553
https://conda.anaconda.org/t/*****/conda-forge/linux-64/codec2-1.2.0-hb9d3cd8_3.conda#4f096e3d4b6f8a3d4d1ab87fb8d38132
https://conda.anaconda.org/t/*****/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda#418c6ca5929a611cbd69204907a83995
https://conda.anaconda.org/t/*****/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda#bfd56492d8346d669010eccafe0ba058
https://conda.anaconda.org/t/*****/conda-forge/linux-64/epoxy-1.5.10-h166bdaf_1.tar.bz2#a089d06164afd2d511347d3f87214e0b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/expat-2.6.4-h5888daf_0.conda#1d6afef758879ef5ee78127eb4cd2c4a
https://conda.anaconda.org/t/*****/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2#ac7bc6a654f8f41b352b38f4051135f8
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda#d411fc29e338efb48c5fd4576d71d881
https://conda.anaconda.org/t/*****/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3
https://conda.anaconda.org/t/*****/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2#a8832b479f93521a9e7b5b743803be51
https://conda.anaconda.org/t/*****/conda-forge/linux-64/level-zero-1.21.2-h84d6215_0.conda#1fa3e3d355d57e5982ff3fbec8472396
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda#488f260ccda0afaf08acb286db439c2f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libaio-0.3.113-h166bdaf_0.tar.bz2#06656768fe0cb08ee3ccc231a1aaf365
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libasprintf-0.23.1-h8e693c7_0.conda#988f4937281a66ca19d1adb3b5e3f859
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda#9566f0bd264fbd463002e759b8a82401
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda#06f70867945ea6a84d35836af780f1de
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libcorrect-0.0.0-h0b41bf4_0.conda#66b045c89683a17ce93e0dcad66e8c12
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda#c277e0a4d549b03ac1e9d6cbbe3d017b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libev-4.33-hd590300_2.conda#172bf1cd1ff8629f2b1179945ed45055
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda#a1cfcc585f0c42bf8d5546bb1dfb668d
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libgettextpo-devel-0.23.1-h5888daf_0.conda#7a5d5c245a6807deab87558e9efd3ef0
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda#fb54c4ea68b460c278d26eea89cfbcc3
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libgpg-error-1.51-hbd13f7d_1.conda#168cc19c031482f83b23c4eebbb94e26
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda#ea25936bb4080d843790b586850f82b8
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda#30fd6e37fe21f86f4bd26d6ee73eeec7
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libogg-1.3.5-h4ab18f5_0.conda#601bfb4b3c6f0b844443bb81a56651e0
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2#15345e56d527b330e1cacbdf58676e8f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libpcap-1.10.4-hd590300_1.conda#831d42d0b3494f267d9e85a95757ab88
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda#48f4330bfcd959c3cfb704d424903c82
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda#55199e2ae2c3651f6f9b2a447b47bdc9
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda#a587892d3c13b6621a6091be690dbca2
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_1.conda#73cea06049cc4174578b432320a003b8
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda#be2de152d8073ef1c01b7728475f2fe7
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda#c75da67f045c2627f59e6fcb5f4e3a9b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2#7245a044b4a1980ed83196176b78b73a
https://conda.anaconda.org/t/*****/conda-forge/linux-64/liburing-2.9-h84d6215_0.conda#ecd409e7bfcf4ee73f74d7a2cc91a4c3
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda#40b61aab5c7ba9ff276c41cfffe6b80b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda#92ed62436b625154323d40d5f2f11dd7
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda#5aa797f8787fe7a17d1b0821485b5adc
https://conda.anaconda.org/t/*****/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda#9de5350a85c4a20c685259b889aa6393
https://conda.anaconda.org/t/*****/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda#ec7398d21e2651e0dcb0044d03b9a339
https://conda.anaconda.org/t/*****/conda-forge/linux-64/mpg123-1.32.9-hc50e24c_0.conda#c7f302fd11eeb0987a6a5e1f3aed6a21
https://conda.anaconda.org/t/*****/conda-forge/linux-64/mysql-common-9.0.1-h266115a_5.conda#6cf2f0c19b0b7ff3d5349c9826c26a9e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/nettle-3.9.1-h7ab15ed_0.conda#2bf1915cc107738811368afcb0993a59
https://conda.anaconda.org/t/*****/conda-forge/linux-64/nspr-4.36-h5888daf_0.conda#de9cd5bca9e4918527b9b72b6e2e1409
https://conda.anaconda.org/t/*****/conda-forge/linux-64/opencl-headers-2024.10.24-h5888daf_0.conda#3ba02cce423fdac1a8582bd6bb189359
https://conda.anaconda.org/t/*****/conda-forge/linux-64/openh264-2.6.0-hc22cd8d_0.conda#b28cf020fd2dead0ca6d113608683842
https://conda.anaconda.org/t/*****/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2#56ee94e34b71742bbdfa832c974e47a8
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pixman-0.44.2-h29eaf8c_0.conda#5e2a7acfa2c24188af39e7944e1b3604
https://conda.anaconda.org/t/*****/conda-forge/linux-64/portaudio-19.7.0-hf4617a5_0.conda#053455c094c711e9aa77cf5023cf2bc3
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pugixml-1.15-h3f63f65_0.conda#b11a4c6bf6f6f44e5e143f759ffa2087
https://conda.anaconda.org/t/*****/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda#283b96675859b20a825f8fa30f311446
https://conda.anaconda.org/t/*****/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda#3b3e64af585eadfb52bb90b553db5edf
https://conda.anaconda.org/t/*****/conda-forge/linux-64/svt-av1-3.0.1-h5888daf_0.conda#83ae590ee23da54c162d1f0fbf05bef0
https://conda.anaconda.org/t/*****/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda#d453b98d9c83e71da0741bb0ff4d76bc
https://conda.anaconda.org/t/*****/conda-forge/linux-64/volk-3.2.0-h9e5c8e9_0.conda#783cd752d872ef3de99b16f88c484235
https://conda.anaconda.org/t/*****/conda-forge/linux-64/volk-gnss-sdr-0.0.19-h716a40f_8.conda#cdfd0c20930ab6d8b84488adb23d800d
https://conda.anaconda.org/t/*****/conda-forge/linux-64/x264-1%21164.3095-h166bdaf_2.tar.bz2#6c99772d483f566d59e25037fea2c4b1
https://conda.anaconda.org/t/*****/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2#4cb3ad778ec2d5a7acbdf254eb1c42ae
https://conda.anaconda.org/t/*****/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda#c9f075ab2f33b3bbee9e62d4ad0a6cd8
https://conda.anaconda.org/t/*****/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_1.conda#02e4e2fa41a6528afba2e54cbc4280ff
https://conda.anaconda.org/t/*****/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda#346722a0be40f6edc53f12640d301338
https://conda.anaconda.org/t/*****/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda#c63b5e52939e795ba8d26e35d767a843
https://conda.anaconda.org/t/*****/conda-forge/linux-64/fmt-11.0.2-h434a139_0.conda#995f7e13598497691c1dc476d889bc04
https://conda.anaconda.org/t/*****/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda#9ecfd6f2ca17077dd9c2d24770bb9ccd
https://conda.anaconda.org/t/*****/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda#ff862eebdfeb2fd048ae9dc92510baca
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda#c94a5994ef49749880a8139cf9afcbe1
https://conda.anaconda.org/t/*****/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda#f87c7b7c2cb45f323ffbce941c78ab7c
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gtest-1.15.2-h434a139_0.conda#0874e26e61c13ae001dc647a650a97ca
https://conda.anaconda.org/t/*****/conda-forge/linux-64/icu-75.1-he02047a_0.conda#8b189310083baabfb622af68fd9d3ae3
https://conda.anaconda.org/t/*****/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda#3f43953b7d3fb3aaa1d0d0723d91e368
https://conda.anaconda.org/t/*****/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libasprintf-devel-0.23.1-h8e693c7_0.conda#2827e722a963b779ce878ef9b5474534
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libcap-2.75-h39aace5_0.conda#c44c16d6976d2aebbd65894d7741e67e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2#3f3258d8f841fbac63b36b75bdac1afd
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libdrm-2.4.124-hb9d3cd8_0.conda#8bc89311041d7fcb510238cf0848ccae
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libgcrypt-lib-1.11.0-hb9d3cd8_2.conda#e55712ff40a054134d51b89afca57dbc
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libgfortran-ng-14.2.0-h69a702a_2.conda#4056c857af1a99ee50589a941059ec55
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libidn2-2.3.8-ha4ef2c3_0.conda#e155d7130e134619e41dc21276ed6ab5
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda#19e57602824042dfd0446292ef90488b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenblas-0.3.29-pthreads_h94d23a6_0.conda#0a4d0252248ef9a0f88f2ba8b8a08e12
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda#d8703f1ffe5a06356f06467f1d0b9464
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libthrift-0.21.0-h0e7cc3e_0.conda#dcb95c0a98ba9ff737f7ae482aef7833
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libunwind-1.6.2-h9c3ff4c_0.tar.bz2#a730b2badd586580c5752cc73842e068
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2#309dec04b70a3cc0f1e84a4013683bc0
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda#cde393f461e0c169d9ffb2fc70f81c33
https://conda.anaconda.org/t/*****/conda-forge/linux-64/lua-5.4.6-h2973eb6_1.conda#a8e850a97a73e2d297385ab468ea16d3
https://conda.anaconda.org/t/*****/conda-forge/linux-64/mysql-libs-9.0.1-he0572af_5.conda#d13932a2a61de7c0fb7864b592034a6e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/nss-3.108-h159eef7_0.conda#3c872a5aa802ee5c645e09d4c5d38585
https://conda.anaconda.org/t/*****/conda-forge/linux-64/ocl-icd-2.3.2-hb9d3cd8_2.conda#2e8d2b469559d6b2cb6fd4b34f9c8d7f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pcre2-10.44-hba22ea6_2.conda#df359c09c41cd186fffb93a2d87aa6f5
https://conda.anaconda.org/t/*****/conda-forge/linux-64/perl-5.32.1-7_hd590300_perl5.conda#f2cfec9406850991f4e3d960cc9e3321
https://conda.anaconda.org/t/*****/conda-forge/linux-64/python-3.12.9-h9e4cc4f_1_cpython.conda#d82342192dfc9145185190e651065aa9
https://conda.anaconda.org/t/*****/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda#353823361b1d27eb3960efb076dfcaf6
https://conda.anaconda.org/t/*****/conda-forge/linux-64/wayland-1.23.1-h3e06ad9_0.conda#0a732427643ae5e0486a727927791da1
https://conda.anaconda.org/t/*****/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2#e7f6ed84d4623d52ee581325c1587a6b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xcb-util-0.4.1-hb711507_2.conda#8637c3e5821654d0edf97e2b0404b443
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda#ad748ccca349aec3e91743e08b5e2b50
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda#0e0cbe0564d03a99afd5fd7b362feecd
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda#608e0ef8256b81d04456e8d211eee3e8
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda#1c74ff8c35dcadf952a16f752ca5aa49
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda#db038ce880f100acc74dba10302b5630
https://conda.anaconda.org/t/*****/conda-forge/noarch/appdirs-1.4.4-pyhd8ed1ab_1.conda#f4e90937bbfc3a4a92539545a37bb448
https://conda.anaconda.org/t/*****/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda#8f587de4bcf981e26228f268df374a9b
https://conda.anaconda.org/t/*****/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda#a10d11958cadc13fdb43df75f8b1903f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/bcrypt-4.3.0-py312h12e396e_0.conda#afa132767ae5b333aac573af1304d0e4
https://conda.anaconda.org/t/*****/conda-forge/noarch/bidict-0.23.1-pyhd8ed1ab_1.conda#a6d521e8054c6b38aea1095060bd7e14
https://conda.anaconda.org/t/*****/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda#42834439227a4551b939beeeb8a4b085
https://conda.anaconda.org/t/*****/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda#98514fe74548d768907ce7a13f680e8f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda#b0b867af6fc74b2a0aa206da29c0f3cf
https://conda.anaconda.org/t/*****/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a
https://conda.anaconda.org/t/*****/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda#c207fa5ac7ea99b149344385a9c0880d
https://conda.anaconda.org/t/*****/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda#e83a31202d1c0a000fce3e9cf3825875
https://conda.anaconda.org/t/*****/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda#f22f4d4970e09d68a10b922cbb0408d3
https://conda.anaconda.org/t/*****/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda#962b9857ee8e7018c22f2776ffa0b2d7
https://conda.anaconda.org/t/*****/conda-forge/noarch/construct-2.10.70-pyhd8ed1ab_0.conda#58e88566bfbbf9d3ffbeda3290e7f4f0
https://conda.anaconda.org/t/*****/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda#44600c4667a319d67dbe0681fc0bc833
https://conda.anaconda.org/t/*****/conda-forge/linux-64/cyrus-sasl-2.1.27-h54b06d7_7.conda#dce22f70b4e5a407ce88f2be046f4ceb
https://conda.anaconda.org/t/*****/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda#9ce473d1d1be1cc3810856a48b3fab32
https://conda.anaconda.org/t/*****/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda#24c1ca34138ee57de72a943237cde4cc
https://conda.anaconda.org/t/*****/conda-forge/linux-64/ephem-4.2-py312h66e93f0_0.conda#c139e6af9718b99b5ae4f108d6eb8ad5
https://conda.anaconda.org/t/*****/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda#a16662747cdeb9abbac74d0057cc976e
https://conda.anaconda.org/t/*****/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda#ef8b5fca76806159fc25b4f48d8737eb
https://conda.anaconda.org/t/*****/conda-forge/linux-64/fftw-3.3.10-nompi_hf1063bd_110.conda#ee3e687b78b778db7b304e5b00a4dca6
https://conda.anaconda.org/t/*****/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda#8f5b0b297b59e1ac160ad4beec99dbee
https://conda.anaconda.org/t/*****/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_2.conda#1054c53c95d85e35b88143a3eda66373
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gettext-0.23.1-h5888daf_0.conda#0754038c806eae440582da1c3af85577
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnutls-3.8.9-h5746830_0.conda#0e776b108cd87ee80618acc5ee64c07f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/greenlet-3.1.1-py312h2ec8cdc_1.conda#38c2f46af8b45f914f55911006cd7056
https://conda.anaconda.org/t/*****/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda#0a802cb9888dd14eeefc611f05c40b6e
https://conda.anaconda.org/t/*****/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda#8e6923fc12f1fe8f8c4e5c9f343256ac
https://conda.anaconda.org/t/*****/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda#39a4f67be3286c86d696df570b1201b7
https://conda.anaconda.org/t/*****/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_1.conda#7ac5f795c15f288984e32add616cdc59
https://conda.anaconda.org/t/*****/conda-forge/linux-64/jack-1.9.22-h7c63dc7_2.conda#f56277b7f079f1b13cbf7fb9b4f194c4
https://conda.anaconda.org/t/*****/conda-forge/linux-64/kiwisolver-1.4.8-py312h84d6215_0.conda#6713467dc95509683bfa3aca08524e8a
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libblas-3.9.0-31_h59b9bed_openblas.conda#728dbebd0f7a20337218beacffd37916
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libboost-1.86.0-h6c02f8c_3.conda#eead4e74198698d1c74f06572af753bc
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libcups-2.3.3-h4637d8d_4.conda#d4529f4dff3057982a7617c7ac58fde3
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libcurl-8.12.1-h332b0f4_0.conda#45e9dc4e7b25e2841deb392be085500e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libglib-2.82.2-h2ff4ddf_1.conda#37d1af619d999ee8f1f73cf5a06f4e2f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda#c8013e438185f33b13814c5c488acd5c
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libsystemd0-257.4-h4e0b6ca_1.conda#04bcf3055e51f8dde6fab9672fb9fca0
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda#0ea6510969e1296cc19966fad481f6de
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libudev1-257.4-hbe16f8c_1.conda#d6716795cd81476ac2f5465f1b1cde75
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libxml2-2.13.6-h8d12d68_0.conda#328382c0e0ca648e5c189d5ec336c604
https://conda.anaconda.org/t/*****/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda#eb227c3e0bf58f5bd69c0532b157975b
https://conda.anaconda.org/t/*****/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19
https://conda.anaconda.org/t/*****/conda-forge/linux-64/ocl-icd-system-1.0.0-1.tar.bz2#577a4bd049737b11a24524e39a16a1f3
https://conda.anaconda.org/t/*****/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda#3bfed7e6228ebf2f7b9eaa47f1b4e2aa
https://conda.anaconda.org/t/*****/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda#5c092057b6badd30f75b06244ecd01c9
https://conda.anaconda.org/t/*****/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda#11a9d1d09a3615fc07c3faf79bc0b943
https://conda.anaconda.org/t/*****/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda#5a5870a74432aa332f7d32180633ad05
https://conda.anaconda.org/t/*****/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda#fd5062942bfa1b0bd5e0d2a4397b099e
https://conda.anaconda.org/t/*****/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda#7d9daffbb8d8e0af0f769dbbcd173a54
https://conda.anaconda.org/t/*****/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda#3bfdfb8dbcdc4af1ae3f9a8eb3948f04
https://conda.anaconda.org/t/*****/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda#12c566707c80111f9799308d9e265aef
https://conda.anaconda.org/t/*****/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda#232fb4577b6687b2d503ef8e254270c9
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyopengl-3.1.7-pyhd8ed1ab_0.conda#6d7d03be8e7f788b444c15262408d063
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyparsing-3.2.1-pyhd8ed1ab_0.conda#285e237b8f351e85e7574a2c7bfa6d46
https://conda.anaconda.org/t/*****/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda#461219d1a5bd61342293efa2c0c90eac
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-tzdata-2025.1-pyhd8ed1ab_0.conda#392c91c42edd569a7ec99ed8648f597a
https://conda.anaconda.org/t/*****/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda#3eeeeb9e4827ace8c0c1419c85d590ad
https://conda.anaconda.org/t/*****/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2#2807a0becd1d986fe1ef9b7f8135f215
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda#cf2485f39740de96e2a7f2bb18ed2fee
https://conda.anaconda.org/t/*****/conda-forge/linux-64/rpds-py-0.23.1-py312h3b7be25_0.conda#b9cb8c7bcbe3df8e640b244ed096b8e2
https://conda.anaconda.org/t/*****/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py312h66e93f0_1.conda#532c3e5d0280be4fea52396ec1fa7d5d
https://conda.anaconda.org/t/*****/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda#9bddfdbf4e061821a1a443f93223be61
https://conda.anaconda.org/t/*****/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda#a451d576819089b0d672f18768be0f65
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-0.8.1-py312h68727a3_5.conda#3738930e7b8d879a43f1a2ff1468b076
https://conda.anaconda.org/t/*****/conda-forge/linux-64/spdlog-1.15.1-hb29a8c4_0.conda#3666458a0c6a5c1ab099e0813ea2dc86
https://conda.anaconda.org/t/*****/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda#b0dd904de08b7db706167240bf37b164
https://conda.anaconda.org/t/*****/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda#ac944244f1fed2eb49bae07193ae8215
https://conda.anaconda.org/t/*****/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda#e417822cb989e80a0d2b1b576fdd1657
https://conda.anaconda.org/t/*****/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda#019a7385be9af33791c989871317e1ed
https://conda.anaconda.org/t/*****/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda#d17f13df8b65464ca316cbc000a3cb64
https://conda.anaconda.org/t/*****/conda-forge/linux-64/unicodedata2-16.0.0-py312h66e93f0_0.conda#617f5d608ff8c28ad546e5d9671cbb95
https://conda.anaconda.org/t/*****/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda#b68980f2495d096e71c7fd9d7ccf63e6
https://conda.anaconda.org/t/*****/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda#84f8f77f0a9c6ef401ee96611745da8f
https://conda.anaconda.org/t/*****/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda#75cb7132eb58d97896e173ef12ac9986
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda#a0901183f08b6c7107aab109733a3c91
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xkeyboard-config-2.43-hb9d3cd8_0.conda#f725c7425d6d7c15e31f3b99a88ea02f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda#febbab7d15033c913d53c7a2c102309d
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxfixes-6.0.1-hb9d3cd8_0.conda#4bdb303603e9821baf5fe5fdff1dc8f8
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda#96d57aba173e878a2089d5638016dc5e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda#3947a35e916fcc6b9825449affbf4214
https://conda.anaconda.org/t/*****/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda#0c3cc595284c5e8f0f9900a9b228a332
https://conda.anaconda.org/t/*****/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda#f730d54ba9cd543666d7220c9f7ed563
https://conda.anaconda.org/t/*****/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551
https://conda.anaconda.org/t/*****/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda#09262e66b19567aff4f592fb53b28760
https://conda.anaconda.org/t/*****/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda#a861504bbea4161a9170b85d4d2be840
https://conda.anaconda.org/t/*****/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2#ecfff944ba3960ecb334b9a2663d708d
https://conda.anaconda.org/t/*****/conda-forge/linux-64/fonttools-4.56.0-py312h178313f_0.conda#2f8a66f2f9eb931cdde040d02c6ab54c
https://conda.anaconda.org/t/*****/conda-forge/noarch/fs-2.4.16-pyhd8ed1ab_0.conda#a231fa7cb5f101f1f3ae8480c0002f91
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gdk-pixbuf-2.42.12-hb9ae30d_0.conda#201db6c2d9a3c5e46573ac4cb2e92f4f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/glib-tools-2.82.2-h4833e2c_1.conda#e2e44caeaef6e4b107577aa46c95eb12
https://conda.anaconda.org/t/*****/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda#7ee49e89531c0dcbba9466f6d115d585
https://conda.anaconda.org/t/*****/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda#b4754fb1bdcb70c8fd54f918301582c6
https://conda.anaconda.org/t/*****/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda#e7a7a6e6f70553a31e6e79c65768d089
https://conda.anaconda.org/t/*****/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda#f4b39bf00c69f56ac01e020ebfac066c
https://conda.anaconda.org/t/*****/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda#c85c76dc67d75619a92f51dfbce06992
https://conda.anaconda.org/t/*****/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda#bd80ba060603cc228d9d81c257093119
https://conda.anaconda.org/t/*****/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda#a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9
https://conda.anaconda.org/t/*****/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda#446bd6c8cb26050d528881df495ce646
https://conda.anaconda.org/t/*****/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda#000e85703f0fd9594c81710dd5066471
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libarchive-3.7.7-h4585015_3.conda#a28808eae584c7f519943719b2a2b386
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libcblas-3.9.0-31_he106b2a_openblas.conda#abb32c727da370c481a1c206f5159ce9
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda#ee48bf17cc83a00f59ca1494d5646869
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda#928b8be80851f5d8ffb016f9c81dae7a
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda#804ca9e91bcaea0824a341d55b1684f2
https://conda.anaconda.org/t/*****/conda-forge/linux-64/liblapack-3.9.0-31_h7ac8fdf_openblas.conda#452b98eafe050ecff932f0ec832dd03f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libliquid1-1.6.0-hee39a08_2.conda#7082b80e9165e4feb9588dae6aacb290
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libllvm19-19.1.7-ha7bfdaf_1.conda#6d2362046dce932eefbdeb0540de0c38
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libmicrohttpd-1.0.1-hbc5bc17_1.conda#c384e4dcd3c345b54bfb79d9ff712349
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libosmodsp0-0.4.0-hee39a08_2.conda#8f0a0a624192228b016ab588a0d6764b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libusb-1.0.27-hb9d3cd8_101.conda#ba7f55c50cbc85a81f5d9ea48c413839
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libxkbcommon-1.8.1-hc4a0caf_0.conda#e7e5b0652227d646b44abdcbd989da7b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda#e71f31f8cfb0a91439f2086fc8aa0461
https://conda.anaconda.org/t/*****/conda-forge/linux-64/m17-cxx-demod-2.3.3-h051f366_5.conda#a3bebcd25748f8b602209d9db04e2d50
https://conda.anaconda.org/t/*****/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda#af6ab708897df59bd6e7283ceab1b56b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda#9e5816bc95d285c115a3ebc2f8563564
https://conda.anaconda.org/t/*****/conda-forge/linux-64/openldap-2.6.9-he970967_0.conda#ca2de8bbdc871bce41dbf59e51324165
https://conda.anaconda.org/t/*****/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda#d0d408b1f18883a944376da5cf8101ea
https://conda.anaconda.org/t/*****/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda#79b5c1440aedc5010f687048d9103628
https://conda.anaconda.org/t/*****/conda-forge/noarch/prompt-toolkit-3.0.50-pyha770c72_0.conda#7d823138f550b14ecae927a5ff3286de
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyfiglet-0.8.post1-py_0.tar.bz2#e22d3c090f24856764e9d70e76fa3a5f
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda#5ba79d7c71f03c678c8ead841f347d6e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pyzmq-26.3.0-py312hbf22597_0.conda#ec243006dd2b7dc72f1fba385e59f693
https://conda.anaconda.org/t/*****/conda-forge/noarch/qtpy-2.4.3-pyhd8ed1ab_0.conda#c9ca35b6fb8fa9af418625192c118567
https://conda.anaconda.org/t/*****/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda#9140f1c09dd5489549c6a33931b943c7
https://conda.anaconda.org/t/*****/conda-forge/linux-64/ruamel.yaml-0.18.10-py312h66e93f0_0.conda#5260b7fb19694ee5bc4ed0ee7a2a769f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/sip-6.7.12-py312h30efb56_0.conda#32633871002ee9902f747d2236e0d122
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-netsdr-0.2.0-hd00649d_1.conda#8c78eeae9bf327535a92459dc5670799
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-redpitaya-0.1.1-hd00649d_0.conda#21cf859399dbf0b3becd739330fca292
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-remote-0.5.2-hee64af1_2.tar.bz2#7d044c01398c2c14525f21f159c3dd71
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-volk-converters-0.1.1-h0b997e9_3.conda#5a0cf60d6d58bb6ca328c23db3919235
https://conda.anaconda.org/t/*****/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda#b1b505328da7a6b246787df4b5a49fbc
https://conda.anaconda.org/t/*****/conda-forge/linux-64/watchdog-6.0.0-py312h7900ff3_0.conda#687b37d1325f228429409465e811c0bc
https://conda.anaconda.org/t/*****/conda-forge/noarch/werkzeug-3.1.3-pyhd8ed1ab_1.conda#0a9b57c159d56b508613cc39022c1b9e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda#eb44b3b6deb1cab08d72cb61686fe64c
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda#d3c295b50f092ab525ffe3c2aa4b7413
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda#2ccd714aa2242315acaf0a67faea780b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda#b5fcc7172d22516e1f965490e65e33a4
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda#17dcc85db3c7886650b8908b183d6876
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxinerama-1.1.5-h5888daf_1.conda#5e2eb9bf77394fc2e5918beefec9f9ab
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda#2de7f99d6581a4a7adbff607b5c278ca
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxscrnsaver-1.2.4-hb9d3cd8_0.conda#303f7a0e9e0cd7d250bb6b952cecda90
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda#5efa5fa6243a622445fdfd72aee15efa
https://conda.anaconda.org/t/*****/conda-forge/noarch/zope.event-5.0-pyhd8ed1ab_1.conda#eed0f4438d9f9cc67314ed2926c3cdd3
https://conda.anaconda.org/t/*****/conda-forge/linux-64/zope.interface-7.2-py312h66e93f0_0.conda#47ae2547fa57520c3b5956bf83ede7fb
https://conda.anaconda.org/t/*****/conda-forge/linux-64/arpack-3.9.1-nompi_hf03ea27_102.conda#e09af397232ef1070e0b6cbf4c64aacb
https://conda.anaconda.org/t/*****/conda-forge/linux-64/cryptography-44.0.2-py312hda17c39_0.conda#9b4ab17c7654fe98ef6cd9a0021cd7bb
https://conda.anaconda.org/t/*****/conda-forge/linux-64/elfutils-0.192-h7f4e02f_1.conda#369ce48a589a2aac91906c9ed89dd6e8
https://conda.anaconda.org/t/*****/conda-forge/noarch/flask-3.1.0-pyhd8ed1ab_1.conda#2da939620e3a741f61fc1cb136df66fb
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gevent-24.11.1-py312h04d4891_0.conda#a57aa41138625fafd40bd6c3656fc44e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/glfw-3.4-hd590300_0.conda#4c7a044d25e000fef39b77c10a102ea1
https://conda.anaconda.org/t/*****/conda-forge/linux-64/glib-2.82.2-h07242d1_1.conda#45a9b272c12cd0dde8a29c7209408e17
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gsl-2.7-he838d99_0.tar.bz2#fec079ba39c9cca093bf4c00001825de
https://conda.anaconda.org/t/*****/conda-forge/linux-64/harfbuzz-10.4.0-h76408a6_0.conda#81f137b4153cf111ff8e3188b6fb8e73
https://conda.anaconda.org/t/*****/conda-forge/noarch/ipython-9.0.2-pyhfb0248b_0.conda#b031bcd65b260a0a3353531eab50d465
https://conda.anaconda.org/t/*****/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda#3b519bc21bc80e60b456f1e62962a766
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libairspy-1.0.10-hb9d3cd8_1.conda#48c5163cb52768fa3b2ac307789e4dee
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libairspyhf-1.6.8-hb9d3cd8_1.conda#2987b6e631f9b536bdec3680a7e2142b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libbladerf2-2024.05-hb9d3cd8_2.conda#f421adb97bfbf93d2e8a38fa133c6572
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libclang-cpp19.1-19.1.7-default_hb5137d0_1.conda#6454f8c8c6094faaaf12acb912c1bb33
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libclang13-19.1.7-default_h9c6a7e4_1.conda#7a642dc8a248fb3fc077bf825e901459
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libgirepository-1.82.0-h0dcfedc_0.conda#6fa896ca28ec44313f1e2438dcc2fded
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libglu-9.0.3-h03adeef_0.conda#b1df5affe904efe82ef890826b68881d
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libhackrf0-2024.02.1-hb9d3cd8_1.conda#a22cb84553690d812ac5cd68c354ffe8
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libhamlib4-4.6.2-h5888daf_2.conda#9b2b63056e05b3b7b8aa3c916f4256b8
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libhidapi-0.14.0-hd590300_0.conda#04c16301e5fee4cc1fff54efc25e711c
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libiio-c-0.26-h108ffe9_1.conda#60c3c72e84e56e064f3b56097a627cbc
https://conda.anaconda.org/t/*****/conda-forge/linux-64/liblimesuite-23.11.0-h5888daf_1.conda#c9f90ba63f4585ada840e354b8ef2833
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libmatio-1.5.28-hbb92ff5_2.conda#bb01c8bcd5f5351176b8fac980a0f954
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libmirisdr4-2.0.0-hb9d3cd8_1.conda#2634a4c42f3842308c7478aa6eeab27e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libpq-17.4-h27ae623_0.conda#d67f3f3c33344ff3e9ef5270001e9011
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda#ef1910918dd895516a769ed36b5b3a4e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libva-2.22.0-h4f16b4b_2.conda#2c65566e79dc11318ce689c656fb551c
https://conda.anaconda.org/t/*****/conda-forge/linux-64/lxml-5.3.1-py312he28fd5a_0.conda#52d16dd592060d4b2fa9ad325e0c1f90
https://conda.anaconda.org/t/*****/conda-forge/noarch/mako-1.3.9-pyhd8ed1ab_0.conda#422113c902cc5181ccaafbb4b827e492
https://conda.anaconda.org/t/*****/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda#06e9bebf748a0dea03ecbe1f0e27e909
https://conda.anaconda.org/t/*****/conda-forge/linux-64/numpy-2.2.3-py312h72c5963_0.conda#d117e16d71afa469ea26c3d6896291da
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pillow-11.1.0-py312h80c1187_0.conda#d3894405f05b2c0f351d5de3ae26fa9c
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pycairo-1.27.0-py312h51b637d_0.conda#ad96d00e45051d1b26e563b1e0ae7b70
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pynacl-1.5.0-py312h66e93f0_4.conda#c47ede9450b5347c1933ccb552fca707
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pyqt5-sip-12.12.2-py312h30efb56_5.conda#8a2a122dc4fe14d8cff38f1cf426381f
https://conda.anaconda.org/t/*****/conda-forge/noarch/qdarkstyle-3.2.3-pyhd8ed1ab_1.conda#b5d204064e9c816535282a94f30a40c9
https://conda.anaconda.org/t/*****/conda-forge/linux-64/rtl-sdr-2.0.2-hb9d3cd8_3.conda#31ae1789dfe31dde88a725149f582f6f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/superlu-5.2.2-h00795ac_0.tar.bz2#2fe6fcc1c7d6e2e8ea3f16ebd3306dbe
https://conda.anaconda.org/t/*****/conda-forge/linux-64/tbb-2022.0.0-hceb3a55_0.conda#79f0161f3ca73804315ca980f65d9c60
https://conda.anaconda.org/t/*****/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_1.conda#2c7536a04d9c21e1dd05bd4a3b1e3a39
https://conda.anaconda.org/t/*****/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda#7bbe9a0cc0df0ac5f5a8ad6d6a11af2f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/zstandard-0.23.0-py312h66e93f0_1.conda#d28b82fcc8d1b462b595af4b15a6cdcf
https://conda.anaconda.org/t/*****/conda-forge/linux-64/airspy-1.0.10-hb9d3cd8_1.conda#91e4b797f06a2e4a664518c7335ff8d9
https://conda.anaconda.org/t/*****/conda-forge/linux-64/airspyhf-1.6.8-hb9d3cd8_1.conda#b9abf9549cb5ec533e2a2759113ef3e8
https://conda.anaconda.org/t/*****/conda-forge/linux-64/armadillo-14.4.0-h4b2c6f2_0.conda#d2af7dc46c1a229ac8062194a6578e99
https://conda.anaconda.org/t/*****/conda-forge/noarch/asciimatics-1.15.0-pyhd8ed1ab_1.conda#1e4474adec5bda131d146a587dcf5c79
https://conda.anaconda.org/t/*****/conda-forge/linux-64/at-spi2-core-2.40.3-h0630a04_0.tar.bz2#8cb2fc4cd6cc63f1369cfa318f581cc3
https://conda.anaconda.org/t/*****/conda-forge/linux-64/contourpy-1.3.1-py312h68727a3_0.conda#f5fbba0394ee45e9a64a73c2a994126a
https://conda.anaconda.org/t/*****/conda-forge/noarch/gevent-websocket-0.10.1-py_0.tar.bz2#25b4b60b6ea50368cd90b75b4d00c711
https://conda.anaconda.org/t/*****/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2#fb05eb5c47590b247658243d27fc32f1
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-pmt-3.10.12.0-py312h68958a3_1.conda#be15f534aa417ee0bf98c863b9822c86
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gstreamer-1.24.7-hf3bb09a_0.conda#c78bc4ef0afb3cd2365d9973c71fc876
https://conda.anaconda.org/t/*****/conda-forge/linux-64/h5py-3.13.0-nompi_py312hedeef09_100.conda#ed73cf6f5e1ce5e823e6efcf54cbdc51
https://conda.anaconda.org/t/*****/conda-forge/linux-64/hackrf-2024.02.1-hee39a08_1.conda#4ac484fcdb0243171db0957a2d09b560
https://conda.anaconda.org/t/*****/conda-forge/linux-64/hamlib-4.6.2-h9aa3e0e_2.conda#8c05e85a1ddf358a84c19200b12a181b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/hamlib-lua-4.6.2-lua54hb9d3cd8_2.conda#3190ac0712f957ed5d93bd57aa2476c6
https://conda.anaconda.org/t/*****/conda-forge/linux-64/hamlib-perl-4.6.2-pl5321hb9d3cd8_2.conda#8ee4b19d302de1a2852d0388824dda68
https://conda.anaconda.org/t/*****/conda-forge/linux-64/hamlib-python-4.6.2-py312h66e93f0_2.conda#2db29f89e5ba5a9b75803f26c674d4b9
https://conda.anaconda.org/t/*****/conda-forge/linux-64/hamlib-tcl-4.6.2-h809f8db_2.conda#c89192e13ab69004bb985ca65e6d62b1
https://conda.anaconda.org/t/*****/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda#a3cead9264b331b32fe8f0aabc967522
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libad9361-iio-c-0.3-hf8c384f_1.conda#bdf80a5f524b9ef990fec7b87182fe4a
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libass-0.17.3-hba53ac1_1.conda#f5e75fe79d446bf4975b41d375314605
https://conda.anaconda.org/t/*****/conda-forge/noarch/libbladerf-python-2024.05-py_2.conda#1463dfd317f3603a9593cac153527c6e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libm2k-0.9.0-py312h04d462b_1.conda#7eb50b721908c89ebdbbd694b6e499d3
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenvino-2025.0.0-hdc3f47d_2.conda#477a9a5ea9a9c1e74d8ced47f82c3cd8
https://conda.anaconda.org/t/*****/conda-forge/linux-64/mesalib-25.0.1-h0b126fc_0.conda#e13b8bc9b8ce3e482e0642ead508c148
https://conda.anaconda.org/t/*****/conda-forge/linux-64/mirisdr-2.0.0-hb9d3cd8_1.conda#fae18232b14ca31881f50589bbd2b331
https://conda.anaconda.org/t/*****/conda-forge/linux-64/numexpr-2.10.2-py312h6a710ac_100.conda#67bf1e95cdc344f82b990ee422792426
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_1.conda#8bce4f6caaf8c5448c7ac86d87e26b4b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pango-1.56.2-h861ebed_0.conda#040f01140009618ce21ce6c5921704ba
https://conda.anaconda.org/t/*****/conda-forge/noarch/paramiko-3.5.1-pyhd8ed1ab_0.conda#4e6bea7eee94bb9d8a599385215719f9
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pulseaudio-client-17.0-hb77b528_0.conda#07f45f1be1c25345faddb8db0de8039b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pygobject-3.50.0-py312hf4b392c_1.conda#f116fc4219a356dbfbe4ba7f37ade21f
https://conda.anaconda.org/t/*****/conda-forge/noarch/pylibiio-0.26-py_1.conda#3be73c72b1383b1f0e9690333780d6cd
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyqtgraph-0.13.7-pyhd8ed1ab_1.conda#569357b4d0b4565c57698a6e2dade74e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/qt6-main-6.8.2-h588cce1_0.conda#4d483b12b9fc7169d112d4f7a250c05c
https://conda.anaconda.org/t/*****/conda-forge/linux-64/scipy-1.15.2-py312ha707e6e_0.conda#00b999c5f9d01fb633db819d79186bd4
https://conda.anaconda.org/t/*****/conda-forge/noarch/simple-websocket-1.1.0-pyhd8ed1ab_0.conda#62e0b21f75a81735ddc72e6019d27c16
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-airspy-0.2.0-hee64af1_0.tar.bz2#d9558641741a29473c3b182fdc35e70f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-airspyhf-0.2.0-hee64af1_0.tar.bz2#8ea0a8625e6ce55767f9aa8f7bdc3d89
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-bladerf-0.4.1-hc1d054c_0.tar.bz2#8e8038dd00fe852f71c7aeb87762008a
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-fcdpp-0.1.1-h65c8d7f_0.conda#584308ad704ebfedd68bb4a6b944cc45
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-hackrf-0.3.4-hee64af1_0.tar.bz2#0b2c78d40670de782eb2df4ceb733df4
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-lms7-23.11.0-h1eb71b1_1.conda#9e04c6dd11b11772795d971bc2ef42a2
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-rtlsdr-0.3.3-h44a8f8d_2.conda#fef661dc26aa8462f33331a575c07774
https://conda.anaconda.org/t/*****/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda#32674f8dbfb7b26410ed580dd3c10a29
https://conda.anaconda.org/t/*****/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2#6b889f174df1e0f816276ae69281af4d
https://conda.anaconda.org/t/*****/conda-forge/linux-64/bladerf-2024.05-hb9d3cd8_2.conda#4b4f2bfa18a02cbfb9e98cf01dbe8a18
https://conda.anaconda.org/t/*****/conda-forge/linux-64/digital_rf-2.6.11-py312hfc87f03_0.conda#84eb242c2e3ce6609ed1d5cbbead8f2d
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gst-plugins-base-1.24.7-h0a52356_0.conda#d368425fbd031a2f8e801a40c3415c72
https://conda.anaconda.org/t/*****/conda-forge/noarch/hamlib-all-4.6.2-linux_2.conda#a321fab609556cb48ddc20f57a43a82e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libiio-0.26-h74aa577_1.conda#c1d0ef4fc3d266b7d4adb3b46b2caf3f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenvino-auto-batch-plugin-2025.0.0-h4d9b6c2_2.conda#f97b2fd990ebaa73a613e8c845ac2f6a
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenvino-auto-plugin-2025.0.0-h4d9b6c2_2.conda#edbdd0917593321cedd8a232eaab565e
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenvino-hetero-plugin-2025.0.0-h981d57b_2.conda#3b1dd8be3f9b8be475771064d94739d4
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2025.0.0-hdc3f47d_2.conda#9273d8c26337da4dd7e574ce6bea1b79
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2025.0.0-hdc3f47d_2.conda#64a5bb85f87ca50bcd5d4e405a281a7f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenvino-intel-npu-plugin-2025.0.0-hdc3f47d_2.conda#5013ef62ab2375e7de213a22bd54ff7f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenvino-ir-frontend-2025.0.0-h981d57b_2.conda#e87fa6147e191af584df6a7f8a2727e5
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenvino-onnx-frontend-2025.0.0-h6363af5_2.conda#17c9dddf4827e51ea2a63070b40c31ee
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenvino-paddle-frontend-2025.0.0-h6363af5_2.conda#dd22be48afd66a261010915198d21ebf
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenvino-pytorch-frontend-2025.0.0-h5888daf_2.conda#ee8a2d76a90abe1ecd8cd67bc64c4114
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenvino-tensorflow-frontend-2025.0.0-h630ec5c_2.conda#9c379f714c3ad449d713296130775838
https://conda.anaconda.org/t/*****/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2025.0.0-h5888daf_2.conda#191d6387b7116a0b07b857b035125f93
https://conda.anaconda.org/t/*****/conda-forge/linux-64/librsvg-2.58.4-h49af25d_2.conda#b9846db0abffb09847e2cb0fec4b4db6
https://conda.anaconda.org/t/*****/conda-forge/linux-64/librtaudio6-5.2.0-h44925b1_3.conda#d0024284058f93a4b072c8c49b51eb34
https://conda.anaconda.org/t/*****/conda-forge/linux-64/matplotlib-base-3.10.1-py312hd3ec401_0.conda#514d8a6894286f6d9894b352782c7e18
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyadi-iio-0.0.19-pyhd8ed1ab_0.conda#aca3bc166b666f8951a3f8b41f0d05be
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pyside6-6.8.2-py312h91f0f75_1.conda#8baf6a8672bf235afede64de7a7da1c2
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-engineio-4.11.2-pyhff2d567_0.conda#480833a0855e1d1782d8ec3aa9d91db2
https://conda.anaconda.org/t/*****/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda#a9b9368f3701a417eac9edbcae7cb737
https://conda.anaconda.org/t/*****/conda-forge/linux-64/sdl3-3.2.8-h3083f51_0.conda#1a851d6f325949ce4c1cd5cd9e5003a7
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-plutosdr-0.2.2-hf8ba673_1.conda#6e05355cfb8219048ce6fc619739e6aa
https://conda.anaconda.org/t/*****/conda-forge/noarch/adwaita-icon-theme-47.0-unix_0.conda#49436a5c604f99058473d84580f0e341
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gtk3-3.24.43-h021d004_4.conda#a891e341072432fafb853b3762957cbf
https://conda.anaconda.org/t/*****/conda-forge/linux-64/matplotlib-3.10.1-py312h7900ff3_0.conda#b598ea33028b8c40bee0fbc2e94b9870
https://conda.anaconda.org/t/*****/conda-forge/noarch/mplcursors-0.6-pyhd8ed1ab_1.conda#fa7bf31f4427e5582f7373d0ba8498f6
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-socketio-5.12.1-pyhd8ed1ab_0.conda#d3ef77c1cebc66115af8109e893480b2
https://conda.anaconda.org/t/*****/conda-forge/linux-64/qt-main-5.15.15-hc3cb62f_2.conda#eadc22e45a87c8d5c71670d9ec956aba
https://conda.anaconda.org/t/*****/conda-forge/linux-64/sdl2-2.32.50-h9b8e6db_1.conda#0d27110a2f613abc268e31b3c1d5fb4f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-audio-0.1.1-h0938181_2.conda#e84eeeee1d1996299c8917cc56e809a6
https://conda.anaconda.org/t/*****/conda-forge/linux-64/uhd-4.8.0.0-py312h0c4309e_0.conda#1921d45810c83122a820a2fd51104055
https://conda.anaconda.org/t/*****/conda-forge/linux-64/ffmpeg-7.1.1-gpl_h24e5c1d_701.conda#d35de22d08aeb027b27fce13a2b2903b
https://conda.anaconda.org/t/*****/conda-forge/noarch/flask-socketio-5.5.1-pyh29332c3_0.conda#03fb6a9594f156a510118a5b4fe64a02
https://conda.anaconda.org/t/*****/conda-forge/linux-64/inspectrum-0.3.1-hcdab9b9_0.conda#76fa80a67d2b2fd246d54bbd6af1dd7b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/pyqt-5.15.9-py312h949fe66_5.conda#f6548a564e2d01b2a42020259503945b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/qwt-6.3.0-h7c222af_0.conda#0b860b7c4d9d39043d168a279724ce1a
https://conda.anaconda.org/t/*****/conda-forge/linux-64/sdl-1.2.68-h9b8e6db_1.conda#4fd26564616fd6c4b875af28c5d8ed65
https://conda.anaconda.org/t/*****/conda-forge/linux-64/soapysdr-module-uhd-0.4.1-haa60c0e_14.conda#ae087a74eb0dc2a1b1eb5e7236aa52b6
https://conda.anaconda.org/t/*****/conda-forge/linux-64/wxwidgets-3.2.6-hf87bdbc_3.conda#b779fbedd39b206187ebd93b82f096db
https://conda.anaconda.org/t/*****/conda-forge/linux-64/alsa-plugins-1.2.12-h702c2b0_1.conda#b9c86a47c1810de59e08335ef08d075b
https://conda.anaconda.org/t/*****/conda-forge/linux-64/limesuite-23.11.0-hdf29579_1.conda#b6aab6499139909d819c63b7818aefeb
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyfda-0.9.2-pyh9208f05_1.conda#a1fdcc4e47c1abb4e0554e2fd02a841c
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-core-3.10.12.0-py312ha7c749d_1.conda#2f8fd837c198500d815f591e69e64be2
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-adsb-0.0.0.20250304.dev%2Bg9645757-unix_py_1.conda#9e67f1f65df571de24cf8b19f06a51fb
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-dect2-0.0.0.20250304.dev%2Bg27a3d6-np20py312hfb79529_1.conda#dc3cf4d80d4cfc5af7bb5a057dbdab23
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-filerepeater-0.0.0.20250304.dev%2Bgec6b386-np20py312h1cd7956_2.conda#d0c9f25e213f0cb1091f2520a6fcb381
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-foo-0.0.0.20250304.dev%2Bg9e0e2-np20py312he06c7e9_1.conda#4de0f5674090ad217737fde5fa0406b4
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-fosphor-0.0.0.20250304.dev%2Bg85a0b8f-np20py312hf6c5108_1.conda#4958e08bf8a759d4e083bee67696de0f
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-funcube-3.10.0.rc3-py312h72a8b4f_12.conda#0c0d82a56653a0759c73e2a52485c94d
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-gpredict-doppler-0.0.0.20250303.dev%2Bg9473cbf-unix_py_1.conda#2a8e3e6791c85a38c88dfc94292dd084
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-grc-3.10.12.0-py312h7fa3635_1.conda#3512b2290a0ebe87ad8aa89a8e15d9cd
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-hermeslite2-1.0.0.0.post20250305%2Bg2e66561-np20py312hfb79529_0.conda#4b30e2d9e2e2eab3bacbea8dece18467
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-hpsdr-0.0.0.20250304.dev%2Bg7748cc9-np20py312hfb79529_1.conda#5fda9f8421a795562225cac3c8887dc0
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-iio-3.10.12.0-py312h7054ea6_1.conda#1a2ccd8cebbaf751727bc3786adfccd9
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-iqbalance-0.38.2-py312h918ed11_7.conda#3a2cefb63a5b712070e31cf8d61311c3
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-iridium-1%211.0.0-py312h735cc32_16.conda#fafb56175611b34d5d17562a7044ca23
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-leo-1.0.0.post20250214%2Bg8f62b92-np20py312he6740ee_2.conda#4221a16fc433b4b5d233411be0bc3737
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-lora_sdr-0.0.0.20250305.dev%2Bga8143cb-np20py312hba54501_0.conda#d28799cfb5117a7ab19b96f6c8236bbc
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-m2k-1.0.0-py312h25c5c46_13.conda#02fd9c018280400a4ab2d7b9ad2417f2
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-paint-0.0.0.20250303.dev%2Bgfb4f7b6-np20py312hba54501_2.conda#68bb66dbd5a3af925203e19f2f1699e8
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-qtgui-3.10.12.0-py312h0075b30_1.conda#5a07a4c4295d149db2dd0d227002113a
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-radar-0.0.0.20250220.dev%2Bg92adce2-np20py312hb8d1e7f_1.conda#ace629f68400cd74bfe98807f1ad03f8
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-rds-3.10.post20250305%2Bgc1cba54-np20py312hfb79529_0.conda#c1f1089cf8971f9923f3154ad280d9ad
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-soapy-3.10.12.0-py312h3843545_1.conda#0af74231f6d9133d982f1b18d23aae62
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-uhd-3.10.12.0-py312ha473bb7_1.conda#b51f7d6e7483f8597bfaadea8878cd70
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-video-sdl-3.10.12.0-py312h6006d4b_1.conda#ef438a7c4257f90a04722d4fb1783913
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-zeromq-3.10.12.0-py312hcb9ea95_1.conda#815d3695cfc0293586e58e7268a40ce2
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-3.10.12.0-py312h10a6dcf_1.conda#cba5ad8f578dc48819be36cadf364d6a
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-ieee802_11-0.0.0.20250304.dev%2Bg761bdd9-np20py312h59d5331_2.conda#243cb120febe0e1a66e2dc89029da307
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-ieee802_15_4-3.6.post20250304%2Bg61f4c4a-np20py312hba54501_1.conda#c50027f30060405b55a06d3ac3d37a3c
https://conda.anaconda.org/t/*****/ryanvolz/linux-64/gnuradio-inspector-0.0.0.20250303.dev%2Bgad6a69e-np20py312hb5e3830_2.conda#bf4872ee40de3e47be85166acc167a22
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-osmosdr-0.2.6-py312ha5fe6e7_7.conda#54fb960b4649f80726bb34e6a5642e21
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnuradio-satellites-5.7.0-py312h9a6c48e_1.conda#05e7d6a93f2996a7e897e117916ce315
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gnss-sdr-0.0.19-ha67f2f6_8.conda#b9a2eafd604cf7db9f1e6701acb7fa6c
https://conda.anaconda.org/t/*****/conda-forge/linux-64/gqrx-2.17.6-ha2948bb_1.conda#e8c208830577c02a3befe5a681e6749e

View File

@ -2,69 +2,71 @@ channels:
- conda-forge
- ryanvolz
dependencies:
- airspy=1.0.10=h7f98852_0
- airspyhf=1.6.8=h7f98852_0
- alsa-plugins=1.2.7.1=h03a20ba_10
- bladerf=2023.02=h0b41bf4_0
- codec2=1.0.3=h7f98852_0
- digital_rf=2.6.9=py311h5bddb8e_0
- ephem=4.1.5=py311h459d7ec_1
- gnss-sdr=0.0.18=h6a4e41f_19
- gnuradio-adsb=0.0.0.20240508.dev+gafd7fabda=unix_pyha6c0e43_0
- gnuradio-dect2=0.0.0.20240502.dev+gb296af2a9=py311h99fcecf_0
- gnuradio-filerepeater=0.0.0.20240502.dev+gd7bb8846c=py311hda6cfc9_0
- gnuradio-foo=0.0.0.20240502.dev+gc53538a22=py311hb33e329_0
- gnuradio-fosphor=0.0.0.20240502.dev+g656fe2f=py311h44ace63_0
- gnuradio-gpredict-doppler=0.0.0.20240508.dev+gb06bc7678=unix_pyha1ad6f9_0
- gnuradio-hermeslite2=v1.0.0.0.post17+8b17ad3=py311h99fcecf_0
- gnuradio-hpsdr=0.0.0.20240507.dev+g958e157=py311h0b8ef5d_0
- gnuradio-ieee802_11=0.0.0.20240507.dev+g8c058d4e0=py311hea763a6_0
- gnuradio-ieee802_15_4=3.6.post133+g932c76f=py311hde414dc_0
- gnuradio-inspector=0.0.0.20240525.dev+g55acca6=py311h717571a_0
- gnuradio-iqbalance=0.38.2=py311h92d02ad_3
- gnuradio-iridium=1!1.0.0=py311h58ff794_11
- gnuradio-leo=1.0.0.post105+12a346f=py311hdc6996e_0
- gnuradio-lora_sdr=0.0.0.20240508.dev+g751a65269=py311hdc6996e_0
- gnuradio-m2k=1.0.0=py311h7e044f9_9
- gnuradio-osmosdr=0.2.4=py311he88b703_16
- gnuradio-paint=0.0.0.20240508.dev+g82696a2=py311hdc6996e_0
- gnuradio-radar=0.0.0.20240525.dev+gc59350d=py311h62879e6_0
- gnuradio-rds=3.10.post22+g2134008=py311ha2ba05b_0
- gnuradio-satellites=5.5.0=py311h0e805ab_2
- gnuradio=3.10.10.0=py311h95f763e_6
- gqrx=2.17.5=h9fdf5f5_4
- hackrf=2024.02.1=hce2fd33_0
- hamlib-all=4.5.5=linux_3
- airspy=1.0.10=hb9d3cd8_1
- airspyhf=1.6.8=hb9d3cd8_1
- alsa-plugins=1.2.12=h702c2b0_1
- bladerf=2024.05=hb9d3cd8_2
- codec2=1.2.0=hb9d3cd8_3
- digital_rf=2.6.11=py312hfc87f03_0
- ephem=4.2=py312h66e93f0_0
- gnss-sdr=0.0.19=ha67f2f6_8
- gnuradio-adsb=0.0.0.20250304.dev+g9645757=unix_py_1
- gnuradio-dect2=0.0.0.20250304.dev+g27a3d6=np20py312hfb79529_1
- gnuradio-filerepeater=0.0.0.20250304.dev+gec6b386=np20py312h1cd7956_2
- gnuradio-foo=0.0.0.20250304.dev+g9e0e2=np20py312he06c7e9_1
- gnuradio-fosphor=0.0.0.20250304.dev+g85a0b8f=np20py312hf6c5108_1
- gnuradio-funcube=3.10.0.rc3=py312h72a8b4f_12
- gnuradio-gpredict-doppler=0.0.0.20250303.dev+g9473cbf=unix_py_1
- gnuradio-hermeslite2=1.0.0.0.post20250305+g2e66561=np20py312hfb79529_0
- gnuradio-hpsdr=0.0.0.20250304.dev+g7748cc9=np20py312hfb79529_1
- gnuradio-ieee802_11=0.0.0.20250304.dev+g761bdd9=np20py312h59d5331_2
- gnuradio-ieee802_15_4=3.6.post20250304+g61f4c4a=np20py312hba54501_1
- gnuradio-inspector=0.0.0.20250303.dev+gad6a69e=np20py312hb5e3830_2
- gnuradio-iqbalance=0.38.2=py312h918ed11_7
- gnuradio-iridium=1!1.0.0=py312h735cc32_16
- gnuradio-leo=1.0.0.post20250214+g8f62b92=np20py312he6740ee_2
- gnuradio-lora_sdr=0.0.0.20250305.dev+ga8143cb=np20py312hba54501_0
- gnuradio-m2k=1.0.0=py312h25c5c46_13
- gnuradio-osmosdr=0.2.6=py312ha5fe6e7_7
- gnuradio-paint=0.0.0.20250303.dev+gfb4f7b6=np20py312hba54501_2
- gnuradio-radar=0.0.0.20250220.dev+g92adce2=np20py312hb8d1e7f_1
- gnuradio-rds=3.10.post20250305+gc1cba54=np20py312hfb79529_0
- gnuradio-satellites=5.7.0=py312h9a6c48e_1
- gnuradio=3.10.12.0=py312h10a6dcf_1
- gqrx=2.17.6=ha2948bb_1
- hackrf=2024.02.1=hee39a08_1
- hamlib-all=4.6.2=linux_2
- inspectrum=0.3.1=hcdab9b9_0
- ipython=8.24.0=pyh707e725_0
- libiio=0.25=ha770c72_1
- libm2k=0.8.0=py311h5266a37_0
- limesuite=23.11.0=h4b40ff6_0
- m17-cxx-demod=2.3.3=hd5edb52_3
- matplotlib=3.8.4=py311h38be061_2
- mirisdr=2.0.0=hd590300_0
- numpy=1.26.4=py311h64a7726_0
- pandas=2.2.2=py311h14de704_1
- pyadi-iio=0.0.16=pyhd8ed1ab_0
- pyfda=0.8.4=pyh9208f05_0
- python=3.11.9=hb806964_0_cpython
- rtl-sdr=2.0.1=hd590300_0
- scipy=1.13.1=py311h517d4fd_0
- ipython=9.0.2=pyhfb0248b_0
- libiio=0.26=h74aa577_1
- libm2k=0.9.0=py312h04d462b_1
- limesuite=23.11.0=hdf29579_1
- m17-cxx-demod=2.3.3=h051f366_5
- matplotlib=3.10.1=py312h7900ff3_0
- mirisdr=2.0.0=hb9d3cd8_1
- numpy=2.2.3=py312h72c5963_0
- pandas=2.2.3=py312hf9745cd_1
- pyadi-iio=0.0.19=pyhd8ed1ab_0
- pyfda=0.9.2=pyh9208f05_1
- python=3.12.9=h9e4cc4f_1_cpython
- rtl-sdr=2.0.2=hb9d3cd8_3
- scipy=1.15.2=py312ha707e6e_0
- soapysdr-module-airspy=0.2.0=hee64af1_0
- soapysdr-module-airspyhf=0.2.0=hee64af1_0
- soapysdr-module-audio=0.1.1=h44a8f8d_1
- soapysdr-module-audio=0.1.1=h0938181_2
- soapysdr-module-bladerf=0.4.1=hc1d054c_0
- soapysdr-module-fcdpp=0.1.1=h65c8d7f_0
- soapysdr-module-hackrf=0.3.4=hee64af1_0
- soapysdr-module-lms7=23.11.0=hee1ac67_0
- soapysdr-module-lms7=23.11.0=h1eb71b1_1
- soapysdr-module-netsdr=0.2.0=hd00649d_1
- soapysdr-module-plutosdr=0.2.2=ha0264d5_0
- soapysdr-module-plutosdr=0.2.2=hf8ba673_1
- soapysdr-module-redpitaya=0.1.1=hd00649d_0
- soapysdr-module-remote=0.5.2=hee64af1_2
- soapysdr-module-rtlsdr=0.3.3=h44a8f8d_2
- soapysdr-module-uhd=0.4.1=hd3ca1a7_10
- soapysdr-module-volk-converters=0.1.1=h2678f24_2
- soapysdr=0.8.1=py311h9547e67_4
- uhd=4.6.0.0=py311he18404f_0
- soapysdr-module-uhd=0.4.1=haa60c0e_14
- soapysdr-module-volk-converters=0.1.1=h0b997e9_3
- soapysdr=0.8.1=py312h68727a3_5
- uhd=4.8.0.0=py312h0c4309e_0
name: radioconda
platform: linux-64
version: 2024.05.29
version: 2025.03.14

View File

@ -15,478 +15,501 @@ register_python_default: false
specs:
- _libgcc_mutex=0.1=conda_forge
- _openmp_mutex=4.5=2_gnu
- adwaita-icon-theme=46.0=unix_0
- airspy=1.0.10=h7f98852_0
- airspyhf=1.6.8=h7f98852_0
- alsa-lib=1.2.11=hd590300_1
- alsa-plugins=1.2.7.1=h03a20ba_10
- aom=3.9.0=hac33072_0
- appdirs=1.4.4=pyh9f0ad1d_0
- archspec=0.2.3=pyhd8ed1ab_0
- armadillo=12.8.3=h5c5d784_0
- arpack=3.8.0=nompi_h0baa96a_101
- asciimatics=1.15.0=pyhd8ed1ab_0
- asttokens=2.4.1=pyhd8ed1ab_0
- adwaita-icon-theme=47.0=unix_0
- airspy=1.0.10=hb9d3cd8_1
- airspyhf=1.6.8=hb9d3cd8_1
- alsa-lib=1.2.13=hb9d3cd8_0
- alsa-plugins=1.2.12=h702c2b0_1
- aom=3.9.1=hac33072_0
- appdirs=1.4.4=pyhd8ed1ab_1
- archspec=0.2.5=pyhd8ed1ab_0
- armadillo=14.4.0=h4b2c6f2_0
- arpack=3.9.1=nompi_hf03ea27_102
- asciimatics=1.15.0=pyhd8ed1ab_1
- asttokens=3.0.0=pyhd8ed1ab_1
- at-spi2-atk=2.38.0=h0630a04_3
- at-spi2-core=2.40.3=h0630a04_0
- atk-1.0=2.38.0=h04ea711_2
- attr=2.5.1=h166bdaf_1
- attrs=23.2.0=pyh71513ae_0
- bcrypt=4.1.3=py311h5ecf98a_0
- bidict=0.23.1=pyhd8ed1ab_0
- bladerf=2023.02=h0b41bf4_0
- blinker=1.8.2=pyhd8ed1ab_0
- boltons=24.0.0=pyhd8ed1ab_0
- brotli-bin=1.1.0=hd590300_1
- brotli-python=1.1.0=py311hb755f60_1
- brotli=1.1.0=hd590300_1
- bzip2=1.0.8=hd590300_5
- c-ares=1.28.1=hd590300_0
- ca-certificates=2024.2.2=hbcca054_0
- attrs=25.3.0=pyh71513ae_0
- bcrypt=4.3.0=py312h12e396e_0
- bidict=0.23.1=pyhd8ed1ab_1
- bladerf=2024.05=hb9d3cd8_2
- blinker=1.9.0=pyhff2d567_0
- boltons=24.0.0=pyhd8ed1ab_1
- brotli-bin=1.1.0=hb9d3cd8_2
- brotli-python=1.1.0=py312h2ec8cdc_2
- brotli=1.1.0=hb9d3cd8_2
- bzip2=1.0.8=h4bc722e_7
- c-ares=1.34.4=hb9d3cd8_0
- ca-certificates=2025.1.31=hbcca054_0
- cached-property=1.5.2=hd8ed1ab_1
- cached_property=1.5.2=pyha770c72_1
- cairo=1.18.0=h3faef2a_0
- certifi=2024.2.2=pyhd8ed1ab_0
- cffi=1.16.0=py311hb3a22ac_0
- charset-normalizer=3.3.2=pyhd8ed1ab_0
- click-plugins=1.1.1=py_0
- click=8.1.7=unix_pyh707e725_0
- codec2=1.0.3=h7f98852_0
- colorama=0.4.6=pyhd8ed1ab_0
- conda-libmamba-solver=24.1.0=pyhd8ed1ab_0
- conda-package-handling=2.2.0=pyh38be061_0
- conda-package-streaming=0.9.0=pyhd8ed1ab_0
- conda=24.5.0=py311h38be061_0
- cairo=1.18.4=h3394656_0
- certifi=2025.1.31=pyhd8ed1ab_0
- cffi=1.17.1=py312h06ac9bb_0
- charset-normalizer=3.4.1=pyhd8ed1ab_0
- click=8.1.8=pyh707e725_0
- codec2=1.2.0=hb9d3cd8_3
- colorama=0.4.6=pyhd8ed1ab_1
- conda-libmamba-solver=24.9.0=pyhd8ed1ab_0
- conda-package-handling=2.4.0=pyh7900ff3_2
- conda-package-streaming=0.11.0=pyhd8ed1ab_1
- conda=24.11.3=py312h7900ff3_0
- construct=2.10.70=pyhd8ed1ab_0
- contourpy=1.2.1=py311h9547e67_0
- cryptography=42.0.7=py311h4a61cc7_0
- cycler=0.12.1=pyhd8ed1ab_0
- contourpy=1.3.1=py312h68727a3_0
- cryptography=44.0.2=py312hda17c39_0
- cycler=0.12.1=pyhd8ed1ab_1
- cyrus-sasl=2.1.27=h54b06d7_7
- dav1d=1.2.1=hd590300_0
- dbus=1.13.6=h5008d03_3
- decorator=5.1.1=pyhd8ed1ab_0
- digital_rf=2.6.9=py311h5bddb8e_0
- distro=1.9.0=pyhd8ed1ab_0
- docutils=0.21.2=pyhd8ed1ab_0
- ephem=4.1.5=py311h459d7ec_1
- decorator=5.2.1=pyhd8ed1ab_0
- digital_rf=2.6.11=py312hfc87f03_0
- distro=1.9.0=pyhd8ed1ab_1
- docutils=0.21.2=pyhd8ed1ab_1
- double-conversion=3.3.1=h5888daf_0
- elfutils=0.192=h7f4e02f_1
- ephem=4.2=py312h66e93f0_0
- epoxy=1.5.10=h166bdaf_1
- exceptiongroup=1.2.0=pyhd8ed1ab_2
- executing=2.0.1=pyhd8ed1ab_0
- expat=2.6.2=h59595ed_0
- ffmpeg=6.1.1=gpl_he44c6f3_112
- fftw=3.3.10=nompi_hc118613_108
- flask-socketio=5.3.6=pyhd8ed1ab_0
- flask=3.0.3=pyhd8ed1ab_0
- fmt=10.2.1=h00ab1b0_0
- exceptiongroup=1.2.2=pyhd8ed1ab_1
- executing=2.1.0=pyhd8ed1ab_1
- expat=2.6.4=h5888daf_0
- ffmpeg=7.1.1=gpl_h24e5c1d_701
- fftw=3.3.10=nompi_hf1063bd_110
- flask-socketio=5.5.1=pyh29332c3_0
- flask=3.1.0=pyhd8ed1ab_1
- fmt=11.0.2=h434a139_0
- font-ttf-dejavu-sans-mono=2.37=hab24e00_0
- font-ttf-inconsolata=3.000=h77eed37_0
- font-ttf-source-code-pro=2.038=h77eed37_0
- font-ttf-ubuntu=0.83=h77eed37_2
- fontconfig=2.14.2=h14ed4e7_0
- font-ttf-ubuntu=0.83=h77eed37_3
- fontconfig=2.15.0=h7e30c49_1
- fonts-conda-ecosystem=1=0
- fonts-conda-forge=1=0
- fonttools=4.52.4=py311h331c9d8_0
- freetype=2.12.1=h267a509_2
- fonttools=4.56.0=py312h178313f_0
- freetype=2.13.3=h48d6fc4_0
- fribidi=1.0.10=h36c2ea0_0
- frozendict=2.4.4=py311h331c9d8_0
- frozendict=2.4.6=py312h66e93f0_0
- fs=2.4.16=pyhd8ed1ab_0
- future=1.0.0=pyhd8ed1ab_0
- future=1.0.0=pyhd8ed1ab_2
- gdk-pixbuf=2.42.12=hb9ae30d_0
- gettext-tools=0.22.5=h59595ed_2
- gettext=0.22.5=h59595ed_2
- gettext-tools=0.23.1=h5888daf_0
- gettext=0.23.1=h5888daf_0
- gevent-websocket=0.10.1=py_0
- gevent=23.9.0.post1=py311hcddcebc_1
- gflags=2.2.2=he1b5a44_1004
- gevent=24.11.1=py312h04d4891_0
- gflags=2.2.2=h5888daf_1005
- glew=2.1.0=h9c3ff4c_2
- glfw=3.4=hd590300_0
- glib-tools=2.80.2=hb6ce0ca_0
- glib=2.80.2=hf974151_0
- glog=0.6.0=h6f12383_0
- gmp=6.3.0=h59595ed_1
- gnss-sdr=0.0.18=h6a4e41f_19
- gnuradio-adsb=0.0.0.20240508.dev+gafd7fabda=unix_pyha6c0e43_0
- gnuradio-core=3.10.10.0=py311he9252ce_6
- gnuradio-dect2=0.0.0.20240502.dev+gb296af2a9=py311h99fcecf_0
- gnuradio-filerepeater=0.0.0.20240502.dev+gd7bb8846c=py311hda6cfc9_0
- gnuradio-foo=0.0.0.20240502.dev+gc53538a22=py311hb33e329_0
- gnuradio-fosphor=0.0.0.20240502.dev+g656fe2f=py311h44ace63_0
- gnuradio-funcube=3.10.0.rc3=py311hb137b5b_4
- gnuradio-gpredict-doppler=0.0.0.20240508.dev+gb06bc7678=unix_pyha1ad6f9_0
- gnuradio-grc=3.10.10.0=py311h281bee8_6
- gnuradio-hermeslite2=v1.0.0.0.post17+8b17ad3=py311h99fcecf_0
- gnuradio-hpsdr=0.0.0.20240507.dev+g958e157=py311h0b8ef5d_0
- gnuradio-ieee802_11=0.0.0.20240507.dev+g8c058d4e0=py311hea763a6_0
- gnuradio-ieee802_15_4=3.6.post133+g932c76f=py311hde414dc_0
- gnuradio-iio=3.10.10.0=py311heb6058b_6
- gnuradio-inspector=0.0.0.20240525.dev+g55acca6=py311h717571a_0
- gnuradio-iqbalance=0.38.2=py311h92d02ad_3
- gnuradio-iridium=1!1.0.0=py311h58ff794_11
- gnuradio-leo-data=1.0.0.post105+12a346f=unix_0
- gnuradio-leo=1.0.0.post105+12a346f=py311hdc6996e_0
- gnuradio-lora_sdr=0.0.0.20240508.dev+g751a65269=py311hdc6996e_0
- gnuradio-m2k=1.0.0=py311h7e044f9_9
- gnuradio-osmosdr=0.2.4=py311he88b703_16
- gnuradio-paint=0.0.0.20240508.dev+g82696a2=py311hdc6996e_0
- gnuradio-pmt=3.10.10.0=py311h08edcf9_6
- gnuradio-qtgui=3.10.10.0=py311hc430274_6
- gnuradio-radar=0.0.0.20240525.dev+gc59350d=py311h62879e6_0
- gnuradio-rds=3.10.post22+g2134008=py311ha2ba05b_0
- gnuradio-satellites=5.5.0=py311h0e805ab_2
- gnuradio-soapy=3.10.10.0=py311hf88367e_6
- gnuradio-uhd=3.10.10.0=py311hfbb3450_6
- gnuradio-video-sdl=3.10.10.0=py311hd3c0a14_6
- gnuradio-zeromq=3.10.10.0=py311he296fd5_6
- gnuradio=3.10.10.0=py311h95f763e_6
- gnutls=3.7.9=hb077bed_0
- gqrx=2.17.5=h9fdf5f5_4
- glib-tools=2.82.2=h4833e2c_1
- glib=2.82.2=h07242d1_1
- glog=0.7.1=hbabe93e_0
- gmp=6.3.0=hac33072_2
- gnss-sdr=0.0.19=ha67f2f6_8
- gnuradio-adsb=0.0.0.20250304.dev+g9645757=unix_py_1
- gnuradio-core=3.10.12.0=py312ha7c749d_1
- gnuradio-dect2=0.0.0.20250304.dev+g27a3d6=np20py312hfb79529_1
- gnuradio-filerepeater=0.0.0.20250304.dev+gec6b386=np20py312h1cd7956_2
- gnuradio-foo=0.0.0.20250304.dev+g9e0e2=np20py312he06c7e9_1
- gnuradio-fosphor=0.0.0.20250304.dev+g85a0b8f=np20py312hf6c5108_1
- gnuradio-funcube=3.10.0.rc3=py312h72a8b4f_12
- gnuradio-gpredict-doppler=0.0.0.20250303.dev+g9473cbf=unix_py_1
- gnuradio-grc=3.10.12.0=py312h7fa3635_1
- gnuradio-hermeslite2=1.0.0.0.post20250305+g2e66561=np20py312hfb79529_0
- gnuradio-hpsdr=0.0.0.20250304.dev+g7748cc9=np20py312hfb79529_1
- gnuradio-ieee802_11=0.0.0.20250304.dev+g761bdd9=np20py312h59d5331_2
- gnuradio-ieee802_15_4=3.6.post20250304+g61f4c4a=np20py312hba54501_1
- gnuradio-iio=3.10.12.0=py312h7054ea6_1
- gnuradio-inspector=0.0.0.20250303.dev+gad6a69e=np20py312hb5e3830_2
- gnuradio-iqbalance=0.38.2=py312h918ed11_7
- gnuradio-iridium=1!1.0.0=py312h735cc32_16
- gnuradio-leo-data=1.0.0.post20250214+g8f62b92=unix_2
- gnuradio-leo=1.0.0.post20250214+g8f62b92=np20py312he6740ee_2
- gnuradio-lora_sdr=0.0.0.20250305.dev+ga8143cb=np20py312hba54501_0
- gnuradio-m2k=1.0.0=py312h25c5c46_13
- gnuradio-osmosdr=0.2.6=py312ha5fe6e7_7
- gnuradio-paint=0.0.0.20250303.dev+gfb4f7b6=np20py312hba54501_2
- gnuradio-pmt=3.10.12.0=py312h68958a3_1
- gnuradio-qtgui=3.10.12.0=py312h0075b30_1
- gnuradio-radar=0.0.0.20250220.dev+g92adce2=np20py312hb8d1e7f_1
- gnuradio-rds=3.10.post20250305+gc1cba54=np20py312hfb79529_0
- gnuradio-satellites=5.7.0=py312h9a6c48e_1
- gnuradio-soapy=3.10.12.0=py312h3843545_1
- gnuradio-uhd=3.10.12.0=py312ha473bb7_1
- gnuradio-video-sdl=3.10.12.0=py312h6006d4b_1
- gnuradio-zeromq=3.10.12.0=py312hcb9ea95_1
- gnuradio=3.10.12.0=py312h10a6dcf_1
- gnutls=3.8.9=h5746830_0
- gqrx=2.17.6=ha2948bb_1
- graphite2=1.3.13=h59595ed_1003
- greenlet=3.0.3=py311hb755f60_0
- greenlet=3.1.1=py312h2ec8cdc_1
- gsl=2.7=he838d99_0
- gst-plugins-base=1.24.4=h9ad1361_0
- gstreamer-orc=0.4.38=hd590300_0
- gstreamer=1.24.4=haf2f30d_0
- gtest=1.14.0=h00ab1b0_1
- gtk3=3.24.42=h6d40eaa_0
- h11=0.14.0=pyhd8ed1ab_0
- h5py=3.11.0=nompi_py311h439e445_101
- hackrf=2024.02.1=hce2fd33_0
- hamlib-all=4.5.5=linux_3
- hamlib-lua=4.5.5=lua54hd590300_3
- hamlib-perl=4.5.5=pl5321hd590300_3
- hamlib-python=4.5.5=py311h459d7ec_3
- hamlib-tcl=4.5.5=h7bfae61_3
- hamlib=4.5.5=hf626f79_3
- harfbuzz=8.5.0=hfac3d4d_0
- hdf5=1.14.3=nompi_hdf9ad27_102
- gst-plugins-base=1.24.7=h0a52356_0
- gstreamer-orc=0.4.41=h17648ed_0
- gstreamer=1.24.7=hf3bb09a_0
- gtest=1.15.2=h434a139_0
- gtk3=3.24.43=h021d004_4
- h11=0.14.0=pyhd8ed1ab_1
- h2=4.2.0=pyhd8ed1ab_0
- h5py=3.13.0=nompi_py312hedeef09_100
- hackrf=2024.02.1=hee39a08_1
- hamlib-all=4.6.2=linux_2
- hamlib-lua=4.6.2=lua54hb9d3cd8_2
- hamlib-perl=4.6.2=pl5321hb9d3cd8_2
- hamlib-python=4.6.2=py312h66e93f0_2
- hamlib-tcl=4.6.2=h809f8db_2
- hamlib=4.6.2=h9aa3e0e_2
- harfbuzz=10.4.0=h76408a6_0
- hdf5=1.14.3=nompi_h2d575fe_109
- hicolor-icon-theme=0.17=ha770c72_2
- icu=73.2=h59595ed_0
- idna=3.7=pyhd8ed1ab_0
- importlib-metadata=7.1.0=pyha770c72_0
- importlib_resources=6.4.0=pyhd8ed1ab_0
- hpack=4.1.0=pyhd8ed1ab_0
- hyperframe=6.1.0=pyhd8ed1ab_0
- icu=75.1=he02047a_0
- idna=3.10=pyhd8ed1ab_1
- importlib-metadata=8.6.1=pyha770c72_0
- importlib_resources=6.5.2=pyhd8ed1ab_0
- inspectrum=0.3.1=hcdab9b9_0
- ipython=8.24.0=pyh707e725_0
- itsdangerous=2.2.0=pyhd8ed1ab_0
- ipython=9.0.2=pyhfb0248b_0
- ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0
- itsdangerous=2.2.0=pyhd8ed1ab_1
- jack=1.9.22=h7c63dc7_2
- jedi=0.19.1=pyhd8ed1ab_0
- jinja2=3.1.4=pyhd8ed1ab_0
- jsonpatch=1.33=pyhd8ed1ab_0
- jsonpointer=2.4=py311h38be061_3
- jsonschema-specifications=2023.12.1=pyhd8ed1ab_0
- jsonschema=4.22.0=pyhd8ed1ab_0
- jedi=0.19.2=pyhd8ed1ab_1
- jinja2=3.1.6=pyhd8ed1ab_0
- jsonpatch=1.33=pyhd8ed1ab_1
- jsonpointer=3.0.0=py312h7900ff3_1
- jsonschema-specifications=2024.10.1=pyhd8ed1ab_1
- jsonschema=4.23.0=pyhd8ed1ab_1
- keyutils=1.6.1=h166bdaf_0
- kiwisolver=1.4.5=py311h9547e67_1
- krb5=1.21.2=h659d440_0
- kiwisolver=1.4.8=py312h84d6215_0
- krb5=1.21.3=h659f571_0
- lame=3.100=h166bdaf_1003
- lcms2=2.16=hb7c19ff_0
- ld_impl_linux-64=2.40=hf3520f5_1
- lcms2=2.17=h717163a_0
- ld_impl_linux-64=2.43=h712a8e2_4
- lerc=4.0.0=h27087fc_0
- libabseil=20240116.2=cxx17_h59595ed_0
- libad9361-iio=0.2=hebf0105_3
- level-zero=1.21.2=h84d6215_0
- libabseil=20240722.0=cxx17_hbbce691_4
- libad9361-iio-c=0.3=hf8c384f_1
- libaec=1.1.3=h59595ed_0
- libaio=0.3.113=h166bdaf_0
- libairspy=1.0.10=h7f98852_0
- libairspyhf=1.6.8=h7f98852_0
- libarchive=3.7.4=hfca40fe_0
- libasprintf-devel=0.22.5=h661eb56_2
- libasprintf=0.22.5=h661eb56_2
- libass=0.17.1=h8fe9dca_1
- libbladerf-python=2023.02=py_0
- libbladerf2=2023.02=h0b41bf4_0
- libblas=3.9.0=22_linux64_openblas
- libboost=1.82.0=h6fcfa73_6
- libbrotlicommon=1.1.0=hd590300_1
- libbrotlidec=1.1.0=hd590300_1
- libbrotlienc=1.1.0=hd590300_1
- libcap=2.69=h0f662aa_0
- libcblas=3.9.0=22_linux64_openblas
- libclang-cpp15=15.0.7=default_h127d8a8_5
- libclang13=18.1.6=default_h5d6823c_0
- libcodec2=1.0.3=h7f98852_0
- libairspy=1.0.10=hb9d3cd8_1
- libairspyhf=1.6.8=hb9d3cd8_1
- libarchive=3.7.7=h4585015_3
- libasprintf-devel=0.23.1=h8e693c7_0
- libasprintf=0.23.1=h8e693c7_0
- libass=0.17.3=hba53ac1_1
- libbladerf-python=2024.05=py_2
- libbladerf2=2024.05=hb9d3cd8_2
- libblas=3.9.0=31_h59b9bed_openblas
- libboost=1.86.0=h6c02f8c_3
- libbrotlicommon=1.1.0=hb9d3cd8_2
- libbrotlidec=1.1.0=hb9d3cd8_2
- libbrotlienc=1.1.0=hb9d3cd8_2
- libcap=2.75=h39aace5_0
- libcblas=3.9.0=31_he106b2a_openblas
- libclang-cpp19.1=19.1.7=default_hb5137d0_1
- libclang13=19.1.7=default_h9c6a7e4_1
- libcodec2=1.2.0=hb9d3cd8_3
- libcorrect=0.0.0=h0b41bf4_0
- libcups=2.3.3=h4637d8d_4
- libcurl=8.8.0=hca28451_0
- libcurl=8.12.1=h332b0f4_0
- libdb=6.2.32=h9c3ff4c_0
- libdeflate=1.20=hd590300_0
- libdrm=2.4.120=hd590300_0
- libedit=3.1.20191231=he28a2e2_2
- libdeflate=1.23=h4ddbbb0_0
- libdrm=2.4.124=hb9d3cd8_0
- libedit=3.1.20250104=pl5321h7949ede_0
- libegl=1.7.0=ha4b6fd6_2
- libev=4.33=hd590300_2
- libevent=2.1.12=hf998b51_1
- libexpat=2.6.2=h59595ed_0
- libffi=3.4.2=h7f98852_5
- libexpat=2.6.4=h5888daf_0
- libffi=3.4.6=h2dba641_0
- libflac=1.4.3=h59595ed_0
- libgcc-ng=13.2.0=h77fa898_7
- libgcrypt=1.10.3=hd590300_0
- libgettextpo-devel=0.22.5=h59595ed_2
- libgettextpo=0.22.5=h59595ed_2
- libgfortran-ng=13.2.0=h69a702a_7
- libgfortran5=13.2.0=hca663fb_7
- libgirepository=1.80.1=h003a4f0_0
- libglib=2.80.2=hf974151_0
- libglu=9.0.0=hac7e632_1003
- libgomp=13.2.0=h77fa898_7
- libgpg-error=1.49=h4f305b6_0
- libhackrf0=2024.02.1=hd590300_0
- libhamlib4=4.5.5=h59595ed_3
- libgcc-ng=14.2.0=h69a702a_2
- libgcc=14.2.0=h767d61c_2
- libgcrypt-lib=1.11.0=hb9d3cd8_2
- libgettextpo-devel=0.23.1=h5888daf_0
- libgettextpo=0.23.1=h5888daf_0
- libgfortran-ng=14.2.0=h69a702a_2
- libgfortran5=14.2.0=hf1ad2bd_2
- libgfortran=14.2.0=h69a702a_2
- libgirepository=1.82.0=h0dcfedc_0
- libgl=1.7.0=ha4b6fd6_2
- libglib=2.82.2=h2ff4ddf_1
- libglu=9.0.3=h03adeef_0
- libglvnd=1.7.0=ha4b6fd6_2
- libglx=1.7.0=ha4b6fd6_2
- libgomp=14.2.0=h767d61c_2
- libgpg-error=1.51=hbd13f7d_1
- libhackrf0=2024.02.1=hb9d3cd8_1
- libhamlib4=4.6.2=h5888daf_2
- libhidapi=0.14.0=hd590300_0
- libhwloc=2.10.0=default_h5622ce7_1001
- libiconv=1.17=hd590300_2
- libidn2=2.3.7=hd590300_0
- libiio-c=0.25=hc58069b_1
- libiio=0.25=ha770c72_1
- libhwloc=2.11.2=default_h0d58e46_1001
- libiconv=1.18=h4ce23a2_1
- libidn2=2.3.8=ha4ef2c3_0
- libiio-c=0.26=h108ffe9_1
- libiio=0.26=h74aa577_1
- libjpeg-turbo=3.0.0=hd590300_1
- liblapack=3.9.0=22_linux64_openblas
- liblimesuite=23.11.0=h59595ed_0
- libliquid1=1.6.0=hce2fd33_1
- libllvm15=15.0.7=hb3ce162_4
- libllvm18=18.1.6=hb77312f_0
- libm2k=0.8.0=py311h5266a37_0
- libmamba=1.5.8=had39da4_0
- libmambapy=1.5.8=py311hf2555c7_0
- libmatio=1.5.26=h31675a7_0
- libmirisdr4=2.0.0=hd590300_0
- libnghttp2=1.58.0=h47da74e_1
- liblapack=3.9.0=31_h7ac8fdf_openblas
- liblimesuite=23.11.0=h5888daf_1
- libliquid1=1.6.0=hee39a08_2
- libllvm19=19.1.7=ha7bfdaf_1
- liblzma=5.6.4=hb9d3cd8_0
- libm2k=0.9.0=py312h04d462b_1
- libmamba=1.5.12=h49b8a8d_0
- libmambapy=1.5.12=py312hbaee817_0
- libmatio=1.5.28=hbb92ff5_2
- libmicrohttpd=1.0.1=hbc5bc17_1
- libmirisdr4=2.0.0=hb9d3cd8_1
- libnghttp2=1.64.0=h161d5f1_0
- libnsl=2.0.1=hd590300_0
- libogg=1.3.4=h7f98852_1
- libopenblas=0.3.27=pthreads_h413a1c8_0
- libopenvino-auto-batch-plugin=2024.1.0=hb045406_7
- libopenvino-auto-plugin=2024.1.0=hb045406_7
- libopenvino-hetero-plugin=2024.1.0=h5c03a75_7
- libopenvino-intel-cpu-plugin=2024.1.0=h2da1b83_7
- libopenvino-intel-gpu-plugin=2024.1.0=h2da1b83_7
- libopenvino-intel-npu-plugin=2024.1.0=he02047a_7
- libopenvino-ir-frontend=2024.1.0=h5c03a75_7
- libopenvino-onnx-frontend=2024.1.0=h07e8aee_7
- libopenvino-paddle-frontend=2024.1.0=h07e8aee_7
- libopenvino-pytorch-frontend=2024.1.0=he02047a_7
- libopenvino-tensorflow-frontend=2024.1.0=h39126c6_7
- libopenvino-tensorflow-lite-frontend=2024.1.0=he02047a_7
- libopenvino=2024.1.0=h2da1b83_7
- libntlm=1.8=hb9d3cd8_0
- libogg=1.3.5=h4ab18f5_0
- libopenblas=0.3.29=pthreads_h94d23a6_0
- libopengl=1.7.0=ha4b6fd6_2
- libopenvino-auto-batch-plugin=2025.0.0=h4d9b6c2_2
- libopenvino-auto-plugin=2025.0.0=h4d9b6c2_2
- libopenvino-hetero-plugin=2025.0.0=h981d57b_2
- libopenvino-intel-cpu-plugin=2025.0.0=hdc3f47d_2
- libopenvino-intel-gpu-plugin=2025.0.0=hdc3f47d_2
- libopenvino-intel-npu-plugin=2025.0.0=hdc3f47d_2
- libopenvino-ir-frontend=2025.0.0=h981d57b_2
- libopenvino-onnx-frontend=2025.0.0=h6363af5_2
- libopenvino-paddle-frontend=2025.0.0=h6363af5_2
- libopenvino-pytorch-frontend=2025.0.0=h5888daf_2
- libopenvino-tensorflow-frontend=2025.0.0=h630ec5c_2
- libopenvino-tensorflow-lite-frontend=2025.0.0=h5888daf_2
- libopenvino=2025.0.0=hdc3f47d_2
- libopus=1.3.1=h7f98852_1
- libosmodsp0=0.4.0=hce2fd33_1
- libosmodsp0=0.4.0=hee39a08_2
- libpcap=1.10.4=hd590300_1
- libpciaccess=0.18=hd590300_0
- libpng=1.6.43=h2797004_0
- libpq=16.3=ha72fbe1_0
- libprotobuf=4.25.3=h08a7969_0
- librsvg=2.58.0=hadf69e7_1
- libpng=1.6.47=h943b412_0
- libpq=17.4=h27ae623_0
- libprotobuf=5.28.3=h6128344_1
- librsvg=2.58.4=h49af25d_2
- librtaudio6=5.2.0=h44925b1_3
- libsndfile=1.2.2=hc60ed4a_1
- libsodium=1.0.18=h36c2ea0_1
- libsolv=0.7.29=ha6fb4c9_0
- libsqlite=3.45.3=h2797004_0
- libssh2=1.11.0=h0841786_0
- libstdcxx-ng=13.2.0=hc0a3c3a_7
- libsystemd0=255=h3516f8a_1
- libtasn1=4.19.0=h166bdaf_0
- libthrift=0.20.0=hb90f79a_0
- libtiff=4.6.0=h1dd3fc0_3
- libudev1=255=h3f72095_1
- libsodium=1.0.20=h4ab18f5_0
- libsolv=0.7.30=h3509ff9_0
- libsqlite=3.49.1=hee588c1_1
- libssh2=1.11.1=hf672d98_0
- libstdcxx-ng=14.2.0=h4852527_2
- libstdcxx=14.2.0=h8f9b012_2
- libsystemd0=257.4=h4e0b6ca_1
- libtasn1=4.20.0=hb9d3cd8_0
- libthrift=0.21.0=h0e7cc3e_0
- libtiff=4.7.0=hd9ff511_3
- libudev1=257.4=hbe16f8c_1
- libunistring=0.9.10=h7f98852_0
- libusb=1.0.27=h520f47e_100
- libunwind=1.6.2=h9c3ff4c_0
- liburing=2.9=h84d6215_0
- libusb=1.0.27=hb9d3cd8_101
- libuuid=2.38.1=h0b41bf4_0
- libuv=1.48.0=hd590300_0
- libva=2.21.0=hd590300_0
- libuv=1.50.0=hb9d3cd8_0
- libva=2.22.0=h4f16b4b_2
- libvorbis=1.3.7=h9c3ff4c_0
- libvpx=1.14.0=h59595ed_0
- libwebp-base=1.4.0=hd590300_0
- libxcb=1.15=h0b41bf4_0
- libvpx=1.14.1=hac33072_0
- libwebp-base=1.5.0=h851e524_0
- libxcb=1.17.0=h8a09558_0
- libxcrypt=4.4.36=hd590300_1
- libxkbcommon=1.7.0=h662e7e4_0
- libxml2=2.12.7=hc051c1a_0
- libxkbcommon=1.8.1=hc4a0caf_0
- libxml2=2.13.6=h8d12d68_0
- libxslt=1.1.39=h76b75d6_0
- libzlib=1.2.13=h4ab18f5_6
- limesuite=23.11.0=h4b40ff6_0
- libzlib=1.3.1=hb9d3cd8_2
- limesuite=23.11.0=hdf29579_1
- lua=5.4.6=h2973eb6_1
- lxml=5.2.2=py311hc0a218f_0
- lz4-c=1.9.4=hcb278e6_0
- lxml=5.3.1=py312he28fd5a_0
- lz4-c=1.10.0=h5888daf_1
- lzo=2.10=hd590300_1001
- m17-cxx-demod=2.3.3=hd5edb52_3
- mako=1.3.5=pyhd8ed1ab_0
- mamba=1.5.8=py311h3072747_0
- m17-cxx-demod=2.3.3=h051f366_5
- mako=1.3.9=pyhd8ed1ab_0
- mamba=1.5.12=py312h9460a1c_0
- markdown=3.6=pyhd8ed1ab_0
- markupsafe=2.1.5=py311h459d7ec_0
- matplotlib-base=3.8.4=py311ha4ca890_2
- matplotlib-inline=0.1.7=pyhd8ed1ab_0
- matplotlib=3.8.4=py311h38be061_2
- menuinst=2.1.0=py311h38be061_0
- mirisdr=2.0.0=hd590300_0
- mpg123=1.32.6=h59595ed_0
- mplcursors=0.5.3=pyhd8ed1ab_0
- markupsafe=3.0.2=py312h178313f_1
- matplotlib-base=3.10.1=py312hd3ec401_0
- matplotlib-inline=0.1.7=pyhd8ed1ab_1
- matplotlib=3.10.1=py312h7900ff3_0
- menuinst=2.2.0=py312h7900ff3_0
- mesalib=25.0.1=h0b126fc_0
- mirisdr=2.0.0=hb9d3cd8_1
- mpg123=1.32.9=hc50e24c_0
- mplcursors=0.6=pyhd8ed1ab_1
- munkres=1.1.4=pyh9f0ad1d_0
- mysql-common=8.3.0=hf1915f5_4
- mysql-libs=8.3.0=hca2cd23_4
- ncurses=6.5=h59595ed_0
- mysql-common=9.0.1=h266115a_5
- mysql-libs=9.0.1=he0572af_5
- ncurses=6.5=h2d0b736_3
- nettle=3.9.1=h7ab15ed_0
- nomkl=1.0=h5ca1d4c_0
- nspr=4.35=h27087fc_0
- nss=3.100=hca3bf56_0
- numexpr=2.8.4=py311h039bad6_101
- numpy=1.26.4=py311h64a7726_0
- nspr=4.36=h5888daf_0
- nss=3.108=h159eef7_0
- numexpr=2.10.2=py312h6a710ac_100
- numpy=2.2.3=py312h72c5963_0
- ocl-icd-system=1.0.0=1
- ocl-icd=2.3.2=hd590300_1
- openh264=2.4.1=h59595ed_0
- openjpeg=2.5.2=h488ebb8_0
- openssl=3.3.0=h4ab18f5_3
- ocl-icd=2.3.2=hb9d3cd8_2
- opencl-headers=2024.10.24=h5888daf_0
- openh264=2.6.0=hc22cd8d_0
- openjpeg=2.5.3=h5fbd93e_0
- openldap=2.6.9=he970967_0
- openssl=3.4.1=h7b32b05_0
- p11-kit=0.24.1=hc5aa10d_0
- packaging=24.0=pyhd8ed1ab_0
- pandas=2.2.2=py311h14de704_1
- pango=1.52.2=ha41ecd1_0
- paramiko=3.4.0=pyhd8ed1ab_0
- parso=0.8.4=pyhd8ed1ab_0
- pcre2=10.43=hcad00b1_0
- packaging=24.2=pyhd8ed1ab_2
- pandas=2.2.3=py312hf9745cd_1
- pango=1.56.2=h861ebed_0
- paramiko=3.5.1=pyhd8ed1ab_0
- parso=0.8.4=pyhd8ed1ab_1
- pcre2=10.44=hba22ea6_2
- perl=5.32.1=7_hd590300_perl5
- pexpect=4.9.0=pyhd8ed1ab_0
- pickleshare=0.7.5=py_1003
- pillow=10.3.0=py311h18e6fac_0
- pixman=0.43.2=h59595ed_0
- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1
- platformdirs=4.2.2=pyhd8ed1ab_0
- pluggy=1.5.0=pyhd8ed1ab_0
- ply=3.11=pyhd8ed1ab_2
- portaudio=19.6.0=h7c63dc7_9
- prompt-toolkit=3.0.42=pyha770c72_0
- pthread-stubs=0.4=h36c2ea0_1001
- ptyprocess=0.7.0=pyhd3deb0d_0
- pugixml=1.14=h59595ed_0
- pexpect=4.9.0=pyhd8ed1ab_1
- pickleshare=0.7.5=pyhd8ed1ab_1004
- pillow=11.1.0=py312h80c1187_0
- pip=25.0.1=pyh8b19718_0
- pixman=0.44.2=h29eaf8c_0
- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_2
- platformdirs=4.3.6=pyhd8ed1ab_1
- pluggy=1.5.0=pyhd8ed1ab_1
- ply=3.11=pyhd8ed1ab_3
- portaudio=19.7.0=hf4617a5_0
- prompt-toolkit=3.0.50=pyha770c72_0
- pthread-stubs=0.4=hb9d3cd8_1002
- ptyprocess=0.7.0=pyhd8ed1ab_1
- pugixml=1.15=h3f63f65_0
- pulseaudio-client=17.0=hb77b528_0
- pure_eval=0.2.2=pyhd8ed1ab_0
- pyadi-iio=0.0.16=pyhd8ed1ab_0
- pure_eval=0.2.3=pyhd8ed1ab_1
- pyadi-iio=0.0.19=pyhd8ed1ab_0
- pybind11-abi=4=hd8ed1ab_3
- pycairo=1.26.0=py311h8feb60e_0
- pycosat=0.6.6=py311h459d7ec_0
- pycparser=2.22=pyhd8ed1ab_0
- pyfda=0.8.4=pyh9208f05_0
- pycairo=1.27.0=py312h51b637d_0
- pycosat=0.6.6=py312h66e93f0_2
- pycparser=2.22=pyh29332c3_1
- pyfda=0.9.2=pyh9208f05_1
- pyfiglet=0.8.post1=py_0
- pygments=2.18.0=pyhd8ed1ab_0
- pygobject=3.48.2=py311h86ed371_0
- pylibiio=0.25=py_1
- pynacl=1.5.0=py311h459d7ec_3
- pyopengl=3.1.6=pyhd8ed1ab_1
- pyparsing=3.1.2=pyhd8ed1ab_0
- pyqt5-sip=12.12.2=py311hb755f60_5
- pyqt=5.15.9=py311hf0fb5b6_5
- pyqtgraph=0.13.7=pyhd8ed1ab_0
- pysocks=1.7.1=pyha2e5f31_6
- python-dateutil=2.9.0=pyhd8ed1ab_0
- python-engineio=4.9.1=pyhd8ed1ab_0
- python-socketio=5.11.2=pyhd8ed1ab_0
- python-tzdata=2024.1=pyhd8ed1ab_0
- python=3.11.9=hb806964_0_cpython
- python_abi=3.11=4_cp311
- pygments=2.19.1=pyhd8ed1ab_0
- pygobject=3.50.0=py312hf4b392c_1
- pylibiio=0.26=py_1
- pynacl=1.5.0=py312h66e93f0_4
- pyopengl=3.1.7=pyhd8ed1ab_0
- pyparsing=3.2.1=pyhd8ed1ab_0
- pyqt5-sip=12.12.2=py312h30efb56_5
- pyqt=5.15.9=py312h949fe66_5
- pyqtgraph=0.13.7=pyhd8ed1ab_1
- pyside6=6.8.2=py312h91f0f75_1
- pysocks=1.7.1=pyha55dd90_7
- python-dateutil=2.9.0.post0=pyhff2d567_1
- python-engineio=4.11.2=pyhff2d567_0
- python-socketio=5.12.1=pyhd8ed1ab_0
- python-tzdata=2025.1=pyhd8ed1ab_0
- python=3.12.9=h9e4cc4f_1_cpython
- python_abi=3.12=5_cp312
- pytz=2024.1=pyhd8ed1ab_0
- pywin32-on-windows=0.1.0=pyh1179c8e_3
- pyyaml=6.0.1=py311h459d7ec_1
- pyzmq=26.0.3=py311h08a0b41_0
- qdarkstyle=3.2.3=pyhd8ed1ab_0
- qt-main=5.15.8=hc9dc06e_21
- qtpy=2.4.1=pyhd8ed1ab_0
- pyyaml=6.0.2=py312h178313f_2
- pyzmq=26.3.0=py312hbf22597_0
- qdarkstyle=3.2.3=pyhd8ed1ab_1
- qhull=2020.2=h434a139_5
- qt-main=5.15.15=hc3cb62f_2
- qt6-main=6.8.2=h588cce1_0
- qtpy=2.4.3=pyhd8ed1ab_0
- qwt=6.3.0=h7c222af_0
- readline=8.2=h8228510_1
- referencing=0.35.1=pyhd8ed1ab_0
- reproc-cpp=14.2.4.post0=h59595ed_1
- reproc=14.2.4.post0=hd590300_1
- requests=2.32.2=pyhd8ed1ab_0
- rpds-py=0.18.1=py311h5ecf98a_0
- rtl-sdr=2.0.1=hd590300_0
- ruamel.yaml.clib=0.2.8=py311h459d7ec_0
- ruamel.yaml=0.18.6=py311h459d7ec_0
- scipy=1.13.1=py311h517d4fd_0
- sdl2=2.30.2=hdbcbe63_0
- sdl=1.2.68=h293081c_0
- setuptools=70.0.0=pyhd8ed1ab_0
- simple-websocket=1.0.0=pyhd8ed1ab_1
- sip=6.7.12=py311hb755f60_0
- six=1.16.0=pyh6c4a22f_0
- snappy=1.2.0=hdb0a2a9_1
- readline=8.2=h8c095d6_2
- referencing=0.36.2=pyh29332c3_0
- reproc-cpp=14.2.5.post0=h5888daf_0
- reproc=14.2.5.post0=hb9d3cd8_0
- requests=2.32.3=pyhd8ed1ab_1
- rpds-py=0.23.1=py312h3b7be25_0
- rtl-sdr=2.0.2=hb9d3cd8_3
- ruamel.yaml.clib=0.2.8=py312h66e93f0_1
- ruamel.yaml=0.18.10=py312h66e93f0_0
- scipy=1.15.2=py312ha707e6e_0
- sdl2=2.32.50=h9b8e6db_1
- sdl3=3.2.8=h3083f51_0
- sdl=1.2.68=h9b8e6db_1
- setuptools=75.8.2=pyhff2d567_0
- simple-websocket=1.1.0=pyhd8ed1ab_0
- sip=6.7.12=py312h30efb56_0
- six=1.17.0=pyhd8ed1ab_0
- snappy=1.2.1=h8bd8927_1
- soapysdr-module-airspy=0.2.0=hee64af1_0
- soapysdr-module-airspyhf=0.2.0=hee64af1_0
- soapysdr-module-audio=0.1.1=h44a8f8d_1
- soapysdr-module-audio=0.1.1=h0938181_2
- soapysdr-module-bladerf=0.4.1=hc1d054c_0
- soapysdr-module-fcdpp=0.1.1=h65c8d7f_0
- soapysdr-module-hackrf=0.3.4=hee64af1_0
- soapysdr-module-lms7=23.11.0=hee1ac67_0
- soapysdr-module-lms7=23.11.0=h1eb71b1_1
- soapysdr-module-netsdr=0.2.0=hd00649d_1
- soapysdr-module-plutosdr=0.2.2=ha0264d5_0
- soapysdr-module-plutosdr=0.2.2=hf8ba673_1
- soapysdr-module-redpitaya=0.1.1=hd00649d_0
- soapysdr-module-remote=0.5.2=hee64af1_2
- soapysdr-module-rtlsdr=0.3.3=h44a8f8d_2
- soapysdr-module-uhd=0.4.1=hd3ca1a7_10
- soapysdr-module-volk-converters=0.1.1=h2678f24_2
- soapysdr=0.8.1=py311h9547e67_4
- spdlog=1.12.0=hd2e6256_2
- stack_data=0.6.2=pyhd8ed1ab_0
- soapysdr-module-uhd=0.4.1=haa60c0e_14
- soapysdr-module-volk-converters=0.1.1=h0b997e9_3
- soapysdr=0.8.1=py312h68727a3_5
- spdlog=1.15.1=hb29a8c4_0
- stack_data=0.6.3=pyhd8ed1ab_1
- superlu=5.2.2=h00795ac_0
- svt-av1=2.1.0=hac33072_0
- tbb=2021.12.0=h297d8ca_1
- svt-av1=3.0.1=h5888daf_0
- tbb=2022.0.0=hceb3a55_0
- tk=8.6.13=noxft_h4845f30_101
- toml=0.10.2=pyhd8ed1ab_0
- tomli=2.0.1=pyhd8ed1ab_0
- tornado=6.4=py311h459d7ec_0
- tqdm=4.66.4=pyhd8ed1ab_0
- traitlets=5.14.3=pyhd8ed1ab_0
- truststore=0.8.0=pyhd8ed1ab_0
- typing_extensions=4.11.0=pyha770c72_0
- tzdata=2024a=h0c530f3_0
- uhd=4.6.0.0=py311he18404f_0
- urllib3=2.2.1=pyhd8ed1ab_0
- volk-gnss-sdr=0.0.18=hac33072_19
- volk=3.1.2=h59595ed_0
- watchdog=4.0.1=py311h38be061_0
- wayland=1.22.0=h8c25dac_1
- wcwidth=0.2.13=pyhd8ed1ab_0
- websocket-client=1.8.0=pyhd8ed1ab_0
- werkzeug=3.0.3=pyhd8ed1ab_0
- wsproto=1.2.0=pyhd8ed1ab_0
- wxwidgets=3.2.5=h91e79f6_0
- toml=0.10.2=pyhd8ed1ab_1
- tomli=2.2.1=pyhd8ed1ab_1
- tornado=6.4.2=py312h66e93f0_0
- tqdm=4.67.1=pyhd8ed1ab_1
- traitlets=5.14.3=pyhd8ed1ab_1
- truststore=0.10.1=pyh29332c3_0
- typing_extensions=4.12.2=pyha770c72_1
- tzdata=2025a=h78e105d_0
- uhd=4.8.0.0=py312h0c4309e_0
- unicodedata2=16.0.0=py312h66e93f0_0
- urllib3=2.3.0=pyhd8ed1ab_0
- volk-gnss-sdr=0.0.19=h716a40f_8
- volk=3.2.0=h9e5c8e9_0
- watchdog=6.0.0=py312h7900ff3_0
- wayland-protocols=1.41=hd8ed1ab_0
- wayland=1.23.1=h3e06ad9_0
- wcwidth=0.2.13=pyhd8ed1ab_1
- websocket-client=1.8.0=pyhd8ed1ab_1
- werkzeug=3.1.3=pyhd8ed1ab_1
- wheel=0.45.1=pyhd8ed1ab_1
- wsproto=1.2.0=pyhd8ed1ab_1
- wxwidgets=3.2.6=hf87bdbc_3
- x264=1!164.3095=h166bdaf_2
- x265=3.5=h924138e_3
- xcb-util-image=0.4.0=h8ee46fc_1
- xcb-util-keysyms=0.4.0=h8ee46fc_1
- xcb-util-renderutil=0.3.9=hd590300_1
- xcb-util-wm=0.4.1=h8ee46fc_1
- xcb-util=0.4.0=hd590300_1
- xkeyboard-config=2.41=hd590300_0
- xorg-compositeproto=0.4.2=h7f98852_1001
- xorg-damageproto=1.2.1=h7f98852_1002
- xorg-fixesproto=5.0=h7f98852_1002
- xorg-inputproto=2.3.2=h7f98852_1002
- xorg-kbproto=1.0.7=h7f98852_1002
- xorg-libice=1.1.1=hd590300_0
- xorg-libsm=1.2.4=h7391055_0
- xorg-libx11=1.8.9=h8ee46fc_0
- xorg-libxau=1.0.11=hd590300_0
- xorg-libxcomposite=0.4.6=h0b41bf4_1
- xorg-libxcursor=1.2.0=h0b41bf4_1
- xorg-libxdamage=1.1.5=h7f98852_1
- xorg-libxdmcp=1.1.3=h7f98852_0
- xorg-libxext=1.3.4=h0b41bf4_2
- xorg-libxfixes=5.0.3=h7f98852_1004
- xorg-libxi=1.7.10=h7f98852_0
- xorg-libxinerama=1.1.5=h27087fc_0
- xorg-libxrandr=1.5.2=h7f98852_1
- xorg-libxrender=0.9.11=hd590300_0
- xorg-libxtst=1.2.3=h7f98852_1002
- xorg-randrproto=1.5.0=h7f98852_1001
- xorg-recordproto=1.14.2=h7f98852_1002
- xorg-renderproto=0.11.1=h7f98852_1002
- xorg-util-macros=1.19.3=h7f98852_0
- xorg-xextproto=7.3.0=h0b41bf4_1003
- xorg-xf86vidmodeproto=2.3.1=h7f98852_1002
- xorg-xproto=7.0.31=h7f98852_1007
- xz=5.2.6=h166bdaf_0
- xcb-util-cursor=0.1.5=hb9d3cd8_0
- xcb-util-image=0.4.0=hb711507_2
- xcb-util-keysyms=0.4.1=hb711507_0
- xcb-util-renderutil=0.3.10=hb711507_0
- xcb-util-wm=0.4.2=hb711507_0
- xcb-util=0.4.1=hb711507_2
- xkeyboard-config=2.43=hb9d3cd8_0
- xorg-libice=1.1.2=hb9d3cd8_0
- xorg-libsm=1.2.6=he73a12e_0
- xorg-libx11=1.8.12=h4f16b4b_0
- xorg-libxau=1.0.12=hb9d3cd8_0
- xorg-libxcomposite=0.4.6=hb9d3cd8_2
- xorg-libxcursor=1.2.3=hb9d3cd8_0
- xorg-libxdamage=1.1.6=hb9d3cd8_0
- xorg-libxdmcp=1.1.5=hb9d3cd8_0
- xorg-libxext=1.3.6=hb9d3cd8_0
- xorg-libxfixes=6.0.1=hb9d3cd8_0
- xorg-libxi=1.8.2=hb9d3cd8_0
- xorg-libxinerama=1.1.5=h5888daf_1
- xorg-libxrandr=1.5.4=hb9d3cd8_0
- xorg-libxrender=0.9.12=hb9d3cd8_0
- xorg-libxscrnsaver=1.2.4=hb9d3cd8_0
- xorg-libxshmfence=1.3.3=hb9d3cd8_0
- xorg-libxtst=1.2.5=hb9d3cd8_3
- xorg-libxxf86vm=1.1.6=hb9d3cd8_0
- yaml-cpp=0.8.0=h59595ed_0
- yaml=0.2.5=h7f98852_2
- zeromq=4.3.5=h75354e8_4
- zipp=3.17.0=pyhd8ed1ab_0
- zlib=1.2.13=h4ab18f5_6
- zope.event=5.0=pyhd8ed1ab_0
- zope.interface=6.4.post2=py311h331c9d8_0
- zstandard=0.19.0=py311hd4cff14_0
- zstd=1.5.6=ha6fb4c9_0
- zeromq=4.3.5=h3b0a872_7
- zipp=3.21.0=pyhd8ed1ab_1
- zlib=1.3.1=hb9d3cd8_2
- zope.event=5.0=pyhd8ed1ab_1
- zope.interface=7.2=py312h66e93f0_0
- zstandard=0.23.0=py312h66e93f0_1
- zstd=1.5.7=hb8e6e7a_1
user_requested_specs:
- airspy
- airspyhf
- alsa-plugins
- bladerf
- codec2
- conda
- digital_rf
- ephem
- gnss-sdr
@ -496,6 +519,7 @@ user_requested_specs:
- gnuradio-filerepeater
- gnuradio-foo
- gnuradio-fosphor
- gnuradio-funcube
- gnuradio-gpredict-doppler
- gnuradio-hermeslite2
- gnuradio-hpsdr
@ -536,6 +560,7 @@ user_requested_specs:
- soapysdr-module-airspyhf
- soapysdr-module-audio
- soapysdr-module-bladerf
- soapysdr-module-fcdpp
- soapysdr-module-hackrf
- soapysdr-module-lms7
- soapysdr-module-netsdr
@ -546,5 +571,5 @@ user_requested_specs:
- soapysdr-module-uhd
- soapysdr-module-volk-converters
- uhd
version: 2024.05.29
version: 2025.03.14
write_condarc: true

View File

@ -1,440 +1,463 @@
# Generated by conda-lock.
# platform: linux-aarch64
# input_hash: 973c2ee1d34a4ce4d692a680e548f83c13ddee16897cc83294a34dd6821f6a8e
# input_hash: ac6c350d1766a282441aa82bfae1c666bbeb997cfac1f7b9d718e4f5fc6874a4
@EXPLICIT
https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2024.2.2-hcefe29a_0.conda#57c226edb90c4e973b9b7503537dd339
https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45
https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6
https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb
https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda#cbbe59391138ea5ad3658c76912e147f
https://conda.anaconda.org/conda-forge/linux-aarch64/hicolor-icon-theme-0.17-h8af1aa0_2.tar.bz2#331add9f855e921695d7b569aa23d5ec
https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.40-h9fc2d93_1.conda#8a90b17a5d12ba55b7d90534f38579d0
https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-13.2.0-he277a41_7.conda#1d1691ec9e5be799f86310fa38f00b9f
https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-13.2.0-h3f4de04_7.conda#2a54872c7fab2db99b0074212d8efe64
https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2#878f923dd6acc8aeb47a75da6c4098be
https://conda.anaconda.org/conda-forge/linux-aarch64/python_abi-3.10-4_cp310.conda#b0ff2ed109650f9e90d627d3119eb442
https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8
https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2#6168d71addc746e8f2b8d57dfd2edcea
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-leo-data-1.0.0.post105+12a346f-unix_0.tar.bz2#07a7b1d08dcc3bdb0939dfb23a648b02
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab
https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-13.2.0-he277a41_7.conda#01c5b27ce46f50abab2dc8454842c792
https://conda.anaconda.org/conda-forge/linux-aarch64/alsa-lib-1.2.11-h31becfc_1.conda#76bf292a85a0556cef4f500420cabe6c
https://conda.anaconda.org/conda-forge/linux-aarch64/aom-3.9.0-hcccb83c_0.conda#72ab9d0785e108e3b357bbb862dff546
https://conda.anaconda.org/conda-forge/linux-aarch64/attr-2.5.1-h4e544f5_1.tar.bz2#1ef6c06fec1b6f5ee99ffe2152e53568
https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h31becfc_5.conda#a64e35f01e0b7a2a152eca87d33b9c87
https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.28.1-h31becfc_0.conda#a8da75795c853c5fe6d8d1947e16eea8
https://conda.anaconda.org/conda-forge/linux-aarch64/dav1d-1.2.1-h31becfc_0.conda#6e5a87182d66b2d1328a96b61ca43a62
https://conda.anaconda.org/conda-forge/linux-aarch64/epoxy-1.5.10-h4e544f5_1.tar.bz2#e3000ef63f6250283a6ca13d38e3e8be
https://conda.anaconda.org/conda-forge/linux-aarch64/fmt-10.2.1-h2a328a1_0.conda#540b6320d3c929e012fae0d08f43224d
https://conda.anaconda.org/conda-forge/linux-aarch64/fribidi-1.0.10-hb9de7d4_0.tar.bz2#f6c91a43eace6fb926a8730b3b9a8a50
https://conda.anaconda.org/conda-forge/linux-aarch64/gettext-tools-0.22.5-h2f0025b_2.conda#dba96ed6fd0a19c5e52000b12221a726
https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h54f1f3f_1004.tar.bz2#f286d3464cc8d467c92e4f17990c98c1
https://conda.anaconda.org/conda-forge/linux-aarch64/gmp-6.3.0-h2f0025b_1.conda#0fdc64cdb43430acdca4d54fdfc64317
https://conda.anaconda.org/conda-forge/linux-aarch64/graphite2-1.3.13-h2f0025b_1003.conda#f33009add6a08358bc12d114ceec1304
https://conda.anaconda.org/conda-forge/linux-aarch64/gstreamer-orc-0.4.38-h31becfc_0.conda#188e85bfa90797d98c9983f09e565884
https://conda.anaconda.org/conda-forge/linux-aarch64/gtest-1.14.0-h2a328a1_1.conda#7c747cc97fed392a5892e067a774ff20
https://conda.anaconda.org/conda-forge/linux-aarch64/icu-73.2-h787c7f5_0.conda#9d3c29d71f28452a2e843aff8cbe09d2
https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2#1f24853e59c68892452ef94ddd8afd4b
https://conda.anaconda.org/conda-forge/linux-aarch64/lame-3.100-h4e544f5_1003.tar.bz2#ab05bcf82d8509b4243f07e93bada144
https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2#1a0ffc65e03ce81559dbcb0695ad1476
https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240116.2-cxx17_h2f0025b_0.conda#8c82217c05aa59b86d0db83df2fa65b5
https://conda.anaconda.org/conda-forge/linux-aarch64/libaec-1.1.3-h2f0025b_0.conda#e52c4a30901a90354855e40992af907d
https://conda.anaconda.org/conda-forge/linux-aarch64/libaio-0.3.113-h4e544f5_0.tar.bz2#68c6c8918196fb068d03d73662f5b356
https://conda.anaconda.org/conda-forge/linux-aarch64/libasprintf-0.22.5-h7b6a552_2.conda#1c027a1a3c07fe94729870c85ef44cfd
https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h31becfc_1.conda#1b219fd801eddb7a94df5bd001053ad9
https://conda.anaconda.org/conda-forge/linux-aarch64/libcodec2-1.0.3-hf897c2e_0.tar.bz2#a0deabd4dc3fe7477057a848ec8d2655
https://conda.anaconda.org/conda-forge/linux-aarch64/libcorrect-0.0.0-hb4cce97_0.conda#ef554110e74348c7d300056d61d04e75
https://conda.anaconda.org/conda-forge/linux-aarch64/libdb-6.2.32-h01db608_0.tar.bz2#7cbfba14d5adfa65db945d5112909394
https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.20-h31becfc_0.conda#018592a3d691662f451f89d0de474a20
https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda#a9a13cb143bbaa477b1ebaefbe47a302
https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.6.2-h2f0025b_0.conda#1b9f46b804a2c3c5d7fd6a80b77c35f9
https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.2-h3557bc0_5.tar.bz2#dddd85f4d52121fab0a8b099c5e06501
https://conda.anaconda.org/conda-forge/linux-aarch64/libgettextpo-0.22.5-h2f0025b_2.conda#0e5887b1c0a764c098102729ed80afee
https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-13.2.0-h87d9d71_7.conda#423eb7de085dd6b46928723edf5f8767
https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda#9a8eb13f14de7d761555a98712e6df65
https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda#ed24e702928be089d9ba3f05618515c6
https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda#c14f32510f694e3185704d89967ec422
https://conda.anaconda.org/conda-forge/linux-aarch64/libogg-1.3.4-h3557bc0_1.tar.bz2#a8b4ce49dbd48176e82c11ecf01ae588
https://conda.anaconda.org/conda-forge/linux-aarch64/libopus-1.3.1-hf897c2e_1.tar.bz2#ac7534c50934ed25e4749d74b04c667a
https://conda.anaconda.org/conda-forge/linux-aarch64/libpcap-1.10.4-h31becfc_1.conda#fe18d48897523ce041d3507dd4c8606a
https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.18-hb9de7d4_1.tar.bz2#d09ab3c60eebb6f14eb4d07e172775cc
https://conda.anaconda.org/conda-forge/linux-aarch64/libtasn1-4.19.0-h4e544f5_0.tar.bz2#a94c6aaaaac3c2c9dcff6967ed1064be
https://conda.anaconda.org/conda-forge/linux-aarch64/libunistring-0.9.10-hf897c2e_0.tar.bz2#7c68521243dc20afba4c4c05eb09586e
https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda#000e30b09db0b7c775b21695dff30969
https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.48.0-h31becfc_0.conda#97f754b22f63a943345bd807e1d51e01
https://conda.anaconda.org/conda-forge/linux-aarch64/libvpx-1.14.0-h2f0025b_0.conda#a4fe92babed93075982b95096ce13136
https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.4.0-h31becfc_0.conda#5fd7ab3e5f382c70607fbac6335e6e19
https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda#b4df5d7d4b63579d081fd3a4cf99740e
https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.2.13-h68df207_6.conda#d69c6550eaf76e8e385f75e5ed60aed9
https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda#500145a83ed07ce79c8cef24252f366b
https://conda.anaconda.org/conda-forge/linux-aarch64/mpg123-1.32.6-h2f0025b_0.conda#bff99ad1c59a066d18a07be0e6309b8a
https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-h0425590_0.conda#38362af7bfac0efef69675acee564458
https://conda.anaconda.org/conda-forge/linux-aarch64/nettle-3.9.1-h9d1147b_0.conda#bf4b290d849247be4a5b89cfbd30b4d7
https://conda.anaconda.org/conda-forge/linux-aarch64/nspr-4.35-h4de3ea5_0.conda#7a392f26f76fc55354c8ed60c2b99162
https://conda.anaconda.org/conda-forge/linux-aarch64/ocl-icd-2.3.2-h31becfc_1.conda#ed8a47fb1f771fed29684f481654d37a
https://conda.anaconda.org/conda-forge/linux-aarch64/openh264-2.4.1-h2f0025b_0.conda#97fc3bbca08e95e1d7af8366d5a4ece6
https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.3.0-h68df207_3.conda#f2dec4814ac9649cd3d3e474cd0b9a58
https://conda.anaconda.org/conda-forge/linux-aarch64/pixman-0.43.4-h2f0025b_0.conda#81b2ddea4b0eca188da9c5a7aa4b0cff
https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-hb9de7d4_1001.tar.bz2#d0183ec6ce0b5aaa3486df25fa5f0ded
https://conda.anaconda.org/conda-forge/linux-aarch64/pugixml-1.14-h2f0025b_0.conda#9af93a191056b12e841b7d32f1b01b1c
https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.0-h8d0c38d_1.conda#7875fcea9277713d1744d188ececb767
https://conda.anaconda.org/conda-forge/linux-aarch64/svt-av1-2.1.0-h0a1ffab_0.conda#03c39b286d5e147b8404ae27f7f1371d
https://conda.anaconda.org/conda-forge/linux-aarch64/x264-1!164.3095-h4e544f5_2.tar.bz2#0efaf807a0b5844ce5f605bd9b668281
https://conda.anaconda.org/conda-forge/linux-aarch64/x265-3.5-hdd96247_3.tar.bz2#786853760099c74a1d4f0da98dd67aea
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-compositeproto-0.4.2-hf897c2e_1001.tar.bz2#ecb6577443b76c32bb379d569d48506e
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-damageproto-1.2.1-hf897c2e_1002.tar.bz2#7beaadcb8d5389add4ba679376fa03ad
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-inputproto-2.3.2-h3557bc0_1002.tar.bz2#4930bec8521a4673b69db6e60cc3da08
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-kbproto-1.0.7-h3557bc0_1002.tar.bz2#ec8ce6b3dac3945a4010559a6284b755
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libice-1.1.1-h7935292_0.conda#025968e2637bca910b9b3e7f6743beff
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxau-1.0.11-h31becfc_0.conda#13de34f69cb73165dbe08c1e9148bedb
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.3-h3557bc0_0.tar.bz2#a6c9016ae1ca5c47a3603ed4cd65fedd
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-randrproto-1.5.0-hf897c2e_1001.tar.bz2#b881991d65594646403c42be82f15642
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-recordproto-1.14.2-hf897c2e_1002.tar.bz2#551442b00294d5efe6f013093566cbf6
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-renderproto-0.11.1-h3557bc0_1002.tar.bz2#01cbfe96ce66b78a9a270ac305791dd2
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-util-macros-1.19.3-hf897c2e_0.tar.bz2#ba6958f74fe31eb77d788e799eb16b97
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-xextproto-7.3.0-h2a766a3_1003.conda#32de1e4422c986e3b6eff59e7edc4d04
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-xf86vidmodeproto-2.3.1-hf897c2e_1002.tar.bz2#8fff0d5f50da4c73f752365c85b5e922
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-xproto-7.0.31-h3557bc0_1007.tar.bz2#987e98faa0ad2c667bbea6b6aae260bc
https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2#83baad393a31d59c20b63ba4da6592df
https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2#b853307650cb226731f653aa623936a4
https://conda.anaconda.org/conda-forge/linux-aarch64/codec2-1.0.3-hf897c2e_0.tar.bz2#9b6a64e579be19091b9684bf0a5efef1
https://conda.anaconda.org/conda-forge/linux-aarch64/expat-2.6.2-h2f0025b_0.conda#6d31100ba1e12773b4f1ef0693fb0169
https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.6.0-h8ab10f1_0.tar.bz2#9dc55595db8d7947bb253f63bbcec8ca
https://conda.anaconda.org/conda-forge/linux-aarch64/jack-1.9.22-h5c6c0ed_2.conda#e6abd2a51bd727a1b62a54524f760864
https://conda.anaconda.org/conda-forge/linux-aarch64/libasprintf-devel-0.22.5-h7b6a552_2.conda#47aeae64e19437c16e1c2afdad154cd8
https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h31becfc_1.conda#8db7cff89510bec0b863a0a8ee6a7bce
https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h31becfc_1.conda#ad3d3a826b5848d99936e4466ebbaa26
https://conda.anaconda.org/conda-forge/linux-aarch64/libcap-2.69-h883460d_0.conda#fd395b538afc08d28c0db275a42c8078
https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#29371161d77933a54fccf1bb66b96529
https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda#96ae6083cd1ac9f6bc81631ac835b317
https://conda.anaconda.org/conda-forge/linux-aarch64/libgettextpo-devel-0.22.5-h2f0025b_2.conda#63e625fa42d34b50b8814447a17771bd
https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-13.2.0-he9431aa_7.conda#d714db6ba9d67d55d21cf96316714ec8
https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.58.0-hb0e430d_1.conda#8f724cdddffa79152de61f5564a3526b
https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.43-h194ca79_0.conda#1123e504d9254dd9494267ab9aba95f0
https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-4.25.3-h648ac29_0.conda#a239d63913ec9e008bdbe35899f677f4
https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.45.3-h194ca79_0.conda#fb35b8afbe9e92467ac7b5608d60b775
https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.0-h492db2e_0.conda#45532845e121677ad328c9af9953f161
https://conda.anaconda.org/conda-forge/linux-aarch64/libvorbis-1.3.7-h01db608_0.tar.bz2#c2863ff72c6d8a59054f8b9102c206e9
https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.15-h2a766a3_0.conda#eb3d8c8170e3d03f2564ed2024aa00c8
https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.12.7-h49dc7a2_0.conda#3201713ddfaa8daba3702eeddf690d25
https://conda.anaconda.org/conda-forge/linux-aarch64/mysql-common-8.3.0-hb6794ad_4.conda#7ceea44b2ea6113e0945cc06f73f7b71
https://conda.anaconda.org/conda-forge/linux-aarch64/ocl-icd-system-1.0.0-1.tar.bz2#97956cc9e200c26ccd08a8e8f4ec7499
https://conda.anaconda.org/conda-forge/linux-aarch64/p11-kit-0.24.1-h9f2702f_0.tar.bz2#a27524877b697f8e18d38ad30ba022f5
https://conda.anaconda.org/conda-forge/linux-aarch64/pcre2-10.43-hd0f9c67_0.conda#1275fa549338ecdc8b7793589ac09150
https://conda.anaconda.org/conda-forge/linux-aarch64/perl-5.32.1-7_h31becfc_perl5.conda#17d019cb2a6c72073c344e98e40dfd61
https://conda.anaconda.org/conda-forge/linux-aarch64/portaudio-19.6.0-h5c6c0ed_9.conda#ab049f8223bccc6f621975beaa75c624
https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda#105eb1e16bf83bfb2eb380a48032b655
https://conda.anaconda.org/conda-forge/linux-aarch64/spdlog-1.12.0-h6b8df57_2.conda#e32fbf6c6002efeed425041b4d2d59d9
https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda#f75105e0585851f818e0009dd1dde4dc
https://conda.anaconda.org/conda-forge/linux-aarch64/volk-3.1.2-h2f0025b_0.conda#8a56342e562ea0ea7292523109480976
https://conda.anaconda.org/conda-forge/linux-aarch64/volk-gnss-sdr-0.0.18-h0a1ffab_19.conda#1a5f662a4d3d415589e4dda1649cdde4
https://conda.anaconda.org/conda-forge/linux-aarch64/wayland-1.22.0-hce5310f_1.conda#50fa64a18cc82742e04f29c1b4537a43
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-fixesproto-5.0-h3557bc0_1002.tar.bz2#d83ed0a123097ef38c744f8aa8a814f4
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libsm-1.2.4-h5a01bc2_0.conda#d788eca20ecd63bad8eea7219e5c5fb7
https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-1.2.13-h68df207_6.conda#11012f81be8e7dae8495df7ec17c0cc5
https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda#be8d5f8cf21aed237b8b182ea86b3dd6
https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-bin-1.1.0-h31becfc_1.conda#9e4a13596ab651ea8d77aae023d0ce3f
https://conda.anaconda.org/conda-forge/linux-aarch64/fftw-3.3.10-nompi_h2dcef8e_108.conda#ba0f6363f67c0347856ca744e1911209
https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.12.1-hf0a5ef3_2.conda#a5ab74c5bd158c3d5532b66d8d83d907
https://conda.anaconda.org/conda-forge/linux-aarch64/gettext-0.22.5-h2f0025b_2.conda#2cb8df031115b66a564f2eb225fb4c48
https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.2-hc419048_0.conda#55b51af37bf6fdcfe06f140e62e8c8db
https://conda.anaconda.org/conda-forge/linux-aarch64/libboost-1.82.0-h133f18d_6.conda#da652516f74f12d438ae9f5d315213f9
https://conda.anaconda.org/conda-forge/linux-aarch64/libglib-2.80.2-h34bac0b_0.conda#8cb9a8fb29f3d33aaee8c209a98e7212
https://conda.anaconda.org/conda-forge/linux-aarch64/libhwloc-2.10.0-default_h3030c0e_1001.conda#93453ae8b0c0c87ab18cdf9eb56c9fc6
https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm15-15.0.7-hb4f23b0_4.conda#8d7aa8eae04dc19426a417528d7041eb
https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm18-18.1.6-h97c352a_0.conda#ae5ddb26f788065a3d32b1249df0e2e3
https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.27-pthreads_h5a5ec62_0.conda#ffecca8f4f31cd50b92c0e6e6bfe4416
https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.20.0-h043aeee_0.conda#799738d9f8c532c76c59acecb90f65c8
https://conda.anaconda.org/conda-forge/linux-aarch64/libtiff-4.6.0-hf980d43_3.conda#b6f3abf5726ae33094bee238b4eb492f
https://conda.anaconda.org/conda-forge/linux-aarch64/libudev1-255-h31becfc_1.conda#a68049baef291b96dba8132cd02c4f74
https://conda.anaconda.org/conda-forge/linux-aarch64/libxslt-1.1.39-h1cc9640_0.conda#13e1d3f9188e85c6d59a98651aced002
https://conda.anaconda.org/conda-forge/linux-aarch64/lua-5.4.6-h6e35974_1.conda#8b1536d56d217011db24e6aa58bf0e88
https://conda.anaconda.org/conda-forge/linux-aarch64/mysql-libs-8.3.0-hf629957_4.conda#ba9e44922978812b7e07562738f7a1a7
https://conda.anaconda.org/conda-forge/linux-aarch64/nss-3.100-h8c4e863_0.conda#6029b52dd71a51b08ecf62cbf374ac5e
https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.10.14-hbbe8eec_0_cpython.conda#8a8ee3a8c62032c554debc785a3b5aba
https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-0.4.0-h31becfc_1.conda#cd63fffc384ebf7ef90c3e03640089d9
https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-keysyms-0.4.0-hcb25cf1_1.conda#befa651eadbd51987c8ebc462497a8ff
https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-renderutil-0.3.9-h31becfc_1.conda#15c02e09b3441d567b83199173abc1f9
https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-wm-0.4.1-hcb25cf1_1.conda#615e8be7baf44b5205f8a4f5908f57f7
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libx11-1.8.9-h055a233_0.conda#d5f0529d3568a2ce38a9aed44a9a8029
https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b
https://conda.anaconda.org/conda-forge/linux-aarch64/atk-1.0-2.38.0-hedc4a1f_2.conda#9308557e2328f944bd5809c5630761af
https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda#5e4c0743c70186509d1412e03c2d8dfa
https://conda.anaconda.org/conda-forge/linux-aarch64/bcrypt-4.1.3-py310h4719f56_0.conda#b149724d516c12d137e090a2f658a829
https://conda.anaconda.org/conda-forge/noarch/bidict-0.23.1-pyhd8ed1ab_0.conda#c9916c3975b19f470218f415701d6362
https://conda.anaconda.org/conda-forge/noarch/blinker-1.8.2-pyhd8ed1ab_0.conda#cf85c002319c15e9721934104aaa1137
https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-1.1.0-h31becfc_1.conda#e41f5862ac746428407f3fd44d2ed01f
https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-python-1.1.0-py310hbb3657e_1.conda#5ed52d1d3c480022fe67ae00d1cab792
https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a
https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda#0876280e409658fc6f9e75d035960333
https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda#7f4a9e3fcff3f6356ae99244a014da6a
https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda#f3ad426304898027fc619827ff428eca
https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99
https://conda.anaconda.org/conda-forge/noarch/construct-2.10.70-pyhd8ed1ab_0.conda#58e88566bfbbf9d3ffbeda3290e7f4f0
https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda#5cd86562580f274031ede6aa6aa24441
https://conda.anaconda.org/conda-forge/linux-aarch64/dbus-1.13.6-h12b9eeb_3.tar.bz2#f3d63805602166bac09386741e00935e
https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364
https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_0.conda#e8cd5d629f65bdf0f3bb312cde14659e
https://conda.anaconda.org/conda-forge/linux-aarch64/ephem-4.1.5-py310hb299538_1.conda#9f1f5b3608550da60bc5e8d2f39f25cb
https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda#8d652ea2ee8eaee02ed8dc820bc794aa
https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda#e16be50e378d8a4533b989035b196ab8
https://conda.anaconda.org/conda-forge/linux-aarch64/fontconfig-2.14.2-ha9a116f_0.conda#6d2d19ea85f9d41534cd28fdefd59a25
https://conda.anaconda.org/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_0.conda#650a7807e689642dddd3590eb817beed
https://conda.anaconda.org/conda-forge/linux-aarch64/gdk-pixbuf-2.42.12-ha61d561_0.conda#332ed304e6d1c1333ccbdc0fdd722fe9
https://conda.anaconda.org/conda-forge/linux-aarch64/glib-tools-2.80.2-he16435f_0.conda#58c5da9e8928edb925825c22c08a4043
https://conda.anaconda.org/conda-forge/linux-aarch64/greenlet-3.0.3-py310hbb3657e_0.conda#8666638e8cdaf3a8503c8c86e3a1e667
https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda#c0cc1420498b17414d8617d0b9f506ca
https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_0.conda#ff7ca04134ee8dde1d7cf491a78ef7c7
https://conda.anaconda.org/conda-forge/linux-aarch64/kiwisolver-1.4.5-py310he290b8a_1.conda#7acac786ac8778122238891b0cc1614e
https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.16-h922389a_0.conda#ffdd8267a04c515e7ce69c727b051414
https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-22_linuxaarch64_openblas.conda#068ab33f2382cda4dd0b72a715ad33b5
https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-cpp15-15.0.7-default_hb368394_5.conda#b194b775281eb749e2fa6ca40ea993ca
https://conda.anaconda.org/conda-forge/linux-aarch64/libclang13-18.1.6-default_hf9b4efe_0.conda#b58bd8009db2c6590224379af38c6e5b
https://conda.anaconda.org/conda-forge/linux-aarch64/libcups-2.3.3-h405e4a8_4.conda#d42c670b0c96c1795fd859d5e0275a55
https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.8.0-h4e8248e_0.conda#75bfffa16b18674b16144780a46ac77f
https://conda.anaconda.org/conda-forge/linux-aarch64/libflac-1.4.3-h2f0025b_0.conda#520b12eab32a92e19b1f239ac545ec03
https://conda.anaconda.org/conda-forge/linux-aarch64/libgpg-error-1.49-hb13efb6_0.conda#0d63dfe88641e1211696a35c47a671d7
https://conda.anaconda.org/conda-forge/linux-aarch64/libidn2-2.3.7-h31becfc_0.conda#7b87508d7df33b9b0e68cea0fcfef12a
https://conda.anaconda.org/conda-forge/linux-aarch64/libliquid1-1.6.0-he638756_1.conda#23ea565fc4ca97a3157c2cd9546b336b
https://conda.anaconda.org/conda-forge/linux-aarch64/libosmodsp0-0.4.0-he638756_1.conda#0159c71e740cdd73160dce434854a1d6
https://conda.anaconda.org/conda-forge/linux-aarch64/libpq-16.3-hcf0348d_0.conda#7dd46e914b037824b9a9629ca6586fc3
https://conda.anaconda.org/conda-forge/linux-aarch64/libusb-1.0.27-hfa5f0b2_100.conda#ff95dc61e4f11520aa3158979c776c78
https://conda.anaconda.org/conda-forge/linux-aarch64/lxml-5.2.2-py310he8b16f2_0.conda#8e78f54a1c7c3f0b7bb25fb86b1b3196
https://conda.anaconda.org/conda-forge/linux-aarch64/m17-cxx-demod-2.3.3-h8f10d31_3.conda#45ddc3c90a45c546e836aded8841aca7
https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-2.1.5-py310h7c1f4a2_0.conda#cd83a00c52970ab794e9e991f0b32db4
https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19
https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.2-h0d9d63b_0.conda#fd2898519e839d5ceb778343f39a3176
https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda#248f521b64ce055e7feae3105e7abeb8
https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda#81534b420deb77da8833f2289b8d47ac
https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761
https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda#405678b942f2481cecdb3e010f4925d9
https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_2.conda#18c6deb6f9602e32446398203c8f0e91
https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263
https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883
https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda#844d9eb3b43095b031874477f7d70088
https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda#b7f5c092b8f9800150d998a71b76d5a1
https://conda.anaconda.org/conda-forge/noarch/pyopengl-3.1.6-pyhd8ed1ab_1.tar.bz2#c968eb974b0fae4676e7a7858c4cc56e
https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.2-pyhd8ed1ab_0.conda#b9a4dacf97241704529131a0dfc0494f
https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025
https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.1-pyhd8ed1ab_0.conda#98206ea9954216ee7540f0c773f2104d
https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda#3eeeeb9e4827ace8c0c1419c85d590ad
https://conda.anaconda.org/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2#2807a0becd1d986fe1ef9b7f8135f215
https://conda.anaconda.org/conda-forge/linux-aarch64/pyyaml-6.0.1-py310hb299538_1.conda#f03783babd9179bffa3025624d11edc8
https://conda.anaconda.org/conda-forge/linux-aarch64/rpds-py-0.18.1-py310h59d1b7a_0.conda#ec03aa185dcb6b208ebcf81647e23fa5
https://conda.anaconda.org/conda-forge/linux-aarch64/ruamel.yaml.clib-0.2.8-py310hb299538_0.conda#9e5cbedd93166a986927571b869d4e6c
https://conda.anaconda.org/conda-forge/noarch/setuptools-70.0.0-pyhd8ed1ab_0.conda#c8ddb4f34a208df4dd42509a0f6a1c89
https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-0.8.1-py310h586407a_4.conda#78ea02bc08d08b588dd250da55ae16f3
https://conda.anaconda.org/conda-forge/linux-aarch64/tbb-2021.12.0-h70be974_1.conda#ea7d4337db9d66216dbfd59035916aaf
https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095
https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96
https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.4-py310h7c1f4a2_0.conda#0b5ce5c77e775ebfeab92c145b7f314d
https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda#3df84416a021220d8b5700c613af2dc5
https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda#6ef2fc37559256cf682d8b3375e89b80
https://conda.anaconda.org/conda-forge/linux-aarch64/unicodedata2-15.1.0-py310hb299538_0.conda#2fbbda3ebdf48a3f3f2fb4656115e2e3
https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda#68f0738df502a14213624b288c60c9ad
https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda#f372c576b8774922da83cda2b12f9d29
https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-image-0.4.0-hcb25cf1_1.conda#395256583f9ba09af83bd2875e2dd43e
https://conda.anaconda.org/conda-forge/linux-aarch64/xkeyboard-config-2.41-h31becfc_0.conda#1df80651a2a70e3004cfc72e03fe55bd
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxext-1.3.4-h2a766a3_2.conda#0cea7d840c8eeaa4e349e0b4775c826d
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxfixes-5.0.3-h3557bc0_1004.tar.bz2#8c639389f12135ddc2bb23497d6d1918
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrender-0.9.11-h7935292_0.conda#8c96b84f7fb97a3cd533a14dbdcd6626
https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.5-h28faeed_4.conda#ae8c0108b4d6a5981bce484eeaaf1b55
https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda#2e4d6bc0b14e10f895fc6791a7d9b26a
https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda#5f25798dcefd8252ce5f9dc494d5f571
https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551
https://conda.anaconda.org/conda-forge/linux-aarch64/cairo-1.18.0-ha13f110_0.conda#425111f8cc6945c5d1307357dd819b9b
https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.16.0-py310hce94938_0.conda#69f5188c0b23d70d99e1f4153fe498cd
https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f
https://conda.anaconda.org/conda-forge/linux-aarch64/fonttools-4.52.4-py310hb52b2da_0.conda#75b0cec09c04ffc54eb81e03aa7670ec
https://conda.anaconda.org/conda-forge/noarch/fs-2.4.16-pyhd8ed1ab_0.conda#a231fa7cb5f101f1f3ae8480c0002f91
https://conda.anaconda.org/conda-forge/linux-aarch64/glib-2.80.2-h34bac0b_0.conda#45c88954bba87523c331588d338e6ad4
https://conda.anaconda.org/conda-forge/linux-aarch64/gnutls-3.7.9-hb309da9_0.conda#324ec92c368d1ae5f40fe93470ec0317
https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2#b21ed0883505ba1910994f1df031a428
https://conda.anaconda.org/conda-forge/linux-aarch64/hdf5-1.14.3-nompi_hd1676c9_102.conda#66ff29661def48cd13a6cdd5691e8b77
https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda#0896606848b2dc5cebdf111b6543aa04
https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda#c5d3907ad8bd7bf557521a1833cf7e6d
https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda#81a3be0b2023e1ea8555781f0ad904a2
https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda#7b86ecb7d3557821c649b3c31e3eb9f2
https://conda.anaconda.org/conda-forge/linux-aarch64/libairspy-1.0.10-hf897c2e_0.tar.bz2#d6006e25469d57041c2f48f2401b09a4
https://conda.anaconda.org/conda-forge/linux-aarch64/libairspyhf-1.6.8-hf897c2e_0.tar.bz2#0e143aef6fbcfc080f338c2b407b468b
https://conda.anaconda.org/conda-forge/linux-aarch64/libbladerf2-2023.02-hb4cce97_0.conda#9d1af924121a88bbd00eb25a50eb4129
https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-22_linuxaarch64_openblas.conda#fbe7fe553f2cc78a0311e009b26f180d
https://conda.anaconda.org/conda-forge/linux-aarch64/libgcrypt-1.10.3-h31becfc_0.conda#53f21c62feaeba1633038bccc6dae679
https://conda.anaconda.org/conda-forge/linux-aarch64/libglu-9.0.0-hf4b6fbe_1003.conda#815755517215132a05c485e748449a38
https://conda.anaconda.org/conda-forge/linux-aarch64/libhackrf0-2024.02.1-h31becfc_0.conda#49dc9ee4aecf4b3a9791b6b586fdf73a
https://conda.anaconda.org/conda-forge/linux-aarch64/libhamlib4-4.5.5-h2f0025b_3.conda#7580e2aaaadcd498210ba7fc2dbaaaf7
https://conda.anaconda.org/conda-forge/linux-aarch64/libhidapi-0.14.0-h31becfc_0.conda#23593c77a861198c5672b7c96d3fca6e
https://conda.anaconda.org/conda-forge/linux-aarch64/libiio-c-0.25-he58e806_1.conda#f6093dedd75603333ea860df833085e7
https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-22_linuxaarch64_openblas.conda#8c709d281609792c39b1d5c0241f90f1
https://conda.anaconda.org/conda-forge/linux-aarch64/liblimesuite-23.11.0-h2f0025b_0.conda#b10c92e434f9135a370cdae7186af7fa
https://conda.anaconda.org/conda-forge/linux-aarch64/libmirisdr4-2.0.0-h31becfc_0.conda#e3539c70951f7b060fb24ee67b9905f0
https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-2024.1.0-h7018a71_7.conda#09ca45ce8f150a5be04535607c11b474
https://conda.anaconda.org/conda-forge/linux-aarch64/libsndfile-1.2.2-h79657aa_1.conda#ad8e62c0faec46b1442f960489c80b49
https://conda.anaconda.org/conda-forge/linux-aarch64/libxkbcommon-1.7.0-h2555907_0.conda#3663134cd650738ad46bd0d643246f51
https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda#779345c95648be40d22aaa89de7d4254
https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_0.conda#629f3203c99b32e0988910c93e77f3b6
https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-10.3.0-py310he5cda9b_0.conda#1deb0b1c8f71f3258035fcbad288cf09
https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.42-pyha770c72_0.conda#0bf64bf10eee21f46ac83c161917fa86
https://conda.anaconda.org/conda-forge/noarch/pyfiglet-0.8.post1-py_0.tar.bz2#e22d3c090f24856764e9d70e76fa3a5f
https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda#2cf4264fffb9e6eff6031c5b6884d61c
https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-26.0.3-py310he875deb_0.conda#390d0405bbbc188786a4ec6bb80ef0db
https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.1-pyhd8ed1ab_0.conda#7f391bd70d2abfb70f304ba5aa4e1261
https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda#0fc8b52192a8898627c3efae1003e9f6
https://conda.anaconda.org/conda-forge/linux-aarch64/rtl-sdr-2.0.1-h31becfc_0.conda#ab60356c37c3318bd4279eaa68cd012e
https://conda.anaconda.org/conda-forge/linux-aarch64/ruamel.yaml-0.18.6-py310hb299538_0.conda#6112045712a11a44624c7c18e8f9ce65
https://conda.anaconda.org/conda-forge/linux-aarch64/sip-6.8.3-py310h0d1d2ea_0.conda#98f57ffae6c345dba21f0e20dee33592
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-module-netsdr-0.2.0-hc0426f7_1.conda#f350c862499ae6b4628288b79062ddee
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-module-redpitaya-0.1.1-hc0426f7_0.conda#5dde7a26f2c799acdf110c2dc6ce290e
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-module-remote-0.5.2-he88f3d8_2.tar.bz2#10661218518a8bc2fb358951f9ff0225
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-module-volk-converters-0.1.1-h107b08d_2.conda#fb779cf95d419e9123e39f14aecb5074
https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda#08807a87fa7af10754d46f63b368e016
https://conda.anaconda.org/conda-forge/linux-aarch64/watchdog-4.0.1-py310hbbe02a8_0.conda#f000f2ac02ecd84dcf8e1c1ea95f549b
https://conda.anaconda.org/conda-forge/noarch/werkzeug-3.0.3-pyhd8ed1ab_0.conda#2e60f5f388845027ee87fca6bee4ac23
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxcomposite-0.4.6-hb4cce97_1.conda#fa0e7031e907914f1399e4deea9c8883
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxcursor-1.2.0-hb4cce97_1.conda#fb221f8966e4ca8d22b14011a7b35aa2
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdamage-1.1.5-hf897c2e_1.tar.bz2#12fccd70f5b72a9f284a145e2fc616f7
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxi-1.7.10-h3557bc0_0.tar.bz2#02eaabe40f65695705a288757f1d56b5
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxinerama-1.1.5-h4de3ea5_0.tar.bz2#dde29991cafb378facde5dfe371989d9
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrandr-1.5.2-hf897c2e_1.tar.bz2#858f6db334e0e2b0011e25e033e6eb4c
https://conda.anaconda.org/conda-forge/noarch/zope.event-5.0-pyhd8ed1ab_0.conda#b4a7b86cf51f2831015e9eebd284dc0a
https://conda.anaconda.org/conda-forge/linux-aarch64/zope.interface-6.4.post2-py310h03727f4_0.conda#74d7ee0748fc1af3915dff07c11e9073
https://conda.anaconda.org/conda-forge/linux-aarch64/airspy-1.0.10-hf897c2e_0.tar.bz2#f4a940fae3b8ffc8620e5b5ed07c5555
https://conda.anaconda.org/conda-forge/linux-aarch64/airspyhf-1.6.8-hf897c2e_0.tar.bz2#58eaf2be2cba18762a2d40a0ca999db2
https://conda.anaconda.org/conda-forge/linux-aarch64/arpack-3.8.0-nompi_h32ff4ca_101.tar.bz2#32941fa3a3ba9d8464fed893fc2efce3
https://conda.anaconda.org/conda-forge/noarch/asciimatics-1.15.0-pyhd8ed1ab_0.conda#94bdb59db7572d651230d10dd15c188d
https://conda.anaconda.org/conda-forge/linux-aarch64/cryptography-42.0.7-py310hf601767_0.conda#66ffdcdac8a6b94c33bb294f3c93f357
https://conda.anaconda.org/conda-forge/noarch/flask-3.0.3-pyhd8ed1ab_0.conda#dcdb937144fa20d7757bf512db1ea769
https://conda.anaconda.org/conda-forge/linux-aarch64/gevent-23.9.0.post1-py310h81c658f_1.conda#022609d48e31a2ea0c635b3188930c09
https://conda.anaconda.org/conda-forge/linux-aarch64/glew-2.1.0-h01db608_2.tar.bz2#2a46529de1ff766f31333d3cdff2b734
https://conda.anaconda.org/conda-forge/linux-aarch64/glfw-3.4-h31becfc_0.conda#48479e59b512a1dc883aa8d9ea2e29a6
https://conda.anaconda.org/conda-forge/linux-aarch64/gsl-2.7-h294027d_0.tar.bz2#8b9533e21be7fa232ab64e85f184e0b3
https://conda.anaconda.org/conda-forge/linux-aarch64/gstreamer-1.24.4-h80858a8_0.conda#3cdd647c608d81fa8ef30256730488b6
https://conda.anaconda.org/conda-forge/linux-aarch64/hackrf-2024.02.1-he638756_0.conda#fec6c1ea5b80cf06c64cf282b6c80fa3
https://conda.anaconda.org/conda-forge/linux-aarch64/hamlib-4.5.5-hb42ac4b_3.conda#3473c4dd26f8f701eee29e3ba0e162f2
https://conda.anaconda.org/conda-forge/linux-aarch64/hamlib-lua-4.5.5-lua54h31becfc_3.conda#30a07d44480533325ba9c92cd8151331
https://conda.anaconda.org/conda-forge/linux-aarch64/hamlib-perl-4.5.5-pl5321h31becfc_3.conda#4701ea7825409d2fcc45f5e0a2c63aad
https://conda.anaconda.org/conda-forge/linux-aarch64/hamlib-python-4.5.5-py310h7c1f4a2_3.conda#dc0bb394a72f6d3f6324872d3ff4dcae
https://conda.anaconda.org/conda-forge/linux-aarch64/hamlib-tcl-4.5.5-hdf905ee_3.conda#10d355f23b7789b6ad4aae8d38f36b38
https://conda.anaconda.org/conda-forge/linux-aarch64/harfbuzz-8.5.0-h9812418_0.conda#fd468e09d7fff9e87e70789e78829933
https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda#a0e4efb5f35786a05af4809a2fb1f855
https://conda.anaconda.org/conda-forge/linux-aarch64/libad9361-iio-0.2-h1756985_3.tar.bz2#bcc18458afc8010ccc558fd452b397cf
https://conda.anaconda.org/conda-forge/noarch/libbladerf-python-2023.02-py_0.conda#3d313832d2b63b19fe9ffe240e4fb746
https://conda.anaconda.org/conda-forge/linux-aarch64/libgirepository-1.80.1-h41f2648_0.conda#08bb00661576f803afdb85abdca33cd8
https://conda.anaconda.org/conda-forge/linux-aarch64/libm2k-0.8.0-py310ha4f7790_0.conda#c62ae9b15a7f87a7832c412e7d6d93ee
https://conda.anaconda.org/conda-forge/linux-aarch64/libmatio-1.5.26-hd3396f4_0.conda#0e5f42e804be82c00f3b42892ee7a526
https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-arm-cpu-plugin-2024.1.0-h7018a71_7.conda#9e2f9e4ae4687d1d31125db0222af621
https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-auto-batch-plugin-2024.1.0-hddb2bce_7.conda#5015540c0ffcc5ac0b69173064d5e4ab
https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-auto-plugin-2024.1.0-hddb2bce_7.conda#fcb56e2d1aff01bd9378e1f283b413ed
https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-hetero-plugin-2024.1.0-h8f8b3dd_7.conda#166dd7e737fd05ea8f80298740e84b35
https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-ir-frontend-2024.1.0-h8f8b3dd_7.conda#828089089b39175725522aac9d19ca1d
https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-onnx-frontend-2024.1.0-h24cc6ce_7.conda#8a27f4bd5b7cc8947382c216b169381c
https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-paddle-frontend-2024.1.0-h24cc6ce_7.conda#3de1e62d369405bd1b853868a622a5b6
https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-pytorch-frontend-2024.1.0-h0a1ffab_7.conda#ebc8e29e64c65303366c65dd13056198
https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-tensorflow-frontend-2024.1.0-hea5328d_7.conda#f2da4958cbd4734c540e76aa4f484b9c
https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-tensorflow-lite-frontend-2024.1.0-h0a1ffab_7.conda#d7df82d94a9b11c9f0e768af845abd7a
https://conda.anaconda.org/conda-forge/linux-aarch64/libsystemd0-255-h91e93f8_1.conda#afcd3dddcdc93fee67fb67fc950f6099
https://conda.anaconda.org/conda-forge/noarch/mako-1.3.5-pyhd8ed1ab_0.conda#29fddbfa0e2361636a98de4f46ead2ac
https://conda.anaconda.org/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda#06e9bebf748a0dea03ecbe1f0e27e909
https://conda.anaconda.org/conda-forge/linux-aarch64/mirisdr-2.0.0-h31becfc_0.conda#10bb335d7bf007d246c73dc1297f763a
https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py310hcbab775_0.conda#2cb108b5220653a4024a029e60cf2c66
https://conda.anaconda.org/conda-forge/linux-aarch64/pycairo-1.26.0-py310h6091f6e_0.conda#9d2d4d76d3cbb3d08bc59ff093d90378
https://conda.anaconda.org/conda-forge/noarch/pylibiio-0.25-py_1.conda#810ae49bb989b27783c17c1b7d36595e
https://conda.anaconda.org/conda-forge/linux-aarch64/pynacl-1.5.0-py310hb299538_3.conda#7b24dbcf76f17a446440503642d5a0d8
https://conda.anaconda.org/conda-forge/linux-aarch64/pyqt5-sip-12.12.2-py310hbb3657e_5.conda#948cb751045824377b5fac562f0ed2b8
https://conda.anaconda.org/conda-forge/noarch/qdarkstyle-3.2.3-pyhd8ed1ab_0.conda#ab475868d7e0b110c43bf74c90237a5f
https://conda.anaconda.org/conda-forge/noarch/requests-2.32.2-pyhd8ed1ab_0.conda#e1643b34b19df8c028a4f00bf5df58a6
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-module-airspy-0.2.0-he88f3d8_0.tar.bz2#b1ca31a6c7f13ad6637eccd97c57ae28
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-module-airspyhf-0.2.0-he88f3d8_0.tar.bz2#2ed4cfaabc5de14423861dbfae27902f
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-module-bladerf-0.4.1-hbad66d3_0.tar.bz2#d06b0934df73deb0fcf573d1d65635cf
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-module-hackrf-0.3.4-he88f3d8_0.tar.bz2#9a4681b61b151178c67a9ae9dc9e9bbd
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-module-lms7-23.11.0-hcd46cec_0.conda#0f6088a1e502cc44deebc4a64015d4b2
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-module-rtlsdr-0.3.3-hd53839e_2.conda#a85777305e2e750cc7a7c2112ee2e3c4
https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af
https://conda.anaconda.org/conda-forge/linux-aarch64/superlu-5.2.2-h4b58547_0.tar.bz2#32ff86b3335def4756143ee4799ca6ce
https://conda.anaconda.org/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_0.tar.bz2#00ba804b54f451d102f6a7615f08470d
https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxtst-1.2.3-hf897c2e_1002.tar.bz2#7ac9802b9b0d37b0d87ddb94f82bbb70
https://conda.anaconda.org/conda-forge/linux-aarch64/armadillo-12.8.3-hb159eaa_0.conda#af66878b4d6d99c4b1685e343a6e7ce8
https://conda.anaconda.org/conda-forge/linux-aarch64/at-spi2-core-2.40.3-h1f2db35_0.tar.bz2#a12602a94ee402b57063ef74e82016c0
https://conda.anaconda.org/conda-forge/linux-aarch64/bladerf-2023.02-hb4cce97_0.conda#cf88334efff4ec1520ffd4e78073b17c
https://conda.anaconda.org/conda-forge/linux-aarch64/contourpy-1.2.1-py310h586407a_0.conda#2104865045566cb04092d93959960bba
https://conda.anaconda.org/conda-forge/noarch/gevent-websocket-0.10.1-py_0.tar.bz2#25b4b60b6ea50368cd90b75b4d00c711
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-pmt-3.10.10.0-py310h18daf14_6.conda#ea13357256d64cf3014f1f4fd2ff8c2c
https://conda.anaconda.org/conda-forge/linux-aarch64/gst-plugins-base-1.24.4-h2510817_0.conda#0c1d8a07d54a261ec19ee1075c277e78
https://conda.anaconda.org/conda-forge/linux-aarch64/h5py-3.11.0-nompi_py310h65cebb8_101.conda#7eeab59fbd3c16f639a2a184436d3098
https://conda.anaconda.org/conda-forge/noarch/hamlib-all-4.5.5-linux_3.conda#b2e651c9688828b46dd9ac81a4f86d3d
https://conda.anaconda.org/conda-forge/noarch/ipython-8.24.0-pyh707e725_0.conda#1fb1f1fcbe053a762748dbf0ae4cfd0d
https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.22.0-pyhd8ed1ab_0.conda#b9661a4b1200d6bc7d8a4cdafdc91468
https://conda.anaconda.org/conda-forge/linux-aarch64/libass-0.17.1-h36b5d3b_1.conda#9dd28617627c9ae4a0783402ab53e09f
https://conda.anaconda.org/conda-forge/linux-aarch64/libiio-0.25-h8af1aa0_1.conda#492b788df4dbe63cab100d799b450a54
https://conda.anaconda.org/conda-forge/linux-aarch64/numexpr-2.8.4-py310h065e08e_1.conda#f0cdb1121bff1917a54f05e5f848e20c
https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.2-py310h34310a0_1.conda#abb22d81a98c12aaf5ea2ec87550a251
https://conda.anaconda.org/conda-forge/linux-aarch64/pango-1.52.2-h11ef544_0.conda#36e37468883220518ab485addfa6a3f1
https://conda.anaconda.org/conda-forge/noarch/paramiko-3.4.0-pyhd8ed1ab_0.conda#a5e792523b028b06d7ce6e65a6cd4a33
https://conda.anaconda.org/conda-forge/linux-aarch64/pulseaudio-client-17.0-h729494f_0.conda#f35f57712d5c2abca98c85a51a408bc1
https://conda.anaconda.org/conda-forge/linux-aarch64/pygobject-3.48.2-py310hf43e9ff_0.conda#2370e3a66f4efef783908e1b5ec5f2ab
https://conda.anaconda.org/conda-forge/noarch/pyqtgraph-0.13.7-pyhd8ed1ab_0.conda#d31a6f00bd89ff46a5e457c935578c33
https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.13.1-py310h70fbbe5_0.conda#1f9ddf18f5d9030680eced8ca6e54fc6
https://conda.anaconda.org/conda-forge/noarch/simple-websocket-1.0.0-pyhd8ed1ab_1.conda#4e9136be6c66312f63b3a8ef60443389
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-module-plutosdr-0.2.2-h901e66a_0.conda#1cc1963b74764aa381bec11a98708ed4
https://conda.anaconda.org/conda-forge/linux-aarch64/uhd-4.6.0.0-py310hc7d4c31_0.conda#0d231327eb27c9e39f439c8eaa42e151
https://conda.anaconda.org/conda-forge/linux-aarch64/at-spi2-atk-2.38.0-h1f2db35_3.tar.bz2#4ea9d4634f3b054549be5e414291801e
https://conda.anaconda.org/conda-forge/linux-aarch64/digital_rf-2.6.9-py310h7974c82_0.conda#ee6e6ddda4c2094aa09483b7871518a2
https://conda.anaconda.org/conda-forge/linux-aarch64/ffmpeg-6.1.1-gpl_hf7900cc_112.conda#c1325460f68a70d6f5f2d6febee93f70
https://conda.anaconda.org/conda-forge/linux-aarch64/librsvg-2.58.0-h010368b_1.conda#d29998bcb90c0468f2abc49854349ed9
https://conda.anaconda.org/conda-forge/linux-aarch64/librtaudio6-5.2.0-he7669aa_3.conda#66d731e212a2c7e15e9771164d051850
https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-base-3.8.4-py310h84f21c1_2.conda#4cca43e0bc676956bab76773b400f47e
https://conda.anaconda.org/conda-forge/noarch/pyadi-iio-0.0.16-pyhd8ed1ab_0.conda#667c2c87d132e2fdf0b2f42200fbfbff
https://conda.anaconda.org/conda-forge/noarch/python-engineio-4.9.1-pyhd8ed1ab_0.conda#14eac7853ce0afb52fab40521d8ed9f7
https://conda.anaconda.org/conda-forge/linux-aarch64/qt-main-5.15.8-ha53cfd4_21.conda#43c09011ceca2fa00d31281916d529f0
https://conda.anaconda.org/conda-forge/linux-aarch64/sdl2-2.30.2-hd75414b_0.conda#326d88f1f04a6794424263a678b902e1
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-module-uhd-0.4.1-h76252b4_10.conda#c86c40ff5b620af784f8350711cecbc5
https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-46.0-unix_0.conda#f1dcbaeb1b69a1424b9ac618b2a7cdc8
https://conda.anaconda.org/conda-forge/linux-aarch64/alsa-plugins-1.2.7.1-h9ebc1e6_10.conda#508b4c110a47caff2e2e092544680ec5
https://conda.anaconda.org/conda-forge/linux-aarch64/gtk3-3.24.42-h16d2767_0.conda#2c6c696d12fd72abf70357194fa218fd
https://conda.anaconda.org/conda-forge/linux-aarch64/inspectrum-0.3.1-ha6d2d91_0.conda#aca49cef8b45f89ee6f576408ed709d7
https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-3.8.4-py310hbbe02a8_2.conda#5a279ee050126dfc99d482221d858535
https://conda.anaconda.org/conda-forge/noarch/mplcursors-0.5.3-pyhd8ed1ab_0.conda#41db08c32bbbb2849d6f57fd1d1da460
https://conda.anaconda.org/conda-forge/linux-aarch64/pyqt-5.15.9-py310h948ff9b_5.conda#b62989377f2a6549dc08d9d1cef124ff
https://conda.anaconda.org/conda-forge/noarch/python-socketio-5.11.2-pyhd8ed1ab_0.conda#08c4689825cdf902fc643a6a0934068e
https://conda.anaconda.org/conda-forge/linux-aarch64/qwt-6.3.0-h473b47b_0.conda#1d1d4b20ca1b3303d5cd468c9ec1fa1d
https://conda.anaconda.org/conda-forge/linux-aarch64/sdl-1.2.68-h32cd00b_0.conda#2beaa8269df50204969ed14432cec69e
https://conda.anaconda.org/conda-forge/linux-aarch64/soapysdr-module-audio-0.1.1-hd53839e_1.conda#6f570033e4aaf97eecfa8187cb67e09e
https://conda.anaconda.org/conda-forge/noarch/flask-socketio-5.3.6-pyhd8ed1ab_0.conda#ef521fc208ad82733c942d150199cf3e
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-core-3.10.10.0-py310h530e233_6.conda#bcf3c00b1a969336f9458edf645430c8
https://conda.anaconda.org/conda-forge/noarch/pyfda-0.8.4-pyh9208f05_0.conda#c772efaac9008abc155bbb8da0ed451d
https://conda.anaconda.org/conda-forge/linux-aarch64/wxwidgets-3.2.5-h1889321_0.conda#6e9a6f7561b589c5606cab7f85a8b15b
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-adsb-0.0.0.20240508.dev+gafd7fabda-unix_pyha6c0e43_0.tar.bz2#56f998dffe40fa91563395e3cbc935b7
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-dect2-0.0.0.20240502.dev+gb296af2a9-py310h686007d_0.tar.bz2#7cc8d4eed67e8fed07020f08165478e0
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-filerepeater-0.0.0.20240502.dev+gd7bb8846c-py310h87cbb57_0.tar.bz2#55ccbeaebd3da3f1939cff8f1cb9ada7
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-foo-0.0.0.20240502.dev+gc53538a22-py310h594d49a_0.tar.bz2#158f8610090d8e4f78bc2676e971c119
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-fosphor-0.0.0.20240502.dev+g656fe2f-py310h1b0f79d_0.tar.bz2#a33442fd75e6857b6a85e5f9fe05cf06
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-funcube-3.10.0.rc3-py310hf2a453b_4.conda#4af21fd5889deff912bc886f6df6e253
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-gpredict-doppler-0.0.0.20240508.dev+gb06bc7678-unix_pyha1ad6f9_0.tar.bz2#b414c3119957d01e5edb2ec24b438bd1
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-grc-3.10.10.0-py310ha026655_6.conda#d9959d4ffbc67b173dec68308e2ffd6d
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-hermeslite2-v1.0.0.0.post17+8b17ad3-py310h686007d_0.tar.bz2#b409bd94b81eb71580b70d573d892f71
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-hpsdr-0.0.0.20240507.dev+g958e157-py310h6112494_0.tar.bz2#42c63f934baeafbf17248f9cbb86499e
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-iio-3.10.10.0-py310h5bb69b7_6.conda#c3e334202e5483f8e3a9724d961de1e7
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-iqbalance-0.38.2-py310h39521e3_3.conda#c0c37965efa8770b9c714667258305d1
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-iridium-1!1.0.0-py310h3e84c94_11.conda#684fae5cd517f0e6974ee8740a6c6f20
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-leo-1.0.0.post105+12a346f-py310h9091615_0.tar.bz2#10f9d54dc3cff8e2086405b4b46a5093
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-lora_sdr-0.0.0.20240508.dev+g751a65269-py310h9091615_0.tar.bz2#a83ec8a5e4c12c695719824cc41c4a3c
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-m2k-1.0.0-py310h2bd1195_9.conda#d7af1675625176e6c9e634f39051f53e
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-paint-0.0.0.20240508.dev+g82696a2-py310h9091615_0.tar.bz2#4277b8c3b6728daca03ad1d9a286e000
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-qtgui-3.10.10.0-py310hf8d4fc7_6.conda#3cc245f9c98c0f50db5b48f2b9f75bc3
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-radar-0.0.0.20240525.dev+gc59350d-py310h16cc4b3_0.tar.bz2#c0d7ede41bb49002efe2e43309f1c1c4
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-rds-3.10.post22+g2134008-py310h71a293b_0.tar.bz2#9ea88e5bf6fa698d2a35213a6991f05a
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-soapy-3.10.10.0-py310h353ee3e_6.conda#eebc252995334fed21a5c0a147386c1c
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-uhd-3.10.10.0-py310hf149fb5_6.conda#7b811d22488867c2a2da0c2b799837d6
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-video-sdl-3.10.10.0-py310h2681424_6.conda#f9460bed5da77898b1d7807273d40922
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-zeromq-3.10.10.0-py310h5211672_6.conda#ae565ff4123367bb0ff850a1146efc65
https://conda.anaconda.org/conda-forge/linux-aarch64/limesuite-23.11.0-hddbaef7_0.conda#a48d0d1652f6d51b2310e856df933c4f
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-3.10.10.0-py310hc9b69e3_6.conda#565cc768b40c0cdc23a5aef92feac7ea
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-ieee802_11-0.0.0.20240507.dev+g8c058d4e0-py310hd8f36ec_0.tar.bz2#a4c56ae8f2aebedf576ab654ce9c10f7
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-ieee802_15_4-3.6.post133+g932c76f-py310hce0851f_0.tar.bz2#704e42bc1753b97186df433a2e9689e8
https://conda.anaconda.org/ryanvolz/linux-aarch64/gnuradio-inspector-0.0.0.20240525.dev+g55acca6-py310hac10039_0.tar.bz2#5a62a4d16a3eb7a16da11c30cbdb2511
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-osmosdr-0.2.4-py310h6bdcd27_16.conda#83ebe346b0a173fb3b3bbf71605a1b65
https://conda.anaconda.org/conda-forge/linux-aarch64/gnuradio-satellites-5.5.0-py310h25391a7_2.conda#f0c200fe8ff8b184ae747ab6112f7d81
https://conda.anaconda.org/conda-forge/linux-aarch64/gnss-sdr-0.0.18-hffc4b83_19.conda#e0fbcff68697cadd7490689851f42a05
https://conda.anaconda.org/conda-forge/linux-aarch64/gqrx-2.17.5-py310hdc13f21_4.conda#bf23c5582476b50af58656ccd522d0ff
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/ca-certificates-2025.1.31-hcefe29a_0.conda#462cb166cd2e26a396f856510a3aff67
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda#49023d73832ef61042f6a237cb2687e7
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/hicolor-icon-theme-0.17-h8af1aa0_2.tar.bz2#331add9f855e921695d7b569aa23d5ec
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_4.conda#80c9ad5e05e91bb6c0967af3880c9742
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libglvnd-1.7.0-hd24410f_2.conda#9e115653741810778c9a915a2f8439e7
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_2.conda#b11c09d9463daf4cae492d29806b1889
https://conda.anaconda.org/t/*****/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2#878f923dd6acc8aeb47a75da6c4098be
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/python_abi-3.12-5_cp312.conda#62b20f305498284a07dc6c45fd0e5c87
https://conda.anaconda.org/t/*****/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda#dbcace4706afdfb7eb891f7b37d07c04
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2#6168d71addc746e8f2b8d57dfd2edcea
https://conda.anaconda.org/t/*****/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-leo-data-1.0.0.post20250214%2Bg8f62b92-unix_2.conda#c4ae33379222c031be2cd82093e561e1
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libegl-1.7.0-hd24410f_2.conda#cf105bce884e4ef8c8ccdca9fe6695e7
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopengl-1.7.0-hd24410f_2.conda#cf9d12bfab305e48d095a4c79002c922
https://conda.anaconda.org/t/*****/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libgcc-14.2.0-he277a41_2.conda#6b4268a60b10f29257b51b9b67ff8d76
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/alsa-lib-1.2.13-h86ecc28_0.conda#f643bb02c4bbcfe7de161a8ca5df530b
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/c-ares-1.34.4-h86ecc28_0.conda#356da36f35d36dcba16e43f1589d4e39
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gettext-tools-0.23.1-h5ad3122_0.conda#ba6d592245d2c0eb497cd11f70b50df7
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gstreamer-orc-0.4.41-hd9811ac_0.conda#6311b028d99befed22d0c170def04499
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_2.conda#3ee026955c688f551a9999840cff4c67
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libcodec2-1.2.0-h86ecc28_3.conda#c4e69304705cb7250b0d0b140a97ac9d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libdeflate-1.23-h5e3c512_0.conda#7e7ca2607b11b180120cefc2354fc0cb
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libexpat-2.6.4-h5ad3122_0.conda#f1b3fab36861b3ce945a13f0dfdfc688
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libffi-3.4.6-he21f813_0.conda#966084fccf3ad62a3160666cda869f28
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libgcc-ng-14.2.0-he9431aa_2.conda#692c2bb75f32cfafb6799cf6d1c5d0e0
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libgettextpo-0.23.1-h5ad3122_0.conda#04aa6b35d4581b59aafb2683345579d7
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_2.conda#cd754566661513808ef2408c4ab99a2f
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libiconv-1.18-hc99b53d_1.conda#81541d85a45fbf4d0a29346176f1f21c
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/liblzma-5.6.4-h86ecc28_0.conda#b88244e0a115cc34f7fbca9b11248e76
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libstdcxx-14.2.0-h3f4de04_2.conda#eadee2cda99697e29411c1013c187b92
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libtasn1-4.20.0-h86ecc28_0.conda#b7b0c70d4bac36a0935cb7c2211a4da4
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libuv-1.50.0-h86ecc28_0.conda#915db044076cbbdffb425170deb4ce38
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libwebp-base-1.5.0-h0886dbf_0.conda#95ef4a689b8cc1b7e18b53784d88f96b
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda#08aad7cbe9f5a6b460d0976076b6ae64
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda#182afabe009dc78d8b73100255ee6868
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/openssl-3.4.1-hd08dc88_0.conda#09036190605c57eaecf01218e0e9542d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda#bb5a90c93e3bac3d5690acf76b4a6386
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libice-1.1.2-h86ecc28_0.conda#c8d8ec3e00cd0fd8a231789b91a7c5b7
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxau-1.0.12-h86ecc28_0.conda#d5397424399a66d33c80b1f2345a36a6
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.5-h57736b2_0.conda#25a5a7b797fe6e084e04ffe2db02fc62
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxshmfence-1.3.3-h86ecc28_0.conda#c11f706a5072c34a559848f27d6c28c3
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/attr-2.5.1-h4e544f5_1.tar.bz2#1ef6c06fec1b6f5ee99ffe2152e53568
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda#56398c28220513b9ea13d7b450acfb20
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/codec2-1.2.0-h86ecc28_3.conda#0104467e07119f70ae8e0df1b4ebc45a
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/dav1d-1.2.1-h31becfc_0.conda#6e5a87182d66b2d1328a96b61ca43a62
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/double-conversion-3.3.1-h5ad3122_0.conda#399959d889e1a73fc99f12ce480e77e1
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/epoxy-1.5.10-h4e544f5_1.tar.bz2#e3000ef63f6250283a6ca13d38e3e8be
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/expat-2.6.4-h5ad3122_0.conda#e8f1d587055376ea2419cc78696abd0b
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/fribidi-1.0.10-hb9de7d4_0.tar.bz2#f6c91a43eace6fb926a8730b3b9a8a50
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gflags-2.2.2-h5ad3122_1005.conda#4ff634d515abbf664774b5e1168a9744
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2#1f24853e59c68892452ef94ddd8afd4b
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/lame-3.100-h4e544f5_1003.tar.bz2#ab05bcf82d8509b4243f07e93bada144
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda#633b9fe454ffea2aaf29e191d946a83b
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libaio-0.3.113-h4e544f5_0.tar.bz2#68c6c8918196fb068d03d73662f5b356
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libasprintf-0.23.1-h5e0f5ae_0.conda#b34cfd925b96e72b99286e0cff036e82
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda#e64d0f3b59c7c4047446b97a8624a72d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h86ecc28_2.conda#0e9bd365480c72b25c71a448257b537d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libcorrect-0.0.0-hb4cce97_0.conda#ef554110e74348c7d300056d61d04e75
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321h976ea20_0.conda#fb640d776fc92b682a14e001980825b1
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda#a9a13cb143bbaa477b1ebaefbe47a302
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda#96ae6083cd1ac9f6bc81631ac835b317
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libgettextpo-devel-0.23.1-h5ad3122_0.conda#cb0245a67410b455cb8ee80f407f185f
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_2.conda#d8b9d9dc0c8cd97d375b48e55947ba70
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libgpg-error-1.51-h05609ea_1.conda#9cabbbc1c3c8e9fa30e90748f14534dd
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda#ed24e702928be089d9ba3f05618515c6
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda#c14f32510f694e3185704d89967ec422
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libntlm-1.4-hf897c2e_1002.tar.bz2#835c7c4137821de5c309f4266a51ba89
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libogg-1.3.5-h0b9eccb_0.conda#15cb67b1b9dd0d4b37c81daba785e6ad
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopus-1.3.1-hf897c2e_1.tar.bz2#ac7534c50934ed25e4749d74b04c667a
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libpcap-1.10.4-h31becfc_1.conda#fe18d48897523ce041d3507dd4c8606a
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libpciaccess-0.18-h31becfc_0.conda#6d48179630f00e8c9ad9e30879ce1e54
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libpng-1.6.47-hec79eb8_0.conda#c4b1ba0d7cef5002759d2f156722feee
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda#2e4a8f23bebdcb85ca8e5a0fbe75666a
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libsqlite-3.49.1-h5eb1b54_1.conda#150d64241fa27d9d35a7f421ca968a6c
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libssh2-1.11.1-ha41c0db_0.conda#aeffe03c0e598f015aab08dbb04f6ee4
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libstdcxx-ng-14.2.0-hf1166c9_2.conda#c934c1fddad582fcc385b608eb06a70c
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libunistring-0.9.10-hf897c2e_0.tar.bz2#7c68521243dc20afba4c4c05eb09586e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/liburing-2.9-h17cf362_0.conda#8eef9430276ab3dbe6ad5b8f23ff5e26
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda#000e30b09db0b7c775b21695dff30969
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda#cd14ee5cca2464a425b1dbfc24d90db2
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda#b4df5d7d4b63579d081fd3a4cf99740e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/lz4-c-1.10.0-h5ad3122_1.conda#6654e411da94011e8fbe004eacb8fe11
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/lzo-2.10-h31becfc_1001.conda#004025fe20a11090e0b02154f413a758
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/mpg123-1.32.9-h65af167_0.conda#cdf140c7690ab0132106d3bc48bce47d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/mysql-common-9.0.1-h3f5c77f_5.conda#bdc934577bc277924815fbfcba632822
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/nettle-3.9.1-h9d1147b_0.conda#bf4b290d849247be4a5b89cfbd30b4d7
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/nspr-4.36-h5ad3122_0.conda#6170d131ea39ca6e8f6695507c9d3388
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/opencl-headers-2024.10.24-h5ad3122_0.conda#0965d3468f59d931cfb1c3a96ffad301
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/openh264-2.6.0-h0564a2a_0.conda#0abed5d78c07a64e85c54f705ba14d30
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/p11-kit-0.24.1-h9f2702f_0.tar.bz2#a27524877b697f8e18d38ad30ba022f5
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pixman-0.44.2-h86a87f0_0.conda#95689fc369832398e82d17c56ff5df8a
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/portaudio-19.7.0-h9d01bbc_0.conda#5718e20e38353be7e1821085a7c425f4
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pugixml-1.15-h6ef32b0_0.conda#53e14f45d38558aa2b9a15b07416e472
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda#c0f08fc2737967edde1a272d4bf41ed9
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/snappy-1.2.1-hd4fb6f5_1.conda#2fcc6cd1e5550deb509073fd2e6693e1
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/svt-av1-3.0.1-h5ad3122_0.conda#9d9fa4e57cf87fba9cf73a75d6ee73c1
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda#f75105e0585851f818e0009dd1dde4dc
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/volk-3.2.0-hf20420f_0.conda#fa71f346279ec0999e92b0d86e79bd0b
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/volk-gnss-sdr-0.0.19-ha105d01_8.conda#55f7a01ec3e16111ad9bd47cffb93f5a
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/x264-1%21164.3095-h4e544f5_2.tar.bz2#0efaf807a0b5844ce5f605bd9b668281
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2#b853307650cb226731f653aa623936a4
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/zlib-1.3.1-h86ecc28_2.conda#bc230abb5d21b63ff4799b0e75204783
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/zstd-1.5.7-hbcf94c1_1.conda#d98196f3502425e14f82bdfc8eb4ae27
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/aom-3.9.1-hcccb83c_0.conda#cc744ac4efe5bcaa8cca51ff5b850df0
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/brotli-bin-1.1.0-h86ecc28_2.conda#7d48b185fe1f722f8cda4539bb931f85
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/fmt-11.0.2-h70be974_0.conda#32feda3daf08ff832cf9d55bab2432d6
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/freetype-2.13.3-he93130f_0.conda#3743da39462f21956d6429a4a554ff4f
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/glog-0.7.1-h468a4a4_0.conda#08940a32c6ced3703d1412dd37df4f62
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gmp-6.3.0-h0a1ffab_2.conda#7cbfb3a8bb1b78a7f5518654ac6725ad
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/graphite2-1.3.13-h2f0025b_1003.conda#f33009add6a08358bc12d114ceec1304
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gtest-1.15.2-h70be974_0.conda#3eb57e558bba17a085b29e24aa747475
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda#268203e8b983fddb6412b36f2024e75c
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda#29c10432a2ca1472b53f299ffb2ffa37
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2#1a0ffc65e03ce81559dbcb0695ad1476
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libaec-1.1.3-h2f0025b_0.conda#e52c4a30901a90354855e40992af907d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libasprintf-devel-0.23.1-h5e0f5ae_0.conda#ec789924a13fcd14c53cbf90ea1b8551
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libcap-2.75-h51d75a7_0.conda#c5456e13665779bf7a62dc7724ca2938
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libdb-6.2.32-h01db608_0.tar.bz2#7cbfba14d5adfa65db945d5112909394
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libdrm-2.4.124-h86ecc28_0.conda#a8058bcb6b4fa195aaa20452437c7727
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libgcrypt-lib-1.11.0-h86ecc28_2.conda#07c1e27a75b217e5502bff34cd23c353
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libgfortran-ng-14.2.0-he9431aa_2.conda#0980d7d931474a6a037ae66f1da4d2fe
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libidn2-2.3.8-h53e0a65_0.conda#8ef0b04e3f74f9594402ffe3d76cc188
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda#f52c614fa214a8bedece9421c771670d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopenblas-0.3.29-pthreads_h9d3fd7e_0.conda#a99e2bfcb1ad6362544c71281eb617e9
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda#68f807f7cc13951652bbe048253fd405
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libthrift-0.21.0-h154c74f_0.conda#c28792bf37f4ecdce8e3cb9e40750650
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libunwind-1.6.2-h01db608_0.tar.bz2#93b7bbf9099cfe09e67c0abe34bb7885
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libvorbis-1.3.7-h01db608_0.tar.bz2#c2863ff72c6d8a59054f8b9102c206e9
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libvpx-1.14.1-h0a1ffab_0.conda#3cb63f822a49e4c406639ebf8b5d87d7
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/lua-5.4.6-h6e35974_1.conda#8b1536d56d217011db24e6aa58bf0e88
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/mysql-libs-9.0.1-h11569fd_5.conda#bbee9b7b1fb37bd1d9c5df0fc50fda84
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/nss-3.108-h7e26b49_0.conda#660d326c40248c240dacc5d5901c9e14
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/ocl-icd-2.3.2-h86ecc28_2.conda#5787dec0e2b0e26d6842a63ebe0de9fb
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pcre2-10.44-h070dd5b_2.conda#94022de9682cb1a0bb18a99cbc3541b3
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/perl-5.32.1-7_h31becfc_perl5.conda#17d019cb2a6c72073c344e98e40dfd61
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/python-3.12.9-h1683364_1_cpython.conda#780ac8d332b0711766c121e4f835ba5d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/qhull-2020.2-h70be974_5.conda#bb138086d938e2b64f5f364945793ebf
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/wayland-1.23.1-h698ed42_0.conda#2661f9252065051914f1cdf5835e7430
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/x265-3.5-hdd96247_3.tar.bz2#786853760099c74a1d4f0da98dd67aea
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xcb-util-0.4.1-h5c728e9_2.conda#b4cf8ba6cff9cdf1249bcfe1314222b0
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xcb-util-keysyms-0.4.1-h5c728e9_0.conda#57ca8564599ddf8b633c4ea6afee6f3a
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xcb-util-renderutil-0.3.10-h5c728e9_0.conda#7beeda4223c5484ef72d89fb66b7e8c1
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xcb-util-wm-0.4.2-h5c728e9_0.conda#f14dcda6894722e421da2b7dcffb0b78
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libsm-1.2.6-h0808dbd_0.conda#2d1409c50882819cb1af2de82e2b7208
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libx11-1.8.12-hca56bd8_0.conda#3df132f0048b9639bc091ef22937c111
https://conda.anaconda.org/t/*****/conda-forge/noarch/appdirs-1.4.4-pyhd8ed1ab_1.conda#f4e90937bbfc3a4a92539545a37bb448
https://conda.anaconda.org/t/*****/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda#8f587de4bcf981e26228f268df374a9b
https://conda.anaconda.org/t/*****/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda#a10d11958cadc13fdb43df75f8b1903f
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/bcrypt-4.3.0-py312h8cbf658_0.conda#faba3d4683839b311106ee0550c3e482
https://conda.anaconda.org/t/*****/conda-forge/noarch/bidict-0.23.1-pyhd8ed1ab_1.conda#a6d521e8054c6b38aea1095060bd7e14
https://conda.anaconda.org/t/*****/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda#42834439227a4551b939beeeb8a4b085
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/brotli-1.1.0-h86ecc28_2.conda#5094acc34eb173f74205c0b55f0dd4a4
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/brotli-python-1.1.0-py312h6f74592_2.conda#e1e9727063057168d95f27a032acd0a4
https://conda.anaconda.org/t/*****/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a
https://conda.anaconda.org/t/*****/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda#c207fa5ac7ea99b149344385a9c0880d
https://conda.anaconda.org/t/*****/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda#e83a31202d1c0a000fce3e9cf3825875
https://conda.anaconda.org/t/*****/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda#f22f4d4970e09d68a10b922cbb0408d3
https://conda.anaconda.org/t/*****/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda#962b9857ee8e7018c22f2776ffa0b2d7
https://conda.anaconda.org/t/*****/conda-forge/noarch/construct-2.10.70-pyhd8ed1ab_0.conda#58e88566bfbbf9d3ffbeda3290e7f4f0
https://conda.anaconda.org/t/*****/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda#44600c4667a319d67dbe0681fc0bc833
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/cyrus-sasl-2.1.27-hf6b2984_7.conda#7a85d417c8acd7a5215c082c5b9219e5
https://conda.anaconda.org/t/*****/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda#9ce473d1d1be1cc3810856a48b3fab32
https://conda.anaconda.org/t/*****/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda#24c1ca34138ee57de72a943237cde4cc
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/ephem-4.2-py312hb2c0f52_0.conda#f1038590af387166a2d7b5fcd79edeef
https://conda.anaconda.org/t/*****/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda#a16662747cdeb9abbac74d0057cc976e
https://conda.anaconda.org/t/*****/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda#ef8b5fca76806159fc25b4f48d8737eb
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/fftw-3.3.10-nompi_h020dacd_110.conda#92fd83877f1a14a524a2889c52efdde6
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/fontconfig-2.15.0-h8dda3cd_1.conda#112b71b6af28b47c624bcbeefeea685b
https://conda.anaconda.org/t/*****/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_2.conda#1054c53c95d85e35b88143a3eda66373
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gettext-0.23.1-h5ad3122_0.conda#6a8190d3f7d7a171aeacf7d01bb9b14f
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnutls-3.8.9-ha125074_0.conda#04313be3799488c48c13014ac77e068a
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/greenlet-3.1.1-py312h6f74592_1.conda#d9ccd43f6648449f80b098709e2450c7
https://conda.anaconda.org/t/*****/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda#0a802cb9888dd14eeefc611f05c40b6e
https://conda.anaconda.org/t/*****/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda#8e6923fc12f1fe8f8c4e5c9f343256ac
https://conda.anaconda.org/t/*****/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda#39a4f67be3286c86d696df570b1201b7
https://conda.anaconda.org/t/*****/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_1.conda#7ac5f795c15f288984e32add616cdc59
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/jack-1.9.22-h5c6c0ed_2.conda#e6abd2a51bd727a1b62a54524f760864
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/kiwisolver-1.4.8-py312h17cf362_0.conda#ed706756a1cb11159b67e6bf6e900cec
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libblas-3.9.0-31_h1a9f1db_openblas.conda#48bd5bf15ccf3e409840be9caafc0ad5
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libboost-1.86.0-h4d13611_3.conda#b5042cc0004a036390a6e4b007d77966
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libcups-2.3.3-h405e4a8_4.conda#d42c670b0c96c1795fd859d5e0275a55
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libcurl-8.12.1-h6702fde_0.conda#14c340cb70867cf7953d2632f89270b5
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libglib-2.82.2-hc486b8e_1.conda#6dfc5a88cfd58288999ab5081f57de9c
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libglx-1.7.0-hd24410f_2.conda#1d4269e233636148696a67e2d30dad2a
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libsystemd0-257.4-h2bb824b_1.conda#e3b59ca7df96941bebeb1fa932f045b5
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libtiff-4.7.0-h88f7998_3.conda#36a0ea4a173338c8725dc0807e99cf22
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libudev1-257.4-h7b9e449_1.conda#2221b6437dcc3859343592eff80dc9a4
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libxml2-2.13.6-h2e0c361_0.conda#a159a92f890f862408c951c08f13415f
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_1.conda#bc8607ab678073a0441808a31465f4fb
https://conda.anaconda.org/t/*****/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/ocl-icd-system-1.0.0-1.tar.bz2#97956cc9e200c26ccd08a8e8f4ec7499
https://conda.anaconda.org/t/*****/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda#3bfed7e6228ebf2f7b9eaa47f1b4e2aa
https://conda.anaconda.org/t/*****/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda#5c092057b6badd30f75b06244ecd01c9
https://conda.anaconda.org/t/*****/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda#11a9d1d09a3615fc07c3faf79bc0b943
https://conda.anaconda.org/t/*****/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda#5a5870a74432aa332f7d32180633ad05
https://conda.anaconda.org/t/*****/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda#fd5062942bfa1b0bd5e0d2a4397b099e
https://conda.anaconda.org/t/*****/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda#7d9daffbb8d8e0af0f769dbbcd173a54
https://conda.anaconda.org/t/*****/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda#3bfdfb8dbcdc4af1ae3f9a8eb3948f04
https://conda.anaconda.org/t/*****/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda#12c566707c80111f9799308d9e265aef
https://conda.anaconda.org/t/*****/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda#232fb4577b6687b2d503ef8e254270c9
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyopengl-3.1.7-pyhd8ed1ab_0.conda#6d7d03be8e7f788b444c15262408d063
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyparsing-3.2.1-pyhd8ed1ab_0.conda#285e237b8f351e85e7574a2c7bfa6d46
https://conda.anaconda.org/t/*****/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda#461219d1a5bd61342293efa2c0c90eac
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-tzdata-2025.1-pyhd8ed1ab_0.conda#392c91c42edd569a7ec99ed8648f597a
https://conda.anaconda.org/t/*****/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda#3eeeeb9e4827ace8c0c1419c85d590ad
https://conda.anaconda.org/t/*****/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2#2807a0becd1d986fe1ef9b7f8135f215
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pyyaml-6.0.2-py312hcc812fe_2.conda#4de4a5ff81c941674e08595244e7cd61
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/rpds-py-0.23.1-py312he7a34ca_0.conda#9925c3b64c5a8a096081b0e64d5fd2f6
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/ruamel.yaml.clib-0.2.8-py312hb2c0f52_1.conda#189e58f9d58f36f522ceda028f5249f8
https://conda.anaconda.org/t/*****/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda#9bddfdbf4e061821a1a443f93223be61
https://conda.anaconda.org/t/*****/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda#a451d576819089b0d672f18768be0f65
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-0.8.1-py312h451a7dd_5.conda#c958c5d71abfa586ac45699a93296d55
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/spdlog-1.15.1-hc4929b9_0.conda#2655df8b37f2f271a0abd07d7a988871
https://conda.anaconda.org/t/*****/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda#b0dd904de08b7db706167240bf37b164
https://conda.anaconda.org/t/*****/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda#ac944244f1fed2eb49bae07193ae8215
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/tornado-6.4.2-py312h52516f5_0.conda#e28996d9d2d44d777b7e6fb12f63715b
https://conda.anaconda.org/t/*****/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda#019a7385be9af33791c989871317e1ed
https://conda.anaconda.org/t/*****/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda#d17f13df8b65464ca316cbc000a3cb64
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/unicodedata2-16.0.0-py312hb2c0f52_0.conda#ac2f60c0522e7c6d24de8c4e06bccd11
https://conda.anaconda.org/t/*****/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda#b68980f2495d096e71c7fd9d7ccf63e6
https://conda.anaconda.org/t/*****/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda#84f8f77f0a9c6ef401ee96611745da8f
https://conda.anaconda.org/t/*****/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda#75cb7132eb58d97896e173ef12ac9986
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xcb-util-image-0.4.0-h5c728e9_2.conda#b82e5c78dbbfa931980e8bfe83bce913
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xkeyboard-config-2.43-h86ecc28_0.conda#a809b8e3776fbc05696c82f8cf6f5a92
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxext-1.3.6-h57736b2_0.conda#bd1e86dd8aa3afd78a4bfdb4ef918165
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxfixes-6.0.1-h57736b2_0.conda#78f8715c002cc66991d7c11e3cf66039
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxrender-0.9.12-h86ecc28_0.conda#ae2c2dd0e2d38d249887727db2af960e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/zeromq-4.3.5-h5efb499_7.conda#f2f3282559a4b87b7256ecafb4610107
https://conda.anaconda.org/t/*****/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda#0c3cc595284c5e8f0f9900a9b228a332
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/atk-1.0-2.38.0-hedc4a1f_2.conda#9308557e2328f944bd5809c5630761af
https://conda.anaconda.org/t/*****/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/cairo-1.18.4-h83712da_0.conda#cd55953a67ec727db5dc32b167201aa6
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/cffi-1.17.1-py312hac81daf_0.conda#1a256e5581b1099e9295cb84d53db3ea
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/dbus-1.13.6-h12b9eeb_3.tar.bz2#f3d63805602166bac09386741e00935e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/fonttools-4.56.0-py312hcc812fe_0.conda#d82ee4c4cedaed76ceba8769d4365e32
https://conda.anaconda.org/t/*****/conda-forge/noarch/fs-2.4.16-pyhd8ed1ab_0.conda#a231fa7cb5f101f1f3ae8480c0002f91
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gdk-pixbuf-2.42.12-ha61d561_0.conda#332ed304e6d1c1333ccbdc0fdd722fe9
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/glib-tools-2.82.2-h78ca943_1.conda#260e61a98e9e6ffccd95394ace6fc162
https://conda.anaconda.org/t/*****/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda#7ee49e89531c0dcbba9466f6d115d585
https://conda.anaconda.org/t/*****/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda#b4754fb1bdcb70c8fd54f918301582c6
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/hdf5-1.14.3-nompi_h6ed7ac7_109.conda#9f6ead54eb026d0abb89c98d621c717c
https://conda.anaconda.org/t/*****/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda#f4b39bf00c69f56ac01e020ebfac066c
https://conda.anaconda.org/t/*****/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda#c85c76dc67d75619a92f51dfbce06992
https://conda.anaconda.org/t/*****/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda#bd80ba060603cc228d9d81c257093119
https://conda.anaconda.org/t/*****/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda#a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9
https://conda.anaconda.org/t/*****/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda#446bd6c8cb26050d528881df495ce646
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/lcms2-2.17-hc88f144_0.conda#b87b1abd2542cf65a00ad2e2461a3083
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libarchive-3.7.7-h6223a6c_3.conda#e5ab5ecbdc352a5decae39c30c248fb8
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libcblas-3.9.0-31_hab92f65_openblas.conda#6b81dbae56a519f1ec2f25e0ee2f4334
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libflac-1.4.3-h2f0025b_0.conda#520b12eab32a92e19b1f239ac545ec03
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libgl-1.7.0-hd24410f_2.conda#0d00176464ebb25af83d40736a2cd3bb
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libhwloc-2.11.2-default_h2c612a5_1001.conda#8f42119cdfd1ac905e19f0eeebe9ccfa
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/liblapack-3.9.0-31_h411afd4_openblas.conda#41dbff5eb805a75c120a7b7a1c744dc2
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libliquid1-1.6.0-hdd0dd80_2.conda#ab842ee3e958adbfa60f74096912b374
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libllvm19-19.1.7-h2edbd07_1.conda#a6abe993e3fcc1ba6d133d6f061d727c
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libmicrohttpd-1.0.1-hbc975ca_1.conda#5ab6b617df11ee9608f655baf0cec938
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libosmodsp0-0.4.0-hdd0dd80_2.conda#1530359baaba6b62e5c005d4f769bd07
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libusb-1.0.27-h86ecc28_101.conda#7ec1be04dde199789b5bf29d23159930
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libxkbcommon-1.8.1-h2ef6bd0_0.conda#8abc18afd93162a37d25fd244bf62ab5
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libxslt-1.1.39-h1cc9640_0.conda#13e1d3f9188e85c6d59a98651aced002
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/m17-cxx-demod-2.3.3-hf62ac73_5.conda#feb630afe5ebd4b3333550270f6bb097
https://conda.anaconda.org/t/*****/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda#af6ab708897df59bd6e7283ceab1b56b
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/openjpeg-2.5.3-h3f56577_0.conda#04231368e4af50d11184b50e14250993
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/openldap-2.6.9-h30c48ee_0.conda#c07822a5de65ce9797b9afa257faa917
https://conda.anaconda.org/t/*****/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda#d0d408b1f18883a944376da5cf8101ea
https://conda.anaconda.org/t/*****/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda#79b5c1440aedc5010f687048d9103628
https://conda.anaconda.org/t/*****/conda-forge/noarch/prompt-toolkit-3.0.50-pyha770c72_0.conda#7d823138f550b14ecae927a5ff3286de
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyfiglet-0.8.post1-py_0.tar.bz2#e22d3c090f24856764e9d70e76fa3a5f
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda#5ba79d7c71f03c678c8ead841f347d6e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pyzmq-26.3.0-py312h2427ae1_0.conda#1e662657b4caf5b1da5718e93dc89a53
https://conda.anaconda.org/t/*****/conda-forge/noarch/qtpy-2.4.3-pyhd8ed1ab_0.conda#c9ca35b6fb8fa9af418625192c118567
https://conda.anaconda.org/t/*****/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda#9140f1c09dd5489549c6a33931b943c7
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/ruamel.yaml-0.18.10-py312hb2c0f52_0.conda#c75b8727857e618b3c1b395144f8c857
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/sip-6.8.6-py312h3178705_1.conda#4d8637f004cc0e9baf754ce7c844e490
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-netsdr-0.2.0-hc0426f7_1.conda#f350c862499ae6b4628288b79062ddee
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-redpitaya-0.1.1-hc0426f7_0.conda#5dde7a26f2c799acdf110c2dc6ce290e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-remote-0.5.2-he88f3d8_2.tar.bz2#10661218518a8bc2fb358951f9ff0225
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-volk-converters-0.1.1-hc992928_3.conda#bcb6ebe59845da58a7aa5087794e39c0
https://conda.anaconda.org/t/*****/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda#b1b505328da7a6b246787df4b5a49fbc
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/watchdog-6.0.0-py312h8025657_0.conda#4277c99e1d083987c041557d31139fd7
https://conda.anaconda.org/t/*****/conda-forge/noarch/werkzeug-3.1.3-pyhd8ed1ab_1.conda#0a9b57c159d56b508613cc39022c1b9e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xcb-util-cursor-0.1.5-h86ecc28_0.conda#d6bb2038d26fa118d5cbc2761116f3e5
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxcomposite-0.4.6-h86ecc28_2.conda#86051eee0766c3542be24844a9c3cf36
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxcursor-1.2.3-h86ecc28_0.conda#f2054759c2203d12d0007005e1f1296d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxdamage-1.1.6-h86ecc28_0.conda#d5773c4e4d64428d7ddaa01f6f845dc7
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxi-1.8.2-h57736b2_0.conda#eeee3bdb31c6acde2b81ad1b8c287087
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxinerama-1.1.5-h5ad3122_1.conda#a7b99f104e14b99ca773d2fe2d195585
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxrandr-1.5.4-h86ecc28_0.conda#dd3e74283a082381aa3860312e3c721e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxxf86vm-1.1.6-h86ecc28_0.conda#d745faa2d7c15092652e40a22bb261ed
https://conda.anaconda.org/t/*****/conda-forge/noarch/zope.event-5.0-pyhd8ed1ab_1.conda#eed0f4438d9f9cc67314ed2926c3cdd3
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/zope.interface-7.2-py312h52516f5_0.conda#47673437b6b09289d9c3d31137435b60
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/arpack-3.9.1-nompi_h6fc4d3a_102.conda#ebb4856a15ce86a9aecb365f6fe8e3e0
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/cryptography-44.0.2-py312he723553_0.conda#e0905c24f9bbbb7c8d7234c7d7d51571
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/elfutils-0.192-h63239f7_1.conda#846a0053fe30f8de6b3bd3493f52afe1
https://conda.anaconda.org/t/*****/conda-forge/noarch/flask-3.1.0-pyhd8ed1ab_1.conda#2da939620e3a741f61fc1cb136df66fb
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gevent-24.11.1-py312hc4bf99b_0.conda#a2863fb4e8905c7209e72d0934471883
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/glfw-3.4-h31becfc_0.conda#48479e59b512a1dc883aa8d9ea2e29a6
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/glib-2.82.2-h09e00fb_1.conda#df7b8e8dc633a225574e79a5a42f1f60
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gsl-2.7-h294027d_0.tar.bz2#8b9533e21be7fa232ab64e85f184e0b3
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/harfbuzz-10.4.0-hb5e3f52_0.conda#f28b4d75b1ee821c768311613d3dd225
https://conda.anaconda.org/t/*****/conda-forge/noarch/ipython-9.0.2-pyhfb0248b_0.conda#b031bcd65b260a0a3353531eab50d465
https://conda.anaconda.org/t/*****/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda#3b519bc21bc80e60b456f1e62962a766
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libairspy-1.0.10-h86ecc28_1.conda#3f4a8c1802951f80496643595533a502
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libairspyhf-1.6.8-h86ecc28_1.conda#ef798a95759bd9363bfd8fb02e06d430
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libbladerf2-2024.05-h86ecc28_2.conda#6aec88fd7c2a337e261a114328371876
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libclang-cpp19.1-19.1.7-default_he324ac1_1.conda#56e9f61513f98a790bb6dae8759986fa
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libclang13-19.1.7-default_h4390ef5_1.conda#a6baf52f08271bba2599ac6e1064dde4
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libgirepository-1.82.0-hdbe9fd5_0.conda#18a9334d76e17cf7c8c3fc0a6b196e64
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libglu-9.0.3-hc7f7585_0.conda#cf9ff275dd030e5e8c9d336f5086da98
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libhackrf0-2024.02.1-h86ecc28_1.conda#fe46ff6cf17472fb41bafca4750823f4
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libhamlib4-4.6.2-h5ad3122_2.conda#cd69bd8d443568b57599f632fb07bc34
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libhidapi-0.14.0-h31becfc_0.conda#23593c77a861198c5672b7c96d3fca6e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libiio-c-0.26-hfc39cb9_1.conda#259341577314dc1a616a7d199de6197f
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/liblimesuite-23.11.0-h5ad3122_1.conda#be2bb6c51a5e7761b67bf22883d11015
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libmatio-1.5.28-h939d0d8_2.conda#188f71c9670a0ec363e66be00d8a77cb
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libmirisdr4-2.0.0-h86ecc28_1.conda#5b84d6577941d7f8ea2b036ad53a1d1b
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libpq-17.4-hf590da8_0.conda#d5350c35cc7512a5035d24d8e23a0dc7
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libsndfile-1.2.2-h79657aa_1.conda#ad8e62c0faec46b1442f960489c80b49
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/lxml-5.3.1-py312h1ce91a6_0.conda#0fe03396056920d90be316208305e9fe
https://conda.anaconda.org/t/*****/conda-forge/noarch/mako-1.3.9-pyhd8ed1ab_0.conda#422113c902cc5181ccaafbb4b827e492
https://conda.anaconda.org/t/*****/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda#06e9bebf748a0dea03ecbe1f0e27e909
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/numpy-2.2.3-py312hce01fe4_0.conda#4931638d20819014fa9ebd0ad3bbf053
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pillow-11.1.0-py312h719f0cf_0.conda#77e0ec0a6fc847d317f204aa15b59f6b
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pycairo-1.27.0-py312hb14272e_0.conda#d10806b3cf9baa4af1520d8e279c4c14
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pynacl-1.5.0-py312hb2c0f52_4.conda#0e93dcd48ce5b39b90dfade10bc079a6
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pyqt5-sip-12.12.2-py312h2aa54b4_5.conda#7c5ab0e0116ca04d502eeff5ce67623d
https://conda.anaconda.org/t/*****/conda-forge/noarch/qdarkstyle-3.2.3-pyhd8ed1ab_1.conda#b5d204064e9c816535282a94f30a40c9
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/rtl-sdr-2.0.2-h86ecc28_3.conda#0c5e7acad0401735cef2e247b24add04
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/superlu-5.2.2-h4b58547_0.tar.bz2#32ff86b3335def4756143ee4799ca6ce
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/tbb-2022.0.0-h243be18_0.conda#adc00506117e9ea09114ce0dac3681f0
https://conda.anaconda.org/t/*****/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_1.conda#2c7536a04d9c21e1dd05bd4a3b1e3a39
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/xorg-libxtst-1.2.5-h57736b2_3.conda#c05698071b5c8e0da82a282085845860
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/zstandard-0.23.0-py312hb2c0f52_1.conda#21505638229948770e18bd31635285ea
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/airspy-1.0.10-h86ecc28_1.conda#757a6287260413040c2f3e436c2952a2
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/airspyhf-1.6.8-h86ecc28_1.conda#d42dc18ca9d1e8a33699bda33176224a
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/armadillo-14.4.0-h3b5eff6_0.conda#186340876126d4ad12ef0b208687018f
https://conda.anaconda.org/t/*****/conda-forge/noarch/asciimatics-1.15.0-pyhd8ed1ab_1.conda#1e4474adec5bda131d146a587dcf5c79
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/at-spi2-core-2.40.3-h1f2db35_0.tar.bz2#a12602a94ee402b57063ef74e82016c0
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/contourpy-1.3.1-py312h451a7dd_0.conda#ba590e4630833739c3eb5fcd5f046d0e
https://conda.anaconda.org/t/*****/conda-forge/noarch/gevent-websocket-0.10.1-py_0.tar.bz2#25b4b60b6ea50368cd90b75b4d00c711
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/glew-2.1.0-h01db608_2.tar.bz2#2a46529de1ff766f31333d3cdff2b734
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-pmt-3.10.12.0-py312h1efb967_1.conda#655f300bda0cc85ac24a3deab47e3e5d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gstreamer-1.24.7-h37d20eb_0.conda#c672dd04a62139ba21f2ba130b88f235
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/h5py-3.13.0-nompi_py312h9a738b8_100.conda#ccd9bad975a972ee8c3ba2a77acc3c9b
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/hackrf-2024.02.1-hdd0dd80_1.conda#b09670fc238c664e46b4a940b1233f5f
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/hamlib-4.6.2-hd3c86e4_2.conda#e2163422fd25ec02f88fb65e33f240b8
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/hamlib-lua-4.6.2-lua54h86ecc28_2.conda#fd3dce8cf7b9b8479abe5b354f8dd2f5
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/hamlib-perl-4.6.2-pl5321h86ecc28_2.conda#d5f4439878ff3e8a9b498694c54a9f2c
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/hamlib-python-4.6.2-py312h52516f5_2.conda#045b0481bb36af57e6198f3ee460ddf0
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/hamlib-tcl-4.6.2-h397889b_2.conda#3eaecc636b08acd910dfc094b9623422
https://conda.anaconda.org/t/*****/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda#a3cead9264b331b32fe8f0aabc967522
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libad9361-iio-c-0.3-hc0d44b4_1.conda#980a9635a17e8cfeb57f9c492bee70c0
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libass-0.17.3-hdba415e_1.conda#a249c94e018480871ec16d9b7b1d6e86
https://conda.anaconda.org/t/*****/conda-forge/noarch/libbladerf-python-2024.05-py_2.conda#1463dfd317f3603a9593cac153527c6e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libm2k-0.9.0-py312h9e812b1_1.conda#47ece3aab62ca3aea04ad1b2ffd5f05f
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopenvino-2025.0.0-hd63d6c0_2.conda#5aa6f029340a4ace255474ea907c8bc0
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/mesalib-25.0.1-h1d34c93_0.conda#06f8f0a45061cb3bebaab670dda31e00
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/mirisdr-2.0.0-h86ecc28_1.conda#a6cb5d6f928adf0c98f13c7c8fa5bd63
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/numexpr-2.10.2-py312h4c002e7_0.conda#adb0514cf11c7586be3b44a8aa2f80c5
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_2.conda#39a91ac336d350513de6aad56da5a920
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pango-1.56.2-hd49db62_0.conda#bfa9eaba39774e9f74134b302fa4c922
https://conda.anaconda.org/t/*****/conda-forge/noarch/paramiko-3.5.1-pyhd8ed1ab_0.conda#4e6bea7eee94bb9d8a599385215719f9
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pulseaudio-client-17.0-h729494f_0.conda#f35f57712d5c2abca98c85a51a408bc1
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pygobject-3.50.0-py312h9bef549_1.conda#e60e21a818ed6c4e92a5b6babd873770
https://conda.anaconda.org/t/*****/conda-forge/noarch/pylibiio-0.26-py_1.conda#3be73c72b1383b1f0e9690333780d6cd
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyqtgraph-0.13.7-pyhd8ed1ab_1.conda#569357b4d0b4565c57698a6e2dade74e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/qt6-main-6.8.2-ha0a94ed_0.conda#21fa1939628fc6af0aa96e5f830d418b
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/scipy-1.15.2-py312hb5459e8_0.conda#957735cb6319671df3812b81344431d8
https://conda.anaconda.org/t/*****/conda-forge/noarch/simple-websocket-1.1.0-pyhd8ed1ab_0.conda#62e0b21f75a81735ddc72e6019d27c16
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-airspy-0.2.0-he88f3d8_0.tar.bz2#b1ca31a6c7f13ad6637eccd97c57ae28
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-airspyhf-0.2.0-he88f3d8_0.tar.bz2#2ed4cfaabc5de14423861dbfae27902f
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-bladerf-0.4.1-hbad66d3_0.tar.bz2#d06b0934df73deb0fcf573d1d65635cf
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-fcdpp-0.1.1-h63b6e07_0.conda#dea47df4a64dd898cff623d2eb4338de
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-hackrf-0.3.4-he88f3d8_0.tar.bz2#9a4681b61b151178c67a9ae9dc9e9bbd
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-lms7-23.11.0-hd9ae2f7_1.conda#d453f054ffac3983b6cab98b71eef933
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-rtlsdr-0.3.3-hd53839e_2.conda#a85777305e2e750cc7a7c2112ee2e3c4
https://conda.anaconda.org/t/*****/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda#32674f8dbfb7b26410ed580dd3c10a29
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/at-spi2-atk-2.38.0-h1f2db35_3.tar.bz2#4ea9d4634f3b054549be5e414291801e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/bladerf-2024.05-h86ecc28_2.conda#dc563f57bcd51c4bcf1b80df2049caff
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/digital_rf-2.6.11-py312h91a0b02_0.conda#3ede40d01df340ad22a0a6b4135f7081
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gst-plugins-base-1.24.7-h570c1df_0.conda#8d35b3a3d8b4a85ab93ab40314c9246a
https://conda.anaconda.org/t/*****/conda-forge/noarch/hamlib-all-4.6.2-linux_2.conda#a321fab609556cb48ddc20f57a43a82e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libiio-0.26-h72120ad_1.conda#5e4817cf5cc5a716f596e2288c1f94e0
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopenvino-arm-cpu-plugin-2025.0.0-hd63d6c0_2.conda#70dbe086412019e7967ffebae148c1d8
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopenvino-auto-batch-plugin-2025.0.0-hf15766e_2.conda#d31968a9f3f6a46a54a6f4b988255e3d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopenvino-auto-plugin-2025.0.0-hf15766e_2.conda#38dbea58329ee07eff16ef41a909030a
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopenvino-hetero-plugin-2025.0.0-ha8e9e04_2.conda#5d1b3b273333c2dbd95b7b1614b7edb5
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopenvino-ir-frontend-2025.0.0-ha8e9e04_2.conda#bf864876cf2ac53ac36a89d681b2cf0d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopenvino-onnx-frontend-2025.0.0-h2c07a0f_2.conda#86163199b5972015dc878138e0919676
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopenvino-paddle-frontend-2025.0.0-h2c07a0f_2.conda#1df82078ab8a4de1c7a6d31c1da46d61
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopenvino-pytorch-frontend-2025.0.0-h5ad3122_2.conda#d4d5443a06ec542e82673263cb9f215e
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopenvino-tensorflow-frontend-2025.0.0-h8231d02_2.conda#3b1b411329db5c5a60479a9db645cafa
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/libopenvino-tensorflow-lite-frontend-2025.0.0-h5ad3122_2.conda#47136fa58df665e2d65ac670fc88dd3b
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/librsvg-2.58.4-h9b423fc_2.conda#57122e6d1d085802579a32ec502c6699
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/librtaudio6-5.2.0-he7669aa_3.conda#66d731e212a2c7e15e9771164d051850
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/matplotlib-base-3.10.1-py312h965bf68_0.conda#b43b77e766ed878d88a37cdda7f6b2ae
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyadi-iio-0.0.19-pyhd8ed1ab_0.conda#aca3bc166b666f8951a3f8b41f0d05be
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pyside6-6.8.2-py312hdd999d0_1.conda#9ef8d1d4d60ba1f81cd1d1e457b3b580
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-engineio-4.11.2-pyhff2d567_0.conda#480833a0855e1d1782d8ec3aa9d91db2
https://conda.anaconda.org/t/*****/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda#a9b9368f3701a417eac9edbcae7cb737
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/sdl3-3.2.8-h9cc03ad_0.conda#826ab52468c17fc696d6f0ab75e42bc2
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-plutosdr-0.2.2-h0dffcbf_1.conda#9dd41a12e866e66bbc05308f38f73ca5
https://conda.anaconda.org/t/*****/conda-forge/noarch/adwaita-icon-theme-47.0-unix_0.conda#49436a5c604f99058473d84580f0e341
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gtk3-3.24.43-hd0cad38_4.conda#628d8a36bf3acdbfe3d13a7bf44d9ec2
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/matplotlib-3.10.1-py312h8025657_0.conda#dfd67a0e2f7cbe668d170e43e95b476d
https://conda.anaconda.org/t/*****/conda-forge/noarch/mplcursors-0.6-pyhd8ed1ab_1.conda#fa7bf31f4427e5582f7373d0ba8498f6
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-socketio-5.12.1-pyhd8ed1ab_0.conda#d3ef77c1cebc66115af8109e893480b2
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/qt-main-5.15.15-hcc483f7_2.conda#a8de867a854c0a8d10047093e2faa5c8
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/sdl2-2.32.50-h7851d19_1.conda#83f2b36f187b0269471774983ecfa39f
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-audio-0.1.1-h4356ce9_2.conda#6f962765e9ab6d01bbb864b5b92ed84d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/uhd-4.8.0.0-py312h0ef7e8d_0.conda#a96595be8ea364c1477d63a8140ea605
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/ffmpeg-7.1.1-gpl_hbae2ecc_701.conda#64f486c0ab8926669349e8a8972b1bd0
https://conda.anaconda.org/t/*****/conda-forge/noarch/flask-socketio-5.5.1-pyh29332c3_0.conda#03fb6a9594f156a510118a5b4fe64a02
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/inspectrum-0.3.1-ha6d2d91_0.conda#aca49cef8b45f89ee6f576408ed709d7
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/pyqt-5.15.9-py312hd46c331_5.conda#80bcd2a52b661b05687f0e72ccdbf209
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/qwt-6.3.0-h473b47b_0.conda#1d1d4b20ca1b3303d5cd468c9ec1fa1d
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/sdl-1.2.68-h7851d19_1.conda#8787525cefbbadfac5675e491fdc4dfd
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/soapysdr-module-uhd-0.4.1-h008a518_14.conda#0850673856847eb8df58358fcbedcaea
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/wxwidgets-3.2.6-ha63e5ef_3.conda#5daf87ab79dee7959db3863ac24cbbcf
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/alsa-plugins-1.2.12-hce16396_1.conda#7199b2e4ee1875cedaf3c8e1374c8427
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/limesuite-23.11.0-h00f8104_1.conda#bff95e28de7de6d0abd1a9cffd726072
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyfda-0.9.2-pyh9208f05_1.conda#a1fdcc4e47c1abb4e0554e2fd02a841c
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-core-3.10.12.0-py312ha9ddad5_1.conda#ec21738efac0f718be24bee74cc19e5e
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-adsb-0.0.0.20250304.dev%2Bg9645757-unix_py_1.conda#9e67f1f65df571de24cf8b19f06a51fb
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-dect2-0.0.0.20250304.dev%2Bg27a3d6-np20py312heb6a550_1.conda#471b5e63ff2bb758be38af4b6f96b30c
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-filerepeater-0.0.0.20250304.dev%2Bgec6b386-np20py312hdabc401_2.conda#2236a0650de08b38e29040ddc05552f9
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-foo-0.0.0.20250304.dev%2Bg9e0e2-np20py312hfed7f62_1.conda#b69350eb12c8479ccf1e9a84c1b68825
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-fosphor-0.0.0.20250304.dev%2Bg85a0b8f-np20py312hffff8d2_1.conda#ca2c9455c2a62a4f60ea479ea75f53c6
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-funcube-3.10.0.rc3-py312h0e0e949_12.conda#2d4ec7c83f74497d2a1cecd00d3d5a4b
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-gpredict-doppler-0.0.0.20250303.dev%2Bg9473cbf-unix_py_1.conda#2a8e3e6791c85a38c88dfc94292dd084
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-grc-3.10.12.0-py312h0d1bda0_1.conda#3ea9158865be7b97307f5c52cd82a789
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-hermeslite2-1.0.0.0.post20250305%2Bg2e66561-np20py312heb6a550_0.conda#ad90019f0af6bc03a43a273852df6472
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-hpsdr-0.0.0.20250304.dev%2Bg7748cc9-np20py312heb6a550_1.conda#6f00f6bbfdf166444f5dffb9401d5b62
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-iio-3.10.12.0-py312he222db9_1.conda#af69f8f8d3a74b9c41678be8a1fdefa3
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-iqbalance-0.38.2-py312he23ff6d_7.conda#9eb589bc3fc514eaab2b768ed9edce48
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-iridium-1%211.0.0-py312h07368fe_16.conda#a599edf12763ba2f83d2367f3be14350
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-leo-1.0.0.post20250214%2Bg8f62b92-np20py312h9c9c44e_2.conda#d2a8da8af309b0856d804b13c2c35e16
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-lora_sdr-0.0.0.20250305.dev%2Bga8143cb-np20py312hd578418_0.conda#dd8897908c990465708550684aa92551
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-m2k-1.0.0-py312h2e1c864_13.conda#6550e630b6671602c8f0875c3e31ccdd
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-paint-0.0.0.20250303.dev%2Bgfb4f7b6-np20py312hd578418_2.conda#8e810f8cab817ba6b28fe9d65ca4205c
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-qtgui-3.10.12.0-py312hffe2cdf_1.conda#2abe6d31088fe959f4f2abf8de900d23
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-radar-0.0.0.20250220.dev%2Bg92adce2-np20py312hcc19a4a_1.conda#c1a87fc9524e21fb2b8a6fbea190f982
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-rds-3.10.post20250305%2Bgc1cba54-np20py312heb6a550_0.conda#71279fcb383c628a36f08af5ad7ed0a4
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-soapy-3.10.12.0-py312h2092bfa_1.conda#4446f6479413e33778e76a8f1c502cf3
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-uhd-3.10.12.0-py312h6a79ccd_1.conda#54ddf6b218c02d43cbcb3ad3b164b5f2
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-video-sdl-3.10.12.0-py312h8aaf11b_1.conda#e195d8db86f99be3e450f8cddb32c472
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-zeromq-3.10.12.0-py312h5358668_1.conda#c62b0194687d81738008e8816c26c677
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-3.10.12.0-py312hbe36d5e_1.conda#1c38c60df6bc673a3725814b4bbd0ca8
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-ieee802_11-0.0.0.20250304.dev%2Bg761bdd9-np20py312h4434e41_2.conda#73257ab99587887458132ca5ef27819c
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-ieee802_15_4-3.6.post20250304%2Bg61f4c4a-np20py312hd578418_1.conda#60670d89f3065cb718f307119f7d75fd
https://conda.anaconda.org/t/*****/ryanvolz/linux-aarch64/gnuradio-inspector-0.0.0.20250303.dev%2Bgad6a69e-np20py312h2d400b8_2.conda#d24c703e4baceaa082a862fd14884ba2
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-osmosdr-0.2.6-py312h9ad487b_7.conda#b8850e6812e22f31c539b8b9a0ead4d8
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnuradio-satellites-5.7.0-py312he263c01_1.conda#fe7e446728e03d4db3b37ea586372842
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gnss-sdr-0.0.19-hc7309ab_8.conda#50f6d0c273280295e32ae2c360bab376
https://conda.anaconda.org/t/*****/conda-forge/linux-aarch64/gqrx-2.17.6-py312h2d3ebc0_1.conda#f8f65f0313ff8a4fbdf5ff818525ee83

View File

@ -2,69 +2,71 @@ channels:
- conda-forge
- ryanvolz
dependencies:
- airspy=1.0.10=hf897c2e_0
- airspyhf=1.6.8=hf897c2e_0
- alsa-plugins=1.2.7.1=h9ebc1e6_10
- bladerf=2023.02=hb4cce97_0
- codec2=1.0.3=hf897c2e_0
- digital_rf=2.6.9=py310h7974c82_0
- ephem=4.1.5=py310hb299538_1
- gnss-sdr=0.0.18=hffc4b83_19
- gnuradio-adsb=0.0.0.20240508.dev+gafd7fabda=unix_pyha6c0e43_0
- gnuradio-dect2=0.0.0.20240502.dev+gb296af2a9=py310h686007d_0
- gnuradio-filerepeater=0.0.0.20240502.dev+gd7bb8846c=py310h87cbb57_0
- gnuradio-foo=0.0.0.20240502.dev+gc53538a22=py310h594d49a_0
- gnuradio-fosphor=0.0.0.20240502.dev+g656fe2f=py310h1b0f79d_0
- gnuradio-gpredict-doppler=0.0.0.20240508.dev+gb06bc7678=unix_pyha1ad6f9_0
- gnuradio-hermeslite2=v1.0.0.0.post17+8b17ad3=py310h686007d_0
- gnuradio-hpsdr=0.0.0.20240507.dev+g958e157=py310h6112494_0
- gnuradio-ieee802_11=0.0.0.20240507.dev+g8c058d4e0=py310hd8f36ec_0
- gnuradio-ieee802_15_4=3.6.post133+g932c76f=py310hce0851f_0
- gnuradio-inspector=0.0.0.20240525.dev+g55acca6=py310hac10039_0
- gnuradio-iqbalance=0.38.2=py310h39521e3_3
- gnuradio-iridium=1!1.0.0=py310h3e84c94_11
- gnuradio-leo=1.0.0.post105+12a346f=py310h9091615_0
- gnuradio-lora_sdr=0.0.0.20240508.dev+g751a65269=py310h9091615_0
- gnuradio-m2k=1.0.0=py310h2bd1195_9
- gnuradio-osmosdr=0.2.4=py310h6bdcd27_16
- gnuradio-paint=0.0.0.20240508.dev+g82696a2=py310h9091615_0
- gnuradio-radar=0.0.0.20240525.dev+gc59350d=py310h16cc4b3_0
- gnuradio-rds=3.10.post22+g2134008=py310h71a293b_0
- gnuradio-satellites=5.5.0=py310h25391a7_2
- gnuradio=3.10.10.0=py310hc9b69e3_6
- gqrx=2.17.5=py310hdc13f21_4
- hackrf=2024.02.1=he638756_0
- hamlib-all=4.5.5=linux_3
- airspy=1.0.10=h86ecc28_1
- airspyhf=1.6.8=h86ecc28_1
- alsa-plugins=1.2.12=hce16396_1
- bladerf=2024.05=h86ecc28_2
- codec2=1.2.0=h86ecc28_3
- digital_rf=2.6.11=py312h91a0b02_0
- ephem=4.2=py312hb2c0f52_0
- gnss-sdr=0.0.19=hc7309ab_8
- gnuradio-adsb=0.0.0.20250304.dev+g9645757=unix_py_1
- gnuradio-dect2=0.0.0.20250304.dev+g27a3d6=np20py312heb6a550_1
- gnuradio-filerepeater=0.0.0.20250304.dev+gec6b386=np20py312hdabc401_2
- gnuradio-foo=0.0.0.20250304.dev+g9e0e2=np20py312hfed7f62_1
- gnuradio-fosphor=0.0.0.20250304.dev+g85a0b8f=np20py312hffff8d2_1
- gnuradio-funcube=3.10.0.rc3=py312h0e0e949_12
- gnuradio-gpredict-doppler=0.0.0.20250303.dev+g9473cbf=unix_py_1
- gnuradio-hermeslite2=1.0.0.0.post20250305+g2e66561=np20py312heb6a550_0
- gnuradio-hpsdr=0.0.0.20250304.dev+g7748cc9=np20py312heb6a550_1
- gnuradio-ieee802_11=0.0.0.20250304.dev+g761bdd9=np20py312h4434e41_2
- gnuradio-ieee802_15_4=3.6.post20250304+g61f4c4a=np20py312hd578418_1
- gnuradio-inspector=0.0.0.20250303.dev+gad6a69e=np20py312h2d400b8_2
- gnuradio-iqbalance=0.38.2=py312he23ff6d_7
- gnuradio-iridium=1!1.0.0=py312h07368fe_16
- gnuradio-leo=1.0.0.post20250214+g8f62b92=np20py312h9c9c44e_2
- gnuradio-lora_sdr=0.0.0.20250305.dev+ga8143cb=np20py312hd578418_0
- gnuradio-m2k=1.0.0=py312h2e1c864_13
- gnuradio-osmosdr=0.2.6=py312h9ad487b_7
- gnuradio-paint=0.0.0.20250303.dev+gfb4f7b6=np20py312hd578418_2
- gnuradio-radar=0.0.0.20250220.dev+g92adce2=np20py312hcc19a4a_1
- gnuradio-rds=3.10.post20250305+gc1cba54=np20py312heb6a550_0
- gnuradio-satellites=5.7.0=py312he263c01_1
- gnuradio=3.10.12.0=py312hbe36d5e_1
- gqrx=2.17.6=py312h2d3ebc0_1
- hackrf=2024.02.1=hdd0dd80_1
- hamlib-all=4.6.2=linux_2
- inspectrum=0.3.1=ha6d2d91_0
- ipython=8.24.0=pyh707e725_0
- libiio=0.25=h8af1aa0_1
- libm2k=0.8.0=py310ha4f7790_0
- limesuite=23.11.0=hddbaef7_0
- m17-cxx-demod=2.3.3=h8f10d31_3
- matplotlib=3.8.4=py310hbbe02a8_2
- mirisdr=2.0.0=h31becfc_0
- numpy=1.26.4=py310hcbab775_0
- pandas=2.2.2=py310h34310a0_1
- pyadi-iio=0.0.16=pyhd8ed1ab_0
- pyfda=0.8.4=pyh9208f05_0
- python=3.10.14=hbbe8eec_0_cpython
- rtl-sdr=2.0.1=h31becfc_0
- scipy=1.13.1=py310h70fbbe5_0
- ipython=9.0.2=pyhfb0248b_0
- libiio=0.26=h72120ad_1
- libm2k=0.9.0=py312h9e812b1_1
- limesuite=23.11.0=h00f8104_1
- m17-cxx-demod=2.3.3=hf62ac73_5
- matplotlib=3.10.1=py312h8025657_0
- mirisdr=2.0.0=h86ecc28_1
- numpy=2.2.3=py312hce01fe4_0
- pandas=2.2.3=py312ha2895bd_2
- pyadi-iio=0.0.19=pyhd8ed1ab_0
- pyfda=0.9.2=pyh9208f05_1
- python=3.12.9=h1683364_1_cpython
- rtl-sdr=2.0.2=h86ecc28_3
- scipy=1.15.2=py312hb5459e8_0
- soapysdr-module-airspy=0.2.0=he88f3d8_0
- soapysdr-module-airspyhf=0.2.0=he88f3d8_0
- soapysdr-module-audio=0.1.1=hd53839e_1
- soapysdr-module-audio=0.1.1=h4356ce9_2
- soapysdr-module-bladerf=0.4.1=hbad66d3_0
- soapysdr-module-fcdpp=0.1.1=h63b6e07_0
- soapysdr-module-hackrf=0.3.4=he88f3d8_0
- soapysdr-module-lms7=23.11.0=hcd46cec_0
- soapysdr-module-lms7=23.11.0=hd9ae2f7_1
- soapysdr-module-netsdr=0.2.0=hc0426f7_1
- soapysdr-module-plutosdr=0.2.2=h901e66a_0
- soapysdr-module-plutosdr=0.2.2=h0dffcbf_1
- soapysdr-module-redpitaya=0.1.1=hc0426f7_0
- soapysdr-module-remote=0.5.2=he88f3d8_2
- soapysdr-module-rtlsdr=0.3.3=hd53839e_2
- soapysdr-module-uhd=0.4.1=h76252b4_10
- soapysdr-module-volk-converters=0.1.1=h107b08d_2
- soapysdr=0.8.1=py310h586407a_4
- uhd=4.6.0.0=py310hc7d4c31_0
- soapysdr-module-uhd=0.4.1=h008a518_14
- soapysdr-module-volk-converters=0.1.1=hc992928_3
- soapysdr=0.8.1=py312h451a7dd_5
- uhd=4.8.0.0=py312h0ef7e8d_0
name: radioconda
platform: linux-aarch64
version: 2024.05.29
version: 2025.03.14

View File

@ -14,473 +14,494 @@ post_install: post_install.sh
register_python_default: false
specs:
- _openmp_mutex=4.5=2_gnu
- adwaita-icon-theme=46.0=unix_0
- airspy=1.0.10=hf897c2e_0
- airspyhf=1.6.8=hf897c2e_0
- alsa-lib=1.2.11=h31becfc_1
- alsa-plugins=1.2.7.1=h9ebc1e6_10
- aom=3.9.0=hcccb83c_0
- appdirs=1.4.4=pyh9f0ad1d_0
- archspec=0.2.3=pyhd8ed1ab_0
- armadillo=12.8.3=hb159eaa_0
- arpack=3.8.0=nompi_h32ff4ca_101
- asciimatics=1.15.0=pyhd8ed1ab_0
- asttokens=2.4.1=pyhd8ed1ab_0
- adwaita-icon-theme=47.0=unix_0
- airspy=1.0.10=h86ecc28_1
- airspyhf=1.6.8=h86ecc28_1
- alsa-lib=1.2.13=h86ecc28_0
- alsa-plugins=1.2.12=hce16396_1
- aom=3.9.1=hcccb83c_0
- appdirs=1.4.4=pyhd8ed1ab_1
- archspec=0.2.5=pyhd8ed1ab_0
- armadillo=14.4.0=h3b5eff6_0
- arpack=3.9.1=nompi_h6fc4d3a_102
- asciimatics=1.15.0=pyhd8ed1ab_1
- asttokens=3.0.0=pyhd8ed1ab_1
- at-spi2-atk=2.38.0=h1f2db35_3
- at-spi2-core=2.40.3=h1f2db35_0
- atk-1.0=2.38.0=hedc4a1f_2
- attr=2.5.1=h4e544f5_1
- attrs=23.2.0=pyh71513ae_0
- bcrypt=4.1.3=py310h4719f56_0
- bidict=0.23.1=pyhd8ed1ab_0
- bladerf=2023.02=hb4cce97_0
- blinker=1.8.2=pyhd8ed1ab_0
- boltons=24.0.0=pyhd8ed1ab_0
- brotli-bin=1.1.0=h31becfc_1
- brotli-python=1.1.0=py310hbb3657e_1
- brotli=1.1.0=h31becfc_1
- bzip2=1.0.8=h31becfc_5
- c-ares=1.28.1=h31becfc_0
- ca-certificates=2024.2.2=hcefe29a_0
- attrs=25.3.0=pyh71513ae_0
- bcrypt=4.3.0=py312h8cbf658_0
- bidict=0.23.1=pyhd8ed1ab_1
- bladerf=2024.05=h86ecc28_2
- blinker=1.9.0=pyhff2d567_0
- boltons=24.0.0=pyhd8ed1ab_1
- brotli-bin=1.1.0=h86ecc28_2
- brotli-python=1.1.0=py312h6f74592_2
- brotli=1.1.0=h86ecc28_2
- bzip2=1.0.8=h68df207_7
- c-ares=1.34.4=h86ecc28_0
- ca-certificates=2025.1.31=hcefe29a_0
- cached-property=1.5.2=hd8ed1ab_1
- cached_property=1.5.2=pyha770c72_1
- cairo=1.18.0=ha13f110_0
- certifi=2024.2.2=pyhd8ed1ab_0
- cffi=1.16.0=py310hce94938_0
- charset-normalizer=3.3.2=pyhd8ed1ab_0
- click-plugins=1.1.1=py_0
- click=8.1.7=unix_pyh707e725_0
- codec2=1.0.3=hf897c2e_0
- colorama=0.4.6=pyhd8ed1ab_0
- conda-libmamba-solver=24.1.0=pyhd8ed1ab_0
- conda-package-handling=2.2.0=pyh38be061_0
- conda-package-streaming=0.9.0=pyhd8ed1ab_0
- conda=24.5.0=py310h4c7bcd0_0
- cairo=1.18.4=h83712da_0
- certifi=2025.1.31=pyhd8ed1ab_0
- cffi=1.17.1=py312hac81daf_0
- charset-normalizer=3.4.1=pyhd8ed1ab_0
- click=8.1.8=pyh707e725_0
- codec2=1.2.0=h86ecc28_3
- colorama=0.4.6=pyhd8ed1ab_1
- conda-libmamba-solver=24.9.0=pyhd8ed1ab_0
- conda-package-handling=2.4.0=pyh7900ff3_2
- conda-package-streaming=0.11.0=pyhd8ed1ab_1
- conda=24.11.3=py312h996f985_0
- construct=2.10.70=pyhd8ed1ab_0
- contourpy=1.2.1=py310h586407a_0
- cryptography=42.0.7=py310hf601767_0
- cycler=0.12.1=pyhd8ed1ab_0
- contourpy=1.3.1=py312h451a7dd_0
- cryptography=44.0.2=py312he723553_0
- cycler=0.12.1=pyhd8ed1ab_1
- cyrus-sasl=2.1.27=hf6b2984_7
- dav1d=1.2.1=h31becfc_0
- dbus=1.13.6=h12b9eeb_3
- decorator=5.1.1=pyhd8ed1ab_0
- digital_rf=2.6.9=py310h7974c82_0
- distro=1.9.0=pyhd8ed1ab_0
- docutils=0.21.2=pyhd8ed1ab_0
- ephem=4.1.5=py310hb299538_1
- decorator=5.2.1=pyhd8ed1ab_0
- digital_rf=2.6.11=py312h91a0b02_0
- distro=1.9.0=pyhd8ed1ab_1
- docutils=0.21.2=pyhd8ed1ab_1
- double-conversion=3.3.1=h5ad3122_0
- elfutils=0.192=h63239f7_1
- ephem=4.2=py312hb2c0f52_0
- epoxy=1.5.10=h4e544f5_1
- exceptiongroup=1.2.0=pyhd8ed1ab_2
- executing=2.0.1=pyhd8ed1ab_0
- expat=2.6.2=h2f0025b_0
- ffmpeg=6.1.1=gpl_hf7900cc_112
- fftw=3.3.10=nompi_h2dcef8e_108
- flask-socketio=5.3.6=pyhd8ed1ab_0
- flask=3.0.3=pyhd8ed1ab_0
- fmt=10.2.1=h2a328a1_0
- exceptiongroup=1.2.2=pyhd8ed1ab_1
- executing=2.1.0=pyhd8ed1ab_1
- expat=2.6.4=h5ad3122_0
- ffmpeg=7.1.1=gpl_hbae2ecc_701
- fftw=3.3.10=nompi_h020dacd_110
- flask-socketio=5.5.1=pyh29332c3_0
- flask=3.1.0=pyhd8ed1ab_1
- fmt=11.0.2=h70be974_0
- font-ttf-dejavu-sans-mono=2.37=hab24e00_0
- font-ttf-inconsolata=3.000=h77eed37_0
- font-ttf-source-code-pro=2.038=h77eed37_0
- font-ttf-ubuntu=0.83=h77eed37_2
- fontconfig=2.14.2=ha9a116f_0
- font-ttf-ubuntu=0.83=h77eed37_3
- fontconfig=2.15.0=h8dda3cd_1
- fonts-conda-ecosystem=1=0
- fonts-conda-forge=1=0
- fonttools=4.52.4=py310hb52b2da_0
- freetype=2.12.1=hf0a5ef3_2
- fonttools=4.56.0=py312hcc812fe_0
- freetype=2.13.3=he93130f_0
- fribidi=1.0.10=hb9de7d4_0
- frozendict=2.4.4=py310hb52b2da_0
- frozendict=2.4.6=py312hb2c0f52_0
- fs=2.4.16=pyhd8ed1ab_0
- future=1.0.0=pyhd8ed1ab_0
- future=1.0.0=pyhd8ed1ab_2
- gdk-pixbuf=2.42.12=ha61d561_0
- gettext-tools=0.22.5=h2f0025b_2
- gettext=0.22.5=h2f0025b_2
- gettext-tools=0.23.1=h5ad3122_0
- gettext=0.23.1=h5ad3122_0
- gevent-websocket=0.10.1=py_0
- gevent=23.9.0.post1=py310h81c658f_1
- gflags=2.2.2=h54f1f3f_1004
- gevent=24.11.1=py312hc4bf99b_0
- gflags=2.2.2=h5ad3122_1005
- glew=2.1.0=h01db608_2
- glfw=3.4=h31becfc_0
- glib-tools=2.80.2=he16435f_0
- glib=2.80.2=h34bac0b_0
- glog=0.6.0=h8ab10f1_0
- gmp=6.3.0=h2f0025b_1
- gnss-sdr=0.0.18=hffc4b83_19
- gnuradio-adsb=0.0.0.20240508.dev+gafd7fabda=unix_pyha6c0e43_0
- gnuradio-core=3.10.10.0=py310h530e233_6
- gnuradio-dect2=0.0.0.20240502.dev+gb296af2a9=py310h686007d_0
- gnuradio-filerepeater=0.0.0.20240502.dev+gd7bb8846c=py310h87cbb57_0
- gnuradio-foo=0.0.0.20240502.dev+gc53538a22=py310h594d49a_0
- gnuradio-fosphor=0.0.0.20240502.dev+g656fe2f=py310h1b0f79d_0
- gnuradio-funcube=3.10.0.rc3=py310hf2a453b_4
- gnuradio-gpredict-doppler=0.0.0.20240508.dev+gb06bc7678=unix_pyha1ad6f9_0
- gnuradio-grc=3.10.10.0=py310ha026655_6
- gnuradio-hermeslite2=v1.0.0.0.post17+8b17ad3=py310h686007d_0
- gnuradio-hpsdr=0.0.0.20240507.dev+g958e157=py310h6112494_0
- gnuradio-ieee802_11=0.0.0.20240507.dev+g8c058d4e0=py310hd8f36ec_0
- gnuradio-ieee802_15_4=3.6.post133+g932c76f=py310hce0851f_0
- gnuradio-iio=3.10.10.0=py310h5bb69b7_6
- gnuradio-inspector=0.0.0.20240525.dev+g55acca6=py310hac10039_0
- gnuradio-iqbalance=0.38.2=py310h39521e3_3
- gnuradio-iridium=1!1.0.0=py310h3e84c94_11
- gnuradio-leo-data=1.0.0.post105+12a346f=unix_0
- gnuradio-leo=1.0.0.post105+12a346f=py310h9091615_0
- gnuradio-lora_sdr=0.0.0.20240508.dev+g751a65269=py310h9091615_0
- gnuradio-m2k=1.0.0=py310h2bd1195_9
- gnuradio-osmosdr=0.2.4=py310h6bdcd27_16
- gnuradio-paint=0.0.0.20240508.dev+g82696a2=py310h9091615_0
- gnuradio-pmt=3.10.10.0=py310h18daf14_6
- gnuradio-qtgui=3.10.10.0=py310hf8d4fc7_6
- gnuradio-radar=0.0.0.20240525.dev+gc59350d=py310h16cc4b3_0
- gnuradio-rds=3.10.post22+g2134008=py310h71a293b_0
- gnuradio-satellites=5.5.0=py310h25391a7_2
- gnuradio-soapy=3.10.10.0=py310h353ee3e_6
- gnuradio-uhd=3.10.10.0=py310hf149fb5_6
- gnuradio-video-sdl=3.10.10.0=py310h2681424_6
- gnuradio-zeromq=3.10.10.0=py310h5211672_6
- gnuradio=3.10.10.0=py310hc9b69e3_6
- gnutls=3.7.9=hb309da9_0
- gqrx=2.17.5=py310hdc13f21_4
- glib-tools=2.82.2=h78ca943_1
- glib=2.82.2=h09e00fb_1
- glog=0.7.1=h468a4a4_0
- gmp=6.3.0=h0a1ffab_2
- gnss-sdr=0.0.19=hc7309ab_8
- gnuradio-adsb=0.0.0.20250304.dev+g9645757=unix_py_1
- gnuradio-core=3.10.12.0=py312ha9ddad5_1
- gnuradio-dect2=0.0.0.20250304.dev+g27a3d6=np20py312heb6a550_1
- gnuradio-filerepeater=0.0.0.20250304.dev+gec6b386=np20py312hdabc401_2
- gnuradio-foo=0.0.0.20250304.dev+g9e0e2=np20py312hfed7f62_1
- gnuradio-fosphor=0.0.0.20250304.dev+g85a0b8f=np20py312hffff8d2_1
- gnuradio-funcube=3.10.0.rc3=py312h0e0e949_12
- gnuradio-gpredict-doppler=0.0.0.20250303.dev+g9473cbf=unix_py_1
- gnuradio-grc=3.10.12.0=py312h0d1bda0_1
- gnuradio-hermeslite2=1.0.0.0.post20250305+g2e66561=np20py312heb6a550_0
- gnuradio-hpsdr=0.0.0.20250304.dev+g7748cc9=np20py312heb6a550_1
- gnuradio-ieee802_11=0.0.0.20250304.dev+g761bdd9=np20py312h4434e41_2
- gnuradio-ieee802_15_4=3.6.post20250304+g61f4c4a=np20py312hd578418_1
- gnuradio-iio=3.10.12.0=py312he222db9_1
- gnuradio-inspector=0.0.0.20250303.dev+gad6a69e=np20py312h2d400b8_2
- gnuradio-iqbalance=0.38.2=py312he23ff6d_7
- gnuradio-iridium=1!1.0.0=py312h07368fe_16
- gnuradio-leo-data=1.0.0.post20250214+g8f62b92=unix_2
- gnuradio-leo=1.0.0.post20250214+g8f62b92=np20py312h9c9c44e_2
- gnuradio-lora_sdr=0.0.0.20250305.dev+ga8143cb=np20py312hd578418_0
- gnuradio-m2k=1.0.0=py312h2e1c864_13
- gnuradio-osmosdr=0.2.6=py312h9ad487b_7
- gnuradio-paint=0.0.0.20250303.dev+gfb4f7b6=np20py312hd578418_2
- gnuradio-pmt=3.10.12.0=py312h1efb967_1
- gnuradio-qtgui=3.10.12.0=py312hffe2cdf_1
- gnuradio-radar=0.0.0.20250220.dev+g92adce2=np20py312hcc19a4a_1
- gnuradio-rds=3.10.post20250305+gc1cba54=np20py312heb6a550_0
- gnuradio-satellites=5.7.0=py312he263c01_1
- gnuradio-soapy=3.10.12.0=py312h2092bfa_1
- gnuradio-uhd=3.10.12.0=py312h6a79ccd_1
- gnuradio-video-sdl=3.10.12.0=py312h8aaf11b_1
- gnuradio-zeromq=3.10.12.0=py312h5358668_1
- gnuradio=3.10.12.0=py312hbe36d5e_1
- gnutls=3.8.9=ha125074_0
- gqrx=2.17.6=py312h2d3ebc0_1
- graphite2=1.3.13=h2f0025b_1003
- greenlet=3.0.3=py310hbb3657e_0
- greenlet=3.1.1=py312h6f74592_1
- gsl=2.7=h294027d_0
- gst-plugins-base=1.24.4=h2510817_0
- gstreamer-orc=0.4.38=h31becfc_0
- gstreamer=1.24.4=h80858a8_0
- gtest=1.14.0=h2a328a1_1
- gtk3=3.24.42=h16d2767_0
- h11=0.14.0=pyhd8ed1ab_0
- h5py=3.11.0=nompi_py310h65cebb8_101
- hackrf=2024.02.1=he638756_0
- hamlib-all=4.5.5=linux_3
- hamlib-lua=4.5.5=lua54h31becfc_3
- hamlib-perl=4.5.5=pl5321h31becfc_3
- hamlib-python=4.5.5=py310h7c1f4a2_3
- hamlib-tcl=4.5.5=hdf905ee_3
- hamlib=4.5.5=hb42ac4b_3
- harfbuzz=8.5.0=h9812418_0
- hdf5=1.14.3=nompi_hd1676c9_102
- gst-plugins-base=1.24.7=h570c1df_0
- gstreamer-orc=0.4.41=hd9811ac_0
- gstreamer=1.24.7=h37d20eb_0
- gtest=1.15.2=h70be974_0
- gtk3=3.24.43=hd0cad38_4
- h11=0.14.0=pyhd8ed1ab_1
- h2=4.2.0=pyhd8ed1ab_0
- h5py=3.13.0=nompi_py312h9a738b8_100
- hackrf=2024.02.1=hdd0dd80_1
- hamlib-all=4.6.2=linux_2
- hamlib-lua=4.6.2=lua54h86ecc28_2
- hamlib-perl=4.6.2=pl5321h86ecc28_2
- hamlib-python=4.6.2=py312h52516f5_2
- hamlib-tcl=4.6.2=h397889b_2
- hamlib=4.6.2=hd3c86e4_2
- harfbuzz=10.4.0=hb5e3f52_0
- hdf5=1.14.3=nompi_h6ed7ac7_109
- hicolor-icon-theme=0.17=h8af1aa0_2
- icu=73.2=h787c7f5_0
- idna=3.7=pyhd8ed1ab_0
- importlib-metadata=7.1.0=pyha770c72_0
- importlib_resources=6.4.0=pyhd8ed1ab_0
- hpack=4.1.0=pyhd8ed1ab_0
- hyperframe=6.1.0=pyhd8ed1ab_0
- icu=75.1=hf9b3779_0
- idna=3.10=pyhd8ed1ab_1
- importlib-metadata=8.6.1=pyha770c72_0
- importlib_resources=6.5.2=pyhd8ed1ab_0
- inspectrum=0.3.1=ha6d2d91_0
- ipython=8.24.0=pyh707e725_0
- itsdangerous=2.2.0=pyhd8ed1ab_0
- ipython=9.0.2=pyhfb0248b_0
- ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0
- itsdangerous=2.2.0=pyhd8ed1ab_1
- jack=1.9.22=h5c6c0ed_2
- jedi=0.19.1=pyhd8ed1ab_0
- jinja2=3.1.4=pyhd8ed1ab_0
- jsonpatch=1.33=pyhd8ed1ab_0
- jsonpointer=2.4=py310h4c7bcd0_3
- jsonschema-specifications=2023.12.1=pyhd8ed1ab_0
- jsonschema=4.22.0=pyhd8ed1ab_0
- jedi=0.19.2=pyhd8ed1ab_1
- jinja2=3.1.6=pyhd8ed1ab_0
- jsonpatch=1.33=pyhd8ed1ab_1
- jsonpointer=3.0.0=py312h996f985_1
- jsonschema-specifications=2024.10.1=pyhd8ed1ab_1
- jsonschema=4.23.0=pyhd8ed1ab_1
- keyutils=1.6.1=h4e544f5_0
- kiwisolver=1.4.5=py310he290b8a_1
- krb5=1.21.2=hc419048_0
- kiwisolver=1.4.8=py312h17cf362_0
- krb5=1.21.3=h50a48e9_0
- lame=3.100=h4e544f5_1003
- lcms2=2.16=h922389a_0
- ld_impl_linux-aarch64=2.40=h9fc2d93_1
- lcms2=2.17=hc88f144_0
- ld_impl_linux-aarch64=2.43=h80caac9_4
- lerc=4.0.0=h4de3ea5_0
- libabseil=20240116.2=cxx17_h2f0025b_0
- libad9361-iio=0.2=h1756985_3
- libabseil=20240722.0=cxx17_h18dbdb1_4
- libad9361-iio-c=0.3=hc0d44b4_1
- libaec=1.1.3=h2f0025b_0
- libaio=0.3.113=h4e544f5_0
- libairspy=1.0.10=hf897c2e_0
- libairspyhf=1.6.8=hf897c2e_0
- libarchive=3.7.4=h2c0effa_0
- libasprintf-devel=0.22.5=h7b6a552_2
- libasprintf=0.22.5=h7b6a552_2
- libass=0.17.1=h36b5d3b_1
- libbladerf-python=2023.02=py_0
- libbladerf2=2023.02=hb4cce97_0
- libblas=3.9.0=22_linuxaarch64_openblas
- libboost=1.82.0=h133f18d_6
- libbrotlicommon=1.1.0=h31becfc_1
- libbrotlidec=1.1.0=h31becfc_1
- libbrotlienc=1.1.0=h31becfc_1
- libcap=2.69=h883460d_0
- libcblas=3.9.0=22_linuxaarch64_openblas
- libclang-cpp15=15.0.7=default_hb368394_5
- libclang13=18.1.6=default_hf9b4efe_0
- libcodec2=1.0.3=hf897c2e_0
- libairspy=1.0.10=h86ecc28_1
- libairspyhf=1.6.8=h86ecc28_1
- libarchive=3.7.7=h6223a6c_3
- libasprintf-devel=0.23.1=h5e0f5ae_0
- libasprintf=0.23.1=h5e0f5ae_0
- libass=0.17.3=hdba415e_1
- libbladerf-python=2024.05=py_2
- libbladerf2=2024.05=h86ecc28_2
- libblas=3.9.0=31_h1a9f1db_openblas
- libboost=1.86.0=h4d13611_3
- libbrotlicommon=1.1.0=h86ecc28_2
- libbrotlidec=1.1.0=h86ecc28_2
- libbrotlienc=1.1.0=h86ecc28_2
- libcap=2.75=h51d75a7_0
- libcblas=3.9.0=31_hab92f65_openblas
- libclang-cpp19.1=19.1.7=default_he324ac1_1
- libclang13=19.1.7=default_h4390ef5_1
- libcodec2=1.2.0=h86ecc28_3
- libcorrect=0.0.0=hb4cce97_0
- libcups=2.3.3=h405e4a8_4
- libcurl=8.8.0=h4e8248e_0
- libcurl=8.12.1=h6702fde_0
- libdb=6.2.32=h01db608_0
- libdeflate=1.20=h31becfc_0
- libedit=3.1.20191231=he28a2e2_2
- libdeflate=1.23=h5e3c512_0
- libdrm=2.4.124=h86ecc28_0
- libedit=3.1.20250104=pl5321h976ea20_0
- libegl=1.7.0=hd24410f_2
- libev=4.33=h31becfc_2
- libevent=2.1.12=h4ba1bb4_1
- libexpat=2.6.2=h2f0025b_0
- libffi=3.4.2=h3557bc0_5
- libexpat=2.6.4=h5ad3122_0
- libffi=3.4.6=he21f813_0
- libflac=1.4.3=h2f0025b_0
- libgcc-ng=13.2.0=he277a41_7
- libgcrypt=1.10.3=h31becfc_0
- libgettextpo-devel=0.22.5=h2f0025b_2
- libgettextpo=0.22.5=h2f0025b_2
- libgfortran-ng=13.2.0=he9431aa_7
- libgfortran5=13.2.0=h87d9d71_7
- libgirepository=1.80.1=h41f2648_0
- libglib=2.80.2=h34bac0b_0
- libglu=9.0.0=hf4b6fbe_1003
- libgomp=13.2.0=he277a41_7
- libgpg-error=1.49=hb13efb6_0
- libhackrf0=2024.02.1=h31becfc_0
- libhamlib4=4.5.5=h2f0025b_3
- libgcc-ng=14.2.0=he9431aa_2
- libgcc=14.2.0=he277a41_2
- libgcrypt-lib=1.11.0=h86ecc28_2
- libgettextpo-devel=0.23.1=h5ad3122_0
- libgettextpo=0.23.1=h5ad3122_0
- libgfortran-ng=14.2.0=he9431aa_2
- libgfortran5=14.2.0=hb6113d0_2
- libgfortran=14.2.0=he9431aa_2
- libgirepository=1.82.0=hdbe9fd5_0
- libgl=1.7.0=hd24410f_2
- libglib=2.82.2=hc486b8e_1
- libglu=9.0.3=hc7f7585_0
- libglvnd=1.7.0=hd24410f_2
- libglx=1.7.0=hd24410f_2
- libgomp=14.2.0=he277a41_2
- libgpg-error=1.51=h05609ea_1
- libhackrf0=2024.02.1=h86ecc28_1
- libhamlib4=4.6.2=h5ad3122_2
- libhidapi=0.14.0=h31becfc_0
- libhwloc=2.10.0=default_h3030c0e_1001
- libiconv=1.17=h31becfc_2
- libidn2=2.3.7=h31becfc_0
- libiio-c=0.25=he58e806_1
- libiio=0.25=h8af1aa0_1
- libhwloc=2.11.2=default_h2c612a5_1001
- libiconv=1.18=hc99b53d_1
- libidn2=2.3.8=h53e0a65_0
- libiio-c=0.26=hfc39cb9_1
- libiio=0.26=h72120ad_1
- libjpeg-turbo=3.0.0=h31becfc_1
- liblapack=3.9.0=22_linuxaarch64_openblas
- liblimesuite=23.11.0=h2f0025b_0
- libliquid1=1.6.0=he638756_1
- libllvm15=15.0.7=hb4f23b0_4
- libllvm18=18.1.6=h97c352a_0
- libm2k=0.8.0=py310ha4f7790_0
- libmamba=1.5.8=hea3be6c_0
- libmambapy=1.5.8=py310h5938bc3_0
- libmatio=1.5.26=hd3396f4_0
- libmirisdr4=2.0.0=h31becfc_0
- libnghttp2=1.58.0=hb0e430d_1
- liblapack=3.9.0=31_h411afd4_openblas
- liblimesuite=23.11.0=h5ad3122_1
- libliquid1=1.6.0=hdd0dd80_2
- libllvm19=19.1.7=h2edbd07_1
- liblzma=5.6.4=h86ecc28_0
- libm2k=0.9.0=py312h9e812b1_1
- libmamba=1.5.12=h4f7d7cb_0
- libmambapy=1.5.12=py312h3a133d2_0
- libmatio=1.5.28=h939d0d8_2
- libmicrohttpd=1.0.1=hbc975ca_1
- libmirisdr4=2.0.0=h86ecc28_1
- libnghttp2=1.64.0=hc8609a4_0
- libnsl=2.0.1=h31becfc_0
- libogg=1.3.4=h3557bc0_1
- libopenblas=0.3.27=pthreads_h5a5ec62_0
- libopenvino-arm-cpu-plugin=2024.1.0=h7018a71_7
- libopenvino-auto-batch-plugin=2024.1.0=hddb2bce_7
- libopenvino-auto-plugin=2024.1.0=hddb2bce_7
- libopenvino-hetero-plugin=2024.1.0=h8f8b3dd_7
- libopenvino-ir-frontend=2024.1.0=h8f8b3dd_7
- libopenvino-onnx-frontend=2024.1.0=h24cc6ce_7
- libopenvino-paddle-frontend=2024.1.0=h24cc6ce_7
- libopenvino-pytorch-frontend=2024.1.0=h0a1ffab_7
- libopenvino-tensorflow-frontend=2024.1.0=hea5328d_7
- libopenvino-tensorflow-lite-frontend=2024.1.0=h0a1ffab_7
- libopenvino=2024.1.0=h7018a71_7
- libntlm=1.4=hf897c2e_1002
- libogg=1.3.5=h0b9eccb_0
- libopenblas=0.3.29=pthreads_h9d3fd7e_0
- libopengl=1.7.0=hd24410f_2
- libopenvino-arm-cpu-plugin=2025.0.0=hd63d6c0_2
- libopenvino-auto-batch-plugin=2025.0.0=hf15766e_2
- libopenvino-auto-plugin=2025.0.0=hf15766e_2
- libopenvino-hetero-plugin=2025.0.0=ha8e9e04_2
- libopenvino-ir-frontend=2025.0.0=ha8e9e04_2
- libopenvino-onnx-frontend=2025.0.0=h2c07a0f_2
- libopenvino-paddle-frontend=2025.0.0=h2c07a0f_2
- libopenvino-pytorch-frontend=2025.0.0=h5ad3122_2
- libopenvino-tensorflow-frontend=2025.0.0=h8231d02_2
- libopenvino-tensorflow-lite-frontend=2025.0.0=h5ad3122_2
- libopenvino=2025.0.0=hd63d6c0_2
- libopus=1.3.1=hf897c2e_1
- libosmodsp0=0.4.0=he638756_1
- libosmodsp0=0.4.0=hdd0dd80_2
- libpcap=1.10.4=h31becfc_1
- libpng=1.6.43=h194ca79_0
- libpq=16.3=hcf0348d_0
- libprotobuf=4.25.3=h648ac29_0
- librsvg=2.58.0=h010368b_1
- libpciaccess=0.18=h31becfc_0
- libpng=1.6.47=hec79eb8_0
- libpq=17.4=hf590da8_0
- libprotobuf=5.28.3=h44a3b7b_1
- librsvg=2.58.4=h9b423fc_2
- librtaudio6=5.2.0=he7669aa_3
- libsndfile=1.2.2=h79657aa_1
- libsodium=1.0.18=hb9de7d4_1
- libsolv=0.7.29=h332ec48_0
- libsqlite=3.45.3=h194ca79_0
- libssh2=1.11.0=h492db2e_0
- libstdcxx-ng=13.2.0=h3f4de04_7
- libsystemd0=255=h91e93f8_1
- libtasn1=4.19.0=h4e544f5_0
- libthrift=0.20.0=h043aeee_0
- libtiff=4.6.0=hf980d43_3
- libudev1=255=h31becfc_1
- libsodium=1.0.20=h68df207_0
- libsolv=0.7.30=h62756fc_0
- libsqlite=3.49.1=h5eb1b54_1
- libssh2=1.11.1=ha41c0db_0
- libstdcxx-ng=14.2.0=hf1166c9_2
- libstdcxx=14.2.0=h3f4de04_2
- libsystemd0=257.4=h2bb824b_1
- libtasn1=4.20.0=h86ecc28_0
- libthrift=0.21.0=h154c74f_0
- libtiff=4.7.0=h88f7998_3
- libudev1=257.4=h7b9e449_1
- libunistring=0.9.10=hf897c2e_0
- libusb=1.0.27=hfa5f0b2_100
- libunwind=1.6.2=h01db608_0
- liburing=2.9=h17cf362_0
- libusb=1.0.27=h86ecc28_101
- libuuid=2.38.1=hb4cce97_0
- libuv=1.48.0=h31becfc_0
- libuv=1.50.0=h86ecc28_0
- libvorbis=1.3.7=h01db608_0
- libvpx=1.14.0=h2f0025b_0
- libwebp-base=1.4.0=h31becfc_0
- libxcb=1.15=h2a766a3_0
- libvpx=1.14.1=h0a1ffab_0
- libwebp-base=1.5.0=h0886dbf_0
- libxcb=1.17.0=h262b8f6_0
- libxcrypt=4.4.36=h31becfc_1
- libxkbcommon=1.7.0=h2555907_0
- libxml2=2.12.7=h49dc7a2_0
- libxkbcommon=1.8.1=h2ef6bd0_0
- libxml2=2.13.6=h2e0c361_0
- libxslt=1.1.39=h1cc9640_0
- libzlib=1.2.13=h68df207_6
- limesuite=23.11.0=hddbaef7_0
- libzlib=1.3.1=h86ecc28_2
- limesuite=23.11.0=h00f8104_1
- lua=5.4.6=h6e35974_1
- lxml=5.2.2=py310he8b16f2_0
- lz4-c=1.9.4=hd600fc2_0
- lxml=5.3.1=py312h1ce91a6_0
- lz4-c=1.10.0=h5ad3122_1
- lzo=2.10=h31becfc_1001
- m17-cxx-demod=2.3.3=h8f10d31_3
- mako=1.3.5=pyhd8ed1ab_0
- mamba=1.5.8=py310hcbdc16a_0
- m17-cxx-demod=2.3.3=hf62ac73_5
- mako=1.3.9=pyhd8ed1ab_0
- mamba=1.5.12=py312hd80a4d2_0
- markdown=3.6=pyhd8ed1ab_0
- markupsafe=2.1.5=py310h7c1f4a2_0
- matplotlib-base=3.8.4=py310h84f21c1_2
- matplotlib-inline=0.1.7=pyhd8ed1ab_0
- matplotlib=3.8.4=py310hbbe02a8_2
- menuinst=2.1.0=py310h4c7bcd0_0
- mirisdr=2.0.0=h31becfc_0
- mpg123=1.32.6=h2f0025b_0
- mplcursors=0.5.3=pyhd8ed1ab_0
- markupsafe=3.0.2=py312h74ce7d3_1
- matplotlib-base=3.10.1=py312h965bf68_0
- matplotlib-inline=0.1.7=pyhd8ed1ab_1
- matplotlib=3.10.1=py312h8025657_0
- menuinst=2.2.0=py312h996f985_0
- mesalib=25.0.1=h1d34c93_0
- mirisdr=2.0.0=h86ecc28_1
- mpg123=1.32.9=h65af167_0
- mplcursors=0.6=pyhd8ed1ab_1
- munkres=1.1.4=pyh9f0ad1d_0
- mysql-common=8.3.0=hb6794ad_4
- mysql-libs=8.3.0=hf629957_4
- ncurses=6.5=h0425590_0
- mysql-common=9.0.1=h3f5c77f_5
- mysql-libs=9.0.1=h11569fd_5
- ncurses=6.5=ha32ae93_3
- nettle=3.9.1=h9d1147b_0
- nspr=4.35=h4de3ea5_0
- nss=3.100=h8c4e863_0
- numexpr=2.8.4=py310h065e08e_1
- numpy=1.26.4=py310hcbab775_0
- nspr=4.36=h5ad3122_0
- nss=3.108=h7e26b49_0
- numexpr=2.10.2=py312h4c002e7_0
- numpy=2.2.3=py312hce01fe4_0
- ocl-icd-system=1.0.0=1
- ocl-icd=2.3.2=h31becfc_1
- openh264=2.4.1=h2f0025b_0
- openjpeg=2.5.2=h0d9d63b_0
- openssl=3.3.0=h68df207_3
- ocl-icd=2.3.2=h86ecc28_2
- opencl-headers=2024.10.24=h5ad3122_0
- openh264=2.6.0=h0564a2a_0
- openjpeg=2.5.3=h3f56577_0
- openldap=2.6.9=h30c48ee_0
- openssl=3.4.1=hd08dc88_0
- p11-kit=0.24.1=h9f2702f_0
- packaging=24.0=pyhd8ed1ab_0
- pandas=2.2.2=py310h34310a0_1
- pango=1.52.2=h11ef544_0
- paramiko=3.4.0=pyhd8ed1ab_0
- parso=0.8.4=pyhd8ed1ab_0
- pcre2=10.43=hd0f9c67_0
- packaging=24.2=pyhd8ed1ab_2
- pandas=2.2.3=py312ha2895bd_2
- pango=1.56.2=hd49db62_0
- paramiko=3.5.1=pyhd8ed1ab_0
- parso=0.8.4=pyhd8ed1ab_1
- pcre2=10.44=h070dd5b_2
- perl=5.32.1=7_h31becfc_perl5
- pexpect=4.9.0=pyhd8ed1ab_0
- pickleshare=0.7.5=py_1003
- pillow=10.3.0=py310he5cda9b_0
- pixman=0.43.4=h2f0025b_0
- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1
- platformdirs=4.2.2=pyhd8ed1ab_0
- pluggy=1.5.0=pyhd8ed1ab_0
- ply=3.11=pyhd8ed1ab_2
- portaudio=19.6.0=h5c6c0ed_9
- prompt-toolkit=3.0.42=pyha770c72_0
- pthread-stubs=0.4=hb9de7d4_1001
- ptyprocess=0.7.0=pyhd3deb0d_0
- pugixml=1.14=h2f0025b_0
- pexpect=4.9.0=pyhd8ed1ab_1
- pickleshare=0.7.5=pyhd8ed1ab_1004
- pillow=11.1.0=py312h719f0cf_0
- pip=25.0.1=pyh8b19718_0
- pixman=0.44.2=h86a87f0_0
- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_2
- platformdirs=4.3.6=pyhd8ed1ab_1
- pluggy=1.5.0=pyhd8ed1ab_1
- ply=3.11=pyhd8ed1ab_3
- portaudio=19.7.0=h9d01bbc_0
- prompt-toolkit=3.0.50=pyha770c72_0
- pthread-stubs=0.4=h86ecc28_1002
- ptyprocess=0.7.0=pyhd8ed1ab_1
- pugixml=1.15=h6ef32b0_0
- pulseaudio-client=17.0=h729494f_0
- pure_eval=0.2.2=pyhd8ed1ab_0
- pyadi-iio=0.0.16=pyhd8ed1ab_0
- pure_eval=0.2.3=pyhd8ed1ab_1
- pyadi-iio=0.0.19=pyhd8ed1ab_0
- pybind11-abi=4=hd8ed1ab_3
- pycairo=1.26.0=py310h6091f6e_0
- pycosat=0.6.6=py310hb299538_0
- pycparser=2.22=pyhd8ed1ab_0
- pyfda=0.8.4=pyh9208f05_0
- pycairo=1.27.0=py312hb14272e_0
- pycosat=0.6.6=py312hb2c0f52_2
- pycparser=2.22=pyh29332c3_1
- pyfda=0.9.2=pyh9208f05_1
- pyfiglet=0.8.post1=py_0
- pygments=2.18.0=pyhd8ed1ab_0
- pygobject=3.48.2=py310hf43e9ff_0
- pylibiio=0.25=py_1
- pynacl=1.5.0=py310hb299538_3
- pyopengl=3.1.6=pyhd8ed1ab_1
- pyparsing=3.1.2=pyhd8ed1ab_0
- pyqt5-sip=12.12.2=py310hbb3657e_5
- pyqt=5.15.9=py310h948ff9b_5
- pyqtgraph=0.13.7=pyhd8ed1ab_0
- pysocks=1.7.1=pyha2e5f31_6
- python-dateutil=2.9.0=pyhd8ed1ab_0
- python-engineio=4.9.1=pyhd8ed1ab_0
- python-socketio=5.11.2=pyhd8ed1ab_0
- python-tzdata=2024.1=pyhd8ed1ab_0
- python=3.10.14=hbbe8eec_0_cpython
- python_abi=3.10=4_cp310
- pygments=2.19.1=pyhd8ed1ab_0
- pygobject=3.50.0=py312h9bef549_1
- pylibiio=0.26=py_1
- pynacl=1.5.0=py312hb2c0f52_4
- pyopengl=3.1.7=pyhd8ed1ab_0
- pyparsing=3.2.1=pyhd8ed1ab_0
- pyqt5-sip=12.12.2=py312h2aa54b4_5
- pyqt=5.15.9=py312hd46c331_5
- pyqtgraph=0.13.7=pyhd8ed1ab_1
- pyside6=6.8.2=py312hdd999d0_1
- pysocks=1.7.1=pyha55dd90_7
- python-dateutil=2.9.0.post0=pyhff2d567_1
- python-engineio=4.11.2=pyhff2d567_0
- python-socketio=5.12.1=pyhd8ed1ab_0
- python-tzdata=2025.1=pyhd8ed1ab_0
- python=3.12.9=h1683364_1_cpython
- python_abi=3.12=5_cp312
- pytz=2024.1=pyhd8ed1ab_0
- pywin32-on-windows=0.1.0=pyh1179c8e_3
- pyyaml=6.0.1=py310hb299538_1
- pyzmq=26.0.3=py310he875deb_0
- qdarkstyle=3.2.3=pyhd8ed1ab_0
- qt-main=5.15.8=ha53cfd4_21
- qtpy=2.4.1=pyhd8ed1ab_0
- pyyaml=6.0.2=py312hcc812fe_2
- pyzmq=26.3.0=py312h2427ae1_0
- qdarkstyle=3.2.3=pyhd8ed1ab_1
- qhull=2020.2=h70be974_5
- qt-main=5.15.15=hcc483f7_2
- qt6-main=6.8.2=ha0a94ed_0
- qtpy=2.4.3=pyhd8ed1ab_0
- qwt=6.3.0=h473b47b_0
- readline=8.2=h8fc344f_1
- referencing=0.35.1=pyhd8ed1ab_0
- readline=8.2=h8382b9d_2
- referencing=0.36.2=pyh29332c3_0
- reproc-cpp=14.2.4.post0=h2f0025b_1
- reproc=14.2.4.post0=h31becfc_1
- requests=2.32.2=pyhd8ed1ab_0
- rpds-py=0.18.1=py310h59d1b7a_0
- rtl-sdr=2.0.1=h31becfc_0
- ruamel.yaml.clib=0.2.8=py310hb299538_0
- ruamel.yaml=0.18.6=py310hb299538_0
- scipy=1.13.1=py310h70fbbe5_0
- sdl2=2.30.2=hd75414b_0
- sdl=1.2.68=h32cd00b_0
- setuptools=70.0.0=pyhd8ed1ab_0
- simple-websocket=1.0.0=pyhd8ed1ab_1
- sip=6.8.3=py310h0d1d2ea_0
- six=1.16.0=pyh6c4a22f_0
- snappy=1.2.0=h8d0c38d_1
- requests=2.32.3=pyhd8ed1ab_1
- rpds-py=0.23.1=py312he7a34ca_0
- rtl-sdr=2.0.2=h86ecc28_3
- ruamel.yaml.clib=0.2.8=py312hb2c0f52_1
- ruamel.yaml=0.18.10=py312hb2c0f52_0
- scipy=1.15.2=py312hb5459e8_0
- sdl2=2.32.50=h7851d19_1
- sdl3=3.2.8=h9cc03ad_0
- sdl=1.2.68=h7851d19_1
- setuptools=75.8.2=pyhff2d567_0
- simple-websocket=1.1.0=pyhd8ed1ab_0
- sip=6.8.6=py312h3178705_1
- six=1.17.0=pyhd8ed1ab_0
- snappy=1.2.1=hd4fb6f5_1
- soapysdr-module-airspy=0.2.0=he88f3d8_0
- soapysdr-module-airspyhf=0.2.0=he88f3d8_0
- soapysdr-module-audio=0.1.1=hd53839e_1
- soapysdr-module-audio=0.1.1=h4356ce9_2
- soapysdr-module-bladerf=0.4.1=hbad66d3_0
- soapysdr-module-fcdpp=0.1.1=h63b6e07_0
- soapysdr-module-hackrf=0.3.4=he88f3d8_0
- soapysdr-module-lms7=23.11.0=hcd46cec_0
- soapysdr-module-lms7=23.11.0=hd9ae2f7_1
- soapysdr-module-netsdr=0.2.0=hc0426f7_1
- soapysdr-module-plutosdr=0.2.2=h901e66a_0
- soapysdr-module-plutosdr=0.2.2=h0dffcbf_1
- soapysdr-module-redpitaya=0.1.1=hc0426f7_0
- soapysdr-module-remote=0.5.2=he88f3d8_2
- soapysdr-module-rtlsdr=0.3.3=hd53839e_2
- soapysdr-module-uhd=0.4.1=h76252b4_10
- soapysdr-module-volk-converters=0.1.1=h107b08d_2
- soapysdr=0.8.1=py310h586407a_4
- spdlog=1.12.0=h6b8df57_2
- stack_data=0.6.2=pyhd8ed1ab_0
- soapysdr-module-uhd=0.4.1=h008a518_14
- soapysdr-module-volk-converters=0.1.1=hc992928_3
- soapysdr=0.8.1=py312h451a7dd_5
- spdlog=1.15.1=hc4929b9_0
- stack_data=0.6.3=pyhd8ed1ab_1
- superlu=5.2.2=h4b58547_0
- svt-av1=2.1.0=h0a1ffab_0
- tbb=2021.12.0=h70be974_1
- svt-av1=3.0.1=h5ad3122_0
- tbb=2022.0.0=h243be18_0
- tk=8.6.13=h194ca79_0
- toml=0.10.2=pyhd8ed1ab_0
- tomli=2.0.1=pyhd8ed1ab_0
- tornado=6.4=py310h7c1f4a2_0
- tqdm=4.66.4=pyhd8ed1ab_0
- traitlets=5.14.3=pyhd8ed1ab_0
- truststore=0.8.0=pyhd8ed1ab_0
- typing_extensions=4.11.0=pyha770c72_0
- tzdata=2024a=h0c530f3_0
- uhd=4.6.0.0=py310hc7d4c31_0
- unicodedata2=15.1.0=py310hb299538_0
- urllib3=2.2.1=pyhd8ed1ab_0
- volk-gnss-sdr=0.0.18=h0a1ffab_19
- volk=3.1.2=h2f0025b_0
- watchdog=4.0.1=py310hbbe02a8_0
- wayland=1.22.0=hce5310f_1
- wcwidth=0.2.13=pyhd8ed1ab_0
- websocket-client=1.8.0=pyhd8ed1ab_0
- werkzeug=3.0.3=pyhd8ed1ab_0
- wsproto=1.2.0=pyhd8ed1ab_0
- wxwidgets=3.2.5=h1889321_0
- toml=0.10.2=pyhd8ed1ab_1
- tomli=2.2.1=pyhd8ed1ab_1
- tornado=6.4.2=py312h52516f5_0
- tqdm=4.67.1=pyhd8ed1ab_1
- traitlets=5.14.3=pyhd8ed1ab_1
- truststore=0.10.1=pyh29332c3_0
- typing_extensions=4.12.2=pyha770c72_1
- tzdata=2025a=h78e105d_0
- uhd=4.8.0.0=py312h0ef7e8d_0
- unicodedata2=16.0.0=py312hb2c0f52_0
- urllib3=2.3.0=pyhd8ed1ab_0
- volk-gnss-sdr=0.0.19=ha105d01_8
- volk=3.2.0=hf20420f_0
- watchdog=6.0.0=py312h8025657_0
- wayland=1.23.1=h698ed42_0
- wcwidth=0.2.13=pyhd8ed1ab_1
- websocket-client=1.8.0=pyhd8ed1ab_1
- werkzeug=3.1.3=pyhd8ed1ab_1
- wheel=0.45.1=pyhd8ed1ab_1
- wsproto=1.2.0=pyhd8ed1ab_1
- wxwidgets=3.2.6=ha63e5ef_3
- x264=1!164.3095=h4e544f5_2
- x265=3.5=hdd96247_3
- xcb-util-image=0.4.0=hcb25cf1_1
- xcb-util-keysyms=0.4.0=hcb25cf1_1
- xcb-util-renderutil=0.3.9=h31becfc_1
- xcb-util-wm=0.4.1=hcb25cf1_1
- xcb-util=0.4.0=h31becfc_1
- xkeyboard-config=2.41=h31becfc_0
- xorg-compositeproto=0.4.2=hf897c2e_1001
- xorg-damageproto=1.2.1=hf897c2e_1002
- xorg-fixesproto=5.0=h3557bc0_1002
- xorg-inputproto=2.3.2=h3557bc0_1002
- xorg-kbproto=1.0.7=h3557bc0_1002
- xorg-libice=1.1.1=h7935292_0
- xorg-libsm=1.2.4=h5a01bc2_0
- xorg-libx11=1.8.9=h055a233_0
- xorg-libxau=1.0.11=h31becfc_0
- xorg-libxcomposite=0.4.6=hb4cce97_1
- xorg-libxcursor=1.2.0=hb4cce97_1
- xorg-libxdamage=1.1.5=hf897c2e_1
- xorg-libxdmcp=1.1.3=h3557bc0_0
- xorg-libxext=1.3.4=h2a766a3_2
- xorg-libxfixes=5.0.3=h3557bc0_1004
- xorg-libxi=1.7.10=h3557bc0_0
- xorg-libxinerama=1.1.5=h4de3ea5_0
- xorg-libxrandr=1.5.2=hf897c2e_1
- xorg-libxrender=0.9.11=h7935292_0
- xorg-libxtst=1.2.3=hf897c2e_1002
- xorg-randrproto=1.5.0=hf897c2e_1001
- xorg-recordproto=1.14.2=hf897c2e_1002
- xorg-renderproto=0.11.1=h3557bc0_1002
- xorg-util-macros=1.19.3=hf897c2e_0
- xorg-xextproto=7.3.0=h2a766a3_1003
- xorg-xf86vidmodeproto=2.3.1=hf897c2e_1002
- xorg-xproto=7.0.31=h3557bc0_1007
- xz=5.2.6=h9cdd2b7_0
- xcb-util-cursor=0.1.5=h86ecc28_0
- xcb-util-image=0.4.0=h5c728e9_2
- xcb-util-keysyms=0.4.1=h5c728e9_0
- xcb-util-renderutil=0.3.10=h5c728e9_0
- xcb-util-wm=0.4.2=h5c728e9_0
- xcb-util=0.4.1=h5c728e9_2
- xkeyboard-config=2.43=h86ecc28_0
- xorg-libice=1.1.2=h86ecc28_0
- xorg-libsm=1.2.6=h0808dbd_0
- xorg-libx11=1.8.12=hca56bd8_0
- xorg-libxau=1.0.12=h86ecc28_0
- xorg-libxcomposite=0.4.6=h86ecc28_2
- xorg-libxcursor=1.2.3=h86ecc28_0
- xorg-libxdamage=1.1.6=h86ecc28_0
- xorg-libxdmcp=1.1.5=h57736b2_0
- xorg-libxext=1.3.6=h57736b2_0
- xorg-libxfixes=6.0.1=h57736b2_0
- xorg-libxi=1.8.2=h57736b2_0
- xorg-libxinerama=1.1.5=h5ad3122_1
- xorg-libxrandr=1.5.4=h86ecc28_0
- xorg-libxrender=0.9.12=h86ecc28_0
- xorg-libxshmfence=1.3.3=h86ecc28_0
- xorg-libxtst=1.2.5=h57736b2_3
- xorg-libxxf86vm=1.1.6=h86ecc28_0
- yaml-cpp=0.8.0=h2f0025b_0
- yaml=0.2.5=hf897c2e_2
- zeromq=4.3.5=h28faeed_4
- zipp=3.17.0=pyhd8ed1ab_0
- zlib=1.2.13=h68df207_6
- zope.event=5.0=pyhd8ed1ab_0
- zope.interface=6.4.post2=py310h03727f4_0
- zstandard=0.19.0=py310h761cc84_0
- zstd=1.5.6=h02f22dd_0
- zeromq=4.3.5=h5efb499_7
- zipp=3.21.0=pyhd8ed1ab_1
- zlib=1.3.1=h86ecc28_2
- zope.event=5.0=pyhd8ed1ab_1
- zope.interface=7.2=py312h52516f5_0
- zstandard=0.23.0=py312hb2c0f52_1
- zstd=1.5.7=hbcf94c1_1
user_requested_specs:
- airspy
- airspyhf
- alsa-plugins
- bladerf
- codec2
- conda
- digital_rf
- ephem
- gnss-sdr
@ -490,6 +511,7 @@ user_requested_specs:
- gnuradio-filerepeater
- gnuradio-foo
- gnuradio-fosphor
- gnuradio-funcube
- gnuradio-gpredict-doppler
- gnuradio-hermeslite2
- gnuradio-hpsdr
@ -530,6 +552,7 @@ user_requested_specs:
- soapysdr-module-airspyhf
- soapysdr-module-audio
- soapysdr-module-bladerf
- soapysdr-module-fcdpp
- soapysdr-module-hackrf
- soapysdr-module-lms7
- soapysdr-module-netsdr
@ -540,5 +563,5 @@ user_requested_specs:
- soapysdr-module-uhd
- soapysdr-module-volk-converters
- uhd
version: 2024.05.29
version: 2025.03.14
write_condarc: true

View File

@ -1,427 +1,445 @@
# Generated by conda-lock.
# platform: linux-ppc64le
# input_hash: 11639eefe1425d82f80a05c33a3590d2c7bcb672a06e2990415c9effb157cfde
# input_hash: 08c9076a4c984d3ad430e82b1fd549ad4bf244bf6144eb715d51bf8636883f33
@EXPLICIT
https://conda.anaconda.org/conda-forge/linux-ppc64le/_libgcc_mutex-0.1-conda_forge.tar.bz2#e96f48755dc7c9f86c4aecf4cac40477
https://conda.anaconda.org/conda-forge/linux-ppc64le/ca-certificates-2024.2.2-h0f6029e_0.conda#09ab804f6b75c4e4cfe8a3457d3ec403
https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45
https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6
https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb
https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda#cbbe59391138ea5ad3658c76912e147f
https://conda.anaconda.org/conda-forge/linux-ppc64le/hicolor-icon-theme-0.17-ha3edaa6_2.tar.bz2#6f63da0f46039051fb075cd974721b99
https://conda.anaconda.org/conda-forge/linux-ppc64le/ld_impl_linux-ppc64le-2.40-h60d6e0b_1.conda#baeb4b11b428525c6716527698c827e1
https://conda.anaconda.org/conda-forge/linux-ppc64le/libstdcxx-ng-13.2.0-h262982c_7.conda#0f26494fde491d882d04a86d8ef7a68e
https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2#878f923dd6acc8aeb47a75da6c4098be
https://conda.anaconda.org/conda-forge/linux-ppc64le/python_abi-3.10-4_cp310.conda#0b99970860e735283fb47e29ef061b52
https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-leo-data-1.0.0.post105+12a346f-unix_0.tar.bz2#07a7b1d08dcc3bdb0939dfb23a648b02
https://conda.anaconda.org/conda-forge/linux-ppc64le/libgomp-13.2.0-h31e42bb_7.conda#fba44e651b9d3ccead45a51e6632f99c
https://conda.anaconda.org/conda-forge/linux-ppc64le/_openmp_mutex-4.5-2_gnu.tar.bz2#3e41cbaba7e4988d15a24c4e85e6171b
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab
https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcc-ng-13.2.0-h31e42bb_7.conda#f9bff30461eb3f404bb9dab134185dc0
https://conda.anaconda.org/conda-forge/linux-ppc64le/alsa-lib-1.2.11-ha17a0cc_1.conda#7366337733a1b47598e2fd9b4b1822d6
https://conda.anaconda.org/conda-forge/linux-ppc64le/aom-3.9.0-hd444e8b_0.conda#dc9e8c36f4de53869f96b5036b578708
https://conda.anaconda.org/conda-forge/linux-ppc64le/attr-2.5.1-hb283c62_1.tar.bz2#4c22a1fb59cbfb53942e21d23e75d5e0
https://conda.anaconda.org/conda-forge/linux-ppc64le/bzip2-1.0.8-ha17a0cc_5.conda#b6ce8e5a954c42c14257109a94137e11
https://conda.anaconda.org/conda-forge/linux-ppc64le/c-ares-1.28.1-ha17a0cc_0.conda#a3285854bc1e8825aa0a82fe3db9ccef
https://conda.anaconda.org/conda-forge/linux-ppc64le/dav1d-1.2.1-ha17a0cc_0.conda#04fb9e25ae2044fa71a402cc12dd52c3
https://conda.anaconda.org/conda-forge/linux-ppc64le/epoxy-1.5.10-hb283c62_1.tar.bz2#6f83f54119fb19d3bd823a5c6c14ca8f
https://conda.anaconda.org/conda-forge/linux-ppc64le/fmt-10.2.1-h9bb5675_0.conda#fdc2fbed9c96d1623be4cf7101f04535
https://conda.anaconda.org/conda-forge/linux-ppc64le/fribidi-1.0.10-h339bb43_0.tar.bz2#c433e297d49dfb19bad82213fd1e5a7c
https://conda.anaconda.org/conda-forge/linux-ppc64le/gettext-tools-0.22.5-h46f38da_2.conda#485b56ab647f239b6625988647b883c3
https://conda.anaconda.org/conda-forge/linux-ppc64le/gflags-2.2.2-hea85c5d_1004.tar.bz2#496a906fdfac4af06b6c40483b693f2a
https://conda.anaconda.org/conda-forge/linux-ppc64le/gmp-6.3.0-h46f38da_0.conda#6fcfb0710d5a4b8db7706e25aad29176
https://conda.anaconda.org/conda-forge/linux-ppc64le/graphite2-1.3.13-h46f38da_1003.conda#336084b3abc0ee85d228def90cab8b52
https://conda.anaconda.org/conda-forge/linux-ppc64le/gstreamer-orc-0.4.38-ha17a0cc_0.conda#d037c80c7a69aaa5c304b241b8282e69
https://conda.anaconda.org/conda-forge/linux-ppc64le/gtest-1.14.0-h9bb5675_1.conda#284dbbd90dbb8735104c2c78642cb9f4
https://conda.anaconda.org/conda-forge/linux-ppc64le/icu-73.2-h3b4ca64_0.conda#c441cf2613636db7bcd44074e860099c
https://conda.anaconda.org/conda-forge/linux-ppc64le/keyutils-1.6.1-hb283c62_0.tar.bz2#0263f7bf0fbaaf432ded27e3068a0cba
https://conda.anaconda.org/conda-forge/linux-ppc64le/lame-3.100-hb283c62_1003.tar.bz2#e317f98957deacea42a582aa82b61c93
https://conda.anaconda.org/conda-forge/linux-ppc64le/lerc-4.0.0-hbbae597_0.tar.bz2#fc65ed3c14d2236d5917f11eaf2b949f
https://conda.anaconda.org/conda-forge/linux-ppc64le/libabseil-20240116.2-cxx17_h46f38da_0.conda#537ab6b1fadc3f0de607828f86243cff
https://conda.anaconda.org/conda-forge/linux-ppc64le/libaec-1.1.3-h46f38da_0.conda#fe40b3465643863d0222c4cf861e8a97
https://conda.anaconda.org/conda-forge/linux-ppc64le/libaio-0.3.113-hb283c62_0.tar.bz2#613e0d2c69eeda793fc485463810638b
https://conda.anaconda.org/conda-forge/linux-ppc64le/libasprintf-0.22.5-h60d0bc5_2.conda#504ca7d534cfdcee0585ac25c9a92032
https://conda.anaconda.org/conda-forge/linux-ppc64le/libbrotlicommon-1.1.0-ha17a0cc_1.conda#3dbbce756b086808ed75762b4bd4de89
https://conda.anaconda.org/conda-forge/linux-ppc64le/libcodec2-1.0.3-h4e0d66e_0.tar.bz2#f47faac32ad3349fa5a928ecdb4eb900
https://conda.anaconda.org/conda-forge/linux-ppc64le/libcorrect-0.0.0-h4194056_0.conda#383315b900e610358f550b417ba49c69
https://conda.anaconda.org/conda-forge/linux-ppc64le/libdb-6.2.32-h3b9df90_0.tar.bz2#058aa993994ca97ce133aff8490f7a82
https://conda.anaconda.org/conda-forge/linux-ppc64le/libdeflate-1.20-ha17a0cc_0.conda#7ce687af33da17f57a983eec2195a1ac
https://conda.anaconda.org/conda-forge/linux-ppc64le/libev-4.33-ha17a0cc_2.conda#68e44432ab45e0787868e0d8d0ffaa97
https://conda.anaconda.org/conda-forge/linux-ppc64le/libexpat-2.6.2-h46f38da_0.conda#8644ce47520ef8ed0b2e6a29a05bca64
https://conda.anaconda.org/conda-forge/linux-ppc64le/libffi-3.4.2-h4e0d66e_5.tar.bz2#79c37a0a50ef77fea4ee5f6d257b8b3c
https://conda.anaconda.org/conda-forge/linux-ppc64le/libgettextpo-0.22.5-h46f38da_2.conda#0a903c5a0ac005913e90638aedf2bd20
https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran5-13.2.0-he7a7393_7.conda#05bb497fcc8ddabfdbbd64a8325af547
https://conda.anaconda.org/conda-forge/linux-ppc64le/libiconv-1.17-ha17a0cc_2.conda#57fa947d903914bc16c5e96f28b885ba
https://conda.anaconda.org/conda-forge/linux-ppc64le/libjpeg-turbo-3.0.0-ha17a0cc_1.conda#e434b58f2e90ee386cb277fd4c2779fe
https://conda.anaconda.org/conda-forge/linux-ppc64le/libnsl-2.0.1-ha17a0cc_0.conda#fff1c88a9eb0409f33ff9eba62c2d211
https://conda.anaconda.org/conda-forge/linux-ppc64le/libogg-1.3.4-h4e0d66e_1.tar.bz2#3395bcd3e39ab867cdac806941922c90
https://conda.anaconda.org/conda-forge/linux-ppc64le/libopus-1.3.1-h4e0d66e_1.tar.bz2#5db5e18157bafd275f2a84799f064dd2
https://conda.anaconda.org/conda-forge/linux-ppc64le/libpcap-1.10.4-ha17a0cc_1.conda#820758d5f979700396ff0c7ca313a630
https://conda.anaconda.org/conda-forge/linux-ppc64le/libsodium-1.0.18-h6eb9509_1.tar.bz2#edbaff4802f809aaad93da7f57c96b32
https://conda.anaconda.org/conda-forge/linux-ppc64le/libtasn1-4.19.0-hb283c62_0.tar.bz2#13ee1b2eaf57f25f86e3ae14d065ec8f
https://conda.anaconda.org/conda-forge/linux-ppc64le/libunistring-0.9.10-h4e0d66e_0.tar.bz2#ac9d49b389f0dc17a89f90a1126c34dd
https://conda.anaconda.org/conda-forge/linux-ppc64le/libuuid-2.38.1-h4194056_0.conda#fed50db9b0ea36487e89a6935ca87a94
https://conda.anaconda.org/conda-forge/linux-ppc64le/libuv-1.48.0-ha17a0cc_0.conda#c76412a1430b4043fcb2753fc56f4dc7
https://conda.anaconda.org/conda-forge/linux-ppc64le/libvpx-1.14.0-h46f38da_0.conda#33e91bf17ae95caa09426da10db4f848
https://conda.anaconda.org/conda-forge/linux-ppc64le/libwebp-base-1.4.0-ha17a0cc_0.conda#c2f872434bbd249b63301f0ee578dfe9
https://conda.anaconda.org/conda-forge/linux-ppc64le/libxcrypt-4.4.36-ha17a0cc_1.conda#b8d12a4079c614d8852c6a310fa61a80
https://conda.anaconda.org/conda-forge/linux-ppc64le/libzlib-1.2.13-h1f2b957_6.conda#b2486fa5357357fbeda7728a501f6f18
https://conda.anaconda.org/conda-forge/linux-ppc64le/lz4-c-1.9.4-h883269e_0.conda#26f7632050b79aacdb4fe3435a6b270a
https://conda.anaconda.org/conda-forge/linux-ppc64le/mpg123-1.32.4-h46f38da_0.conda#e357941363240e2645f54ef87137b58e
https://conda.anaconda.org/conda-forge/linux-ppc64le/ncurses-6.5-h8800142_0.conda#7a3fd3f0442e25620da9bb2b50ff9e35
https://conda.anaconda.org/conda-forge/linux-ppc64le/nettle-3.9.1-h6c99a15_0.conda#3aa9b2143f850db1d268fc92586e274c
https://conda.anaconda.org/conda-forge/linux-ppc64le/nspr-4.35-hbbae597_0.conda#5b7bb0c170079158671a045f16ffe61c
https://conda.anaconda.org/conda-forge/linux-ppc64le/ocl-icd-2.3.2-ha17a0cc_1.conda#f7902dcb17db8d9c6f245c9601957ccc
https://conda.anaconda.org/conda-forge/linux-ppc64le/openh264-2.4.1-h46f38da_0.conda#1003e69b9c9a4aaca0cf13753520d633
https://conda.anaconda.org/conda-forge/linux-ppc64le/openssl-3.3.0-h1f2b957_3.conda#d46027e0da52cecf559c594195faf053
https://conda.anaconda.org/conda-forge/linux-ppc64le/pixman-0.43.4-h46f38da_0.conda#b80165e693c18ff8366c0218db6f83d4
https://conda.anaconda.org/conda-forge/linux-ppc64le/pthread-stubs-0.4-h339bb43_1001.tar.bz2#3c08a226d34a1ac3472fdfec4bd9217f
https://conda.anaconda.org/conda-forge/linux-ppc64le/pugixml-1.14-h46f38da_0.conda#896a5d499654a5d6caf4c37f080f5797
https://conda.anaconda.org/conda-forge/linux-ppc64le/svt-av1-2.1.0-h4d352a9_0.conda#2864dfa5745fc4a2f6eb3774aa854a7c
https://conda.anaconda.org/conda-forge/linux-ppc64le/x264-1!164.3095-hb283c62_2.tar.bz2#6f2364dc5380ba3ba55c46958033f901
https://conda.anaconda.org/conda-forge/linux-ppc64le/x265-3.5-h06f31f1_3.tar.bz2#cba89511304b06ef35805c704ad54779
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-compositeproto-0.4.2-h4e0d66e_1001.tar.bz2#730fb620e7ae8a1a9dc5fba23753abb9
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-damageproto-1.2.1-h4e0d66e_1002.tar.bz2#3c309d1136b81edded107e9464696bf7
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-inputproto-2.3.2-h4e0d66e_1002.tar.bz2#815f49b1f1aafbdbae8f376a7e91e0a3
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-kbproto-1.0.7-h4e0d66e_1002.tar.bz2#763cc1a5591492bdaf373960a0b3e4aa
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libice-1.1.1-ha17a0cc_0.conda#398e61da71794f9f24b427f0dfb39708
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxau-1.0.11-ha17a0cc_0.conda#61f581c1daa75f1a6f9cd3ebc07530e5
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxdmcp-1.1.3-h4e0d66e_0.tar.bz2#95ac359ec2aea12a08fcbeb86bb48df6
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-randrproto-1.5.0-h4e0d66e_1001.tar.bz2#7282ace1544f1196fcec6a9016543f09
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-recordproto-1.14.2-h4e0d66e_1002.tar.bz2#ce3caa12c4b325755f209e5108064c5b
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-renderproto-0.11.1-h4e0d66e_1002.tar.bz2#58c03125dae86100f269a798314e0514
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-util-macros-1.19.3-h4e0d66e_0.tar.bz2#c89938e180fe7d02e050ecaa174b65e3
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-xextproto-7.3.0-h4194056_1003.conda#b5f85952b0899d34d91bf28c49faa732
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-xf86vidmodeproto-2.3.1-h4e0d66e_1002.tar.bz2#2d8b67a5277bee4122ff294c37aa0a50
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-xproto-7.0.31-h4e0d66e_1007.tar.bz2#b815ee50146089092600541c13d923b3
https://conda.anaconda.org/conda-forge/linux-ppc64le/xz-5.2.6-hb283c62_0.tar.bz2#a411645e44054e333573ee5280fdb89b
https://conda.anaconda.org/conda-forge/linux-ppc64le/yaml-0.2.5-h4e0d66e_2.tar.bz2#e480df649632a5f96b7a24dfc213fd3d
https://conda.anaconda.org/conda-forge/linux-ppc64le/codec2-1.0.3-h4e0d66e_0.tar.bz2#48aebbd1d21471fdf198e201591e015e
https://conda.anaconda.org/conda-forge/linux-ppc64le/expat-2.6.2-h46f38da_0.conda#ea68affa1f7b511f08407c438dc4405b
https://conda.anaconda.org/conda-forge/linux-ppc64le/glog-0.6.0-hbe088e0_0.tar.bz2#741070d273924a26ce96fedc67d8ca98
https://conda.anaconda.org/conda-forge/linux-ppc64le/jack-1.9.22-hde2c0c8_2.conda#6a22a1108bce1dc43e16dacc564a6c9d
https://conda.anaconda.org/conda-forge/linux-ppc64le/libasprintf-devel-0.22.5-h60d0bc5_2.conda#f76ddf44c5a7ccca802bb40392a87561
https://conda.anaconda.org/conda-forge/linux-ppc64le/libbrotlidec-1.1.0-ha17a0cc_1.conda#5187eefafbfdd3fd3b8a01b87dd0ebbb
https://conda.anaconda.org/conda-forge/linux-ppc64le/libbrotlienc-1.1.0-ha17a0cc_1.conda#7ba72315eb12498bc4345be76bed40bc
https://conda.anaconda.org/conda-forge/linux-ppc64le/libcap-2.69-h0177c75_0.conda#5bd17d7f5a057ecf961defc24113680d
https://conda.anaconda.org/conda-forge/linux-ppc64le/libedit-3.1.20191231-h41a240f_2.tar.bz2#5d316fcbed301564d0793e5833f67a68
https://conda.anaconda.org/conda-forge/linux-ppc64le/libevent-2.1.12-h3507d20_1.conda#1c71f37dde91397b0c0250959a497f76
https://conda.anaconda.org/conda-forge/linux-ppc64le/libgettextpo-devel-0.22.5-h46f38da_2.conda#6923d745e3a859438566c6740d65864d
https://conda.anaconda.org/conda-forge/linux-ppc64le/libgfortran-ng-13.2.0-hfdc3801_7.conda#868018a1f3ef6f6519d34fe8a7977c76
https://conda.anaconda.org/conda-forge/linux-ppc64le/libnghttp2-1.58.0-hc4d0b0b_1.conda#a9e37c1190ebbf18e6840063d8959b36
https://conda.anaconda.org/conda-forge/linux-ppc64le/libpng-1.6.43-hd4bbf49_0.conda#93df59474421fb4dd58315fb3397c992
https://conda.anaconda.org/conda-forge/linux-ppc64le/libprotobuf-4.25.3-hffb1566_0.conda#032ab43416032ee2cbeed28b1c6aac09
https://conda.anaconda.org/conda-forge/linux-ppc64le/libsqlite-3.45.3-hd4bbf49_0.conda#a41fec273201131f47771460ce31760d
https://conda.anaconda.org/conda-forge/linux-ppc64le/libssh2-1.11.0-hb363fe5_0.conda#6d9b5c5e252f50ef5cbe208dc426f4b4
https://conda.anaconda.org/conda-forge/linux-ppc64le/libvorbis-1.3.7-h3b9df90_0.tar.bz2#61a1186a45757359238185b82e9920f2
https://conda.anaconda.org/conda-forge/linux-ppc64le/libxcb-1.15-h4194056_0.conda#554d87065ddc476d4b2b0c14d83d4a26
https://conda.anaconda.org/conda-forge/linux-ppc64le/libxml2-2.12.7-hb83a110_0.conda#0ba179b65e46e96647b1d760f1b0684b
https://conda.anaconda.org/conda-forge/linux-ppc64le/mysql-common-8.3.0-h6e22b09_4.conda#54f57a9acd74efb61a6a9bdd2da0ed6c
https://conda.anaconda.org/conda-forge/linux-ppc64le/ocl-icd-system-1.0.0-1.tar.bz2#3a6843e0b4c1cd7811115755cc8e29da
https://conda.anaconda.org/conda-forge/linux-ppc64le/p11-kit-0.24.1-h7ef140f_0.tar.bz2#e50dee97b6e3258ccc624453ffb9f4ba
https://conda.anaconda.org/conda-forge/linux-ppc64le/pcre2-10.43-h3bd5b6e_0.conda#cce58981632ff0b7aa673df347c7f247
https://conda.anaconda.org/conda-forge/linux-ppc64le/perl-5.32.1-7_ha17a0cc_perl5.conda#e4177d25959d087f16eaebdd2f57aa05
https://conda.anaconda.org/conda-forge/linux-ppc64le/portaudio-19.6.0-hde2c0c8_9.conda#fad397a77e9d8726af5475a46cb87af4
https://conda.anaconda.org/conda-forge/linux-ppc64le/readline-8.2-h0b9b154_1.conda#7bb8e7bc9b64950865e875ceb29628fd
https://conda.anaconda.org/conda-forge/linux-ppc64le/spdlog-1.12.0-h3de9e99_2.conda#dac21cbbd07d45aa4ea1b932f0d9c586
https://conda.anaconda.org/conda-forge/linux-ppc64le/tk-8.6.13-hd4bbf49_0.conda#a26aaf28a5756f5b8fbff1a46962c649
https://conda.anaconda.org/conda-forge/linux-ppc64le/volk-3.1.2-h46f38da_0.conda#b76842fc432b95cb5720234d8d096f98
https://conda.anaconda.org/conda-forge/linux-ppc64le/volk-gnss-sdr-0.0.18-h4d352a9_19.conda#60acde1e309f9be27bd9ec47cc223632
https://conda.anaconda.org/conda-forge/linux-ppc64le/wayland-1.22.0-h7e42adb_1.conda#87d42b803770fdcb94c1468390e2bace
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-fixesproto-5.0-h4e0d66e_1002.tar.bz2#87831e2839af0708207596993c7842d2
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libsm-1.2.4-heec23bc_0.conda#1e1c01f70372d60bc0c5563f29d46a10
https://conda.anaconda.org/conda-forge/linux-ppc64le/zlib-1.2.13-h1f2b957_6.conda#85a6d26187092f433bc42394fac7e592
https://conda.anaconda.org/conda-forge/linux-ppc64le/zstd-1.5.6-h03a2076_0.conda#a9d68e57375d156a0fb5fde2ad0cf2a6
https://conda.anaconda.org/conda-forge/linux-ppc64le/brotli-bin-1.1.0-ha17a0cc_1.conda#28fa0a4283e42784b605d16d18f2377f
https://conda.anaconda.org/conda-forge/linux-ppc64le/fftw-3.3.10-nompi_h11bfeb0_108.conda#de0888c20e3e67773f43eebdb697d0ff
https://conda.anaconda.org/conda-forge/linux-ppc64le/freetype-2.12.1-h5baba08_2.conda#013ae28f9209809d857b5920ce4cf4cc
https://conda.anaconda.org/conda-forge/linux-ppc64le/gettext-0.22.5-h46f38da_2.conda#bf5addf65f87e12c09ee56005b9d6561
https://conda.anaconda.org/conda-forge/linux-ppc64le/krb5-1.21.2-hee07e50_0.conda#f30e03fcfef4e6ed4b1dd805d13359e0
https://conda.anaconda.org/conda-forge/linux-ppc64le/libboost-1.82.0-hfdd0173_6.conda#47b2c84c5532282350206f00d88cd458
https://conda.anaconda.org/conda-forge/linux-ppc64le/libglib-2.80.2-h52f4d3e_0.conda#69c54bed5789f8700666bbeb6b3b4ad7
https://conda.anaconda.org/conda-forge/linux-ppc64le/libllvm15-15.0.7-h150ca27_4.conda#6552ee8db72acf4593ca0fecd8ffee5c
https://conda.anaconda.org/conda-forge/linux-ppc64le/libllvm18-18.1.6-hf84df12_0.conda#ef03575de9e28b17a8c4d5b216377e3b
https://conda.anaconda.org/conda-forge/linux-ppc64le/libopenblas-0.3.27-pthreads_h3f0fafc_0.conda#02623f741e651653372b564f84b77f51
https://conda.anaconda.org/conda-forge/linux-ppc64le/libthrift-0.20.0-h464a2bb_0.conda#4148e3faa3dedebad018eccb4afc153c
https://conda.anaconda.org/conda-forge/linux-ppc64le/libtiff-4.6.0-hcbea7e6_3.conda#99e1e12ec4eb92a37e26a6c10158e662
https://conda.anaconda.org/conda-forge/linux-ppc64le/libudev1-255-ha17a0cc_1.conda#5bca654af3ae27ec55080c11b81d7876
https://conda.anaconda.org/conda-forge/linux-ppc64le/libxslt-1.1.39-hfc4afe9_0.conda#368f509c6f981cfd4a02b977f5bde57d
https://conda.anaconda.org/conda-forge/linux-ppc64le/lua-5.4.6-hf45523f_0.conda#47c9b3097357ba18439d332cb7794f35
https://conda.anaconda.org/conda-forge/linux-ppc64le/mysql-libs-8.3.0-hc9dddf0_4.conda#df608ece61364b7b99171761f11659ac
https://conda.anaconda.org/conda-forge/linux-ppc64le/nss-3.100-h45f48ea_0.conda#9a018dd4f86967f5bdbe8531774ad445
https://conda.anaconda.org/conda-forge/linux-ppc64le/python-3.10.14-h4005451_0_cpython.conda#cd16fb8f66e8613441cd6cb8e8027f2c
https://conda.anaconda.org/conda-forge/linux-ppc64le/xcb-util-0.4.0-ha17a0cc_1.conda#c294582676d8d8b8f425cb7810c5c512
https://conda.anaconda.org/conda-forge/linux-ppc64le/xcb-util-keysyms-0.4.0-hb0c8264_1.conda#74a9b40504d383c60919b8507aecdee8
https://conda.anaconda.org/conda-forge/linux-ppc64le/xcb-util-renderutil-0.3.9-ha17a0cc_1.conda#2b63778766bc3f87aa30df81b8b62ee3
https://conda.anaconda.org/conda-forge/linux-ppc64le/xcb-util-wm-0.4.1-hb0c8264_1.conda#68cd74a201432bab53cbd04cbd210873
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libx11-1.8.9-hb0c8264_0.conda#ef87d62f4e0d26203d7f934869fcd1fb
https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b
https://conda.anaconda.org/conda-forge/linux-ppc64le/atk-1.0-2.38.0-h912a750_2.conda#ad372a89ff07c86223509d1cd6ac6807
https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda#5e4c0743c70186509d1412e03c2d8dfa
https://conda.anaconda.org/conda-forge/linux-ppc64le/bcrypt-4.1.3-py310hab1e3b8_0.conda#439eff3f40b6a8ac88c272a68f2ac67c
https://conda.anaconda.org/conda-forge/noarch/bidict-0.23.1-pyhd8ed1ab_0.conda#c9916c3975b19f470218f415701d6362
https://conda.anaconda.org/conda-forge/noarch/blinker-1.8.2-pyhd8ed1ab_0.conda#cf85c002319c15e9721934104aaa1137
https://conda.anaconda.org/conda-forge/linux-ppc64le/brotli-1.1.0-ha17a0cc_1.conda#0eef0717b2a47b736444ec2d8c2fbcbd
https://conda.anaconda.org/conda-forge/linux-ppc64le/brotli-python-1.1.0-py310h9de49d8_1.conda#b748eee6502ddf7a6806145f320f6b03
https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a
https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda#0876280e409658fc6f9e75d035960333
https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda#7f4a9e3fcff3f6356ae99244a014da6a
https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda#f3ad426304898027fc619827ff428eca
https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99
https://conda.anaconda.org/conda-forge/noarch/construct-2.10.70-pyhd8ed1ab_0.conda#58e88566bfbbf9d3ffbeda3290e7f4f0
https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda#5cd86562580f274031ede6aa6aa24441
https://conda.anaconda.org/conda-forge/linux-ppc64le/dbus-1.13.6-h0f95b14_3.tar.bz2#061b5b6712526e334f0fd45ef1379b4b
https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364
https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_0.conda#e8cd5d629f65bdf0f3bb312cde14659e
https://conda.anaconda.org/conda-forge/linux-ppc64le/ephem-4.1.5-py310h05217ba_1.conda#e594f9e8520c1012cfc235e3dd90ba36
https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda#8d652ea2ee8eaee02ed8dc820bc794aa
https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda#e16be50e378d8a4533b989035b196ab8
https://conda.anaconda.org/conda-forge/linux-ppc64le/fontconfig-2.14.2-h9146662_0.conda#78cb402885db0ebf77f815c1bd058439
https://conda.anaconda.org/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_0.conda#650a7807e689642dddd3590eb817beed
https://conda.anaconda.org/conda-forge/linux-ppc64le/gdk-pixbuf-2.42.12-h5400e70_0.conda#a3542b31afa5e5a97e9f171163662075
https://conda.anaconda.org/conda-forge/linux-ppc64le/glib-tools-2.80.2-hcc44a18_0.conda#5927076d2b1911707d44dbd13e29eba6
https://conda.anaconda.org/conda-forge/linux-ppc64le/greenlet-3.0.3-py310h9de49d8_0.conda#979311ca5f5424c29b581e692f0e0047
https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda#c0cc1420498b17414d8617d0b9f506ca
https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_0.conda#ff7ca04134ee8dde1d7cf491a78ef7c7
https://conda.anaconda.org/conda-forge/linux-ppc64le/kiwisolver-1.4.5-py310h3cb7a77_1.conda#f6b3968f926be971f953baf227f6d9da
https://conda.anaconda.org/conda-forge/linux-ppc64le/lcms2-2.16-ha74cc02_0.conda#1fb6f39984fa670e56a9777925f2fc38
https://conda.anaconda.org/conda-forge/linux-ppc64le/libblas-3.9.0-22_linuxppc64le_openblas.conda#96eaa619c6e65c1d2faeb7e40132a89e
https://conda.anaconda.org/conda-forge/linux-ppc64le/libclang-cpp15-15.0.7-default_hf6035ce_5.conda#ef20b7c63d23c99e9680c3e5d33106fe
https://conda.anaconda.org/conda-forge/linux-ppc64le/libclang13-18.1.6-default_h4cae82b_0.conda#d2a83e2b076c8357e54b1b49302e3e14
https://conda.anaconda.org/conda-forge/linux-ppc64le/libcups-2.3.3-hdb7e4ed_4.conda#f7fe4e9a636b99d2831b70683d65fafa
https://conda.anaconda.org/conda-forge/linux-ppc64le/libcurl-8.8.0-ha571e8f_0.conda#4c3eb443cd70af93d67565b28e54c2d5
https://conda.anaconda.org/conda-forge/linux-ppc64le/libflac-1.4.3-h46f38da_0.conda#f092dda1b79ea29087fcc25bcad88036
https://conda.anaconda.org/conda-forge/linux-ppc64le/libgpg-error-1.49-hde5305c_0.conda#26226031a025557439009759cc4e5d8e
https://conda.anaconda.org/conda-forge/linux-ppc64le/libidn2-2.3.7-ha17a0cc_0.conda#b21a08dbb1e438aecc004653b26f46d4
https://conda.anaconda.org/conda-forge/linux-ppc64le/libliquid1-1.6.0-h8a05459_1.conda#89754a758e2723f10b3473cc8c7161fe
https://conda.anaconda.org/conda-forge/linux-ppc64le/libosmodsp0-0.4.0-h8a05459_1.conda#af5bea27bf0d62ac2438a7df3c3ca4c9
https://conda.anaconda.org/conda-forge/linux-ppc64le/libpq-16.3-hb6213f4_0.conda#2505ec5e85678c9fa3d580ef94997bee
https://conda.anaconda.org/conda-forge/linux-ppc64le/libusb-1.0.27-h2a4f5cf_100.conda#5e55fb98b1cc5d335e7a27781861349b
https://conda.anaconda.org/conda-forge/linux-ppc64le/lxml-5.2.2-py310hc3fa083_0.conda#87f4ecd815c459be6bcbe8dec62a5bdf
https://conda.anaconda.org/conda-forge/linux-ppc64le/m17-cxx-demod-2.3.3-hdaf65b7_3.conda#977a984a1815f7aa8b72bb7704e3c1c0
https://conda.anaconda.org/conda-forge/linux-ppc64le/markupsafe-2.1.5-py310h6ed3b71_0.conda#3a330bb016950544c68cc801a0411803
https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19
https://conda.anaconda.org/conda-forge/linux-ppc64le/openjpeg-2.5.2-h1c3486c_0.conda#8232c06cd0319f745ac5b63c87571c59
https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda#248f521b64ce055e7feae3105e7abeb8
https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda#81534b420deb77da8833f2289b8d47ac
https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761
https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda#405678b942f2481cecdb3e010f4925d9
https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_2.conda#18c6deb6f9602e32446398203c8f0e91
https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263
https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883
https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda#844d9eb3b43095b031874477f7d70088
https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda#b7f5c092b8f9800150d998a71b76d5a1
https://conda.anaconda.org/conda-forge/noarch/pyopengl-3.1.6-pyhd8ed1ab_1.tar.bz2#c968eb974b0fae4676e7a7858c4cc56e
https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.2-pyhd8ed1ab_0.conda#b9a4dacf97241704529131a0dfc0494f
https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025
https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.1-pyhd8ed1ab_0.conda#98206ea9954216ee7540f0c773f2104d
https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda#3eeeeb9e4827ace8c0c1419c85d590ad
https://conda.anaconda.org/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2#2807a0becd1d986fe1ef9b7f8135f215
https://conda.anaconda.org/conda-forge/linux-ppc64le/pyyaml-6.0.1-py310h05217ba_1.conda#63a8bb771a59705bc2a15f2cf32f9174
https://conda.anaconda.org/conda-forge/linux-ppc64le/rpds-py-0.18.1-py310h739e3b2_0.conda#acb988d7e8d44fe3a4361a0c419ed3da
https://conda.anaconda.org/conda-forge/linux-ppc64le/ruamel.yaml.clib-0.2.8-py310h05217ba_0.conda#2dbf284af61bb02bcad745d2145b9014
https://conda.anaconda.org/conda-forge/noarch/setuptools-70.0.0-pyhd8ed1ab_0.conda#c8ddb4f34a208df4dd42509a0f6a1c89
https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-0.8.1-py310hd9ef7bd_4.conda#4e90acc2e708e1d04ace909f096f5e70
https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095
https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96
https://conda.anaconda.org/conda-forge/linux-ppc64le/tornado-6.4-py310h6ed3b71_0.conda#47383df1d15191aa87b7c173d0d33a62
https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda#3df84416a021220d8b5700c613af2dc5
https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda#6ef2fc37559256cf682d8b3375e89b80
https://conda.anaconda.org/conda-forge/linux-ppc64le/unicodedata2-15.1.0-py310h05217ba_0.conda#2f4128394b9684acbcf92372a6289c30
https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda#68f0738df502a14213624b288c60c9ad
https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda#f372c576b8774922da83cda2b12f9d29
https://conda.anaconda.org/conda-forge/linux-ppc64le/xcb-util-image-0.4.0-hb0c8264_1.conda#056b67912f4735b5407a188f98a50bd6
https://conda.anaconda.org/conda-forge/linux-ppc64le/xkeyboard-config-2.41-ha17a0cc_0.conda#54672fe1ff21c10703669034c48caad0
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxext-1.3.4-h4194056_2.conda#c36126b9ef2b751193c1ba0cdd3da6d1
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxfixes-5.0.3-h4e0d66e_1004.tar.bz2#2165ab83019ccce973b7986f73199153
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxrender-0.9.11-ha17a0cc_0.conda#38cbc370abce918e559be5bc0b5625ec
https://conda.anaconda.org/conda-forge/linux-ppc64le/zeromq-4.3.5-hb2e7b1d_4.conda#5a2785cdf2121432c6b2d4f980bd2ed5
https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda#2e4d6bc0b14e10f895fc6791a7d9b26a
https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda#5f25798dcefd8252ce5f9dc494d5f571
https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551
https://conda.anaconda.org/conda-forge/linux-ppc64le/cairo-1.18.0-h5505270_0.conda#4a15af55f9d6d9a61e61bc9eee4528ac
https://conda.anaconda.org/conda-forge/linux-ppc64le/cffi-1.16.0-py310he93fcb1_0.conda#130de5db8a1ebbcbe31bb6fc81800f5c
https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f
https://conda.anaconda.org/conda-forge/linux-ppc64le/fonttools-4.52.4-py310h0abd119_0.conda#e245f2a33d99d8db09f64f40ad1fb112
https://conda.anaconda.org/conda-forge/noarch/fs-2.4.16-pyhd8ed1ab_0.conda#a231fa7cb5f101f1f3ae8480c0002f91
https://conda.anaconda.org/conda-forge/linux-ppc64le/glib-2.80.2-h52f4d3e_0.conda#7e7ef418e10cb0b55b4fb52ff71c4095
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnutls-3.7.9-h899f6a7_0.conda#50c95a562444586730a7cb803b38c4cb
https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2#b21ed0883505ba1910994f1df031a428
https://conda.anaconda.org/conda-forge/linux-ppc64le/hdf5-1.14.3-nompi_h259430e_102.conda#0d97bc01fe4e1e246fed7da923ef8fe4
https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda#0896606848b2dc5cebdf111b6543aa04
https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda#c5d3907ad8bd7bf557521a1833cf7e6d
https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda#81a3be0b2023e1ea8555781f0ad904a2
https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda#7b86ecb7d3557821c649b3c31e3eb9f2
https://conda.anaconda.org/conda-forge/linux-ppc64le/libairspy-1.0.10-h4e0d66e_0.tar.bz2#9ff46aec706682ea114e81147a3cd450
https://conda.anaconda.org/conda-forge/linux-ppc64le/libairspyhf-1.6.8-h4e0d66e_0.tar.bz2#b246b4a3181437a9a158bded31ce7dd7
https://conda.anaconda.org/conda-forge/linux-ppc64le/libbladerf2-2023.02-h4194056_0.conda#b28f0b289319f87441932fddf749fa0d
https://conda.anaconda.org/conda-forge/linux-ppc64le/libcblas-3.9.0-22_linuxppc64le_openblas.conda#81d703334ab7ce8442122086328f71f6
https://conda.anaconda.org/conda-forge/linux-ppc64le/libgcrypt-1.10.3-ha17a0cc_0.conda#870a092003d3b3294edafc23c388b001
https://conda.anaconda.org/conda-forge/linux-ppc64le/libglu-9.0.0-h5eda786_1003.conda#fefd039744b6d4f2467bb0ea848ff3aa
https://conda.anaconda.org/conda-forge/linux-ppc64le/libhackrf0-2024.02.1-ha17a0cc_0.conda#c95abdf53050fbcc051689e4b8934a01
https://conda.anaconda.org/conda-forge/linux-ppc64le/libhamlib4-4.5.5-h46f38da_3.conda#af48e66990f3f0ba80134548d0d705e4
https://conda.anaconda.org/conda-forge/linux-ppc64le/libhidapi-0.14.0-ha17a0cc_0.conda#18e60b09dc39689fbc317f7d6c7d776e
https://conda.anaconda.org/conda-forge/linux-ppc64le/libiio-c-0.25-heded604_1.conda#138c7fd1b4896c741a15781b020d1436
https://conda.anaconda.org/conda-forge/linux-ppc64le/liblapack-3.9.0-22_linuxppc64le_openblas.conda#d08b189060a8c45903325081a27a7ec8
https://conda.anaconda.org/conda-forge/linux-ppc64le/liblimesuite-23.11.0-h46f38da_0.conda#f8ff0bf9bb48ecbd6e02ba46784ff3a5
https://conda.anaconda.org/conda-forge/linux-ppc64le/libmirisdr4-2.0.0-ha17a0cc_0.conda#c8a19ebbcebcb4ac633edd8ac6c24c96
https://conda.anaconda.org/conda-forge/linux-ppc64le/libsndfile-1.2.2-hd8dc992_1.conda#30fca5449c87e45004e35b81825fe457
https://conda.anaconda.org/conda-forge/linux-ppc64le/libxkbcommon-1.7.0-he0614c5_0.conda#64030c04e584972bad965ba6bc6d9fa1
https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda#779345c95648be40d22aaa89de7d4254
https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_0.conda#629f3203c99b32e0988910c93e77f3b6
https://conda.anaconda.org/conda-forge/linux-ppc64le/pillow-10.3.0-py310h0afc0cc_0.conda#ab07dbe14c591edf3e49e9744f6f1436
https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.42-pyha770c72_0.conda#0bf64bf10eee21f46ac83c161917fa86
https://conda.anaconda.org/conda-forge/noarch/pyfiglet-0.8.post1-py_0.tar.bz2#e22d3c090f24856764e9d70e76fa3a5f
https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda#2cf4264fffb9e6eff6031c5b6884d61c
https://conda.anaconda.org/conda-forge/linux-ppc64le/pyzmq-26.0.3-py310hb1561f8_0.conda#98276080ec17ff82f566b6a7efd69f30
https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.1-pyhd8ed1ab_0.conda#7f391bd70d2abfb70f304ba5aa4e1261
https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda#0fc8b52192a8898627c3efae1003e9f6
https://conda.anaconda.org/conda-forge/linux-ppc64le/rtl-sdr-2.0.1-ha17a0cc_0.conda#a0b07d06f0b0d07b31109410e6515fe3
https://conda.anaconda.org/conda-forge/linux-ppc64le/ruamel.yaml-0.18.6-py310h05217ba_0.conda#5a68020ee378c5c0f253f04dc816ad53
https://conda.anaconda.org/conda-forge/linux-ppc64le/sip-6.8.3-py310hcc3874d_0.conda#f46a89d9045c90b078598e67a1794530
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-module-netsdr-0.2.0-he97dc58_1.conda#e30ca6170d02751b7904d6446d945099
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-module-redpitaya-0.1.1-he97dc58_0.conda#82d3d7983bad9cabbb7df8d1143d612f
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-module-remote-0.5.2-h6f8e04d_2.tar.bz2#0252a97f2e29b625aa4aad21ab0a9d85
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-module-volk-converters-0.1.1-h9fb0fc0_2.conda#e458fad49baa00ac7952454e574ae60e
https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda#08807a87fa7af10754d46f63b368e016
https://conda.anaconda.org/conda-forge/linux-ppc64le/watchdog-4.0.1-py310hd032262_0.conda#91d28fe13d37ba3a4c34bf2a3fb99fcb
https://conda.anaconda.org/conda-forge/noarch/werkzeug-3.0.3-pyhd8ed1ab_0.conda#2e60f5f388845027ee87fca6bee4ac23
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxcomposite-0.4.6-h4194056_1.conda#558cc5f53924e08299eb6ad483d07102
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxcursor-1.2.0-h4194056_1.conda#1fc4b9f6afd271befa52f60464d32184
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxdamage-1.1.5-h4e0d66e_1.tar.bz2#2bf1bf6c7587ab6b94ea489477ba46c8
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxi-1.7.10-h4e0d66e_0.tar.bz2#46cac9f60e5caa26d34d03a001c7fa39
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxinerama-1.1.5-hbbae597_0.tar.bz2#c195395384f492fe78245624622df642
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxrandr-1.5.2-h4e0d66e_1.tar.bz2#16d9208fb506a2199e84c34b619c45e7
https://conda.anaconda.org/conda-forge/noarch/zope.event-5.0-pyhd8ed1ab_0.conda#b4a7b86cf51f2831015e9eebd284dc0a
https://conda.anaconda.org/conda-forge/linux-ppc64le/zope.interface-6.4.post2-py310hbdb9fc6_0.conda#52ab384b0a469e9012ed62982b6acd47
https://conda.anaconda.org/conda-forge/linux-ppc64le/airspy-1.0.10-h4e0d66e_0.tar.bz2#121e899c09a91c8e1c0782aa739a76cd
https://conda.anaconda.org/conda-forge/linux-ppc64le/airspyhf-1.6.8-h4e0d66e_0.tar.bz2#2a31d92ceb38342c66e53b8757cec097
https://conda.anaconda.org/conda-forge/linux-ppc64le/arpack-3.8.0-nompi_hce8f551_101.tar.bz2#6a2395575a53f037a0a650a1e1cc86dd
https://conda.anaconda.org/conda-forge/noarch/asciimatics-1.15.0-pyhd8ed1ab_0.conda#94bdb59db7572d651230d10dd15c188d
https://conda.anaconda.org/conda-forge/linux-ppc64le/cryptography-42.0.7-py310h96c89fd_0.conda#6abd39b4dbb5ce553f979293506dd2b4
https://conda.anaconda.org/conda-forge/noarch/flask-3.0.3-pyhd8ed1ab_0.conda#dcdb937144fa20d7757bf512db1ea769
https://conda.anaconda.org/conda-forge/linux-ppc64le/gevent-23.9.0.post1-py310h6eebefb_1.conda#2e55b6dec64b71e729c03d8444ae11d0
https://conda.anaconda.org/conda-forge/linux-ppc64le/glew-2.1.0-h3b9df90_2.tar.bz2#18f36d9c262722dcd94615e5c643ed13
https://conda.anaconda.org/conda-forge/linux-ppc64le/glfw-3.4-ha17a0cc_0.conda#bae2caaf95145c7fd042205ac4ed51ba
https://conda.anaconda.org/conda-forge/linux-ppc64le/gsl-2.7-h68b80c3_0.tar.bz2#7213100e35e7b6632626e945514526e1
https://conda.anaconda.org/conda-forge/linux-ppc64le/gstreamer-1.24.3-hf41501a_0.conda#fa34e4fb024e0ea968adbc2023d1f26d
https://conda.anaconda.org/conda-forge/linux-ppc64le/hackrf-2024.02.1-h8a05459_0.conda#62320419864b22ee41252be369c1dab4
https://conda.anaconda.org/conda-forge/linux-ppc64le/hamlib-4.5.5-he154790_3.conda#fc5c1c50a64976636d734af1243e9cdf
https://conda.anaconda.org/conda-forge/linux-ppc64le/hamlib-lua-4.5.5-lua54ha17a0cc_3.conda#9dc72d717d1ab6fe8784bbcc8c5c2c6d
https://conda.anaconda.org/conda-forge/linux-ppc64le/hamlib-perl-4.5.5-pl5321ha17a0cc_3.conda#c965f77628bd871f5f94ca9733b51731
https://conda.anaconda.org/conda-forge/linux-ppc64le/hamlib-python-4.5.5-py310h6ed3b71_3.conda#bc6ad688f7d79ec4c13e412a12f1466e
https://conda.anaconda.org/conda-forge/linux-ppc64le/hamlib-tcl-4.5.5-hd4bbf49_3.conda#3d7f1067f66e1100bcc6ebf5b67f4b0f
https://conda.anaconda.org/conda-forge/linux-ppc64le/harfbuzz-8.5.0-h45bfc96_0.conda#58028e8ae114b55303c56678ecf1ef94
https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda#a0e4efb5f35786a05af4809a2fb1f855
https://conda.anaconda.org/conda-forge/linux-ppc64le/libad9361-iio-0.2-he558529_3.tar.bz2#1a66d8b7ffafa266f9ccc9e4f5afcd6e
https://conda.anaconda.org/conda-forge/noarch/libbladerf-python-2023.02-py_0.conda#3d313832d2b63b19fe9ffe240e4fb746
https://conda.anaconda.org/conda-forge/linux-ppc64le/libgirepository-1.80.1-h5b12326_0.conda#593812ecc3e1ba14915c8c3dc4d3eefa
https://conda.anaconda.org/conda-forge/linux-ppc64le/libm2k-0.8.0-py310haa0b388_0.conda#924ef156151559bb8b016f1615f15f2e
https://conda.anaconda.org/conda-forge/linux-ppc64le/libmatio-1.5.26-h125b1b5_0.conda#aba0fd11628464084455e5a45dae5fc7
https://conda.anaconda.org/conda-forge/linux-ppc64le/libsystemd0-255-ha2be871_1.conda#5eed7209d3eb18c83b324ffa255ba518
https://conda.anaconda.org/conda-forge/noarch/mako-1.3.5-pyhd8ed1ab_0.conda#29fddbfa0e2361636a98de4f46ead2ac
https://conda.anaconda.org/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda#06e9bebf748a0dea03ecbe1f0e27e909
https://conda.anaconda.org/conda-forge/linux-ppc64le/mirisdr-2.0.0-ha17a0cc_0.conda#713675c283811fb79e219d8c10ced3fb
https://conda.anaconda.org/conda-forge/linux-ppc64le/numpy-1.26.4-py310h877c07d_0.conda#2d0da0dfb89817e09cfdb007617b591e
https://conda.anaconda.org/conda-forge/linux-ppc64le/pycairo-1.26.0-py310h9a3ce80_0.conda#c4cb10e43c7de3575313eb09893558e7
https://conda.anaconda.org/conda-forge/noarch/pylibiio-0.25-py_1.conda#810ae49bb989b27783c17c1b7d36595e
https://conda.anaconda.org/conda-forge/linux-ppc64le/pynacl-1.5.0-py310h05217ba_3.conda#970f1d0e5e5ffeb0ac79c6bf001c1000
https://conda.anaconda.org/conda-forge/linux-ppc64le/pyqt5-sip-12.12.2-py310h9de49d8_5.conda#5894de6a29f3555b293d3b67d3c14b12
https://conda.anaconda.org/conda-forge/noarch/qdarkstyle-3.2.3-pyhd8ed1ab_0.conda#ab475868d7e0b110c43bf74c90237a5f
https://conda.anaconda.org/conda-forge/noarch/requests-2.32.2-pyhd8ed1ab_0.conda#e1643b34b19df8c028a4f00bf5df58a6
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-module-airspy-0.2.0-h6f8e04d_0.tar.bz2#6fd4799a26a491406c7e758183188375
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-module-airspyhf-0.2.0-h6f8e04d_0.tar.bz2#efb4bca0a34b8fefaa4cf1c442334f36
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-module-bladerf-0.4.1-hf8708ca_0.tar.bz2#06624c403cd42bb35091ba3797874b59
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-module-hackrf-0.3.4-h6f8e04d_0.tar.bz2#b42e4a5bf0847722be5037b79fb898b7
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-module-lms7-23.11.0-h45eccfa_0.conda#93a99d1b555c99fefb5eec0fedfe1b87
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-module-rtlsdr-0.3.3-h7f3508f_2.conda#0f3bd7025d4c2834cb63d121d06a8fa6
https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af
https://conda.anaconda.org/conda-forge/linux-ppc64le/superlu-5.2.2-ha2bd32a_0.tar.bz2#b78bbd0e2c35c0ee6052c8df9ca53937
https://conda.anaconda.org/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_0.tar.bz2#00ba804b54f451d102f6a7615f08470d
https://conda.anaconda.org/conda-forge/linux-ppc64le/xorg-libxtst-1.2.3-h4e0d66e_1002.tar.bz2#328b56c87470e4eb5cf4fa5ef56fb283
https://conda.anaconda.org/conda-forge/linux-ppc64le/armadillo-12.8.3-h3c4028a_0.conda#e75bab3e2e1f73f878a0dbbe462e3c57
https://conda.anaconda.org/conda-forge/linux-ppc64le/at-spi2-core-2.40.3-h633f9df_0.tar.bz2#bb5a1525186dbfdbb6f25d5cd7429375
https://conda.anaconda.org/conda-forge/linux-ppc64le/bladerf-2023.02-h4194056_0.conda#0cca4c597f391266197290a25162b8a4
https://conda.anaconda.org/conda-forge/linux-ppc64le/contourpy-1.2.1-py310hd9ef7bd_0.conda#149abcc69639c24313110c7fe1277d49
https://conda.anaconda.org/conda-forge/noarch/gevent-websocket-0.10.1-py_0.tar.bz2#25b4b60b6ea50368cd90b75b4d00c711
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-pmt-3.10.10.0-py310h6ac5daa_6.conda#a74492c62db45dad1080f4d1e90bc330
https://conda.anaconda.org/conda-forge/linux-ppc64le/gst-plugins-base-1.24.3-h5bf6f77_0.conda#d3da79898dbb718e2fc85d2537e7fdd6
https://conda.anaconda.org/conda-forge/linux-ppc64le/h5py-3.11.0-nompi_py310h386d253_101.conda#eb27ef15b1726f6ba148a11f9b54d33b
https://conda.anaconda.org/conda-forge/noarch/hamlib-all-4.5.5-linux_3.conda#b2e651c9688828b46dd9ac81a4f86d3d
https://conda.anaconda.org/conda-forge/noarch/ipython-8.24.0-pyh707e725_0.conda#1fb1f1fcbe053a762748dbf0ae4cfd0d
https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.22.0-pyhd8ed1ab_0.conda#b9661a4b1200d6bc7d8a4cdafdc91468
https://conda.anaconda.org/conda-forge/linux-ppc64le/libass-0.17.1-h586b5ed_1.conda#2d4acf4bddc6a3b4f38703cf6e069e03
https://conda.anaconda.org/conda-forge/linux-ppc64le/libiio-0.25-ha3edaa6_1.conda#9c368186a89ae78e465aadc95e4a67cc
https://conda.anaconda.org/conda-forge/linux-ppc64le/numexpr-2.8.4-py310h18f8728_1.conda#d4c6069219b2d4491761428cd72d1351
https://conda.anaconda.org/conda-forge/linux-ppc64le/pandas-2.2.2-py310hb4565e0_1.conda#57bbaa6c1673fdf7677ff2295cc63f09
https://conda.anaconda.org/conda-forge/linux-ppc64le/pango-1.52.2-h0dd3d01_0.conda#c552240ea7fccd2844ea66a45cf176d2
https://conda.anaconda.org/conda-forge/noarch/paramiko-3.4.0-pyhd8ed1ab_0.conda#a5e792523b028b06d7ce6e65a6cd4a33
https://conda.anaconda.org/conda-forge/linux-ppc64le/pulseaudio-client-17.0-h5deceda_0.conda#12b051172ec8825db4cc4e03dafb51de
https://conda.anaconda.org/conda-forge/linux-ppc64le/pygobject-3.48.2-py310hb4236d9_0.conda#100d607d9f08a0c7bcf14428e2bf8cce
https://conda.anaconda.org/conda-forge/noarch/pyqtgraph-0.13.7-pyhd8ed1ab_0.conda#d31a6f00bd89ff46a5e457c935578c33
https://conda.anaconda.org/conda-forge/linux-ppc64le/scipy-1.13.1-py310h784e85a_0.conda#c550415dae36b9cdadf1a5b52e468573
https://conda.anaconda.org/conda-forge/noarch/simple-websocket-1.0.0-pyhd8ed1ab_1.conda#4e9136be6c66312f63b3a8ef60443389
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-module-plutosdr-0.2.2-ha6f28a8_0.conda#5c3b8d62cd7d165370e0dcca2cb4dd1b
https://conda.anaconda.org/conda-forge/linux-ppc64le/uhd-4.6.0.0-py310hcd7457b_0.conda#51b5ee6307f28f276c57e3e047cff50a
https://conda.anaconda.org/conda-forge/linux-ppc64le/at-spi2-atk-2.38.0-h633f9df_3.tar.bz2#c2eb5fe574eb08b882b42dfae6db5982
https://conda.anaconda.org/conda-forge/linux-ppc64le/digital_rf-2.6.9-py310h06741d1_0.conda#19fcf768b752a96c1d354c280f5f5c04
https://conda.anaconda.org/conda-forge/linux-ppc64le/ffmpeg-6.1.1-gpl_h261c9dc_112.conda#0870d39fbd02daa9712763c1a7c76d88
https://conda.anaconda.org/conda-forge/linux-ppc64le/librsvg-2.58.0-hae13ae7_1.conda#7f85594300e7d0c8a6ff4ca82a0ad374
https://conda.anaconda.org/conda-forge/linux-ppc64le/librtaudio6-5.2.0-hb51dbe7_3.conda#5f90bf2192fe91d3b7f6bc490efd8fee
https://conda.anaconda.org/conda-forge/linux-ppc64le/matplotlib-base-3.8.4-py310hd57f521_2.conda#fa29b48c4c47dc5238d9b78120f32346
https://conda.anaconda.org/conda-forge/noarch/pyadi-iio-0.0.16-pyhd8ed1ab_0.conda#667c2c87d132e2fdf0b2f42200fbfbff
https://conda.anaconda.org/conda-forge/noarch/python-engineio-4.9.1-pyhd8ed1ab_0.conda#14eac7853ce0afb52fab40521d8ed9f7
https://conda.anaconda.org/conda-forge/linux-ppc64le/qt-main-5.15.8-he1b3ad4_21.conda#370c9df3390d20ea326e82a85e119517
https://conda.anaconda.org/conda-forge/linux-ppc64le/sdl2-2.30.2-hf2eade4_0.conda#cd9294496bd623d984ec2130683a8aad
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-module-uhd-0.4.1-ha5dbe34_10.conda#f6a3c61d1c980d0f3f95ffd91f4f7a29
https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-46.0-unix_0.conda#f1dcbaeb1b69a1424b9ac618b2a7cdc8
https://conda.anaconda.org/conda-forge/linux-ppc64le/alsa-plugins-1.2.7.1-h7ff4fc0_10.conda#92e22e07c1d6c09757817b607617bd7d
https://conda.anaconda.org/conda-forge/linux-ppc64le/gtk3-3.24.42-h9b9bf04_0.conda#d41222c311ba937aa1fe2259dfc7251a
https://conda.anaconda.org/conda-forge/linux-ppc64le/inspectrum-0.3.1-hb0a1fd9_0.conda#941f34874acbf87c0b3163cb7f3979d2
https://conda.anaconda.org/conda-forge/linux-ppc64le/matplotlib-3.8.4-py310hd032262_2.conda#6534fa4f9803e0650f7f2bff927f06bc
https://conda.anaconda.org/conda-forge/noarch/mplcursors-0.5.3-pyhd8ed1ab_0.conda#41db08c32bbbb2849d6f57fd1d1da460
https://conda.anaconda.org/conda-forge/linux-ppc64le/pyqt-5.15.9-py310h05aca5a_5.conda#adf527872fc837f852fd0a001778d49c
https://conda.anaconda.org/conda-forge/noarch/python-socketio-5.11.2-pyhd8ed1ab_0.conda#08c4689825cdf902fc643a6a0934068e
https://conda.anaconda.org/conda-forge/linux-ppc64le/qwt-6.2.0-he5e8f9e_6.conda#3782534a91daee97ad52357974238e1a
https://conda.anaconda.org/conda-forge/linux-ppc64le/sdl-1.2.68-hb64e4c4_0.conda#d137cefeb2fa4c2c4965d122a50dd9e3
https://conda.anaconda.org/conda-forge/linux-ppc64le/soapysdr-module-audio-0.1.1-h7f3508f_1.conda#151db2baa11dfd26ab7c29f2879950df
https://conda.anaconda.org/conda-forge/noarch/flask-socketio-5.3.6-pyhd8ed1ab_0.conda#ef521fc208ad82733c942d150199cf3e
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-core-3.10.10.0-py310hee0668f_6.conda#0aec35d62163de5b736a886aae9fb8a0
https://conda.anaconda.org/conda-forge/noarch/pyfda-0.8.4-pyh9208f05_0.conda#c772efaac9008abc155bbb8da0ed451d
https://conda.anaconda.org/conda-forge/linux-ppc64le/wxwidgets-3.2.5-hb0d8d01_0.conda#8f992cbf17d410e97b9ce7d8c616b68e
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-adsb-0.0.0.20240508.dev+gafd7fabda-unix_pyha6c0e43_0.tar.bz2#56f998dffe40fa91563395e3cbc935b7
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-dect2-0.0.0.20240502.dev+gb296af2a9-py310h0a1caa6_0.tar.bz2#dcd8f624d25285b6d198af92f3862bff
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-filerepeater-0.0.0.20240502.dev+gd7bb8846c-py310hb11fc2d_0.tar.bz2#59371be47c613c31a3ff91e95b953811
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-foo-0.0.0.20240502.dev+gc53538a22-py310hc95069f_0.tar.bz2#3199cfb1fc812ad0442bd7865d8cf5d9
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-fosphor-0.0.0.20240502.dev+g656fe2f-py310hef9c1d6_0.tar.bz2#9d34e43a93fa9f517e4cd2c273fa1588
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-funcube-3.10.0.rc3-py310hac15007_4.conda#34c25ce02177d639a9493ce0aa9d9f39
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-gpredict-doppler-0.0.0.20240508.dev+gb06bc7678-unix_pyha1ad6f9_0.tar.bz2#b414c3119957d01e5edb2ec24b438bd1
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-grc-3.10.10.0-py310h3a01513_6.conda#bafa7eecb0fac841472b43dea0c30481
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-hermeslite2-v1.0.0.0.post17+8b17ad3-py310h0a1caa6_0.tar.bz2#7af6382966c39f180a02f47cf285e619
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-hpsdr-0.0.0.20240507.dev+g958e157-py310h7639744_0.tar.bz2#7b3cd7e2532e6a50dfe9bf001c78fc79
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-iio-3.10.10.0-py310h9701f90_6.conda#b0dd581aef319fc56568f505eeaf8fe6
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-iqbalance-0.38.2-py310h6b176c7_3.conda#debccac87cbe21700ef6913cf7dfa3d2
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-iridium-1!1.0.0-py310h8a2dc07_11.conda#2f83ef2cf95fcb7d7bcc05a1d44e2103
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-leo-1.0.0.post105+12a346f-py310h5a5c018_0.tar.bz2#85dbcbe291791d9f3452600c265f00e3
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-lora_sdr-0.0.0.20240508.dev+g751a65269-py310h5a5c018_0.tar.bz2#6adad1deb416cce855c3847c1ae6f3a6
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-m2k-1.0.0-py310habb924e_9.conda#18c1b77606cf3faaa5e2fa0060cef089
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-paint-0.0.0.20240508.dev+g82696a2-py310h5a5c018_0.tar.bz2#6d92d07144f6c4e4cbeb059d2271b591
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-qtgui-3.10.10.0-py310h4dc918b_6.conda#c30253373356f6344d28eedd527a8c09
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-radar-0.0.0.20240525.dev+gc59350d-py310h83e1f57_0.tar.bz2#3fc206c3f150d76adfad653920c86dd4
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-rds-3.10.post22+g2134008-py310h99c2f21_0.tar.bz2#1675b15a8c5c7a26ef659a74faa0529a
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-soapy-3.10.10.0-py310h5d186a4_6.conda#0fd749d5b81544e15512b871b1892937
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-uhd-3.10.10.0-py310hcfea35a_6.conda#8972ee78d5a3a839e7ef6dd7e03c6450
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-video-sdl-3.10.10.0-py310hfe0685c_6.conda#f71a8d17dc8eb8f86413e0c89aa0044c
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-zeromq-3.10.10.0-py310hd18bfb5_6.conda#534778e2d92461f67c346253e0e05327
https://conda.anaconda.org/conda-forge/linux-ppc64le/limesuite-23.11.0-h4aef300_0.conda#c8a77c049f467ab40d1293c4ce1a4c4e
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-3.10.10.0-py310h84b923e_6.conda#bfe5ce21e2ef581dfce88fc0a957159c
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-ieee802_11-0.0.0.20240507.dev+g8c058d4e0-py310hb16563b_0.tar.bz2#427aa16f9aeeeb487b92ec9c59c52226
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-ieee802_15_4-3.6.post133+g932c76f-py310hac62da3_0.tar.bz2#568490977400c222eb1a79ba6230e151
https://conda.anaconda.org/ryanvolz/linux-ppc64le/gnuradio-inspector-0.0.0.20240525.dev+g55acca6-py310haac8fb5_0.tar.bz2#cdacf18cccb4eb83b46fc537b96a5f11
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-osmosdr-0.2.4-py310h9f1c927_16.conda#c01bc212f9b7ff34a23bc9a65d271448
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnuradio-satellites-5.5.0-py310h184d61e_2.conda#a668e2844722a6147dbb36bef1d30591
https://conda.anaconda.org/conda-forge/linux-ppc64le/gnss-sdr-0.0.18-h70ae29d_19.conda#f51086fee62882cdf04fa3063624fe8b
https://conda.anaconda.org/conda-forge/linux-ppc64le/gqrx-2.17.5-py310h7626089_4.conda#956da6f418e248e12675e5d8942c10aa
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/_libgcc_mutex-0.1-conda_forge.tar.bz2#e96f48755dc7c9f86c4aecf4cac40477
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/ca-certificates-2025.1.31-h0f6029e_0.conda#8d0acc0c1a478b5123b1ca5d644e5cae
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda#49023d73832ef61042f6a237cb2687e7
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/hicolor-icon-theme-0.17-ha3edaa6_2.tar.bz2#6f63da0f46039051fb075cd974721b99
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/ld_impl_linux-ppc64le-2.43-h5c2c55b_4.conda#a2ca1572b766babe460930d430c60fca
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libglvnd-1.7.0-h5d83ef4_2.conda#073ea7916e99ba47cbb53ca77296c063
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libgomp-14.2.0-h0d7acf9_2.conda#3434b6fd0b74157d2a26b07dbf650503
https://conda.anaconda.org/t/*****/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2#878f923dd6acc8aeb47a75da6c4098be
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/python_abi-3.12-5_cp312.conda#bc1f7e514986f080afff56f293b9463f
https://conda.anaconda.org/t/*****/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda#dbcace4706afdfb7eb891f7b37d07c04
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/_openmp_mutex-4.5-2_gnu.tar.bz2#3e41cbaba7e4988d15a24c4e85e6171b
https://conda.anaconda.org/t/*****/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-leo-data-1.0.0.post20250214%2Bg8f62b92-unix_2.conda#c4ae33379222c031be2cd82093e561e1
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libegl-1.7.0-h5d83ef4_2.conda#e0677de77482dc001233bca23bb5411f
https://conda.anaconda.org/t/*****/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libgcc-14.2.0-h0d7acf9_2.conda#11f154dfcfde0615c7208a78c90969bc
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/alsa-lib-1.2.13-h190368a_0.conda#e1587a4829886ed8d3bd703380552b23
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/c-ares-1.34.4-h190368a_0.conda#b03fc9f9a806c6b97e022a05122f45b7
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gettext-tools-0.23.1-h2621725_0.conda#641319325867d0570f88b73735e83206
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gstreamer-orc-0.4.41-hd2bc7bf_0.conda#6415c338865f373079a8b0fcae78d278
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libbrotlicommon-1.1.0-h190368a_2.conda#768be10957825b6ec3ffb7c779839e8a
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libcodec2-1.2.0-h190368a_3.conda#2303109756e0a5b066a940310d35b70c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libdeflate-1.23-hc4b29fe_0.conda#522d43568dc75e5b7ca0d514b8c02cb3
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libexpat-2.6.4-h2621725_0.conda#544bdff04aec471ccd22454615f7ddac
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libffi-3.4.6-hb694610_0.conda#8fe1a83b4b59bc03a7052fdff0e6a6e6
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libgcc-ng-14.2.0-hfdc3801_2.conda#db5a53f0600a67abf16e42342b2e9a36
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libgettextpo-0.23.1-h2621725_0.conda#55ec1b9e3a92a234bbc8610bc540b280
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libgfortran5-14.2.0-hd761307_2.conda#2c7291015158897f1b90bcb4a3c2290b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libiconv-1.18-hd7acdf4_1.conda#5720b08556cb77b03e02f967bb45eb40
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/liblzma-5.6.4-h190368a_0.conda#f488a5c24186dc6368976f5ab106a554
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libntlm-1.8-h190368a_0.conda#a3fdddde61917c16b6de3b5338e5a567
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libstdcxx-14.2.0-h262982c_2.conda#34f438177f2e0f09721e177e452e85a1
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libtasn1-4.20.0-h190368a_0.conda#8bf6010d4d9cd4824861895a4f34210f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libuv-1.50.0-h190368a_0.conda#46ee195ca32e8c7a3e0263b5bc31459f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libwebp-base-1.5.0-h6573e2e_0.conda#087dde384254415e9f315854378e06b4
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libzlib-1.3.1-h190368a_2.conda#4ac019aac4dbff4728ef133b8ec3a913
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/ncurses-6.5-h8645e7e_3.conda#067fcb7ea11d75689d22574783decfd2
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/openssl-3.4.1-hede31bd_0.conda#eb033fe637cf0ab0f85b08786815f585
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pthread-stubs-0.4-h190368a_1002.conda#5a635ff57c1c1c9c67abd4fa1c025e0f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libice-1.1.2-h190368a_0.conda#7b57824fe3866b05d47beab4cf894d51
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxau-1.0.12-h190368a_0.conda#8a15aee028e8fa28a81b180aee050e5b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxdmcp-1.1.5-h190368a_0.conda#2f2eb08311634a564f197c0449f47119
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxshmfence-1.3.3-h190368a_0.conda#29c6f699c080cf130ba76c4caf535faa
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/attr-2.5.1-hb283c62_1.tar.bz2#4c22a1fb59cbfb53942e21d23e75d5e0
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/bzip2-1.0.8-h1f2b957_7.conda#28bea4cad2ab5d1ce9e3be6ab7fadac4
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/codec2-1.2.0-h190368a_3.conda#164e2252c93fb54170d71e70fb8ad0ce
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/dav1d-1.2.1-ha17a0cc_0.conda#04fb9e25ae2044fa71a402cc12dd52c3
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/epoxy-1.5.10-hb283c62_1.tar.bz2#6f83f54119fb19d3bd823a5c6c14ca8f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/expat-2.6.4-h2621725_0.conda#62d530df254d351df0b8f2365955507b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/fribidi-1.0.10-h339bb43_0.tar.bz2#c433e297d49dfb19bad82213fd1e5a7c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gflags-2.2.2-h2621725_1005.conda#e546539b7fdba317a33a5324cc302da1
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/keyutils-1.6.1-hb283c62_0.tar.bz2#0263f7bf0fbaaf432ded27e3068a0cba
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/lame-3.100-hb283c62_1003.tar.bz2#e317f98957deacea42a582aa82b61c93
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libabseil-20240722.0-cxx17_hf9f062a_4.conda#7558000bd9599fe48626f7a98b3b0851
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libaio-0.3.113-hb283c62_0.tar.bz2#613e0d2c69eeda793fc485463810638b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libasprintf-0.23.1-h921c762_0.conda#fc49c94460e4e9c88ef0d48053563b94
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libbrotlidec-1.1.0-h190368a_2.conda#46626d9801cc5ed85f9175fbeb4bc602
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libbrotlienc-1.1.0-h190368a_2.conda#7f31ed91c4521a54ce28d5ac0e6a25da
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libcorrect-0.0.0-h4194056_0.conda#383315b900e610358f550b417ba49c69
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libedit-3.1.20250104-pl5321h9a3a893_0.conda#400d6bad03602d8cffb296be3506c9d8
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libev-4.33-ha17a0cc_2.conda#68e44432ab45e0787868e0d8d0ffaa97
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libevent-2.1.12-h3507d20_1.conda#1c71f37dde91397b0c0250959a497f76
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libgettextpo-devel-0.23.1-h2621725_0.conda#286c3da465b2fa88254ce7fc9f5ed62c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libgfortran-14.2.0-hfdc3801_2.conda#be1d15855204fd70d623acb0cd868c86
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libgpg-error-1.51-hb1c7e87_1.conda#69b57c5f55d1a483fc175b6190dbb57d
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libjpeg-turbo-3.0.0-ha17a0cc_1.conda#e434b58f2e90ee386cb277fd4c2779fe
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libnsl-2.0.1-ha17a0cc_0.conda#fff1c88a9eb0409f33ff9eba62c2d211
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libogg-1.3.5-h1f2b957_0.conda#d22d18ed17f474fdc50abbbbd54461ca
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libopus-1.3.1-h4e0d66e_1.tar.bz2#5db5e18157bafd275f2a84799f064dd2
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libpcap-1.10.4-ha17a0cc_1.conda#820758d5f979700396ff0c7ca313a630
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libpciaccess-0.18-ha17a0cc_0.conda#c877d316bd1286488c034a86bb8088b4
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libpng-1.6.47-h4ca8ea4_0.conda#619805c3b4812d3ea90be5a47761e142
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libsodium-1.0.20-h1f2b957_0.conda#4e130aff990531e0573a8e67e938360f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libsqlite-3.49.1-haeeb200_1.conda#bcce65151fb5006850909438ebe7f7ef
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libssh2-1.11.1-h485dfb1_0.conda#2e4ecf0a7d47a0665a2565c216c5a7aa
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libstdcxx-ng-14.2.0-hf27a640_2.conda#78f750d33e1c6bc86e6663a123a40a44
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libunistring-0.9.10-h4e0d66e_0.tar.bz2#ac9d49b389f0dc17a89f90a1126c34dd
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/liburing-2.9-hb22304a_0.conda#d94ad669edff84cf93bcf4ea19d5daf7
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libuuid-2.38.1-h4194056_0.conda#fed50db9b0ea36487e89a6935ca87a94
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libxcb-1.17.0-he4e7c97_0.conda#b5c4986ccb174689136209eed15f0bf6
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libxcrypt-4.4.36-ha17a0cc_1.conda#b8d12a4079c614d8852c6a310fa61a80
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/lz4-c-1.10.0-h2621725_1.conda#37dc0f99a7bcd4715a077c94f05f921a
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/lzo-2.10-ha17a0cc_1001.conda#ac46805736161ca022d6d4de4b8f6fb7
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/mpg123-1.32.9-h7b264c9_0.conda#ac7d91a7be4c9090b0c0fc9f854feccf
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/nettle-3.9.1-h6c99a15_0.conda#3aa9b2143f850db1d268fc92586e274c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/nspr-4.36-h2621725_0.conda#8582db973f19e3b5c22215c0a3d35837
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/opencl-headers-2024.10.24-h2621725_0.conda#f466c0554167f50b5690890e7c6c08da
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/openh264-2.6.0-h4846f89_0.conda#ea7a529b92b59a68e480210e4318ece4
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/p11-kit-0.24.1-h7ef140f_0.tar.bz2#e50dee97b6e3258ccc624453ffb9f4ba
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pixman-0.44.2-ha71f0f6_0.conda#1a51a676978a340f724037ea99563f13
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/portaudio-19.7.0-ha778ef4_0.conda#61753a957fba1bb5065b71b3aa71c212
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pugixml-1.15-h02f28cb_0.conda#b0893cbd869eb54eb5acf0c4d7097d71
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/readline-8.2-hf4ca6f9_2.conda#03eb5d98d2cadd7ff581716f1a5e6409
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/svt-av1-3.0.1-h2621725_0.conda#52f7f79d5125413c77e814c43e1a7576
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/tk-8.6.13-hd4bbf49_0.conda#a26aaf28a5756f5b8fbff1a46962c649
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/volk-3.2.0-h62b9486_0.conda#cfbd1c65a6e2b19f294fedd153174098
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/volk-gnss-sdr-0.0.19-h9676a07_8.conda#5f420621016b8ae77b4a7d6a550f73c3
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/x264-1%21164.3095-hb283c62_2.tar.bz2#6f2364dc5380ba3ba55c46958033f901
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/yaml-0.2.5-h4e0d66e_2.tar.bz2#e480df649632a5f96b7a24dfc213fd3d
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/zlib-1.3.1-h190368a_2.conda#d37df14a1c2556f3a85b2fb580806b4b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/zstd-1.5.7-h53ff00b_1.conda#713cb4f3efc898b557455a32a245e92c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/aom-3.9.1-hd444e8b_0.conda#460c5de6253fd487bf1010df9190e821
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/brotli-bin-1.1.0-h190368a_2.conda#c7b2bacda1f9530c701b4f397d7f94d4
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/fmt-11.0.1-h7c29e54_0.conda#db88360bc4b61988460a220a1d4f8af4
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/freetype-2.13.3-h160a492_0.conda#e51bdeb3da3b59f152f5a361f28dd4b6
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/glog-0.7.1-hca4f505_0.conda#a549dc9d7444fb89c304a8e56ef6cd7d
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gmp-6.3.0-h46f38da_0.conda#6fcfb0710d5a4b8db7706e25aad29176
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/graphite2-1.3.13-h46f38da_1003.conda#336084b3abc0ee85d228def90cab8b52
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gtest-1.15.0-h7c29e54_0.conda#804b9e1c9539dca94fcb8af3cfe1e9d1
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/icu-75.1-h5867af4_0.conda#22c8f8e2a7ee94952beee448bcaa578c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/krb5-1.21.3-h7eda64f_0.conda#b4365f3e69df8b35dca40f863ed54847
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/lerc-4.0.0-hbbae597_0.tar.bz2#fc65ed3c14d2236d5917f11eaf2b949f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libaec-1.1.3-h46f38da_0.conda#fe40b3465643863d0222c4cf861e8a97
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libasprintf-devel-0.23.1-h921c762_0.conda#88ee035f0c616e12b5fe37086231f645
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libcap-2.75-hcf8ba42_0.conda#86f4bee135af5d0d5fca0462af56d6f4
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libdb-6.2.32-h3b9df90_0.tar.bz2#058aa993994ca97ce133aff8490f7a82
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libdrm-2.4.124-h190368a_0.conda#f3eeab839debb2ee8ad88ce8e5750a67
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libgcrypt-lib-1.11.0-h190368a_2.conda#4890fb4bba5d4a97c7540d8041ddaf34
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libgfortran-ng-14.2.0-hfdc3801_2.conda#d5d011806638cfc5b94624862762db67
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libidn2-2.3.8-ha537cf0_0.conda#ebfdbf3587328a139a41f55d1df0dd20
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libnghttp2-1.64.0-hac8f85b_0.conda#88b708f58e1b76f9ab96ea5fb27ceac1
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libopenblas-0.3.29-pthreads_h8ac31f8_0.conda#1b6fb7cf7cec462a7fcb1948ae00b259
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libprotobuf-5.28.3-h4b6c0f6_1.conda#90530aa0c0b95895b1d249551aa73b29
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libthrift-0.21.0-h2c60daa_0.conda#3dd124173cf334aebbbfce24653e39ce
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libunwind-1.6.2-h3b9df90_0.tar.bz2#639708042c439a5a00c73122353409f4
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libvorbis-1.3.7-h3b9df90_0.tar.bz2#61a1186a45757359238185b82e9920f2
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libvpx-1.14.1-h4d352a9_0.conda#0b8620155c62b8dd99881a4ef6c25f2a
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/lua-5.4.6-hf45523f_0.conda#47c9b3097357ba18439d332cb7794f35
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/mysql-common-9.0.1-h4bc58a3_5.conda#c3099d9c2e942ea4dad86fd9c4072e80
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/nss-3.108-h159e3e6_0.conda#b46c69edba0c6ad901b8e42d11b7f0d3
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/ocl-icd-2.3.2-h190368a_2.conda#b1e4963a179f1009ca905215dd036343
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pcre2-10.44-h3dd95db_2.conda#b9fb95c4bf3f2a43a8eb517199b93632
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/perl-5.32.1-7_ha17a0cc_perl5.conda#e4177d25959d087f16eaebdd2f57aa05
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/python-3.12.9-he016669_1_cpython.conda#88e5e21a99e364dda572ae67ad1b3c7e
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/qhull-2020.2-h7c29e54_5.conda#31f52de83d2f180f5d180be1a45c7d5d
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/wayland-1.23.1-h89182fd_0.conda#ee90bf406c1bc7dfeb72e69d5c0e396b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/x265-3.5-h06f31f1_3.tar.bz2#cba89511304b06ef35805c704ad54779
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xcb-util-0.4.1-had93e6f_2.conda#344b4c1b6da5c494293996ed3895d23b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xcb-util-keysyms-0.4.1-had93e6f_0.conda#e51b247291f2a1d6f9e7c86b1881bb83
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xcb-util-renderutil-0.3.10-had93e6f_0.conda#a0c8203f9165e791fd9d3675d6a4ec0a
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xcb-util-wm-0.4.2-had93e6f_0.conda#ff3156fa3fe07b4698b066390a257811
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libsm-1.2.6-h9be89da_0.conda#602b7b7ab7d91f0e26a92b6febaa6662
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libx11-1.8.12-h67a18fa_0.conda#fc757353ae2ff3339db6b62bf580a499
https://conda.anaconda.org/t/*****/conda-forge/noarch/appdirs-1.4.4-pyhd8ed1ab_1.conda#f4e90937bbfc3a4a92539545a37bb448
https://conda.anaconda.org/t/*****/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda#8f587de4bcf981e26228f268df374a9b
https://conda.anaconda.org/t/*****/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda#a10d11958cadc13fdb43df75f8b1903f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/bcrypt-4.3.0-py312h458b663_0.conda#c05bd1d0eabca3b63fcbb56fae57083e
https://conda.anaconda.org/t/*****/conda-forge/noarch/bidict-0.23.1-pyhd8ed1ab_1.conda#a6d521e8054c6b38aea1095060bd7e14
https://conda.anaconda.org/t/*****/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda#42834439227a4551b939beeeb8a4b085
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/brotli-1.1.0-h190368a_2.conda#29be9c5f46ef97f77000221a6e6ed52d
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/brotli-python-1.1.0-py312h239da9a_2.conda#d1ab405070c0c4483cf1b58adae4eb15
https://conda.anaconda.org/t/*****/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a
https://conda.anaconda.org/t/*****/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda#c207fa5ac7ea99b149344385a9c0880d
https://conda.anaconda.org/t/*****/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda#e83a31202d1c0a000fce3e9cf3825875
https://conda.anaconda.org/t/*****/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda#f22f4d4970e09d68a10b922cbb0408d3
https://conda.anaconda.org/t/*****/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda#962b9857ee8e7018c22f2776ffa0b2d7
https://conda.anaconda.org/t/*****/conda-forge/noarch/construct-2.10.70-pyhd8ed1ab_0.conda#58e88566bfbbf9d3ffbeda3290e7f4f0
https://conda.anaconda.org/t/*****/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda#44600c4667a319d67dbe0681fc0bc833
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/cyrus-sasl-2.1.27-h573e04c_7.conda#e0a6eb7650fdc7ac1d9ce2135d9d525b
https://conda.anaconda.org/t/*****/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda#9ce473d1d1be1cc3810856a48b3fab32
https://conda.anaconda.org/t/*****/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda#24c1ca34138ee57de72a943237cde4cc
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/ephem-4.2-py312h2984477_0.conda#b9245198e29a54c642c2c82603ab8e13
https://conda.anaconda.org/t/*****/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda#a16662747cdeb9abbac74d0057cc976e
https://conda.anaconda.org/t/*****/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda#ef8b5fca76806159fc25b4f48d8737eb
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/fftw-3.3.10-nompi_h9745dfa_110.conda#e4b586fb62c4f309391814c8b6feb1ef
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/fontconfig-2.15.0-hb048c60_1.conda#328d5da467ebe4aa978b53c74c3966e8
https://conda.anaconda.org/t/*****/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_2.conda#1054c53c95d85e35b88143a3eda66373
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gettext-0.23.1-h2621725_0.conda#5c3df02139c3cd182c16e3b425f96b01
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnutls-3.8.9-h5911fd5_0.conda#4ea74e8173ec68e051fdcbe9ef9c909f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/greenlet-3.1.1-py312h239da9a_1.conda#5cc8598bdcc326e621555facafa0f032
https://conda.anaconda.org/t/*****/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda#0a802cb9888dd14eeefc611f05c40b6e
https://conda.anaconda.org/t/*****/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda#8e6923fc12f1fe8f8c4e5c9f343256ac
https://conda.anaconda.org/t/*****/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda#39a4f67be3286c86d696df570b1201b7
https://conda.anaconda.org/t/*****/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_1.conda#7ac5f795c15f288984e32add616cdc59
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/jack-1.9.22-hde2c0c8_2.conda#6a22a1108bce1dc43e16dacc564a6c9d
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/kiwisolver-1.4.8-py312hb22304a_0.conda#bac124f1c616ed88ea96deb1773c8d1b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libblas-3.9.0-31_h1afb123_openblas.conda#08cbb991ca7ca54e52100075e3ca0f5d
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libboost-1.86.0-h9317212_3.conda#9e7d722ae13dc1d434f7d1e7d48a874c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libcups-2.3.3-hdb7e4ed_4.conda#f7fe4e9a636b99d2831b70683d65fafa
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libcurl-8.12.1-h9fbccba_0.conda#355ef0fc05301756174f87c6709817f8
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libglib-2.82.2-h3d6172d_1.conda#ddb4bd3ce7a8782dfcb483ffdd615a23
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libglx-1.7.0-h5d83ef4_2.conda#7235bd01d074c94b44771566411677ad
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libsystemd0-257.4-h6081cc9_1.conda#ab9231557feee350f5de32858c7ba7ca
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libtiff-4.7.0-hd5672b1_3.conda#5e7d8405ff3f86e845710f6df2a1f7e1
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libudev1-257.4-h792074e_1.conda#e5435d6154cbb75d21a25957c9eb3ba4
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libxml2-2.13.6-he91524c_0.conda#247a9c00026f06f9ed5a3643562a8903
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/markupsafe-3.0.2-py312h1d80cea_1.conda#627ff740d9f5e82b51035331aa5f8a0c
https://conda.anaconda.org/t/*****/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/mysql-libs-9.0.1-ha359b31_5.conda#9110f921323d8ee558567ade1f53c067
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/ocl-icd-system-1.0.0-1.tar.bz2#3a6843e0b4c1cd7811115755cc8e29da
https://conda.anaconda.org/t/*****/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda#3bfed7e6228ebf2f7b9eaa47f1b4e2aa
https://conda.anaconda.org/t/*****/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda#5c092057b6badd30f75b06244ecd01c9
https://conda.anaconda.org/t/*****/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda#11a9d1d09a3615fc07c3faf79bc0b943
https://conda.anaconda.org/t/*****/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda#5a5870a74432aa332f7d32180633ad05
https://conda.anaconda.org/t/*****/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda#fd5062942bfa1b0bd5e0d2a4397b099e
https://conda.anaconda.org/t/*****/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda#7d9daffbb8d8e0af0f769dbbcd173a54
https://conda.anaconda.org/t/*****/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda#3bfdfb8dbcdc4af1ae3f9a8eb3948f04
https://conda.anaconda.org/t/*****/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda#12c566707c80111f9799308d9e265aef
https://conda.anaconda.org/t/*****/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda#232fb4577b6687b2d503ef8e254270c9
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyopengl-3.1.7-pyhd8ed1ab_0.conda#6d7d03be8e7f788b444c15262408d063
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyparsing-3.2.1-pyhd8ed1ab_0.conda#285e237b8f351e85e7574a2c7bfa6d46
https://conda.anaconda.org/t/*****/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda#461219d1a5bd61342293efa2c0c90eac
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-tzdata-2025.1-pyhd8ed1ab_0.conda#392c91c42edd569a7ec99ed8648f597a
https://conda.anaconda.org/t/*****/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda#3eeeeb9e4827ace8c0c1419c85d590ad
https://conda.anaconda.org/t/*****/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2#2807a0becd1d986fe1ef9b7f8135f215
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pyyaml-6.0.2-py312h362f93a_2.conda#304c1327e8cffced4292af248c516c44
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/rpds-py-0.23.1-py312hfbfa491_0.conda#a39a688da7b32f14f94d75bc2d9bfa6f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/ruamel.yaml.clib-0.2.8-py312h2984477_1.conda#d25450b42b762a3965d58037415cb2a8
https://conda.anaconda.org/t/*****/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda#9bddfdbf4e061821a1a443f93223be61
https://conda.anaconda.org/t/*****/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda#a451d576819089b0d672f18768be0f65
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-0.8.1-py312hc0892ed_5.conda#4c75e966ebc9eb0c1fcebe288a4f157d
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/spdlog-1.15.1-h323db5a_0.conda#1ac9a720ea19e86e428a6eb38a7d3672
https://conda.anaconda.org/t/*****/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda#b0dd904de08b7db706167240bf37b164
https://conda.anaconda.org/t/*****/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda#ac944244f1fed2eb49bae07193ae8215
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/tornado-6.4.2-py312he7221a8_0.conda#7961fa902d64a46e2f32bbec24385993
https://conda.anaconda.org/t/*****/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda#019a7385be9af33791c989871317e1ed
https://conda.anaconda.org/t/*****/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda#d17f13df8b65464ca316cbc000a3cb64
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/unicodedata2-16.0.0-py312h2984477_0.conda#720fba842175c0e69d748ea6f99c1968
https://conda.anaconda.org/t/*****/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda#b68980f2495d096e71c7fd9d7ccf63e6
https://conda.anaconda.org/t/*****/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda#84f8f77f0a9c6ef401ee96611745da8f
https://conda.anaconda.org/t/*****/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda#75cb7132eb58d97896e173ef12ac9986
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xcb-util-image-0.4.0-had93e6f_2.conda#b67710754a7c76e68c9b680a27bf8314
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xkeyboard-config-2.43-h190368a_0.conda#83a9fb7331dfb29e50abcf254be1c3c9
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxext-1.3.6-h190368a_0.conda#c45695cb705cf0266f4db6d2e547492a
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxfixes-6.0.1-h190368a_0.conda#723cb04a7c5bd8ef5bc62905e990f21b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxrender-0.9.12-h190368a_0.conda#21eee924d0e9cb2121a1855d496c08f7
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/zeromq-4.3.5-ha30388d_7.conda#b00baa2c9668a49e606a2d313cea9a26
https://conda.anaconda.org/t/*****/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda#0c3cc595284c5e8f0f9900a9b228a332
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/atk-1.0-2.38.0-h912a750_2.conda#ad372a89ff07c86223509d1cd6ac6807
https://conda.anaconda.org/t/*****/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/cairo-1.18.4-h22618b1_0.conda#c3af25ea821dae03bb8f1e07f5bc6b32
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/cffi-1.17.1-py312hf7fc64c_0.conda#866041d4834d8aab50b962e6c3145603
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/dbus-1.13.6-h0f95b14_3.tar.bz2#061b5b6712526e334f0fd45ef1379b4b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/fonttools-4.56.0-py312h362f93a_0.conda#9587c44ac09272795b9e02edcfc605c8
https://conda.anaconda.org/t/*****/conda-forge/noarch/fs-2.4.16-pyhd8ed1ab_0.conda#a231fa7cb5f101f1f3ae8480c0002f91
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gdk-pixbuf-2.42.12-h5400e70_0.conda#a3542b31afa5e5a97e9f171163662075
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/glib-tools-2.82.2-h15a6420_1.conda#f68708942480c2f8067376ac1f7ae898
https://conda.anaconda.org/t/*****/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda#7ee49e89531c0dcbba9466f6d115d585
https://conda.anaconda.org/t/*****/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda#b4754fb1bdcb70c8fd54f918301582c6
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/hdf5-1.14.3-nompi_h8e4418e_109.conda#f347760ba5f9953a153c0e45d2726c2e
https://conda.anaconda.org/t/*****/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda#f4b39bf00c69f56ac01e020ebfac066c
https://conda.anaconda.org/t/*****/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda#c85c76dc67d75619a92f51dfbce06992
https://conda.anaconda.org/t/*****/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda#bd80ba060603cc228d9d81c257093119
https://conda.anaconda.org/t/*****/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda#a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9
https://conda.anaconda.org/t/*****/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda#446bd6c8cb26050d528881df495ce646
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/lcms2-2.17-hf838ad8_0.conda#e0d30c8dccfdfbbf152af1e4f6c75fdd
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libarchive-3.7.7-hf326e31_3.conda#8ae4dd02c1c3d7da6524acda3f658970
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libcblas-3.9.0-31_h50184f1_openblas.conda#86b059a0a751cfc9a284de26d382752c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libflac-1.4.3-h46f38da_0.conda#f092dda1b79ea29087fcc25bcad88036
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libgl-1.7.0-h5d83ef4_2.conda#22aaaf746ee01168a0db1377eb6b0e9f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/liblapack-3.9.0-31_h2eee7d0_openblas.conda#13c9d438ff7d335b21342e72efed173b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libliquid1-1.6.0-h9528819_2.conda#059398f0e0bfbf05087c27606f0bceea
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libllvm19-19.1.7-hf9c4d56_1.conda#21a006e1f88dd45fa181487df9c3271e
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libmicrohttpd-1.0.1-h28eaca5_1.conda#f9b16901d7dcb3a7a521734b6168acd2
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libosmodsp0-0.4.0-h9528819_2.conda#c5181de6b5310bd4dd642119baea918a
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libusb-1.0.27-h190368a_101.conda#e20db2fe526389b437694efe6cc9b63c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libxkbcommon-1.8.1-h83c91fb_0.conda#f26e0bcdf300da9f83bb0fefff15c8ff
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libxslt-1.1.39-hfc4afe9_0.conda#368f509c6f981cfd4a02b977f5bde57d
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/m17-cxx-demod-2.3.3-hb5129e9_5.conda#8535faf0e18e2751421dd9c7260f5e4b
https://conda.anaconda.org/t/*****/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda#af6ab708897df59bd6e7283ceab1b56b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/openjpeg-2.5.3-h8f700d7_0.conda#4a1030903cd727a3b61531301309d6c0
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/openldap-2.6.9-haad6373_0.conda#55cdc934c9440c443b0cee0cae86221c
https://conda.anaconda.org/t/*****/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda#d0d408b1f18883a944376da5cf8101ea
https://conda.anaconda.org/t/*****/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda#79b5c1440aedc5010f687048d9103628
https://conda.anaconda.org/t/*****/conda-forge/noarch/prompt-toolkit-3.0.50-pyha770c72_0.conda#7d823138f550b14ecae927a5ff3286de
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyfiglet-0.8.post1-py_0.tar.bz2#e22d3c090f24856764e9d70e76fa3a5f
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda#5ba79d7c71f03c678c8ead841f347d6e
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pyzmq-26.3.0-py312h17e6c7f_0.conda#02673659030e67bbddbd883625210d73
https://conda.anaconda.org/t/*****/conda-forge/noarch/qtpy-2.4.3-pyhd8ed1ab_0.conda#c9ca35b6fb8fa9af418625192c118567
https://conda.anaconda.org/t/*****/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda#9140f1c09dd5489549c6a33931b943c7
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/ruamel.yaml-0.18.10-py312h2984477_0.conda#d476152789ed98c571ae48681aba57c7
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/sip-6.8.6-py312h6abfb79_1.conda#03495d060087c0887ead02b7b3d29865
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-netsdr-0.2.0-he97dc58_1.conda#e30ca6170d02751b7904d6446d945099
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-redpitaya-0.1.1-he97dc58_0.conda#82d3d7983bad9cabbb7df8d1143d612f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-remote-0.5.2-h6f8e04d_2.tar.bz2#0252a97f2e29b625aa4aad21ab0a9d85
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-volk-converters-0.1.1-h3047db8_3.conda#ad151aaaa39f771e75a79d99e080a397
https://conda.anaconda.org/t/*****/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda#b1b505328da7a6b246787df4b5a49fbc
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/watchdog-6.0.0-py312h2344ed7_0.conda#58339b585bd90a6f5c1a3748d32dde44
https://conda.anaconda.org/t/*****/conda-forge/noarch/werkzeug-3.1.3-pyhd8ed1ab_1.conda#0a9b57c159d56b508613cc39022c1b9e
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxcomposite-0.4.6-h190368a_2.conda#c8adb0807ea583b87070720dc32f7df7
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxcursor-1.2.3-h190368a_0.conda#417ec2174dc090dc70ed0e026fc10fe5
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxdamage-1.1.6-h190368a_0.conda#4bcb94e49aee1f57291ebfe490d930ec
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxi-1.8.2-h190368a_0.conda#e8b64b33c72618e69a311f97dac95e68
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxinerama-1.1.5-h2621725_1.conda#07e677819743d2bd5253bbd2b7ecff38
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxrandr-1.5.4-h190368a_0.conda#a36fcb58d1de889dd0d6d1ec6e0c2c3b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxxf86vm-1.1.6-h190368a_0.conda#18ea902b1b9214f3f823a1256b8aeedc
https://conda.anaconda.org/t/*****/conda-forge/noarch/zope.event-5.0-pyhd8ed1ab_1.conda#eed0f4438d9f9cc67314ed2926c3cdd3
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/zope.interface-7.2-py312he7221a8_0.conda#c368ae25331366ccdf435c320db7f044
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/arpack-3.9.1-nompi_h265af79_102.conda#0612b2add6721446da1f54406f542b28
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/cryptography-44.0.2-py312hc1c30b0_0.conda#59e991ba56f9b6a16395c172c4c5a88c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/elfutils-0.192-h6afca9a_1.conda#0016274a23985cb713ae7b06c1512ba9
https://conda.anaconda.org/t/*****/conda-forge/noarch/flask-3.1.0-pyhd8ed1ab_1.conda#2da939620e3a741f61fc1cb136df66fb
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gevent-24.11.1-py312h8abef4d_0.conda#1d36c072f25d53dd289827e634eb0688
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/glfw-3.4-ha17a0cc_0.conda#bae2caaf95145c7fd042205ac4ed51ba
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/glib-2.82.2-hcce6b71_1.conda#72cbb6a364de70073150aee1512ed960
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gsl-2.7-h68b80c3_0.tar.bz2#7213100e35e7b6632626e945514526e1
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/harfbuzz-10.4.0-h68458f9_0.conda#c8143cc15b5cfb706c86fe237c0c03ec
https://conda.anaconda.org/t/*****/conda-forge/noarch/ipython-9.0.2-pyhfb0248b_0.conda#b031bcd65b260a0a3353531eab50d465
https://conda.anaconda.org/t/*****/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda#3b519bc21bc80e60b456f1e62962a766
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libairspy-1.0.10-h190368a_1.conda#c78efb448c70f32856cb2fd8e7deb3b2
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libairspyhf-1.6.8-h190368a_1.conda#61a3cc40df089479447072bb3f3a5048
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libbladerf2-2024.05-h190368a_2.conda#2583dbb60051f9fc3e8942c332f52b5a
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libclang-cpp19.1-19.1.7-default_h9f58072_1.conda#bc2bb4fab06985894f30643f53702488
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libclang13-19.1.7-default_h475b101_1.conda#3d4bb603913deedaed6b0f546f301b51
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libgirepository-1.82.0-hedb574a_0.conda#15e1932c97db749033664f767a8760cf
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libglu-9.0.3-h0a402d4_0.conda#d6c9c67f01fa398f0484190016bd644c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libhackrf0-2024.02.1-h190368a_1.conda#17b0361a7af5c657ae12b71e6faf1499
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libhamlib4-4.6.2-h2621725_2.conda#2479458a0efda1a9c30ea250a78f04fa
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libhidapi-0.14.0-ha17a0cc_0.conda#18e60b09dc39689fbc317f7d6c7d776e
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libiio-c-0.26-hd1a24b3_1.conda#c668bb847d2a58bf0cfde4eff27df15b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/liblimesuite-23.11.0-h2621725_1.conda#13c9fee0ea856a742fffdc698743f77c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libmatio-1.5.28-h711a493_2.conda#1efa1e3ff195afec7ff97ae33dff3bc4
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libmirisdr4-2.0.0-h190368a_1.conda#ca195afb616a89154f7229db9fe34d84
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libpq-17.4-h9610a1c_0.conda#4b3c12fe5469d9637faca627f2659fb6
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libsndfile-1.2.2-hd8dc992_1.conda#30fca5449c87e45004e35b81825fe457
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/lxml-5.3.1-py312hf18cdb2_0.conda#55692893b8852b46cf89e21b672de59a
https://conda.anaconda.org/t/*****/conda-forge/noarch/mako-1.3.9-pyhd8ed1ab_0.conda#422113c902cc5181ccaafbb4b827e492
https://conda.anaconda.org/t/*****/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda#06e9bebf748a0dea03ecbe1f0e27e909
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/numpy-2.2.3-py312h54c08a6_0.conda#b9293c5d113392bdfd7d3bb04e29f930
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pillow-11.1.0-py312h114285f_0.conda#e0818d099f29713725004d37e5bdc2e0
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pycairo-1.27.0-py312h7cb98c4_0.conda#ae4baf5a0f967e5d2d86d720e4fbf4c3
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pynacl-1.5.0-py312h2984477_4.conda#244fe732330a204057649d5fe3aaa5a6
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pyqt5-sip-12.12.2-py312hd38e099_5.conda#b0e19d4eb8d5465fd8b9bde9a8701fb8
https://conda.anaconda.org/t/*****/conda-forge/noarch/qdarkstyle-3.2.3-pyhd8ed1ab_1.conda#b5d204064e9c816535282a94f30a40c9
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/rtl-sdr-2.0.2-h190368a_3.conda#0664e6fd0166c3d119ea720a65e77f2b
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/superlu-5.2.2-ha2bd32a_0.tar.bz2#b78bbd0e2c35c0ee6052c8df9ca53937
https://conda.anaconda.org/t/*****/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_1.conda#2c7536a04d9c21e1dd05bd4a3b1e3a39
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/xorg-libxtst-1.2.5-h190368a_3.conda#bb5eab6a966202b0f088cf348bfcaa46
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/zstandard-0.23.0-py312h2984477_1.conda#8c46a10feac4b67e3db957d3030a6a36
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/airspy-1.0.10-h190368a_1.conda#58835d1587fe7bfb33fd819e423da27e
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/airspyhf-1.6.8-h190368a_1.conda#e4c637f1f0e596b3bec7f4c3991125b8
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/armadillo-14.4.0-ha7b67cb_0.conda#7eac22b667f0a247abccc4f62ed86cbd
https://conda.anaconda.org/t/*****/conda-forge/noarch/asciimatics-1.15.0-pyhd8ed1ab_1.conda#1e4474adec5bda131d146a587dcf5c79
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/at-spi2-core-2.40.3-h633f9df_0.tar.bz2#bb5a1525186dbfdbb6f25d5cd7429375
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/contourpy-1.3.1-py312hc0892ed_0.conda#60b948f18a2d268f2aab63c7d0a356c4
https://conda.anaconda.org/t/*****/conda-forge/noarch/gevent-websocket-0.10.1-py_0.tar.bz2#25b4b60b6ea50368cd90b75b4d00c711
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/glew-2.1.0-h3b9df90_2.tar.bz2#18f36d9c262722dcd94615e5c643ed13
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-pmt-3.10.12.0-py312h092b5c1_1.conda#0414e3bf2795f44d69b551bc6aa26ca6
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gstreamer-1.24.7-hfdb8136_0.conda#2e0471fadae2a224fba6768c64e3bdc1
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/h5py-3.13.0-nompi_py312h61812b2_100.conda#287cbf60c4dd0e5462bcce7248d8a73c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/hackrf-2024.02.1-h9528819_1.conda#0c772ee94c6a855a15625cb9cc83dcb4
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/hamlib-4.6.2-he75fc08_2.conda#5be57c9594967c0fd3b56f4fb8209913
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/hamlib-lua-4.6.2-lua54h190368a_2.conda#0293fbacd400ba614538f33659366121
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/hamlib-perl-4.6.2-pl5321h190368a_2.conda#7d027b4d4e0ddecf89e0214deafa8c7e
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/hamlib-python-4.6.2-py312he7221a8_2.conda#3ae06dade61471038bcd3106b075e997
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/hamlib-tcl-4.6.2-h190368a_2.conda#9c827258ad3fe5efe63e4f5ffc79a83f
https://conda.anaconda.org/t/*****/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda#a3cead9264b331b32fe8f0aabc967522
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libad9361-iio-c-0.3-hb4195d0_1.conda#ef598d5f476b9db60c18f9c7075726ba
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libass-0.17.3-h078e623_1.conda#c6edb7400bc12da999da9f0c300a3118
https://conda.anaconda.org/t/*****/conda-forge/noarch/libbladerf-python-2024.05-py_2.conda#1463dfd317f3603a9593cac153527c6e
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libm2k-0.9.0-py312hfad950e_1.conda#a9106fef76e91d838d4dd39796b01b9e
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/mesalib-25.0.1-hfe8c3a1_0.conda#deaffe7907afdf5379e46cb585793e84
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/mirisdr-2.0.0-h190368a_1.conda#3ae082fd7c020bbcca1f751e61740509
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/numexpr-2.10.2-py312hb6f6b32_0.conda#2e6de7558d1c2b4e5f33cd43e16af88f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pandas-2.2.3-py312h2613dcb_2.conda#cfc74fa1f7493a5566b0dd36fdbb3340
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pango-1.56.2-h032454a_0.conda#8ce2e443967b49c45cd8644bb40a81d9
https://conda.anaconda.org/t/*****/conda-forge/noarch/paramiko-3.5.1-pyhd8ed1ab_0.conda#4e6bea7eee94bb9d8a599385215719f9
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pulseaudio-client-17.0-h5deceda_0.conda#12b051172ec8825db4cc4e03dafb51de
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pygobject-3.50.0-py312h7a1a19a_1.conda#4d21637625651799dbce19f352029b6a
https://conda.anaconda.org/t/*****/conda-forge/noarch/pylibiio-0.26-py_1.conda#3be73c72b1383b1f0e9690333780d6cd
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyqtgraph-0.13.7-pyhd8ed1ab_1.conda#569357b4d0b4565c57698a6e2dade74e
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/scipy-1.15.2-py312h8c5dd32_0.conda#2be08c32e1a1eef3d8cf7e234c8fa7ea
https://conda.anaconda.org/t/*****/conda-forge/noarch/simple-websocket-1.1.0-pyhd8ed1ab_0.conda#62e0b21f75a81735ddc72e6019d27c16
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-airspy-0.2.0-h6f8e04d_0.tar.bz2#6fd4799a26a491406c7e758183188375
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-airspyhf-0.2.0-h6f8e04d_0.tar.bz2#efb4bca0a34b8fefaa4cf1c442334f36
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-bladerf-0.4.1-hf8708ca_0.tar.bz2#06624c403cd42bb35091ba3797874b59
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-fcdpp-0.1.1-h135aeac_0.conda#f4f135b98d3bf12d7fb5900ce13fb975
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-hackrf-0.3.4-h6f8e04d_0.tar.bz2#b42e4a5bf0847722be5037b79fb898b7
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-lms7-23.11.0-ha119c29_1.conda#7641b24b981977801f9c7138ff6da480
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-rtlsdr-0.3.3-h7f3508f_2.conda#0f3bd7025d4c2834cb63d121d06a8fa6
https://conda.anaconda.org/t/*****/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda#32674f8dbfb7b26410ed580dd3c10a29
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/at-spi2-atk-2.38.0-h633f9df_3.tar.bz2#c2eb5fe574eb08b882b42dfae6db5982
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/bladerf-2024.05-h190368a_2.conda#a4339cc2b150ba0ef416e9cc36cfbcca
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/digital_rf-2.6.11-py312h24b6a2b_0.conda#58cb43edd6cd1d375dde73a20fdd1ca8
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gst-plugins-base-1.24.7-h34b8d1a_0.conda#0aaed4d0a1cc640d63f42e793a61f4cb
https://conda.anaconda.org/t/*****/conda-forge/noarch/hamlib-all-4.6.2-linux_2.conda#a321fab609556cb48ddc20f57a43a82e
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/libiio-0.26-h0167b25_1.conda#ffc92cfffebc8ad09552126453b34bb1
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/librsvg-2.58.4-h7296971_2.conda#5819bb90cc6b45d9b7706135829d335c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/librtaudio6-5.2.0-hb51dbe7_3.conda#5f90bf2192fe91d3b7f6bc490efd8fee
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/matplotlib-base-3.10.1-py312h5a52afb_0.conda#27972ebdcaf77f02c56fb510cd40b422
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyadi-iio-0.0.19-pyhd8ed1ab_0.conda#aca3bc166b666f8951a3f8b41f0d05be
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-engineio-4.11.2-pyhff2d567_0.conda#480833a0855e1d1782d8ec3aa9d91db2
https://conda.anaconda.org/t/*****/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda#a9b9368f3701a417eac9edbcae7cb737
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/sdl3-3.2.8-h4722d9d_0.conda#33fcc7e6f0ae611665e4681233a69ac4
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-plutosdr-0.2.2-h19da3d8_1.conda#aa13b616b3ba0122346b4c9f4600c771
https://conda.anaconda.org/t/*****/conda-forge/noarch/adwaita-icon-theme-47.0-unix_0.conda#49436a5c604f99058473d84580f0e341
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gtk3-3.24.43-h757dead_4.conda#cc002a1f008718b218ddc3f481e6d1b6
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/matplotlib-3.10.1-py312h2344ed7_0.conda#f6fa4e48bd68232ae8025cac54d91a44
https://conda.anaconda.org/t/*****/conda-forge/noarch/mplcursors-0.6-pyhd8ed1ab_1.conda#fa7bf31f4427e5582f7373d0ba8498f6
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-socketio-5.12.1-pyhd8ed1ab_0.conda#d3ef77c1cebc66115af8109e893480b2
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/qt-main-5.15.15-hd745ca5_2.conda#8653b19968f001fb0ae87e91b599f1ab
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/sdl2-2.32.50-h2fa4009_1.conda#13377f306e916febbb93bf3e38075788
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-audio-0.1.1-h96c2adf_2.conda#59978e56c5c733827a1bc2f274fef301
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/uhd-4.8.0.0-py312ha2da450_0.conda#9ddc131e2a3b18d38dfb1a06eb793169
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/ffmpeg-7.1.1-gpl_h7c98bcd_101.conda#e45e9bf49bc832d726987ce35a6a2e2c
https://conda.anaconda.org/t/*****/conda-forge/noarch/flask-socketio-5.5.1-pyh29332c3_0.conda#03fb6a9594f156a510118a5b4fe64a02
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/inspectrum-0.3.1-hb0a1fd9_0.conda#941f34874acbf87c0b3163cb7f3979d2
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/pyqt-5.15.9-py312h3902226_5.conda#825128d8754c0f44b6a33f34dfe6e387
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/qwt-6.2.0-he5e8f9e_6.conda#3782534a91daee97ad52357974238e1a
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/sdl-1.2.68-h2fa4009_1.conda#8c77f7cfc5c334f0c8892f177a243961
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/soapysdr-module-uhd-0.4.1-h56adf28_14.conda#ecbef7a378905b08363ae68375d3c3b2
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/wxwidgets-3.2.6-he32a394_3.conda#0c4c64b95763c418af0cad2b848acd9c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/alsa-plugins-1.2.12-h4577cdd_1.conda#c407fbaa1b9dc9aad5156ce8cc55f6b7
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/limesuite-23.11.0-hb7d5b33_1.conda#fc7359f11eb21b71e361ca0ab6546230
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyfda-0.9.2-pyh9208f05_1.conda#a1fdcc4e47c1abb4e0554e2fd02a841c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-core-3.10.12.0-py312h54cdc4e_1.conda#1d0ab8030cb4526f98da5e982ab245c9
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-adsb-0.0.0.20250304.dev%2Bg9645757-unix_py_1.conda#9e67f1f65df571de24cf8b19f06a51fb
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-dect2-0.0.0.20250304.dev%2Bg27a3d6-np20py312h4505ba2_1.conda#b8e2cdb970f504a9cd88e2b9423e558c
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-filerepeater-0.0.0.20250304.dev%2Bgec6b386-np20py312h33f3ff4_2.conda#26296719e44e24d1017a75838fe89f4b
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-foo-0.0.0.20250304.dev%2Bg9e0e2-np20py312hc3e7d76_1.conda#8f5f20e3e7f82b8e06b089ee49f0aca0
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-fosphor-0.0.0.20250304.dev%2Bg85a0b8f-np20py312hd5e0354_1.conda#d6f93163f1261ebd866fec43dbd3505a
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-funcube-3.10.0.rc3-py312h61192de_12.conda#8d87829e9d1a1cca8da2bbfcb239f7c4
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-gpredict-doppler-0.0.0.20250303.dev%2Bg9473cbf-unix_py_1.conda#2a8e3e6791c85a38c88dfc94292dd084
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-grc-3.10.12.0-py312h050baaa_1.conda#8780d9afdd0cda0050896293250e9112
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-hermeslite2-1.0.0.0.post20250305%2Bg2e66561-np20py312h4505ba2_0.conda#41e0d9d351ebb9f5c38cf9a3dfa6ea7d
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-hpsdr-0.0.0.20250304.dev%2Bg7748cc9-np20py312h4505ba2_1.conda#926d068f80408dd39db7e5eadc63d50c
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-iio-3.10.12.0-py312h578d551_1.conda#cdb4264b55fa81e80e59565a8d740c03
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-iqbalance-0.38.2-py312hf51c7de_7.conda#3b681763822ba4e569a3e1f33da95cab
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-iridium-1%211.0.0-py312hb17df1d_16.conda#272444fb57ce5816c6321859846a90c7
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-leo-1.0.0.post20250214%2Bg8f62b92-np20py312he29e660_2.conda#00d5289cf60f16ce3978fd7c4b0a8070
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-lora_sdr-0.0.0.20250305.dev%2Bga8143cb-np20py312hb29d5ec_0.conda#8878b25c25f8614a8ad1a008415d4e1a
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-m2k-1.0.0-py312h4d0ff1b_13.conda#4b4bfb3f64e2a249f4ed73edbdea7b82
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-paint-0.0.0.20250303.dev%2Bgfb4f7b6-np20py312hb29d5ec_2.conda#2f0e6da23357681b941d0b1be67320af
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-qtgui-3.10.12.0-py312h9606ff0_1.conda#111db63a560c63421f247327d30446be
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-radar-0.0.0.20250220.dev%2Bg92adce2-np20py312hb656b40_1.conda#c6f0351034894fe4b049002b48923ed6
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-rds-3.10.post20250305%2Bgc1cba54-np20py312h4505ba2_0.conda#ef44ad07bfdfe17e93a710173d7ac7c1
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-soapy-3.10.12.0-py312h00190c9_1.conda#dc72911d1815c18cee548e068604579f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-uhd-3.10.12.0-py312hbf60d72_1.conda#d53877b2c3586549558b54eaec6dde12
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-video-sdl-3.10.12.0-py312he29b875_1.conda#a0a7abd67c2302146fab0dc0d61e60c5
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-zeromq-3.10.12.0-py312h9c02b6c_1.conda#4b0b8dfc3df50151b70cf8c06e5e1b28
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-3.10.12.0-py312hd23bcef_1.conda#67a9ccc26d55f9a17d27f8e3388aec5a
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-ieee802_11-0.0.0.20250304.dev%2Bg761bdd9-np20py312h5e2e7f3_2.conda#fdae86f57108c89249896b8e9ea88a21
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-ieee802_15_4-3.6.post20250304%2Bg61f4c4a-np20py312hb29d5ec_1.conda#96d00ba76b506962b63134b103beb53d
https://conda.anaconda.org/t/*****/ryanvolz/linux-ppc64le/gnuradio-inspector-0.0.0.20250303.dev%2Bgad6a69e-np20py312hb37a15b_2.conda#30809ba5c58baabcec0f30fabc00451e
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-osmosdr-0.2.6-py312h300cd9a_7.conda#8a966c4c17f2e84f7ec2156c03c2f96f
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnuradio-satellites-5.7.0-py312he19e01c_1.conda#d751dde55118a8cf57edd8f09ca0c1e5
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gnss-sdr-0.0.19-h99d4115_8.conda#20d3313acd6cbb43668a6756812edebb
https://conda.anaconda.org/t/*****/conda-forge/linux-ppc64le/gqrx-2.17.6-py312hec09a99_1.conda#81506bf3761de956a64f87e356d1f0d2

View File

@ -2,69 +2,71 @@ channels:
- conda-forge
- ryanvolz
dependencies:
- airspy=1.0.10=h4e0d66e_0
- airspyhf=1.6.8=h4e0d66e_0
- alsa-plugins=1.2.7.1=h7ff4fc0_10
- bladerf=2023.02=h4194056_0
- codec2=1.0.3=h4e0d66e_0
- digital_rf=2.6.9=py310h06741d1_0
- ephem=4.1.5=py310h05217ba_1
- gnss-sdr=0.0.18=h70ae29d_19
- gnuradio-adsb=0.0.0.20240508.dev+gafd7fabda=unix_pyha6c0e43_0
- gnuradio-dect2=0.0.0.20240502.dev+gb296af2a9=py310h0a1caa6_0
- gnuradio-filerepeater=0.0.0.20240502.dev+gd7bb8846c=py310hb11fc2d_0
- gnuradio-foo=0.0.0.20240502.dev+gc53538a22=py310hc95069f_0
- gnuradio-fosphor=0.0.0.20240502.dev+g656fe2f=py310hef9c1d6_0
- gnuradio-gpredict-doppler=0.0.0.20240508.dev+gb06bc7678=unix_pyha1ad6f9_0
- gnuradio-hermeslite2=v1.0.0.0.post17+8b17ad3=py310h0a1caa6_0
- gnuradio-hpsdr=0.0.0.20240507.dev+g958e157=py310h7639744_0
- gnuradio-ieee802_11=0.0.0.20240507.dev+g8c058d4e0=py310hb16563b_0
- gnuradio-ieee802_15_4=3.6.post133+g932c76f=py310hac62da3_0
- gnuradio-inspector=0.0.0.20240525.dev+g55acca6=py310haac8fb5_0
- gnuradio-iqbalance=0.38.2=py310h6b176c7_3
- gnuradio-iridium=1!1.0.0=py310h8a2dc07_11
- gnuradio-leo=1.0.0.post105+12a346f=py310h5a5c018_0
- gnuradio-lora_sdr=0.0.0.20240508.dev+g751a65269=py310h5a5c018_0
- gnuradio-m2k=1.0.0=py310habb924e_9
- gnuradio-osmosdr=0.2.4=py310h9f1c927_16
- gnuradio-paint=0.0.0.20240508.dev+g82696a2=py310h5a5c018_0
- gnuradio-radar=0.0.0.20240525.dev+gc59350d=py310h83e1f57_0
- gnuradio-rds=3.10.post22+g2134008=py310h99c2f21_0
- gnuradio-satellites=5.5.0=py310h184d61e_2
- gnuradio=3.10.10.0=py310h84b923e_6
- gqrx=2.17.5=py310h7626089_4
- hackrf=2024.02.1=h8a05459_0
- hamlib-all=4.5.5=linux_3
- airspy=1.0.10=h190368a_1
- airspyhf=1.6.8=h190368a_1
- alsa-plugins=1.2.12=h4577cdd_1
- bladerf=2024.05=h190368a_2
- codec2=1.2.0=h190368a_3
- digital_rf=2.6.11=py312h24b6a2b_0
- ephem=4.2=py312h2984477_0
- gnss-sdr=0.0.19=h99d4115_8
- gnuradio-adsb=0.0.0.20250304.dev+g9645757=unix_py_1
- gnuradio-dect2=0.0.0.20250304.dev+g27a3d6=np20py312h4505ba2_1
- gnuradio-filerepeater=0.0.0.20250304.dev+gec6b386=np20py312h33f3ff4_2
- gnuradio-foo=0.0.0.20250304.dev+g9e0e2=np20py312hc3e7d76_1
- gnuradio-fosphor=0.0.0.20250304.dev+g85a0b8f=np20py312hd5e0354_1
- gnuradio-funcube=3.10.0.rc3=py312h61192de_12
- gnuradio-gpredict-doppler=0.0.0.20250303.dev+g9473cbf=unix_py_1
- gnuradio-hermeslite2=1.0.0.0.post20250305+g2e66561=np20py312h4505ba2_0
- gnuradio-hpsdr=0.0.0.20250304.dev+g7748cc9=np20py312h4505ba2_1
- gnuradio-ieee802_11=0.0.0.20250304.dev+g761bdd9=np20py312h5e2e7f3_2
- gnuradio-ieee802_15_4=3.6.post20250304+g61f4c4a=np20py312hb29d5ec_1
- gnuradio-inspector=0.0.0.20250303.dev+gad6a69e=np20py312hb37a15b_2
- gnuradio-iqbalance=0.38.2=py312hf51c7de_7
- gnuradio-iridium=1!1.0.0=py312hb17df1d_16
- gnuradio-leo=1.0.0.post20250214+g8f62b92=np20py312he29e660_2
- gnuradio-lora_sdr=0.0.0.20250305.dev+ga8143cb=np20py312hb29d5ec_0
- gnuradio-m2k=1.0.0=py312h4d0ff1b_13
- gnuradio-osmosdr=0.2.6=py312h300cd9a_7
- gnuradio-paint=0.0.0.20250303.dev+gfb4f7b6=np20py312hb29d5ec_2
- gnuradio-radar=0.0.0.20250220.dev+g92adce2=np20py312hb656b40_1
- gnuradio-rds=3.10.post20250305+gc1cba54=np20py312h4505ba2_0
- gnuradio-satellites=5.7.0=py312he19e01c_1
- gnuradio=3.10.12.0=py312hd23bcef_1
- gqrx=2.17.6=py312hec09a99_1
- hackrf=2024.02.1=h9528819_1
- hamlib-all=4.6.2=linux_2
- inspectrum=0.3.1=hb0a1fd9_0
- ipython=8.24.0=pyh707e725_0
- libiio=0.25=ha3edaa6_1
- libm2k=0.8.0=py310haa0b388_0
- limesuite=23.11.0=h4aef300_0
- m17-cxx-demod=2.3.3=hdaf65b7_3
- matplotlib=3.8.4=py310hd032262_2
- mirisdr=2.0.0=ha17a0cc_0
- numpy=1.26.4=py310h877c07d_0
- pandas=2.2.2=py310hb4565e0_1
- pyadi-iio=0.0.16=pyhd8ed1ab_0
- pyfda=0.8.4=pyh9208f05_0
- python=3.10.14=h4005451_0_cpython
- rtl-sdr=2.0.1=ha17a0cc_0
- scipy=1.13.1=py310h784e85a_0
- ipython=9.0.2=pyhfb0248b_0
- libiio=0.26=h0167b25_1
- libm2k=0.9.0=py312hfad950e_1
- limesuite=23.11.0=hb7d5b33_1
- m17-cxx-demod=2.3.3=hb5129e9_5
- matplotlib=3.10.1=py312h2344ed7_0
- mirisdr=2.0.0=h190368a_1
- numpy=2.2.3=py312h54c08a6_0
- pandas=2.2.3=py312h2613dcb_2
- pyadi-iio=0.0.19=pyhd8ed1ab_0
- pyfda=0.9.2=pyh9208f05_1
- python=3.12.9=he016669_1_cpython
- rtl-sdr=2.0.2=h190368a_3
- scipy=1.15.2=py312h8c5dd32_0
- soapysdr-module-airspy=0.2.0=h6f8e04d_0
- soapysdr-module-airspyhf=0.2.0=h6f8e04d_0
- soapysdr-module-audio=0.1.1=h7f3508f_1
- soapysdr-module-audio=0.1.1=h96c2adf_2
- soapysdr-module-bladerf=0.4.1=hf8708ca_0
- soapysdr-module-fcdpp=0.1.1=h135aeac_0
- soapysdr-module-hackrf=0.3.4=h6f8e04d_0
- soapysdr-module-lms7=23.11.0=h45eccfa_0
- soapysdr-module-lms7=23.11.0=ha119c29_1
- soapysdr-module-netsdr=0.2.0=he97dc58_1
- soapysdr-module-plutosdr=0.2.2=ha6f28a8_0
- soapysdr-module-plutosdr=0.2.2=h19da3d8_1
- soapysdr-module-redpitaya=0.1.1=he97dc58_0
- soapysdr-module-remote=0.5.2=h6f8e04d_2
- soapysdr-module-rtlsdr=0.3.3=h7f3508f_2
- soapysdr-module-uhd=0.4.1=ha5dbe34_10
- soapysdr-module-volk-converters=0.1.1=h9fb0fc0_2
- soapysdr=0.8.1=py310hd9ef7bd_4
- uhd=4.6.0.0=py310hcd7457b_0
- soapysdr-module-uhd=0.4.1=h56adf28_14
- soapysdr-module-volk-converters=0.1.1=h3047db8_3
- soapysdr=0.8.1=py312hc0892ed_5
- uhd=4.8.0.0=py312ha2da450_0
name: radioconda
platform: linux-ppc64le
version: 2024.05.29
version: 2025.03.14

View File

@ -15,459 +15,475 @@ register_python_default: false
specs:
- _libgcc_mutex=0.1=conda_forge
- _openmp_mutex=4.5=2_gnu
- adwaita-icon-theme=46.0=unix_0
- airspy=1.0.10=h4e0d66e_0
- airspyhf=1.6.8=h4e0d66e_0
- alsa-lib=1.2.11=ha17a0cc_1
- alsa-plugins=1.2.7.1=h7ff4fc0_10
- aom=3.9.0=hd444e8b_0
- appdirs=1.4.4=pyh9f0ad1d_0
- archspec=0.2.3=pyhd8ed1ab_0
- armadillo=12.8.3=h3c4028a_0
- arpack=3.8.0=nompi_hce8f551_101
- asciimatics=1.15.0=pyhd8ed1ab_0
- asttokens=2.4.1=pyhd8ed1ab_0
- adwaita-icon-theme=47.0=unix_0
- airspy=1.0.10=h190368a_1
- airspyhf=1.6.8=h190368a_1
- alsa-lib=1.2.13=h190368a_0
- alsa-plugins=1.2.12=h4577cdd_1
- aom=3.9.1=hd444e8b_0
- appdirs=1.4.4=pyhd8ed1ab_1
- archspec=0.2.5=pyhd8ed1ab_0
- armadillo=14.4.0=ha7b67cb_0
- arpack=3.9.1=nompi_h265af79_102
- asciimatics=1.15.0=pyhd8ed1ab_1
- asttokens=3.0.0=pyhd8ed1ab_1
- at-spi2-atk=2.38.0=h633f9df_3
- at-spi2-core=2.40.3=h633f9df_0
- atk-1.0=2.38.0=h912a750_2
- attr=2.5.1=hb283c62_1
- attrs=23.2.0=pyh71513ae_0
- bcrypt=4.1.3=py310hab1e3b8_0
- bidict=0.23.1=pyhd8ed1ab_0
- bladerf=2023.02=h4194056_0
- blinker=1.8.2=pyhd8ed1ab_0
- boltons=24.0.0=pyhd8ed1ab_0
- brotli-bin=1.1.0=ha17a0cc_1
- brotli-python=1.1.0=py310h9de49d8_1
- brotli=1.1.0=ha17a0cc_1
- bzip2=1.0.8=ha17a0cc_5
- c-ares=1.28.1=ha17a0cc_0
- ca-certificates=2024.2.2=h0f6029e_0
- attrs=25.3.0=pyh71513ae_0
- bcrypt=4.3.0=py312h458b663_0
- bidict=0.23.1=pyhd8ed1ab_1
- bladerf=2024.05=h190368a_2
- blinker=1.9.0=pyhff2d567_0
- boltons=24.0.0=pyhd8ed1ab_1
- brotli-bin=1.1.0=h190368a_2
- brotli-python=1.1.0=py312h239da9a_2
- brotli=1.1.0=h190368a_2
- bzip2=1.0.8=h1f2b957_7
- c-ares=1.34.4=h190368a_0
- ca-certificates=2025.1.31=h0f6029e_0
- cached-property=1.5.2=hd8ed1ab_1
- cached_property=1.5.2=pyha770c72_1
- cairo=1.18.0=h5505270_0
- certifi=2024.2.2=pyhd8ed1ab_0
- cffi=1.16.0=py310he93fcb1_0
- charset-normalizer=3.3.2=pyhd8ed1ab_0
- click-plugins=1.1.1=py_0
- click=8.1.7=unix_pyh707e725_0
- codec2=1.0.3=h4e0d66e_0
- colorama=0.4.6=pyhd8ed1ab_0
- conda-libmamba-solver=24.1.0=pyhd8ed1ab_0
- conda-package-handling=2.2.0=pyh38be061_0
- conda-package-streaming=0.9.0=pyhd8ed1ab_0
- conda=24.5.0=py310h194a6c8_0
- cairo=1.18.4=h22618b1_0
- certifi=2025.1.31=pyhd8ed1ab_0
- cffi=1.17.1=py312hf7fc64c_0
- charset-normalizer=3.4.1=pyhd8ed1ab_0
- click=8.1.8=pyh707e725_0
- codec2=1.2.0=h190368a_3
- colorama=0.4.6=pyhd8ed1ab_1
- conda-libmamba-solver=24.9.0=pyhd8ed1ab_0
- conda-package-handling=2.4.0=pyh7900ff3_2
- conda-package-streaming=0.11.0=pyhd8ed1ab_1
- conda=24.11.3=py312h7864ebf_0
- construct=2.10.70=pyhd8ed1ab_0
- contourpy=1.2.1=py310hd9ef7bd_0
- cryptography=42.0.7=py310h96c89fd_0
- cycler=0.12.1=pyhd8ed1ab_0
- contourpy=1.3.1=py312hc0892ed_0
- cryptography=44.0.2=py312hc1c30b0_0
- cycler=0.12.1=pyhd8ed1ab_1
- cyrus-sasl=2.1.27=h573e04c_7
- dav1d=1.2.1=ha17a0cc_0
- dbus=1.13.6=h0f95b14_3
- decorator=5.1.1=pyhd8ed1ab_0
- digital_rf=2.6.9=py310h06741d1_0
- distro=1.9.0=pyhd8ed1ab_0
- docutils=0.21.2=pyhd8ed1ab_0
- ephem=4.1.5=py310h05217ba_1
- decorator=5.2.1=pyhd8ed1ab_0
- digital_rf=2.6.11=py312h24b6a2b_0
- distro=1.9.0=pyhd8ed1ab_1
- docutils=0.21.2=pyhd8ed1ab_1
- elfutils=0.192=h6afca9a_1
- ephem=4.2=py312h2984477_0
- epoxy=1.5.10=hb283c62_1
- exceptiongroup=1.2.0=pyhd8ed1ab_2
- executing=2.0.1=pyhd8ed1ab_0
- expat=2.6.2=h46f38da_0
- ffmpeg=6.1.1=gpl_h261c9dc_112
- fftw=3.3.10=nompi_h11bfeb0_108
- flask-socketio=5.3.6=pyhd8ed1ab_0
- flask=3.0.3=pyhd8ed1ab_0
- fmt=10.2.1=h9bb5675_0
- exceptiongroup=1.2.2=pyhd8ed1ab_1
- executing=2.1.0=pyhd8ed1ab_1
- expat=2.6.4=h2621725_0
- ffmpeg=7.1.1=gpl_h7c98bcd_101
- fftw=3.3.10=nompi_h9745dfa_110
- flask-socketio=5.5.1=pyh29332c3_0
- flask=3.1.0=pyhd8ed1ab_1
- fmt=11.0.1=h7c29e54_0
- font-ttf-dejavu-sans-mono=2.37=hab24e00_0
- font-ttf-inconsolata=3.000=h77eed37_0
- font-ttf-source-code-pro=2.038=h77eed37_0
- font-ttf-ubuntu=0.83=h77eed37_2
- fontconfig=2.14.2=h9146662_0
- font-ttf-ubuntu=0.83=h77eed37_3
- fontconfig=2.15.0=hb048c60_1
- fonts-conda-ecosystem=1=0
- fonts-conda-forge=1=0
- fonttools=4.52.4=py310h0abd119_0
- freetype=2.12.1=h5baba08_2
- fonttools=4.56.0=py312h362f93a_0
- freetype=2.13.3=h160a492_0
- fribidi=1.0.10=h339bb43_0
- frozendict=2.4.4=py310h0abd119_0
- frozendict=2.4.6=py312h2984477_0
- fs=2.4.16=pyhd8ed1ab_0
- future=1.0.0=pyhd8ed1ab_0
- future=1.0.0=pyhd8ed1ab_2
- gdk-pixbuf=2.42.12=h5400e70_0
- gettext-tools=0.22.5=h46f38da_2
- gettext=0.22.5=h46f38da_2
- gettext-tools=0.23.1=h2621725_0
- gettext=0.23.1=h2621725_0
- gevent-websocket=0.10.1=py_0
- gevent=23.9.0.post1=py310h6eebefb_1
- gflags=2.2.2=hea85c5d_1004
- gevent=24.11.1=py312h8abef4d_0
- gflags=2.2.2=h2621725_1005
- glew=2.1.0=h3b9df90_2
- glfw=3.4=ha17a0cc_0
- glib-tools=2.80.2=hcc44a18_0
- glib=2.80.2=h52f4d3e_0
- glog=0.6.0=hbe088e0_0
- glib-tools=2.82.2=h15a6420_1
- glib=2.82.2=hcce6b71_1
- glog=0.7.1=hca4f505_0
- gmp=6.3.0=h46f38da_0
- gnss-sdr=0.0.18=h70ae29d_19
- gnuradio-adsb=0.0.0.20240508.dev+gafd7fabda=unix_pyha6c0e43_0
- gnuradio-core=3.10.10.0=py310hee0668f_6
- gnuradio-dect2=0.0.0.20240502.dev+gb296af2a9=py310h0a1caa6_0
- gnuradio-filerepeater=0.0.0.20240502.dev+gd7bb8846c=py310hb11fc2d_0
- gnuradio-foo=0.0.0.20240502.dev+gc53538a22=py310hc95069f_0
- gnuradio-fosphor=0.0.0.20240502.dev+g656fe2f=py310hef9c1d6_0
- gnuradio-funcube=3.10.0.rc3=py310hac15007_4
- gnuradio-gpredict-doppler=0.0.0.20240508.dev+gb06bc7678=unix_pyha1ad6f9_0
- gnuradio-grc=3.10.10.0=py310h3a01513_6
- gnuradio-hermeslite2=v1.0.0.0.post17+8b17ad3=py310h0a1caa6_0
- gnuradio-hpsdr=0.0.0.20240507.dev+g958e157=py310h7639744_0
- gnuradio-ieee802_11=0.0.0.20240507.dev+g8c058d4e0=py310hb16563b_0
- gnuradio-ieee802_15_4=3.6.post133+g932c76f=py310hac62da3_0
- gnuradio-iio=3.10.10.0=py310h9701f90_6
- gnuradio-inspector=0.0.0.20240525.dev+g55acca6=py310haac8fb5_0
- gnuradio-iqbalance=0.38.2=py310h6b176c7_3
- gnuradio-iridium=1!1.0.0=py310h8a2dc07_11
- gnuradio-leo-data=1.0.0.post105+12a346f=unix_0
- gnuradio-leo=1.0.0.post105+12a346f=py310h5a5c018_0
- gnuradio-lora_sdr=0.0.0.20240508.dev+g751a65269=py310h5a5c018_0
- gnuradio-m2k=1.0.0=py310habb924e_9
- gnuradio-osmosdr=0.2.4=py310h9f1c927_16
- gnuradio-paint=0.0.0.20240508.dev+g82696a2=py310h5a5c018_0
- gnuradio-pmt=3.10.10.0=py310h6ac5daa_6
- gnuradio-qtgui=3.10.10.0=py310h4dc918b_6
- gnuradio-radar=0.0.0.20240525.dev+gc59350d=py310h83e1f57_0
- gnuradio-rds=3.10.post22+g2134008=py310h99c2f21_0
- gnuradio-satellites=5.5.0=py310h184d61e_2
- gnuradio-soapy=3.10.10.0=py310h5d186a4_6
- gnuradio-uhd=3.10.10.0=py310hcfea35a_6
- gnuradio-video-sdl=3.10.10.0=py310hfe0685c_6
- gnuradio-zeromq=3.10.10.0=py310hd18bfb5_6
- gnuradio=3.10.10.0=py310h84b923e_6
- gnutls=3.7.9=h899f6a7_0
- gqrx=2.17.5=py310h7626089_4
- gnss-sdr=0.0.19=h99d4115_8
- gnuradio-adsb=0.0.0.20250304.dev+g9645757=unix_py_1
- gnuradio-core=3.10.12.0=py312h54cdc4e_1
- gnuradio-dect2=0.0.0.20250304.dev+g27a3d6=np20py312h4505ba2_1
- gnuradio-filerepeater=0.0.0.20250304.dev+gec6b386=np20py312h33f3ff4_2
- gnuradio-foo=0.0.0.20250304.dev+g9e0e2=np20py312hc3e7d76_1
- gnuradio-fosphor=0.0.0.20250304.dev+g85a0b8f=np20py312hd5e0354_1
- gnuradio-funcube=3.10.0.rc3=py312h61192de_12
- gnuradio-gpredict-doppler=0.0.0.20250303.dev+g9473cbf=unix_py_1
- gnuradio-grc=3.10.12.0=py312h050baaa_1
- gnuradio-hermeslite2=1.0.0.0.post20250305+g2e66561=np20py312h4505ba2_0
- gnuradio-hpsdr=0.0.0.20250304.dev+g7748cc9=np20py312h4505ba2_1
- gnuradio-ieee802_11=0.0.0.20250304.dev+g761bdd9=np20py312h5e2e7f3_2
- gnuradio-ieee802_15_4=3.6.post20250304+g61f4c4a=np20py312hb29d5ec_1
- gnuradio-iio=3.10.12.0=py312h578d551_1
- gnuradio-inspector=0.0.0.20250303.dev+gad6a69e=np20py312hb37a15b_2
- gnuradio-iqbalance=0.38.2=py312hf51c7de_7
- gnuradio-iridium=1!1.0.0=py312hb17df1d_16
- gnuradio-leo-data=1.0.0.post20250214+g8f62b92=unix_2
- gnuradio-leo=1.0.0.post20250214+g8f62b92=np20py312he29e660_2
- gnuradio-lora_sdr=0.0.0.20250305.dev+ga8143cb=np20py312hb29d5ec_0
- gnuradio-m2k=1.0.0=py312h4d0ff1b_13
- gnuradio-osmosdr=0.2.6=py312h300cd9a_7
- gnuradio-paint=0.0.0.20250303.dev+gfb4f7b6=np20py312hb29d5ec_2
- gnuradio-pmt=3.10.12.0=py312h092b5c1_1
- gnuradio-qtgui=3.10.12.0=py312h9606ff0_1
- gnuradio-radar=0.0.0.20250220.dev+g92adce2=np20py312hb656b40_1
- gnuradio-rds=3.10.post20250305+gc1cba54=np20py312h4505ba2_0
- gnuradio-satellites=5.7.0=py312he19e01c_1
- gnuradio-soapy=3.10.12.0=py312h00190c9_1
- gnuradio-uhd=3.10.12.0=py312hbf60d72_1
- gnuradio-video-sdl=3.10.12.0=py312he29b875_1
- gnuradio-zeromq=3.10.12.0=py312h9c02b6c_1
- gnuradio=3.10.12.0=py312hd23bcef_1
- gnutls=3.8.9=h5911fd5_0
- gqrx=2.17.6=py312hec09a99_1
- graphite2=1.3.13=h46f38da_1003
- greenlet=3.0.3=py310h9de49d8_0
- greenlet=3.1.1=py312h239da9a_1
- gsl=2.7=h68b80c3_0
- gst-plugins-base=1.24.3=h5bf6f77_0
- gstreamer-orc=0.4.38=ha17a0cc_0
- gstreamer=1.24.3=hf41501a_0
- gtest=1.14.0=h9bb5675_1
- gtk3=3.24.42=h9b9bf04_0
- h11=0.14.0=pyhd8ed1ab_0
- h5py=3.11.0=nompi_py310h386d253_101
- hackrf=2024.02.1=h8a05459_0
- hamlib-all=4.5.5=linux_3
- hamlib-lua=4.5.5=lua54ha17a0cc_3
- hamlib-perl=4.5.5=pl5321ha17a0cc_3
- hamlib-python=4.5.5=py310h6ed3b71_3
- hamlib-tcl=4.5.5=hd4bbf49_3
- hamlib=4.5.5=he154790_3
- harfbuzz=8.5.0=h45bfc96_0
- hdf5=1.14.3=nompi_h259430e_102
- gst-plugins-base=1.24.7=h34b8d1a_0
- gstreamer-orc=0.4.41=hd2bc7bf_0
- gstreamer=1.24.7=hfdb8136_0
- gtest=1.15.0=h7c29e54_0
- gtk3=3.24.43=h757dead_4
- h11=0.14.0=pyhd8ed1ab_1
- h2=4.2.0=pyhd8ed1ab_0
- h5py=3.13.0=nompi_py312h61812b2_100
- hackrf=2024.02.1=h9528819_1
- hamlib-all=4.6.2=linux_2
- hamlib-lua=4.6.2=lua54h190368a_2
- hamlib-perl=4.6.2=pl5321h190368a_2
- hamlib-python=4.6.2=py312he7221a8_2
- hamlib-tcl=4.6.2=h190368a_2
- hamlib=4.6.2=he75fc08_2
- harfbuzz=10.4.0=h68458f9_0
- hdf5=1.14.3=nompi_h8e4418e_109
- hicolor-icon-theme=0.17=ha3edaa6_2
- icu=73.2=h3b4ca64_0
- idna=3.7=pyhd8ed1ab_0
- importlib-metadata=7.1.0=pyha770c72_0
- importlib_resources=6.4.0=pyhd8ed1ab_0
- hpack=4.1.0=pyhd8ed1ab_0
- hyperframe=6.1.0=pyhd8ed1ab_0
- icu=75.1=h5867af4_0
- idna=3.10=pyhd8ed1ab_1
- importlib-metadata=8.6.1=pyha770c72_0
- importlib_resources=6.5.2=pyhd8ed1ab_0
- inspectrum=0.3.1=hb0a1fd9_0
- ipython=8.24.0=pyh707e725_0
- itsdangerous=2.2.0=pyhd8ed1ab_0
- ipython=9.0.2=pyhfb0248b_0
- ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0
- itsdangerous=2.2.0=pyhd8ed1ab_1
- jack=1.9.22=hde2c0c8_2
- jedi=0.19.1=pyhd8ed1ab_0
- jinja2=3.1.4=pyhd8ed1ab_0
- jsonpatch=1.33=pyhd8ed1ab_0
- jsonpointer=2.4=py310h194a6c8_3
- jsonschema-specifications=2023.12.1=pyhd8ed1ab_0
- jsonschema=4.22.0=pyhd8ed1ab_0
- jedi=0.19.2=pyhd8ed1ab_1
- jinja2=3.1.6=pyhd8ed1ab_0
- jsonpatch=1.33=pyhd8ed1ab_1
- jsonpointer=3.0.0=py312h7864ebf_1
- jsonschema-specifications=2024.10.1=pyhd8ed1ab_1
- jsonschema=4.23.0=pyhd8ed1ab_1
- keyutils=1.6.1=hb283c62_0
- kiwisolver=1.4.5=py310h3cb7a77_1
- krb5=1.21.2=hee07e50_0
- kiwisolver=1.4.8=py312hb22304a_0
- krb5=1.21.3=h7eda64f_0
- lame=3.100=hb283c62_1003
- lcms2=2.16=ha74cc02_0
- ld_impl_linux-ppc64le=2.40=h60d6e0b_1
- lcms2=2.17=hf838ad8_0
- ld_impl_linux-ppc64le=2.43=h5c2c55b_4
- lerc=4.0.0=hbbae597_0
- libabseil=20240116.2=cxx17_h46f38da_0
- libad9361-iio=0.2=he558529_3
- libabseil=20240722.0=cxx17_hf9f062a_4
- libad9361-iio-c=0.3=hb4195d0_1
- libaec=1.1.3=h46f38da_0
- libaio=0.3.113=hb283c62_0
- libairspy=1.0.10=h4e0d66e_0
- libairspyhf=1.6.8=h4e0d66e_0
- libarchive=3.7.4=h7d7d30f_0
- libasprintf-devel=0.22.5=h60d0bc5_2
- libasprintf=0.22.5=h60d0bc5_2
- libass=0.17.1=h586b5ed_1
- libbladerf-python=2023.02=py_0
- libbladerf2=2023.02=h4194056_0
- libblas=3.9.0=22_linuxppc64le_openblas
- libboost=1.82.0=hfdd0173_6
- libbrotlicommon=1.1.0=ha17a0cc_1
- libbrotlidec=1.1.0=ha17a0cc_1
- libbrotlienc=1.1.0=ha17a0cc_1
- libcap=2.69=h0177c75_0
- libcblas=3.9.0=22_linuxppc64le_openblas
- libclang-cpp15=15.0.7=default_hf6035ce_5
- libclang13=18.1.6=default_h4cae82b_0
- libcodec2=1.0.3=h4e0d66e_0
- libairspy=1.0.10=h190368a_1
- libairspyhf=1.6.8=h190368a_1
- libarchive=3.7.7=hf326e31_3
- libasprintf-devel=0.23.1=h921c762_0
- libasprintf=0.23.1=h921c762_0
- libass=0.17.3=h078e623_1
- libbladerf-python=2024.05=py_2
- libbladerf2=2024.05=h190368a_2
- libblas=3.9.0=31_h1afb123_openblas
- libboost=1.86.0=h9317212_3
- libbrotlicommon=1.1.0=h190368a_2
- libbrotlidec=1.1.0=h190368a_2
- libbrotlienc=1.1.0=h190368a_2
- libcap=2.75=hcf8ba42_0
- libcblas=3.9.0=31_h50184f1_openblas
- libclang-cpp19.1=19.1.7=default_h9f58072_1
- libclang13=19.1.7=default_h475b101_1
- libcodec2=1.2.0=h190368a_3
- libcorrect=0.0.0=h4194056_0
- libcups=2.3.3=hdb7e4ed_4
- libcurl=8.8.0=ha571e8f_0
- libcurl=8.12.1=h9fbccba_0
- libdb=6.2.32=h3b9df90_0
- libdeflate=1.20=ha17a0cc_0
- libedit=3.1.20191231=h41a240f_2
- libdeflate=1.23=hc4b29fe_0
- libdrm=2.4.124=h190368a_0
- libedit=3.1.20250104=pl5321h9a3a893_0
- libegl=1.7.0=h5d83ef4_2
- libev=4.33=ha17a0cc_2
- libevent=2.1.12=h3507d20_1
- libexpat=2.6.2=h46f38da_0
- libffi=3.4.2=h4e0d66e_5
- libexpat=2.6.4=h2621725_0
- libffi=3.4.6=hb694610_0
- libflac=1.4.3=h46f38da_0
- libgcc-ng=13.2.0=h31e42bb_7
- libgcrypt=1.10.3=ha17a0cc_0
- libgettextpo-devel=0.22.5=h46f38da_2
- libgettextpo=0.22.5=h46f38da_2
- libgfortran-ng=13.2.0=hfdc3801_7
- libgfortran5=13.2.0=he7a7393_7
- libgirepository=1.80.1=h5b12326_0
- libglib=2.80.2=h52f4d3e_0
- libglu=9.0.0=h5eda786_1003
- libgomp=13.2.0=h31e42bb_7
- libgpg-error=1.49=hde5305c_0
- libhackrf0=2024.02.1=ha17a0cc_0
- libhamlib4=4.5.5=h46f38da_3
- libgcc-ng=14.2.0=hfdc3801_2
- libgcc=14.2.0=h0d7acf9_2
- libgcrypt-lib=1.11.0=h190368a_2
- libgettextpo-devel=0.23.1=h2621725_0
- libgettextpo=0.23.1=h2621725_0
- libgfortran-ng=14.2.0=hfdc3801_2
- libgfortran5=14.2.0=hd761307_2
- libgfortran=14.2.0=hfdc3801_2
- libgirepository=1.82.0=hedb574a_0
- libgl=1.7.0=h5d83ef4_2
- libglib=2.82.2=h3d6172d_1
- libglu=9.0.3=h0a402d4_0
- libglvnd=1.7.0=h5d83ef4_2
- libglx=1.7.0=h5d83ef4_2
- libgomp=14.2.0=h0d7acf9_2
- libgpg-error=1.51=hb1c7e87_1
- libhackrf0=2024.02.1=h190368a_1
- libhamlib4=4.6.2=h2621725_2
- libhidapi=0.14.0=ha17a0cc_0
- libiconv=1.17=ha17a0cc_2
- libidn2=2.3.7=ha17a0cc_0
- libiio-c=0.25=heded604_1
- libiio=0.25=ha3edaa6_1
- libiconv=1.18=hd7acdf4_1
- libidn2=2.3.8=ha537cf0_0
- libiio-c=0.26=hd1a24b3_1
- libiio=0.26=h0167b25_1
- libjpeg-turbo=3.0.0=ha17a0cc_1
- liblapack=3.9.0=22_linuxppc64le_openblas
- liblimesuite=23.11.0=h46f38da_0
- libliquid1=1.6.0=h8a05459_1
- libllvm15=15.0.7=h150ca27_4
- libllvm18=18.1.6=hf84df12_0
- libm2k=0.8.0=py310haa0b388_0
- libmamba=1.5.8=h5f46139_0
- libmambapy=1.5.8=py310hacae26e_0
- libmatio=1.5.26=h125b1b5_0
- libmirisdr4=2.0.0=ha17a0cc_0
- libnghttp2=1.58.0=hc4d0b0b_1
- liblapack=3.9.0=31_h2eee7d0_openblas
- liblimesuite=23.11.0=h2621725_1
- libliquid1=1.6.0=h9528819_2
- libllvm19=19.1.7=hf9c4d56_1
- liblzma=5.6.4=h190368a_0
- libm2k=0.9.0=py312hfad950e_1
- libmamba=1.5.12=h205e608_0
- libmambapy=1.5.12=py312h2423e01_0
- libmatio=1.5.28=h711a493_2
- libmicrohttpd=1.0.1=h28eaca5_1
- libmirisdr4=2.0.0=h190368a_1
- libnghttp2=1.64.0=hac8f85b_0
- libnsl=2.0.1=ha17a0cc_0
- libogg=1.3.4=h4e0d66e_1
- libopenblas=0.3.27=pthreads_h3f0fafc_0
- libntlm=1.8=h190368a_0
- libogg=1.3.5=h1f2b957_0
- libopenblas=0.3.29=pthreads_h8ac31f8_0
- libopus=1.3.1=h4e0d66e_1
- libosmodsp0=0.4.0=h8a05459_1
- libosmodsp0=0.4.0=h9528819_2
- libpcap=1.10.4=ha17a0cc_1
- libpng=1.6.43=hd4bbf49_0
- libpq=16.3=hb6213f4_0
- libprotobuf=4.25.3=hffb1566_0
- librsvg=2.58.0=hae13ae7_1
- libpciaccess=0.18=ha17a0cc_0
- libpng=1.6.47=h4ca8ea4_0
- libpq=17.4=h9610a1c_0
- libprotobuf=5.28.3=h4b6c0f6_1
- librsvg=2.58.4=h7296971_2
- librtaudio6=5.2.0=hb51dbe7_3
- libsndfile=1.2.2=hd8dc992_1
- libsodium=1.0.18=h6eb9509_1
- libsodium=1.0.20=h1f2b957_0
- libsolv=0.7.28=hff1ad0c_2
- libsqlite=3.45.3=hd4bbf49_0
- libssh2=1.11.0=hb363fe5_0
- libstdcxx-ng=13.2.0=h262982c_7
- libsystemd0=255=ha2be871_1
- libtasn1=4.19.0=hb283c62_0
- libthrift=0.20.0=h464a2bb_0
- libtiff=4.6.0=hcbea7e6_3
- libudev1=255=ha17a0cc_1
- libsqlite=3.49.1=haeeb200_1
- libssh2=1.11.1=h485dfb1_0
- libstdcxx-ng=14.2.0=hf27a640_2
- libstdcxx=14.2.0=h262982c_2
- libsystemd0=257.4=h6081cc9_1
- libtasn1=4.20.0=h190368a_0
- libthrift=0.21.0=h2c60daa_0
- libtiff=4.7.0=hd5672b1_3
- libudev1=257.4=h792074e_1
- libunistring=0.9.10=h4e0d66e_0
- libusb=1.0.27=h2a4f5cf_100
- libunwind=1.6.2=h3b9df90_0
- liburing=2.9=hb22304a_0
- libusb=1.0.27=h190368a_101
- libuuid=2.38.1=h4194056_0
- libuv=1.48.0=ha17a0cc_0
- libuv=1.50.0=h190368a_0
- libvorbis=1.3.7=h3b9df90_0
- libvpx=1.14.0=h46f38da_0
- libwebp-base=1.4.0=ha17a0cc_0
- libxcb=1.15=h4194056_0
- libvpx=1.14.1=h4d352a9_0
- libwebp-base=1.5.0=h6573e2e_0
- libxcb=1.17.0=he4e7c97_0
- libxcrypt=4.4.36=ha17a0cc_1
- libxkbcommon=1.7.0=he0614c5_0
- libxml2=2.12.7=hb83a110_0
- libxkbcommon=1.8.1=h83c91fb_0
- libxml2=2.13.6=he91524c_0
- libxslt=1.1.39=hfc4afe9_0
- libzlib=1.2.13=h1f2b957_6
- limesuite=23.11.0=h4aef300_0
- libzlib=1.3.1=h190368a_2
- limesuite=23.11.0=hb7d5b33_1
- lua=5.4.6=hf45523f_0
- lxml=5.2.2=py310hc3fa083_0
- lz4-c=1.9.4=h883269e_0
- lxml=5.3.1=py312hf18cdb2_0
- lz4-c=1.10.0=h2621725_1
- lzo=2.10=ha17a0cc_1001
- m17-cxx-demod=2.3.3=hdaf65b7_3
- mako=1.3.5=pyhd8ed1ab_0
- mamba=1.5.8=py310h400a96e_0
- m17-cxx-demod=2.3.3=hb5129e9_5
- mako=1.3.9=pyhd8ed1ab_0
- mamba=1.5.12=py312hff23a77_0
- markdown=3.6=pyhd8ed1ab_0
- markupsafe=2.1.5=py310h6ed3b71_0
- matplotlib-base=3.8.4=py310hd57f521_2
- matplotlib-inline=0.1.7=pyhd8ed1ab_0
- matplotlib=3.8.4=py310hd032262_2
- menuinst=2.1.0=py310h194a6c8_0
- mirisdr=2.0.0=ha17a0cc_0
- mpg123=1.32.4=h46f38da_0
- mplcursors=0.5.3=pyhd8ed1ab_0
- markupsafe=3.0.2=py312h1d80cea_1
- matplotlib-base=3.10.1=py312h5a52afb_0
- matplotlib-inline=0.1.7=pyhd8ed1ab_1
- matplotlib=3.10.1=py312h2344ed7_0
- menuinst=2.2.0=py312h7864ebf_0
- mesalib=25.0.1=hfe8c3a1_0
- mirisdr=2.0.0=h190368a_1
- mpg123=1.32.9=h7b264c9_0
- mplcursors=0.6=pyhd8ed1ab_1
- munkres=1.1.4=pyh9f0ad1d_0
- mysql-common=8.3.0=h6e22b09_4
- mysql-libs=8.3.0=hc9dddf0_4
- ncurses=6.5=h8800142_0
- mysql-common=9.0.1=h4bc58a3_5
- mysql-libs=9.0.1=ha359b31_5
- ncurses=6.5=h8645e7e_3
- nettle=3.9.1=h6c99a15_0
- nspr=4.35=hbbae597_0
- nss=3.100=h45f48ea_0
- numexpr=2.8.4=py310h18f8728_1
- numpy=1.26.4=py310h877c07d_0
- nspr=4.36=h2621725_0
- nss=3.108=h159e3e6_0
- numexpr=2.10.2=py312hb6f6b32_0
- numpy=2.2.3=py312h54c08a6_0
- ocl-icd-system=1.0.0=1
- ocl-icd=2.3.2=ha17a0cc_1
- openh264=2.4.1=h46f38da_0
- openjpeg=2.5.2=h1c3486c_0
- openssl=3.3.0=h1f2b957_3
- ocl-icd=2.3.2=h190368a_2
- opencl-headers=2024.10.24=h2621725_0
- openh264=2.6.0=h4846f89_0
- openjpeg=2.5.3=h8f700d7_0
- openldap=2.6.9=haad6373_0
- openssl=3.4.1=hede31bd_0
- p11-kit=0.24.1=h7ef140f_0
- packaging=24.0=pyhd8ed1ab_0
- pandas=2.2.2=py310hb4565e0_1
- pango=1.52.2=h0dd3d01_0
- paramiko=3.4.0=pyhd8ed1ab_0
- parso=0.8.4=pyhd8ed1ab_0
- pcre2=10.43=h3bd5b6e_0
- packaging=24.2=pyhd8ed1ab_2
- pandas=2.2.3=py312h2613dcb_2
- pango=1.56.2=h032454a_0
- paramiko=3.5.1=pyhd8ed1ab_0
- parso=0.8.4=pyhd8ed1ab_1
- pcre2=10.44=h3dd95db_2
- perl=5.32.1=7_ha17a0cc_perl5
- pexpect=4.9.0=pyhd8ed1ab_0
- pickleshare=0.7.5=py_1003
- pillow=10.3.0=py310h0afc0cc_0
- pixman=0.43.4=h46f38da_0
- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1
- platformdirs=4.2.2=pyhd8ed1ab_0
- pluggy=1.5.0=pyhd8ed1ab_0
- ply=3.11=pyhd8ed1ab_2
- portaudio=19.6.0=hde2c0c8_9
- prompt-toolkit=3.0.42=pyha770c72_0
- pthread-stubs=0.4=h339bb43_1001
- ptyprocess=0.7.0=pyhd3deb0d_0
- pugixml=1.14=h46f38da_0
- pexpect=4.9.0=pyhd8ed1ab_1
- pickleshare=0.7.5=pyhd8ed1ab_1004
- pillow=11.1.0=py312h114285f_0
- pip=25.0.1=pyh8b19718_0
- pixman=0.44.2=ha71f0f6_0
- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_2
- platformdirs=4.3.6=pyhd8ed1ab_1
- pluggy=1.5.0=pyhd8ed1ab_1
- ply=3.11=pyhd8ed1ab_3
- portaudio=19.7.0=ha778ef4_0
- prompt-toolkit=3.0.50=pyha770c72_0
- pthread-stubs=0.4=h190368a_1002
- ptyprocess=0.7.0=pyhd8ed1ab_1
- pugixml=1.15=h02f28cb_0
- pulseaudio-client=17.0=h5deceda_0
- pure_eval=0.2.2=pyhd8ed1ab_0
- pyadi-iio=0.0.16=pyhd8ed1ab_0
- pure_eval=0.2.3=pyhd8ed1ab_1
- pyadi-iio=0.0.19=pyhd8ed1ab_0
- pybind11-abi=4=hd8ed1ab_3
- pycairo=1.26.0=py310h9a3ce80_0
- pycosat=0.6.6=py310h05217ba_0
- pycparser=2.22=pyhd8ed1ab_0
- pyfda=0.8.4=pyh9208f05_0
- pycairo=1.27.0=py312h7cb98c4_0
- pycosat=0.6.6=py312h2984477_2
- pycparser=2.22=pyh29332c3_1
- pyfda=0.9.2=pyh9208f05_1
- pyfiglet=0.8.post1=py_0
- pygments=2.18.0=pyhd8ed1ab_0
- pygobject=3.48.2=py310hb4236d9_0
- pylibiio=0.25=py_1
- pynacl=1.5.0=py310h05217ba_3
- pyopengl=3.1.6=pyhd8ed1ab_1
- pyparsing=3.1.2=pyhd8ed1ab_0
- pyqt5-sip=12.12.2=py310h9de49d8_5
- pyqt=5.15.9=py310h05aca5a_5
- pyqtgraph=0.13.7=pyhd8ed1ab_0
- pysocks=1.7.1=pyha2e5f31_6
- python-dateutil=2.9.0=pyhd8ed1ab_0
- python-engineio=4.9.1=pyhd8ed1ab_0
- python-socketio=5.11.2=pyhd8ed1ab_0
- python-tzdata=2024.1=pyhd8ed1ab_0
- python=3.10.14=h4005451_0_cpython
- python_abi=3.10=4_cp310
- pygments=2.19.1=pyhd8ed1ab_0
- pygobject=3.50.0=py312h7a1a19a_1
- pylibiio=0.26=py_1
- pynacl=1.5.0=py312h2984477_4
- pyopengl=3.1.7=pyhd8ed1ab_0
- pyparsing=3.2.1=pyhd8ed1ab_0
- pyqt5-sip=12.12.2=py312hd38e099_5
- pyqt=5.15.9=py312h3902226_5
- pyqtgraph=0.13.7=pyhd8ed1ab_1
- pysocks=1.7.1=pyha55dd90_7
- python-dateutil=2.9.0.post0=pyhff2d567_1
- python-engineio=4.11.2=pyhff2d567_0
- python-socketio=5.12.1=pyhd8ed1ab_0
- python-tzdata=2025.1=pyhd8ed1ab_0
- python=3.12.9=he016669_1_cpython
- python_abi=3.12=5_cp312
- pytz=2024.1=pyhd8ed1ab_0
- pywin32-on-windows=0.1.0=pyh1179c8e_3
- pyyaml=6.0.1=py310h05217ba_1
- pyzmq=26.0.3=py310hb1561f8_0
- qdarkstyle=3.2.3=pyhd8ed1ab_0
- qt-main=5.15.8=he1b3ad4_21
- qtpy=2.4.1=pyhd8ed1ab_0
- pyyaml=6.0.2=py312h362f93a_2
- pyzmq=26.3.0=py312h17e6c7f_0
- qdarkstyle=3.2.3=pyhd8ed1ab_1
- qhull=2020.2=h7c29e54_5
- qt-main=5.15.15=hd745ca5_2
- qtpy=2.4.3=pyhd8ed1ab_0
- qwt=6.2.0=he5e8f9e_6
- readline=8.2=h0b9b154_1
- referencing=0.35.1=pyhd8ed1ab_0
- reproc-cpp=14.2.4.post0=h46f38da_1
- reproc=14.2.4.post0=ha17a0cc_1
- requests=2.32.2=pyhd8ed1ab_0
- rpds-py=0.18.1=py310h739e3b2_0
- rtl-sdr=2.0.1=ha17a0cc_0
- ruamel.yaml.clib=0.2.8=py310h05217ba_0
- ruamel.yaml=0.18.6=py310h05217ba_0
- scipy=1.13.1=py310h784e85a_0
- sdl2=2.30.2=hf2eade4_0
- sdl=1.2.68=hb64e4c4_0
- setuptools=70.0.0=pyhd8ed1ab_0
- simple-websocket=1.0.0=pyhd8ed1ab_1
- sip=6.8.3=py310hcc3874d_0
- six=1.16.0=pyh6c4a22f_0
- readline=8.2=hf4ca6f9_2
- referencing=0.36.2=pyh29332c3_0
- reproc-cpp=14.2.5.post0=h2621725_0
- reproc=14.2.5.post0=h190368a_0
- requests=2.32.3=pyhd8ed1ab_1
- rpds-py=0.23.1=py312hfbfa491_0
- rtl-sdr=2.0.2=h190368a_3
- ruamel.yaml.clib=0.2.8=py312h2984477_1
- ruamel.yaml=0.18.10=py312h2984477_0
- scipy=1.15.2=py312h8c5dd32_0
- sdl2=2.32.50=h2fa4009_1
- sdl3=3.2.8=h4722d9d_0
- sdl=1.2.68=h2fa4009_1
- setuptools=75.8.2=pyhff2d567_0
- simple-websocket=1.1.0=pyhd8ed1ab_0
- sip=6.8.6=py312h6abfb79_1
- six=1.17.0=pyhd8ed1ab_0
- soapysdr-module-airspy=0.2.0=h6f8e04d_0
- soapysdr-module-airspyhf=0.2.0=h6f8e04d_0
- soapysdr-module-audio=0.1.1=h7f3508f_1
- soapysdr-module-audio=0.1.1=h96c2adf_2
- soapysdr-module-bladerf=0.4.1=hf8708ca_0
- soapysdr-module-fcdpp=0.1.1=h135aeac_0
- soapysdr-module-hackrf=0.3.4=h6f8e04d_0
- soapysdr-module-lms7=23.11.0=h45eccfa_0
- soapysdr-module-lms7=23.11.0=ha119c29_1
- soapysdr-module-netsdr=0.2.0=he97dc58_1
- soapysdr-module-plutosdr=0.2.2=ha6f28a8_0
- soapysdr-module-plutosdr=0.2.2=h19da3d8_1
- soapysdr-module-redpitaya=0.1.1=he97dc58_0
- soapysdr-module-remote=0.5.2=h6f8e04d_2
- soapysdr-module-rtlsdr=0.3.3=h7f3508f_2
- soapysdr-module-uhd=0.4.1=ha5dbe34_10
- soapysdr-module-volk-converters=0.1.1=h9fb0fc0_2
- soapysdr=0.8.1=py310hd9ef7bd_4
- spdlog=1.12.0=h3de9e99_2
- stack_data=0.6.2=pyhd8ed1ab_0
- soapysdr-module-uhd=0.4.1=h56adf28_14
- soapysdr-module-volk-converters=0.1.1=h3047db8_3
- soapysdr=0.8.1=py312hc0892ed_5
- spdlog=1.15.1=h323db5a_0
- stack_data=0.6.3=pyhd8ed1ab_1
- superlu=5.2.2=ha2bd32a_0
- svt-av1=2.1.0=h4d352a9_0
- svt-av1=3.0.1=h2621725_0
- tk=8.6.13=hd4bbf49_0
- toml=0.10.2=pyhd8ed1ab_0
- tomli=2.0.1=pyhd8ed1ab_0
- tornado=6.4=py310h6ed3b71_0
- tqdm=4.66.4=pyhd8ed1ab_0
- traitlets=5.14.3=pyhd8ed1ab_0
- truststore=0.8.0=pyhd8ed1ab_0
- typing_extensions=4.11.0=pyha770c72_0
- tzdata=2024a=h0c530f3_0
- uhd=4.6.0.0=py310hcd7457b_0
- unicodedata2=15.1.0=py310h05217ba_0
- urllib3=2.2.1=pyhd8ed1ab_0
- volk-gnss-sdr=0.0.18=h4d352a9_19
- volk=3.1.2=h46f38da_0
- watchdog=4.0.1=py310hd032262_0
- wayland=1.22.0=h7e42adb_1
- wcwidth=0.2.13=pyhd8ed1ab_0
- websocket-client=1.8.0=pyhd8ed1ab_0
- werkzeug=3.0.3=pyhd8ed1ab_0
- wsproto=1.2.0=pyhd8ed1ab_0
- wxwidgets=3.2.5=hb0d8d01_0
- toml=0.10.2=pyhd8ed1ab_1
- tomli=2.2.1=pyhd8ed1ab_1
- tornado=6.4.2=py312he7221a8_0
- tqdm=4.67.1=pyhd8ed1ab_1
- traitlets=5.14.3=pyhd8ed1ab_1
- truststore=0.10.1=pyh29332c3_0
- typing_extensions=4.12.2=pyha770c72_1
- tzdata=2025a=h78e105d_0
- uhd=4.8.0.0=py312ha2da450_0
- unicodedata2=16.0.0=py312h2984477_0
- urllib3=2.3.0=pyhd8ed1ab_0
- volk-gnss-sdr=0.0.19=h9676a07_8
- volk=3.2.0=h62b9486_0
- watchdog=6.0.0=py312h2344ed7_0
- wayland=1.23.1=h89182fd_0
- wcwidth=0.2.13=pyhd8ed1ab_1
- websocket-client=1.8.0=pyhd8ed1ab_1
- werkzeug=3.1.3=pyhd8ed1ab_1
- wheel=0.45.1=pyhd8ed1ab_1
- wsproto=1.2.0=pyhd8ed1ab_1
- wxwidgets=3.2.6=he32a394_3
- x264=1!164.3095=hb283c62_2
- x265=3.5=h06f31f1_3
- xcb-util-image=0.4.0=hb0c8264_1
- xcb-util-keysyms=0.4.0=hb0c8264_1
- xcb-util-renderutil=0.3.9=ha17a0cc_1
- xcb-util-wm=0.4.1=hb0c8264_1
- xcb-util=0.4.0=ha17a0cc_1
- xkeyboard-config=2.41=ha17a0cc_0
- xorg-compositeproto=0.4.2=h4e0d66e_1001
- xorg-damageproto=1.2.1=h4e0d66e_1002
- xorg-fixesproto=5.0=h4e0d66e_1002
- xorg-inputproto=2.3.2=h4e0d66e_1002
- xorg-kbproto=1.0.7=h4e0d66e_1002
- xorg-libice=1.1.1=ha17a0cc_0
- xorg-libsm=1.2.4=heec23bc_0
- xorg-libx11=1.8.9=hb0c8264_0
- xorg-libxau=1.0.11=ha17a0cc_0
- xorg-libxcomposite=0.4.6=h4194056_1
- xorg-libxcursor=1.2.0=h4194056_1
- xorg-libxdamage=1.1.5=h4e0d66e_1
- xorg-libxdmcp=1.1.3=h4e0d66e_0
- xorg-libxext=1.3.4=h4194056_2
- xorg-libxfixes=5.0.3=h4e0d66e_1004
- xorg-libxi=1.7.10=h4e0d66e_0
- xorg-libxinerama=1.1.5=hbbae597_0
- xorg-libxrandr=1.5.2=h4e0d66e_1
- xorg-libxrender=0.9.11=ha17a0cc_0
- xorg-libxtst=1.2.3=h4e0d66e_1002
- xorg-randrproto=1.5.0=h4e0d66e_1001
- xorg-recordproto=1.14.2=h4e0d66e_1002
- xorg-renderproto=0.11.1=h4e0d66e_1002
- xorg-util-macros=1.19.3=h4e0d66e_0
- xorg-xextproto=7.3.0=h4194056_1003
- xorg-xf86vidmodeproto=2.3.1=h4e0d66e_1002
- xorg-xproto=7.0.31=h4e0d66e_1007
- xz=5.2.6=hb283c62_0
- xcb-util-image=0.4.0=had93e6f_2
- xcb-util-keysyms=0.4.1=had93e6f_0
- xcb-util-renderutil=0.3.10=had93e6f_0
- xcb-util-wm=0.4.2=had93e6f_0
- xcb-util=0.4.1=had93e6f_2
- xkeyboard-config=2.43=h190368a_0
- xorg-libice=1.1.2=h190368a_0
- xorg-libsm=1.2.6=h9be89da_0
- xorg-libx11=1.8.12=h67a18fa_0
- xorg-libxau=1.0.12=h190368a_0
- xorg-libxcomposite=0.4.6=h190368a_2
- xorg-libxcursor=1.2.3=h190368a_0
- xorg-libxdamage=1.1.6=h190368a_0
- xorg-libxdmcp=1.1.5=h190368a_0
- xorg-libxext=1.3.6=h190368a_0
- xorg-libxfixes=6.0.1=h190368a_0
- xorg-libxi=1.8.2=h190368a_0
- xorg-libxinerama=1.1.5=h2621725_1
- xorg-libxrandr=1.5.4=h190368a_0
- xorg-libxrender=0.9.12=h190368a_0
- xorg-libxshmfence=1.3.3=h190368a_0
- xorg-libxtst=1.2.5=h190368a_3
- xorg-libxxf86vm=1.1.6=h190368a_0
- yaml-cpp=0.8.0=h46f38da_0
- yaml=0.2.5=h4e0d66e_2
- zeromq=4.3.5=hb2e7b1d_4
- zipp=3.17.0=pyhd8ed1ab_0
- zlib=1.2.13=h1f2b957_6
- zope.event=5.0=pyhd8ed1ab_0
- zope.interface=6.4.post2=py310hbdb9fc6_0
- zstandard=0.19.0=py310h93ff066_0
- zstd=1.5.6=h03a2076_0
- zeromq=4.3.5=ha30388d_7
- zipp=3.21.0=pyhd8ed1ab_1
- zlib=1.3.1=h190368a_2
- zope.event=5.0=pyhd8ed1ab_1
- zope.interface=7.2=py312he7221a8_0
- zstandard=0.23.0=py312h2984477_1
- zstd=1.5.7=h53ff00b_1
user_requested_specs:
- airspy
- airspyhf
- alsa-plugins
- bladerf
- codec2
- conda
- digital_rf
- ephem
- gnss-sdr
@ -477,6 +493,7 @@ user_requested_specs:
- gnuradio-filerepeater
- gnuradio-foo
- gnuradio-fosphor
- gnuradio-funcube
- gnuradio-gpredict-doppler
- gnuradio-hermeslite2
- gnuradio-hpsdr
@ -517,6 +534,7 @@ user_requested_specs:
- soapysdr-module-airspyhf
- soapysdr-module-audio
- soapysdr-module-bladerf
- soapysdr-module-fcdpp
- soapysdr-module-hackrf
- soapysdr-module-lms7
- soapysdr-module-netsdr
@ -527,5 +545,5 @@ user_requested_specs:
- soapysdr-module-uhd
- soapysdr-module-volk-converters
- uhd
version: 2024.05.29
version: 2025.03.14
write_condarc: true

View File

@ -1,348 +1,368 @@
# Generated by conda-lock.
# platform: osx-64
# input_hash: 8e33c6dbade3ec1c4af23b29a5876396890e4c2185b1c92bc73e8291667d9b0e
# input_hash: 050b9e3712be823c5ff3f1544e04510e6bab072e6b0031eb7bc98a9bd365e1a1
@EXPLICIT
https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda#6097a6ca9ada32699b5fc4312dd6ef18
https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda#d5eb7992227254c0e9a0ce71151f0079
https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda#f2eacee8c33c43692f1ccfd33d0f50b1
https://conda.anaconda.org/conda-forge/osx-64/epoxy-1.5.10-h5eb16cf_1.tar.bz2#721a46794b9ad1301115068189acb750
https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45
https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6
https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb
https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda#cbbe59391138ea5ad3658c76912e147f
https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2#f1c6b41e0f56998ecd9a3e210faa1dc0
https://conda.anaconda.org/conda-forge/osx-64/glfw-3.4-h10d778d_0.conda#1e64b2a03d3978cc25b5b83985275272
https://conda.anaconda.org/conda-forge/osx-64/gstreamer-orc-0.4.38-hcdad5f4_0.conda#f975f71599cc92e3ba47241b153ccd58
https://conda.anaconda.org/conda-forge/osx-64/hicolor-icon-theme-0.17-h694c41f_2.tar.bz2#f64218f19d9a441e80343cea13be1afb
https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda#5cc301d759ec03f28328428e28f65591
https://conda.anaconda.org/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2#3342b33c9a0921b22b767ed68ee25861
https://conda.anaconda.org/conda-forge/osx-64/libasprintf-0.22.5-h5ff76d1_2.conda#ad803793d7168331f1395685cbdae212
https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h0dc2134_1.conda#9e6c31441c9aa24e41ace40d6151aab6
https://conda.anaconda.org/conda-forge/osx-64/libcodec2-1.0.3-h0d85af4_0.tar.bz2#df7cb85c1b4ff8e9601b2494a293bdec
https://conda.anaconda.org/conda-forge/osx-64/libcorrect-0.0.0-hb7f2c08_0.conda#1cbd3aecb1efd72a9e536ba8c4f357ce
https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.20-h49d49c5_0.conda#d46104f6a896a0bc6a1d37b88b2edf5c
https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda#899db79329439820b7e8f8de41bca902
https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda#3d1d51c8f716d97c864d12f7af329526
https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2#ccb34fb14960ad8b125962d3d79b31a9
https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda#6c3628d047e151efba7cf08c5e54d1ca
https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda#72507f8e3961bc968af17435060b6dd6
https://conda.anaconda.org/conda-forge/osx-64/libogg-1.3.4-h35c211d_1.tar.bz2#a7ab4b53ef18c598ffaa597230bc3ba1
https://conda.anaconda.org/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2#380b9ea5f6a7a277e6c1ac27d034369b
https://conda.anaconda.org/conda-forge/osx-64/libpcap-1.10.4-h0dc2134_1.conda#8223edb62cbd0dede2e64eca6c8f4d82
https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2#24632c09ed931af617fe6d5292919cab
https://conda.anaconda.org/conda-forge/osx-64/libuv-1.48.0-h67532ce_0.conda#c8e7344c74f0d86584f7ecdc9f25c198
https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.4.0-h10d778d_0.conda#b2c0047ea73819d992484faacbbe1c24
https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda#02a888433d165c99bf09784a7b14d900
https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2#addd19059de62181cd11ae8f4ef26084
https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2#878f923dd6acc8aeb47a75da6c4098be
https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-4_cp311.conda#fef7a52f0eca6bae9e8e2e255bc86394
https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8
https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.11-h0dc2134_0.conda#9566b4c29274125b0266d0177b5eb97b
https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2#86ac76d6bf1cbb9621943eb3bd9ae36e
https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2#a72f9d4ea13d55d745ff1ed594747f10
https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2#d7e08fcf8259d742156188e8762b4d20
https://conda.anaconda.org/conda-forge/osx-64/codec2-1.0.3-h0d85af4_0.tar.bz2#3a3b6d8473bed907f2576dd8fb2afb8b
https://conda.anaconda.org/conda-forge/osx-64/expat-2.6.2-h73e2aa4_0.conda#dc0882915da2ec74696ad87aa2350f27
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-leo-data-1.0.0.post105+12a346f-unix_0.tar.bz2#07a7b1d08dcc3bdb0939dfb23a648b02
https://conda.anaconda.org/conda-forge/osx-64/libasprintf-devel-0.22.5-h5ff76d1_2.conda#c7182eda3bc727384e2f98f4d680fa7d
https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h0dc2134_1.conda#9ee0bab91b2ca579e10353738be36063
https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h0dc2134_1.conda#8a421fe09c6187f0eb5e2338a8a8be6d
https://conda.anaconda.org/conda-forge/osx-64/libcxx-17.0.6-h88467a6_0.conda#0fe355aecb8d24b8bc07c763209adbd9
https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b
https://conda.anaconda.org/conda-forge/osx-64/libintl-0.22.5-h5ff76d1_2.conda#3fb6774cb8cdbb93a6013b67bcf9716d
https://conda.anaconda.org/conda-forge/osx-64/libusb-1.0.27-h83ace79_100.conda#70d524ea665ba591c35a3fd811ddadd0
https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.15-hb7f2c08_0.conda#5513f57e0238c87c12dffedbcc9c1a4a
https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h87427d6_6.conda#c0ef3c38a80c02ae1d86588c055184fc
https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.6-h15ab845_0.conda#065f974bc7afcef3f94df56394e16154
https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.0-h87427d6_3.conda#ec504fefb403644d893adffb6e7a2dbe
https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda#f17f77f2acf4d344734bda76829ce14e
https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.1.0-h0dc2134_1.conda#ece565c215adcc47fc1db4e651ee094b
https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda#ab205d53bda43d03f5c5b993ccb406b3
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab
https://conda.anaconda.org/conda-forge/osx-64/gettext-tools-0.22.5-h5ff76d1_2.conda#37e1cb0efeff4d4623a6357e37e0105d
https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hb1e8313_1004.tar.bz2#3f59cc77a929537e42120faf104e0d16
https://conda.anaconda.org/conda-forge/osx-64/glew-2.1.0-h046ec9c_2.tar.bz2#6b753c8c7e4c46a8eb17b6f1781f958a
https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-h73e2aa4_1.conda#92f8d748d95d97f92fc26cfac9bb5b6e
https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h73e2aa4_1003.conda#fc7124f86e1d359fc5d878accd9e814c
https://conda.anaconda.org/conda-forge/osx-64/gtest-1.14.0-h1c7c39f_1.conda#5730a7c4dcb497fddadcad282567d604
https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda#80505a68783f01dc8d7308c075261b2f
https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2#f9d6a4c82889d5ecedec1d90eb673c55
https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.2-cxx17_hc1bcbd7_0.conda#f2ac89dbd4914f487706282ebf787636
https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda#66d3c1f6dd4636216b4fca7a748d50eb
https://conda.anaconda.org/conda-forge/osx-64/libairspy-1.0.10-h0d85af4_0.tar.bz2#1400e34d0f8a1f506c8dc9614db7871b
https://conda.anaconda.org/conda-forge/osx-64/libairspyhf-1.6.8-h0d85af4_0.tar.bz2#750d8e3deb2fade8e58945ee46bc901f
https://conda.anaconda.org/conda-forge/osx-64/libbladerf2-2023.02-hb7f2c08_0.conda#6f7da071e1cf0a2c49bd5343877ce235
https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.12-ha90c15b_1.conda#e38e467e577bd193a7d5de7c2c540b04
https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-0.22.5-h5ff76d1_2.conda#54cc9d12c29c2f0516f2ef4987de53ae
https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda#e4fb4d23ec2870ff3c40d10afe305aec
https://conda.anaconda.org/conda-forge/osx-64/libhackrf0-2024.02.1-h10d778d_0.conda#86d8e8aa6325441e71d5d9ee3f14edde
https://conda.anaconda.org/conda-forge/osx-64/libhamlib4-4.5.5-h53b3b88_3.conda#8f2027b801b8a8c8124f04eb99ed9f7c
https://conda.anaconda.org/conda-forge/osx-64/libintl-devel-0.22.5-h5ff76d1_2.conda#ea0a07e556d6b238db685cae6e3585d0
https://conda.anaconda.org/conda-forge/osx-64/liblimesuite-23.11.0-h93d8f39_0.conda#22e71dd3e5d2decfd44667c3adcff389
https://conda.anaconda.org/conda-forge/osx-64/libmirisdr4-2.0.0-h10d778d_0.conda#b158581fa757d8e8c98ad6ce34408b96
https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda#faecc55c2a8155d9ff1c0ff9a0fef64f
https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.43-h92b6c6a_0.conda#65dcddb15965c9de2c0365cb14910532
https://conda.anaconda.org/conda-forge/osx-64/librtaudio6-5.2.0-h73e2aa4_3.conda#84097c74cdd27e27387ecebbe2905124
https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.3-h92b6c6a_0.conda#68e462226209f35182ef66eda0f794ff
https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda#ca3a72efba692c59a90d4b9fc0dfe774
https://conda.anaconda.org/conda-forge/osx-64/libvorbis-1.3.7-h046ec9c_0.tar.bz2#fbbda1fede0aadaa252f6919148c4ce1
https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-h3e169fe_0.conda#4c04ba47fdd2ebecc1d3b6a77534d9ef
https://conda.anaconda.org/conda-forge/osx-64/lua-5.4.6-hf600f6b_1.conda#cbff4f4475f6f7870d7249149fbd161e
https://conda.anaconda.org/conda-forge/osx-64/mpg123-1.32.6-h73e2aa4_0.conda#e75d1700c649d23636b29f1563a4dcb3
https://conda.anaconda.org/conda-forge/osx-64/mysql-common-8.3.0-hfd7a639_4.conda#65af0764c5a5617539d07c9d243250e3
https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda#a9e56c98d13d8b7ce72bf4357317c29b
https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.43-h0ad2156_0.conda#9c8651803886ce9d5983e107a0df4ea8
https://conda.anaconda.org/conda-forge/osx-64/pixman-0.43.4-h73e2aa4_0.conda#cb134c1e03fd32f4e6bea3f6de2614fd
https://conda.anaconda.org/conda-forge/osx-64/portaudio-19.6.0-he965462_9.conda#433d8393c9d8aa95f38f520416c4eb27
https://conda.anaconda.org/conda-forge/osx-64/pugixml-1.14-he965462_0.conda#92f9416f48c010bf04c34c9841c84b09
https://conda.anaconda.org/conda-forge/osx-64/rtl-sdr-2.0.1-h10d778d_0.conda#15ac68485cbdd70c53ae8a1bf5ea16bf
https://conda.anaconda.org/conda-forge/osx-64/sdl2-2.30.2-h73e2aa4_0.conda#fb62c1528129a067f3162e723a54446d
https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda#bf830ba5afc507c6232d4ef0fb1a882d
https://conda.anaconda.org/conda-forge/osx-64/volk-3.1.2-hba0ec3d_0.conda#86ba0b87bee00823887fd362495eea72
https://conda.anaconda.org/conda-forge/osx-64/volk-gnss-sdr-0.0.18-ha0df490_19.conda#186a1c9c67cdcbf5364c17198678cece
https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h87427d6_6.conda#700b922d6d22e7deb5fb2964d0c8cf6a
https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda#4cb2cd56f039b129bb0e491c1164167e
https://conda.anaconda.org/conda-forge/osx-64/airspy-1.0.10-h0d85af4_0.tar.bz2#fd8886e164dd4921d3cef546a385b9c2
https://conda.anaconda.org/conda-forge/osx-64/airspyhf-1.6.8-h0d85af4_0.tar.bz2#cc4487036a6f5bf3ad289b56e3d345ba
https://conda.anaconda.org/conda-forge/osx-64/brotli-1.1.0-h0dc2134_1.conda#9272dd3b19c4e8212f8542cefd5c3d67
https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda#25152fce119320c980e5470e64834b50
https://conda.anaconda.org/conda-forge/osx-64/glog-0.6.0-h8ac2a54_0.tar.bz2#69eb97ca709a136c53fdca1f2fd33ddf
https://conda.anaconda.org/conda-forge/osx-64/hamlib-4.5.5-h2393b68_3.conda#fe1c19486d986762074cb82a11a90cec
https://conda.anaconda.org/conda-forge/osx-64/hamlib-lua-4.5.5-lua54hcdad5f4_3.conda#8380df1c63a78fb0647ac92c671f600b
https://conda.anaconda.org/conda-forge/osx-64/hamlib-tcl-4.5.5-h3642cd4_3.conda#d73e0d206f62a66b069001ffd97988d7
https://conda.anaconda.org/conda-forge/osx-64/libboost-1.82.0-h99d8d82_6.conda#83899678b0f5cc84a1b8d3e766de8983
https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_0.conda#276894efcbca23aa674e280e90bc5673
https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-devel-0.22.5-h5ff76d1_2.conda#1e0384c52cd8b54812912e7234e66056
https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda#0b6e23a012ee7a9a5f6b244f5a92c1d5
https://conda.anaconda.org/conda-forge/osx-64/libglib-2.80.2-h0f68cf7_0.conda#b3947a5dfc6c63b1f479268e75643090
https://conda.anaconda.org/conda-forge/osx-64/libiio-c-0.25-h7d457e9_1.conda#f2bd5fe76c9704b77ce20871d02d201c
https://conda.anaconda.org/conda-forge/osx-64/libllvm15-15.0.7-hbedff68_4.conda#bdc80cf2aa69d6eb8dd101dfd804db07
https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.6-hd5e122f_0.conda#de6112a23c73bba1347886f65d16c2b6
https://conda.anaconda.org/conda-forge/osx-64/libpq-16.3-h4501773_0.conda#74f18d32d7cc71584c8b05fd1ee555a0
https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.25.3-h4e4d658_0.conda#57b7ee4f1fd8573781cfdabaec4a7782
https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.20.0-h87f9345_0.conda#4e157195a0dec016d880ab19fd002ff3
https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.6.0-h129831d_3.conda#568593071d2e6cea7b5fc1f75bfa10ca
https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.39-h03b04e6_0.conda#a6e0cec6b3517ffc6b5d36a920fc9312
https://conda.anaconda.org/conda-forge/osx-64/mirisdr-2.0.0-h10d778d_0.conda#31ecd15da784064162dfadc620e77e24
https://conda.anaconda.org/conda-forge/osx-64/mysql-libs-8.3.0-ha9146f8_4.conda#507610a153e96fad858e1735779b3781
https://conda.anaconda.org/conda-forge/osx-64/nss-3.100-h6606ded_0.conda#614b1b9b0a0b1bfbfa9d04a10afa4240
https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda#612763bc5ede9552e4233ec518b9c9fb
https://conda.anaconda.org/conda-forge/osx-64/sdl-1.2.68-hce1cd6f_0.conda#4c5c936fe91d3302ff62f99fee1057f3
https://conda.anaconda.org/conda-forge/osx-64/spdlog-1.12.0-h8dd852c_2.conda#1be852e792cca50421504cee933e3063
https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-hde137ed_4.conda#e56609055da6c658aa329d42a6c6b9f2
https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b
https://conda.anaconda.org/conda-forge/osx-64/atk-1.0-2.38.0-h4bec284_2.conda#d9684247c943d492d9aac8687bc5db77
https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda#5e4c0743c70186509d1412e03c2d8dfa
https://conda.anaconda.org/conda-forge/osx-64/bcrypt-4.1.3-py311h295b1db_0.conda#492e109a8798fad16f073e765991bafa
https://conda.anaconda.org/conda-forge/noarch/bidict-0.23.1-pyhd8ed1ab_0.conda#c9916c3975b19f470218f415701d6362
https://conda.anaconda.org/conda-forge/noarch/blinker-1.8.2-pyhd8ed1ab_0.conda#cf85c002319c15e9721934104aaa1137
https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py311hdf8f085_1.conda#546fdccabb90492fbaf2da4ffb78f352
https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a
https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda#0876280e409658fc6f9e75d035960333
https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda#7f4a9e3fcff3f6356ae99244a014da6a
https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda#f3ad426304898027fc619827ff428eca
https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99
https://conda.anaconda.org/conda-forge/noarch/construct-2.10.70-pyhd8ed1ab_0.conda#58e88566bfbbf9d3ffbeda3290e7f4f0
https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda#5cd86562580f274031ede6aa6aa24441
https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364
https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_0.conda#e8cd5d629f65bdf0f3bb312cde14659e
https://conda.anaconda.org/conda-forge/osx-64/ephem-4.1.5-py311he705e18_1.conda#404080d821ff617973cf3c44bd0f36d3
https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda#8d652ea2ee8eaee02ed8dc820bc794aa
https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda#e16be50e378d8a4533b989035b196ab8
https://conda.anaconda.org/conda-forge/osx-64/fftw-3.3.10-nompi_h4fa670e_108.conda#39132ce6ed3180b42b54d40289cd4157
https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda#86cc5867dfbee4178118392bae4a3c89
https://conda.anaconda.org/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_0.conda#650a7807e689642dddd3590eb817beed
https://conda.anaconda.org/conda-forge/osx-64/gdk-pixbuf-2.42.12-ha587570_0.conda#ee186d2e8db4605030753dc05025d4a0
https://conda.anaconda.org/conda-forge/osx-64/gettext-0.22.5-h5ff76d1_2.conda#c09b3dcf2adc5a2a32d11ab90289b8fa
https://conda.anaconda.org/conda-forge/osx-64/glib-tools-2.80.2-hc27840c_0.conda#9adbcd7bc89fc0dd9dd0dd636cb86bbb
https://conda.anaconda.org/conda-forge/osx-64/greenlet-3.0.3-py311hdd0406b_0.conda#4f538c462a4fed3aa89ea7993506c478
https://conda.anaconda.org/conda-forge/osx-64/hamlib-python-4.5.5-py311ha272bfe_3.conda#d9dfd09333318bcb13ee0521bf9b6fea
https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h687a608_102.conda#b7f214127eb5d1af1b1b4108a04196a6
https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda#c0cc1420498b17414d8617d0b9f506ca
https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_0.conda#ff7ca04134ee8dde1d7cf491a78ef7c7
https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.5-py311h5fe6e05_1.conda#24305b23f7995de72bbd53b7c01242a2
https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.16-ha2f27b4_0.conda#1442db8f03517834843666c422238c9b
https://conda.anaconda.org/conda-forge/osx-64/libad9361-iio-0.2-hafe1066_3.tar.bz2#9020de48dc37479ae17a33f2a38339ac
https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp15-15.0.7-default_h7151d67_5.conda#ec9151310badcf29fa53ae554273e269
https://conda.anaconda.org/conda-forge/osx-64/libclang13-18.1.6-default_hf5e5ce3_0.conda#05f2341e05e18596567936494950122d
https://conda.anaconda.org/conda-forge/osx-64/libm2k-0.8.0-py311h254a74e_0.conda#00288b4b97bfe2e56fb764113b659425
https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_hfef2a42_0.conda#00237c9c7f2cb6725fe2960680a6e225
https://conda.anaconda.org/conda-forge/osx-64/lxml-5.2.2-py311hf8c4076_0.conda#5cb448378041044d76e0b932aeaeef41
https://conda.anaconda.org/conda-forge/osx-64/m17-cxx-demod-2.3.3-hb3aaeea_3.conda#efb3fbff7c6cbdb776ae89d9ad07daa4
https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.5-py311he705e18_0.conda#75abe7e2e3a0874a49d7c175115f443f
https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19
https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.2-h7310d3a_0.conda#05a14cc9d725dd74995927968d6547e3
https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda#248f521b64ce055e7feae3105e7abeb8
https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda#81534b420deb77da8833f2289b8d47ac
https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761
https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda#405678b942f2481cecdb3e010f4925d9
https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_2.conda#18c6deb6f9602e32446398203c8f0e91
https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263
https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883
https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda#844d9eb3b43095b031874477f7d70088
https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda#b7f5c092b8f9800150d998a71b76d5a1
https://conda.anaconda.org/conda-forge/noarch/pylibiio-0.25-py_1.conda#810ae49bb989b27783c17c1b7d36595e
https://conda.anaconda.org/conda-forge/noarch/pyopengl-3.1.6-pyhd8ed1ab_1.tar.bz2#c968eb974b0fae4676e7a7858c4cc56e
https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.2-pyhd8ed1ab_0.conda#b9a4dacf97241704529131a0dfc0494f
https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025
https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.1-pyhd8ed1ab_0.conda#98206ea9954216ee7540f0c773f2104d
https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda#3eeeeb9e4827ace8c0c1419c85d590ad
https://conda.anaconda.org/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2#2807a0becd1d986fe1ef9b7f8135f215
https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py311h2725bcf_1.conda#9283f991b5e5856a99f8aabba9927df5
https://conda.anaconda.org/conda-forge/osx-64/pyzmq-26.0.3-py311h89e2aaa_0.conda#91ec96c7ebdeb80c1d0d32777bfe76fa
https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.18.1-py311h295b1db_0.conda#454251bce37995584c00c37aac352d3b
https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py311he705e18_0.conda#3fdbde273667047893775e077cef290d
https://conda.anaconda.org/conda-forge/noarch/setuptools-70.0.0-pyhd8ed1ab_0.conda#c8ddb4f34a208df4dd42509a0f6a1c89
https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-0.8.1-py311h5fe6e05_4.conda#f84f836e7015a2178f5f6667583b2409
https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095
https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96
https://conda.anaconda.org/conda-forge/osx-64/tornado-6.4-py311he705e18_0.conda#40845aadca8df7ccc21c393ba3aa9eac
https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda#3df84416a021220d8b5700c613af2dc5
https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda#6ef2fc37559256cf682d8b3375e89b80
https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda#68f0738df502a14213624b288c60c9ad
https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda#f372c576b8774922da83cda2b12f9d29
https://conda.anaconda.org/conda-forge/osx-64/wxwidgets-3.2.5-h6efa675_0.conda#ce29b7c732e1e80346e1caa6ee922e66
https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda#2e4d6bc0b14e10f895fc6791a7d9b26a
https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda#5f25798dcefd8252ce5f9dc494d5f571
https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551
https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h99e66fa_0.conda#13f830b1bf46018f7062d1b798d53eca
https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py311hc0b63fd_0.conda#15d07b82223cac96af629e5e747ba27a
https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f
https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.52.4-py311h72ae277_0.conda#d28c9c31d4367fd2ea5103197ff1bf61
https://conda.anaconda.org/conda-forge/noarch/fs-2.4.16-pyhd8ed1ab_0.conda#a231fa7cb5f101f1f3ae8480c0002f91
https://conda.anaconda.org/conda-forge/osx-64/glib-2.80.2-h0f68cf7_0.conda#c0a63dc357f8c9996c902abbbd4c4ab2
https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2#b21ed0883505ba1910994f1df031a428
https://conda.anaconda.org/conda-forge/osx-64/hackrf-2024.02.1-hbac3817_0.conda#335000dba72413ca31b333a2cc80208e
https://conda.anaconda.org/conda-forge/noarch/hamlib-all-4.5.5-osx_3.conda#993b68647a6559ec2064620d16f7136b
https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda#0896606848b2dc5cebdf111b6543aa04
https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda#c5d3907ad8bd7bf557521a1833cf7e6d
https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda#81a3be0b2023e1ea8555781f0ad904a2
https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda#7b86ecb7d3557821c649b3c31e3eb9f2
https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-22_osx64_openblas.conda#b80966a8c8dd0b531f8e65f709d732e8
https://conda.anaconda.org/conda-forge/osx-64/libflac-1.4.3-he965462_0.conda#7e330625e51803556425142ca5ccbdd8
https://conda.anaconda.org/conda-forge/osx-64/libiio-0.25-h694c41f_1.conda#795a095de931e9d83afb749e812ebcab
https://conda.anaconda.org/conda-forge/osx-64/libliquid1-1.6.0-hbac3817_1.conda#5fca92e122178347c9ff3bec32182d37
https://conda.anaconda.org/conda-forge/osx-64/libmatio-1.5.26-h253dbdd_0.conda#6a0823a22ef726e5d307ab9eff413255
https://conda.anaconda.org/conda-forge/osx-64/libosmodsp0-0.4.0-hbac3817_1.conda#a59f83cc4a2b058fc6220923eaaa8812
https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda#779345c95648be40d22aaa89de7d4254
https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_0.conda#629f3203c99b32e0988910c93e77f3b6
https://conda.anaconda.org/conda-forge/osx-64/pillow-10.3.0-py311h1b85569_0.conda#881ad821b527c802f1538347cf167449
https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.42-pyha770c72_0.conda#0bf64bf10eee21f46ac83c161917fa86
https://conda.anaconda.org/conda-forge/noarch/pyfiglet-0.8.post1-py_0.tar.bz2#e22d3c090f24856764e9d70e76fa3a5f
https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda#2cf4264fffb9e6eff6031c5b6884d61c
https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.1-pyhd8ed1ab_0.conda#7f391bd70d2abfb70f304ba5aa4e1261
https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda#0fc8b52192a8898627c3efae1003e9f6
https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py311he705e18_0.conda#7a3e388f29ca1862754f89b6d79de335
https://conda.anaconda.org/conda-forge/osx-64/sip-6.7.12-py311hd39e593_0.conda#1ece78d403bd99aa434d899c287412ef
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-module-airspy-0.2.0-ha64c28d_0.tar.bz2#b59403f2f4c2a8a5e63e1c85eac94721
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-module-airspyhf-0.2.0-ha64c28d_0.tar.bz2#db15c5581723856f829b15729a93b61b
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-module-audio-0.1.1-h4104cfc_1.conda#2694bd2fd8191c9c27e33ad4bcdbe7c6
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-module-bladerf-0.4.1-h3f20bda_0.tar.bz2#9d17170198be228b05d25997cd53f5cb
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-module-hackrf-0.3.4-ha64c28d_0.tar.bz2#e995f7c2dcdf42749638838e3c0b53da
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-module-lms7-23.11.0-hf2e4411_0.conda#5b84d114cf437a8dfecc6cc17b0de937
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-module-netsdr-0.2.0-h7ecdfb7_1.conda#057b901107874beef0dc507365d4e226
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-module-plutosdr-0.2.2-ha1538ea_0.conda#6e6884f1eadee06ff927f34feb1086e0
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-module-redpitaya-0.1.1-h7ecdfb7_0.conda#9365abf68cbb1a315f2b42333081b14b
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-module-remote-0.5.2-ha64c28d_2.tar.bz2#b46013cf640ecbe5bfb5ecb01d53561c
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-module-rtlsdr-0.3.3-h4104cfc_2.conda#04c6e158e3d0279348317b5cceb8c365
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-module-volk-converters-0.1.1-h58154ba_2.conda#2a0fe8464fa200babfbe73d9cb916110
https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda#08807a87fa7af10754d46f63b368e016
https://conda.anaconda.org/conda-forge/osx-64/watchdog-4.0.1-py311h72ae277_0.conda#2869bbb3a0e8cfeb92ed97170d70cc2c
https://conda.anaconda.org/conda-forge/noarch/werkzeug-3.0.3-pyhd8ed1ab_0.conda#2e60f5f388845027ee87fca6bee4ac23
https://conda.anaconda.org/conda-forge/noarch/zope.event-5.0-pyhd8ed1ab_0.conda#b4a7b86cf51f2831015e9eebd284dc0a
https://conda.anaconda.org/conda-forge/osx-64/zope.interface-6.4.post2-py311h72ae277_0.conda#3afa9f872b102b2eae7ec77a3bcfec04
https://conda.anaconda.org/conda-forge/noarch/asciimatics-1.15.0-pyhd8ed1ab_0.conda#94bdb59db7572d651230d10dd15c188d
https://conda.anaconda.org/conda-forge/osx-64/cryptography-42.0.7-py311h4ba4ffd_0.conda#16e24fd981fb1a3d5fb7f7a826691311
https://conda.anaconda.org/conda-forge/noarch/flask-3.0.3-pyhd8ed1ab_0.conda#dcdb937144fa20d7757bf512db1ea769
https://conda.anaconda.org/conda-forge/osx-64/gevent-23.9.0.post1-py311h3a1e5a7_1.conda#0f7303fc99e2a6a40d950392b24e95b7
https://conda.anaconda.org/conda-forge/osx-64/gstreamer-1.24.4-hbc75551_0.conda#183f6991b98a450a2e45c75650713731
https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-8.5.0-h053f038_0.conda#7ef43d914a9727c6ef55164e51a7016d
https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda#a0e4efb5f35786a05af4809a2fb1f855
https://conda.anaconda.org/conda-forge/noarch/libbladerf-python-2023.02-py_0.conda#3d313832d2b63b19fe9ffe240e4fb746
https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-22_osx64_openblas.conda#b9fef82772330f61b2b0201c72d2c29b
https://conda.anaconda.org/conda-forge/osx-64/libgirepository-1.80.1-h756d8af_0.conda#facc3b211afb7e30aadf3bb746a9f205
https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-22_osx64_openblas.conda#f21b282ff7ba14df6134a0fe6ab42b1b
https://conda.anaconda.org/conda-forge/osx-64/libsndfile-1.2.2-h9603cec_1.conda#8440dcb1adeceda826729f4244f0fd14
https://conda.anaconda.org/conda-forge/osx-64/limesuite-23.11.0-h56465c4_0.conda#3aa915cb874b44810d528293fe955932
https://conda.anaconda.org/conda-forge/noarch/mako-1.3.5-pyhd8ed1ab_0.conda#29fddbfa0e2361636a98de4f46ead2ac
https://conda.anaconda.org/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda#06e9bebf748a0dea03ecbe1f0e27e909
https://conda.anaconda.org/conda-forge/osx-64/pycairo-1.26.0-py311h389a0fd_0.conda#b605579f30806aeb6a353d2ace8d14b3
https://conda.anaconda.org/conda-forge/osx-64/pynacl-1.5.0-py311h2725bcf_3.conda#f0ac41d1fc525643445fafb5943927bb
https://conda.anaconda.org/conda-forge/osx-64/pyqt5-sip-12.12.2-py311h46b81f0_5.conda#922f2e1968737a9323507bc7eb21fe6c
https://conda.anaconda.org/conda-forge/noarch/qdarkstyle-3.2.3-pyhd8ed1ab_0.conda#ab475868d7e0b110c43bf74c90237a5f
https://conda.anaconda.org/conda-forge/noarch/requests-2.32.2-pyhd8ed1ab_0.conda#e1643b34b19df8c028a4f00bf5df58a6
https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af
https://conda.anaconda.org/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_0.tar.bz2#00ba804b54f451d102f6a7615f08470d
https://conda.anaconda.org/conda-forge/osx-64/arpack-3.8.0-nompi_hb44a6d1_101.tar.bz2#c3e6d37f2341f9c203c21bdc0c651156
https://conda.anaconda.org/conda-forge/osx-64/bladerf-2023.02-hb7f2c08_0.conda#0d943df9fb10336eba03437030a53d9e
https://conda.anaconda.org/conda-forge/noarch/gevent-websocket-0.10.1-py_0.tar.bz2#25b4b60b6ea50368cd90b75b4d00c711
https://conda.anaconda.org/conda-forge/osx-64/gsl-2.7-h93259b0_0.tar.bz2#b4942b1ee2a52fd67f446074488d774d
https://conda.anaconda.org/conda-forge/osx-64/gst-plugins-base-1.24.4-ha0a8333_0.conda#1116c4262d06e4be8c0aeb8b5732c55c
https://conda.anaconda.org/conda-forge/noarch/ipython-8.24.0-pyh707e725_0.conda#1fb1f1fcbe053a762748dbf0ae4cfd0d
https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.22.0-pyhd8ed1ab_0.conda#b9661a4b1200d6bc7d8a4cdafdc91468
https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.4-py311hc43a94b_0.conda#bb02b8801d17265160e466cf8bbf28da
https://conda.anaconda.org/conda-forge/osx-64/pango-1.52.2-h7f2093b_0.conda#ea9611aee7e61e4ff18c4dc56ec100ab
https://conda.anaconda.org/conda-forge/noarch/paramiko-3.4.0-pyhd8ed1ab_0.conda#a5e792523b028b06d7ce6e65a6cd4a33
https://conda.anaconda.org/conda-forge/osx-64/pygobject-3.48.2-py311h5607175_0.conda#87073f9a41fe3ef525a1ffa6e025ba6a
https://conda.anaconda.org/conda-forge/noarch/simple-websocket-1.0.0-pyhd8ed1ab_1.conda#4e9136be6c66312f63b3a8ef60443389
https://conda.anaconda.org/conda-forge/osx-64/superlu-5.2.2-h1f0f902_0.tar.bz2#415a218b750ec31760d6a530d11dc98d
https://conda.anaconda.org/conda-forge/osx-64/armadillo-12.8.3-hc3b1926_0.conda#3d87b8451fb99acc51e9be10a8954733
https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.2.1-py311h1d816ee_0.conda#4f7502f4d2cddbea5feba4e82d99c6c4
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-pmt-3.10.10.0-py311hbf4854b_6.conda#0f46c3f04a42c8b4f1573bf1dbf241cc
https://conda.anaconda.org/conda-forge/osx-64/gtk3-3.24.42-h6d24b8e_0.conda#6f08e39d845cc7a0c09ffab9acf77f4d
https://conda.anaconda.org/conda-forge/osx-64/h5py-3.11.0-nompi_py311h4faab6c_101.conda#4200d83ff1d5997d8b88d597297b0c61
https://conda.anaconda.org/conda-forge/osx-64/librsvg-2.58.0-h7b06fc5_1.conda#e4a5f1bb5962ec6f2f2d2f0467ed0826
https://conda.anaconda.org/conda-forge/osx-64/numexpr-2.8.4-py311hab14417_1.conda#f54b3f060b554070e12e815e97c02a1c
https://conda.anaconda.org/conda-forge/osx-64/pandas-2.2.2-py311hfdcbad3_1.conda#8dbecc860148500512e768571c59fbe0
https://conda.anaconda.org/conda-forge/noarch/pyadi-iio-0.0.16-pyhd8ed1ab_0.conda#667c2c87d132e2fdf0b2f42200fbfbff
https://conda.anaconda.org/conda-forge/noarch/pyqtgraph-0.13.7-pyhd8ed1ab_0.conda#d31a6f00bd89ff46a5e457c935578c33
https://conda.anaconda.org/conda-forge/noarch/python-engineio-4.9.1-pyhd8ed1ab_0.conda#14eac7853ce0afb52fab40521d8ed9f7
https://conda.anaconda.org/conda-forge/osx-64/qt-main-5.15.8-hecaf5c3_21.conda#77c24f0109a8d177c66cc1a1ae8311c0
https://conda.anaconda.org/conda-forge/osx-64/scipy-1.13.1-py311h40a1ab3_0.conda#e7f86277ec9b453bdf2fc1ef54740033
https://conda.anaconda.org/conda-forge/osx-64/uhd-4.6.0.0-py311h1202e05_0.conda#be56cb0886626e24cf1852a60aa8061d
https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-46.0-unix_0.conda#f1dcbaeb1b69a1424b9ac618b2a7cdc8
https://conda.anaconda.org/conda-forge/osx-64/digital_rf-2.6.9-py311h4b6fc2c_0.conda#9b34eb8253ba890b3930626fc7fe532e
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-core-3.10.10.0-py311he8a1f08_6.conda#cd36a9be47add0753806dbe2bb25e0ff
https://conda.anaconda.org/conda-forge/osx-64/inspectrum-0.3.1-h4507090_0.conda#fae8fbc19b18b70bab47e05e0ea8361a
https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.8.4-py311hff79762_2.conda#0557edaf2d4dba4a161e7d5f574040df
https://conda.anaconda.org/conda-forge/osx-64/pyqt-5.15.9-py311h5b1a2bc_5.conda#8cc18fe7d8016c47021c2629f8882785
https://conda.anaconda.org/conda-forge/noarch/python-socketio-5.11.2-pyhd8ed1ab_0.conda#08c4689825cdf902fc643a6a0934068e
https://conda.anaconda.org/conda-forge/osx-64/qwt-6.3.0-h69e1d46_0.conda#c14911f58f838744a023082cd842ec1a
https://conda.anaconda.org/conda-forge/osx-64/soapysdr-module-uhd-0.4.1-hf6b9cc9_10.conda#0c3c8952309057e35b51d00da94fe97c
https://conda.anaconda.org/conda-forge/noarch/flask-socketio-5.3.6-pyhd8ed1ab_0.conda#ef521fc208ad82733c942d150199cf3e
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-dect2-0.0.0.20240502.dev+gb296af2a9-py311hcd972f0_0.tar.bz2#0e551bb0deb16fe8dd19f9995cc7c4a8
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-filerepeater-0.0.0.20240502.dev+gd7bb8846c-py311ha3c3dc6_0.tar.bz2#721f25593a1f2f0bb2e2e0469a019a1c
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-foo-0.0.0.20240502.dev+gc53538a22-py311hedea448_0.tar.bz2#59d638c4f3e4f044a3717705227f6e7e
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-fosphor-0.0.0.20240502.dev+g656fe2f-py311he56f0a3_0.tar.bz2#62a9b97ed27003fa2045f276a03e6247
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-gpredict-doppler-0.0.0.20240508.dev+gb06bc7678-unix_pyha1ad6f9_0.tar.bz2#b414c3119957d01e5edb2ec24b438bd1
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-grc-3.10.10.0-py311haf26971_6.conda#43565bd99603d76fa45a60d03fdf34b4
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-hermeslite2-v1.0.0.0.post17+8b17ad3-py311hcd972f0_0.tar.bz2#c1f727353e578dcfb2cef77f14a53724
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-hpsdr-0.0.0.20240507.dev+g958e157-py311h0afbd48_0.tar.bz2#b03ebb5b1c22e8b9ed2e548c7bb39300
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-iio-3.10.10.0-py311h4e151cf_6.conda#4d385693791553f732daa4e909d47321
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-iqbalance-0.38.2-py311h243ac71_3.conda#780bd29c93b069a5cf64a236f2545f94
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-iridium-1!1.0.0-py311he9f87ad_11.conda#82ff372c708dc4025cdf15f9000fd133
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-leo-1.0.0.post105+12a346f-py311h8122525_0.tar.bz2#918b2ca006cad9e6dde11a12e20cb477
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-lora_sdr-0.0.0.20240508.dev+g751a65269-py311h8122525_0.tar.bz2#f1878eaafc5a02c08abd1b4d22b492bd
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-m2k-1.0.0-py311h3d3d031_9.conda#4baef43b0d726acc543c82d173d2a940
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-paint-0.0.0.20240508.dev+g82696a2-py311h8122525_0.tar.bz2#df322afe073cad783c6e3cdb984dbd4d
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-qtgui-3.10.10.0-py311h8663c3e_6.conda#347d83753b8fc84054c15a7ea18cdf1b
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-radar-0.0.0.20240525.dev+gc59350d-py311h438d3bc_0.tar.bz2#481aec54ffa5b087536af77ad9ea29b9
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-rds-3.10.post22+g2134008-py311hee1d45a_0.tar.bz2#d98f50d64a4d2745446c26cf7c168b33
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-soapy-3.10.10.0-py311hec45aa0_6.conda#01c17ccabd41048a63ce4d6972cf8601
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-uhd-3.10.10.0-py311h4c0215c_6.conda#8122a02ff15effe59f2b8a3507c66c0e
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-video-sdl-3.10.10.0-py311haf26971_6.conda#6ed2e09732620cd66a81973ab5aa41c9
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-zeromq-3.10.10.0-py311h26d7922_6.conda#3418e19cc7555d7c93187880b3bf69b6
https://conda.anaconda.org/conda-forge/osx-64/matplotlib-3.8.4-py311h6eed73b_2.conda#ca778ed2dd6076bd994bcd7db65820e4
https://conda.anaconda.org/conda-forge/noarch/mplcursors-0.5.3-pyhd8ed1ab_0.conda#41db08c32bbbb2849d6f57fd1d1da460
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-3.10.10.0-py311hc91e5ee_6.conda#29cd2565ec3c09089387ac994e2db889
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-adsb-0.0.0.20240508.dev+gafd7fabda-unix_pyha6c0e43_0.tar.bz2#56f998dffe40fa91563395e3cbc935b7
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-ieee802_11-0.0.0.20240507.dev+g8c058d4e0-py311hd0cdf53_0.tar.bz2#55efea5c4d4c34a1374fae3f9d858883
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-ieee802_15_4-3.6.post133+g932c76f-py311h29adbb0_0.tar.bz2#0f8bdd3e0ca857d245389bb8318d4c3f
https://conda.anaconda.org/ryanvolz/osx-64/gnuradio-inspector-0.0.0.20240525.dev+g55acca6-py311h416d156_0.tar.bz2#e959594d45cf599de0b11c143e66466c
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-osmosdr-0.2.4-py311h57dc4cf_16.conda#252b7471cc422b97a29cdb5c98b31d08
https://conda.anaconda.org/conda-forge/osx-64/gnuradio-satellites-5.5.0-py311h87c04f2_2.conda#9bc7a273d5f6c89be2c51123a8c6f1f5
https://conda.anaconda.org/conda-forge/noarch/pyfda-0.8.4-pyh9208f05_0.conda#c772efaac9008abc155bbb8da0ed451d
https://conda.anaconda.org/conda-forge/osx-64/gnss-sdr-0.0.18-h1fe6a09_19.conda#625888163ba53703ad224f525a6fb61f
https://conda.anaconda.org/conda-forge/osx-64/gqrx-2.17.5-h8057050_4.conda#434368e36060f45bb8980ee02c3862be
https://conda.anaconda.org/t/*****/conda-forge/osx-64/ca-certificates-2025.1.31-h8857fd0_0.conda#3418b6c8cac3e71c0bc089fc5ea53042
https://conda.anaconda.org/t/*****/conda-forge/osx-64/epoxy-1.5.10-h5eb16cf_1.tar.bz2#721a46794b9ad1301115068189acb750
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda#49023d73832ef61042f6a237cb2687e7
https://conda.anaconda.org/t/*****/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2#f1c6b41e0f56998ecd9a3e210faa1dc0
https://conda.anaconda.org/t/*****/conda-forge/osx-64/glfw-3.4-h10d778d_0.conda#1e64b2a03d3978cc25b5b83985275272
https://conda.anaconda.org/t/*****/conda-forge/osx-64/hicolor-icon-theme-0.17-h694c41f_2.tar.bz2#f64218f19d9a441e80343cea13be1afb
https://conda.anaconda.org/t/*****/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2#3342b33c9a0921b22b767ed68ee25861
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libcorrect-0.0.0-hb7f2c08_0.conda#1cbd3aecb1efd72a9e536ba8c4f357ce
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libev-4.33-h10d778d_2.conda#899db79329439820b7e8f8de41bca902
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda#72507f8e3961bc968af17435060b6dd6
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2#380b9ea5f6a7a277e6c1ac27d034369b
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libpcap-1.10.4-h0dc2134_1.conda#8223edb62cbd0dede2e64eca6c8f4d82
https://conda.anaconda.org/t/*****/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2#878f923dd6acc8aeb47a75da6c4098be
https://conda.anaconda.org/t/*****/conda-forge/osx-64/python_abi-3.12-5_cp312.conda#c34dd4920e0addf7cfcc725809f25d8e
https://conda.anaconda.org/t/*****/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda#dbcace4706afdfb7eb891f7b37d07c04
https://conda.anaconda.org/t/*****/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2#d7e08fcf8259d742156188e8762b4d20
https://conda.anaconda.org/t/*****/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda#7ed4301d437b59045be7e051a0308211
https://conda.anaconda.org/t/*****/conda-forge/osx-64/c-ares-1.34.4-hf13058a_0.conda#133255af67aaf1e0c0468cc753fd800b
https://conda.anaconda.org/t/*****/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-leo-data-1.0.0.post20250214%2Bg8f62b92-unix_2.conda#c4ae33379222c031be2cd82093e561e1
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gstreamer-orc-0.4.41-h9fdcad8_0.conda#2636605c1ab03121c56d7c2edc170034
https://conda.anaconda.org/t/*****/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda#d68d48a3060eb5abdc1cdc8e2a3a5966
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libbrotlicommon-1.1.0-h00291cd_2.conda#58f2c4bdd56c46cc7451596e4ae68e0b
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libcodec2-1.2.0-h6e16a3a_3.conda#7fa9a8ef024b775cd52ff2563cbffa2a
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libcxx-19.1.7-hf95d169_0.conda#4b8f8dc448d814169dbc58fc7286057d
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libdeflate-1.23-he65b83e_0.conda#120f8f7ba6a8defb59f4253447db4bb4
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libexpat-2.6.4-h240833e_0.conda#20307f4049a735a78a29073be1be2626
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libffi-3.4.6-h281671d_0.conda#b8667b0d0400b8dcb6844d8e06b2027d
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libiconv-1.18-h4b5e92a_1.conda#6283140d7b2b55b6b095af939b71b13f
https://conda.anaconda.org/t/*****/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda#db9d7b0152613f097cdb61ccf9f70ef5
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libntlm-1.8-h6e16a3a_0.conda#23d706dbe90b54059ad86ff826677f39
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libogg-1.3.5-hfdf4475_0.conda#7497372c91a31d3e8d64ce3f1a9632e8
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libsodium-1.0.20-hfdf4475_0.conda#6af4b059e26492da6013e79cbcb4d069
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libusb-1.0.27-h6e16a3a_101.conda#5d2adf4c552a2ad45a0aef22c52b9f7e
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libuv-1.50.0-h4cb831e_0.conda#c86c7473f79a3c06de468b923416aa23
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libwebp-base-1.5.0-h6cf52b4_0.conda#5e0cefc99a231ac46ba21e27ae44689f
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda#003a54a4e32b02f7355b50a837e699da
https://conda.anaconda.org/t/*****/conda-forge/osx-64/llvm-openmp-19.1.7-ha54dae1_0.conda#65d08c50518999e69f421838c1d5b91f
https://conda.anaconda.org/t/*****/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda#ced34dd9929f491ca6dab6a2927aff25
https://conda.anaconda.org/t/*****/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda#a7d63f8e7ab23f71327ea6d27e2d5eae
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pthread-stubs-0.4-h00291cd_1002.conda#8bcf980d2c6b17094961198284b8e862
https://conda.anaconda.org/t/*****/conda-forge/osx-64/xorg-libxau-1.0.12-h6e16a3a_0.conda#4cf40e60b444d56512a64f39d12c20bd
https://conda.anaconda.org/t/*****/conda-forge/osx-64/xorg-libxdmcp-1.1.5-h00291cd_0.conda#9f438e1b6f4e73fd9e6d78bfe7c36743
https://conda.anaconda.org/t/*****/conda-forge/osx-64/codec2-1.2.0-h6e16a3a_3.conda#f1056247f381f5fb63fac30eb2c2b481
https://conda.anaconda.org/t/*****/conda-forge/osx-64/expat-2.6.4-h240833e_0.conda#81ca1acbdfb112e1c8270d613c92bce4
https://conda.anaconda.org/t/*****/conda-forge/osx-64/fmt-11.0.2-h3c5361c_0.conda#e8070546e8739040383f6774e0cd4033
https://conda.anaconda.org/t/*****/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gflags-2.2.2-hac325c4_1005.conda#a26de8814083a6971f14f9c8c3cb36c2
https://conda.anaconda.org/t/*****/conda-forge/osx-64/glew-2.1.0-h046ec9c_2.tar.bz2#6b753c8c7e4c46a8eb17b6f1781f958a
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda#427101d13f19c4974552a4e5b072eef1
https://conda.anaconda.org/t/*****/conda-forge/osx-64/graphite2-1.3.13-h73e2aa4_1003.conda#fc7124f86e1d359fc5d878accd9e814c
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gtest-1.15.2-h3c5361c_0.conda#172833b001e5b7de8ed32491f1b2753e
https://conda.anaconda.org/t/*****/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2#f9d6a4c82889d5ecedec1d90eb673c55
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libabseil-20240722.0-cxx17_h0e468a2_4.conda#03dd3d0563d01c2b82881734ee0eb334
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda#66d3c1f6dd4636216b4fca7a748d50eb
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libairspy-1.0.10-h6e16a3a_1.conda#7e803ea72f42dc4369c5ebee111e8ec5
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libairspyhf-1.6.8-h6e16a3a_1.conda#bf0d71747898f26d1fef38946cb76af7
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libasprintf-0.23.1-h27064b9_0.conda#43e1d9e1712208ac61941a513259248d
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libbladerf2-2024.05-h6e16a3a_2.conda#ae3075e73cb05f5847bf2007f746d4a7
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libbrotlidec-1.1.0-h00291cd_2.conda#34709a1f5df44e054c4a12ab536c5459
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libbrotlienc-1.1.0-h00291cd_2.conda#691f0dcb36f1ae67f5c489f20ae987ea
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda#1f4ed31220402fcddc083b4bff406868
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libevent-2.1.12-ha90c15b_1.conda#e38e467e577bd193a7d5de7c2c540b04
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda#e4fb4d23ec2870ff3c40d10afe305aec
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libhackrf0-2024.02.1-h6e16a3a_1.conda#394f77ad1a3d158d69e3ca1584e2ed49
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libhamlib4-4.6.2-h240833e_2.conda#7889dd4ffe5c9faa2309527c76581443
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libintl-0.23.1-h27064b9_0.conda#4182fe11073548596723d9cd2c23b1ac
https://conda.anaconda.org/t/*****/conda-forge/osx-64/liblimesuite-23.11.0-h240833e_1.conda#2413a4598e264de83e50d595e79eeb5f
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libmirisdr4-2.0.0-h6e16a3a_1.conda#23c601a76d38ea95678d22e3ab4a4c7a
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libnghttp2-1.64.0-hc7306c3_0.conda#ab21007194b97beade22ceb7a3f6fee5
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libpng-1.6.47-h3c4a55f_0.conda#8461ab86d2cdb76d6e971aab225be73f
https://conda.anaconda.org/t/*****/conda-forge/osx-64/librtaudio6-5.2.0-h73e2aa4_3.conda#84097c74cdd27e27387ecebbe2905124
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libsqlite-3.49.1-hdb6dae5_1.conda#7958168c20fbbc5014e1fbda868ed700
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libssh2-1.11.1-h3dc7d44_0.conda#b1caec4561059e43a5d056684c5a2de0
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libvorbis-1.3.7-h046ec9c_0.tar.bz2#fbbda1fede0aadaa252f6919148c4ce1
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libxcb-1.17.0-hf1f96e2_0.conda#bbeca862892e2898bdb45792a61c4afc
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libxml2-2.13.6-hebb159f_0.conda#f27851d50ccddf3c3234dd0efc78fdbd
https://conda.anaconda.org/t/*****/conda-forge/osx-64/mpg123-1.32.9-h78e78a4_0.conda#6bdfebc249f2466c2893bdf6d5faf484
https://conda.anaconda.org/t/*****/conda-forge/osx-64/mysql-common-9.0.1-hd00b0ec_5.conda#fe53314dfd07e65342c55a9495080d2b
https://conda.anaconda.org/t/*****/conda-forge/osx-64/nspr-4.36-h97d8b74_0.conda#9367273bb726a8991cd9bf9b1a022f57
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pcre2-10.44-h7634a1b_2.conda#58cde0663f487778bcd7a0c8daf50293
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pixman-0.44.2-h1fd1274_0.conda#9d3ed4c1a6e21051bf4ce53851acdc96
https://conda.anaconda.org/t/*****/conda-forge/osx-64/portaudio-19.7.0-h97d8b74_0.conda#894364247b8c15d6407ffcb8df5ac9f3
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pugixml-1.15-h46091d4_0.conda#7a1ad34efe728093c36a76afeaf30586
https://conda.anaconda.org/t/*****/conda-forge/osx-64/qhull-2020.2-h3c5361c_5.conda#dd1ea9ff27c93db7c01a7b7656bd4ad4
https://conda.anaconda.org/t/*****/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda#342570f8e02f2f022147a7f841475784
https://conda.anaconda.org/t/*****/conda-forge/osx-64/rtl-sdr-2.0.2-h6e16a3a_3.conda#89bc22330bab357523566ffc20b0c95d
https://conda.anaconda.org/t/*****/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda#bf830ba5afc507c6232d4ef0fb1a882d
https://conda.anaconda.org/t/*****/conda-forge/osx-64/volk-3.2.0-hfa89f99_0.conda#9d01c9a15d3c1008e4510fa759f2ccec
https://conda.anaconda.org/t/*****/conda-forge/osx-64/volk-gnss-sdr-0.0.19-h82088ff_8.conda#c9619c2a23cd3b66d247dcd2ce3f449f
https://conda.anaconda.org/t/*****/conda-forge/osx-64/zlib-1.3.1-hd23fc13_2.conda#c989e0295dcbdc08106fe5d9e935f0b9
https://conda.anaconda.org/t/*****/conda-forge/osx-64/zstd-1.5.7-h8210216_1.conda#b6931d7aedc272edf329a632d840e3d9
https://conda.anaconda.org/t/*****/conda-forge/osx-64/airspy-1.0.10-h6e16a3a_1.conda#797d35c19d0c4670f088c84472fb9dd6
https://conda.anaconda.org/t/*****/conda-forge/osx-64/airspyhf-1.6.8-h6e16a3a_1.conda#f0fa2996570673972fcc4bca8134950b
https://conda.anaconda.org/t/*****/conda-forge/osx-64/brotli-bin-1.1.0-h00291cd_2.conda#049933ecbf552479a12c7917f0a4ce59
https://conda.anaconda.org/t/*****/conda-forge/osx-64/freetype-2.13.3-h40dfd5c_0.conda#e391f0c2d07df272cf7c6df235e97bb9
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gettext-tools-0.23.1-h27064b9_0.conda#a6bc310a08cf42286627c818da4c0ba1
https://conda.anaconda.org/t/*****/conda-forge/osx-64/glog-0.7.1-h2790a97_0.conda#06cf91665775b0da395229cd4331b27d
https://conda.anaconda.org/t/*****/conda-forge/osx-64/hamlib-4.6.2-h4b0d998_2.conda#d77a22334ecc440cee216701ad2d2781
https://conda.anaconda.org/t/*****/conda-forge/osx-64/hamlib-tcl-4.6.2-h2c093e9_2.conda#d26bed830bfe43263f401197cc388b66
https://conda.anaconda.org/t/*****/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda#d4765c524b1d91567886bde656fb514b
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libasprintf-devel-0.23.1-h27064b9_0.conda#85b6f23aab6898c44f477f354c675721
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libboost-1.86.0-hf0da243_3.conda#1e25fad7b2c160cd3b9b52f3507eb272
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libgettextpo-0.23.1-h27064b9_0.conda#352ffb2b7788775a65a32c018d972a8a
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda#0b6e23a012ee7a9a5f6b244f5a92c1d5
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libglib-2.82.2-h5c976ab_1.conda#05e05255a2e9c5e9c1b6322d84b4999b
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libiio-c-0.26-h699925a_1.conda#c4672c9c974f6a25cb31d45c768ab4f3
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libintl-devel-0.23.1-h27064b9_0.conda#6d4a30603b01f15bb643e14a9807e46c
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libllvm17-17.0.6-hbedff68_1.conda#fcd38f0553a99fa279fb66a5bfc2fb28
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libllvm19-19.1.7-hc29ff6c_1.conda#a937150d07aa51b50ded6a0816df4a5a
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libprotobuf-5.28.3-h6401091_1.conda#5601e7ce099eb72741e9cd6413f42a07
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libthrift-0.21.0-h75589b3_0.conda#7a472cd20d9ae866aeb6e292b33381d6
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libtiff-4.7.0-hb77a491_3.conda#6f2f9df7b093d6b33bc0c334acc7d2d9
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libxslt-1.1.39-h03b04e6_0.conda#a6e0cec6b3517ffc6b5d36a920fc9312
https://conda.anaconda.org/t/*****/conda-forge/osx-64/lua-5.4.6-hf600f6b_1.conda#cbff4f4475f6f7870d7249149fbd161e
https://conda.anaconda.org/t/*****/conda-forge/osx-64/mirisdr-2.0.0-h6e16a3a_1.conda#37e24b0707544b8cc296d539d46fdf11
https://conda.anaconda.org/t/*****/conda-forge/osx-64/mysql-libs-9.0.1-h062309a_5.conda#39a82f0f33b6ce7e60ff0f19a767005a
https://conda.anaconda.org/t/*****/conda-forge/osx-64/nss-3.108-h32a8879_0.conda#6205aa62494689d1bdd26ca01af72268
https://conda.anaconda.org/t/*****/conda-forge/osx-64/python-3.12.9-h9ccd52b_1_cpython.conda#b878567b6b749f993dbdbc2834115bc3
https://conda.anaconda.org/t/*****/conda-forge/osx-64/spdlog-1.15.1-h65da0ee_0.conda#869e2924e6f2f44803b550b7059e7395
https://conda.anaconda.org/t/*****/conda-forge/osx-64/xorg-libx11-1.8.12-h217831a_0.conda#4b83c16519d328361b001ae732955fc9
https://conda.anaconda.org/t/*****/conda-forge/noarch/appdirs-1.4.4-pyhd8ed1ab_1.conda#f4e90937bbfc3a4a92539545a37bb448
https://conda.anaconda.org/t/*****/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda#8f587de4bcf981e26228f268df374a9b
https://conda.anaconda.org/t/*****/conda-forge/osx-64/atk-1.0-2.38.0-h4bec284_2.conda#d9684247c943d492d9aac8687bc5db77
https://conda.anaconda.org/t/*****/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda#a10d11958cadc13fdb43df75f8b1903f
https://conda.anaconda.org/t/*****/conda-forge/osx-64/bcrypt-4.3.0-py312h0d0de52_0.conda#9bee8f0be2c5aa07ed11df1356bdacaa
https://conda.anaconda.org/t/*****/conda-forge/noarch/bidict-0.23.1-pyhd8ed1ab_1.conda#a6d521e8054c6b38aea1095060bd7e14
https://conda.anaconda.org/t/*****/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda#42834439227a4551b939beeeb8a4b085
https://conda.anaconda.org/t/*****/conda-forge/osx-64/brotli-1.1.0-h00291cd_2.conda#2db0c38a7f2321c5bdaf32b181e832c7
https://conda.anaconda.org/t/*****/conda-forge/osx-64/brotli-python-1.1.0-py312h5861a67_2.conda#b95025822e43128835826ec0cc45a551
https://conda.anaconda.org/t/*****/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a
https://conda.anaconda.org/t/*****/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda#c207fa5ac7ea99b149344385a9c0880d
https://conda.anaconda.org/t/*****/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda#e83a31202d1c0a000fce3e9cf3825875
https://conda.anaconda.org/t/*****/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda#f22f4d4970e09d68a10b922cbb0408d3
https://conda.anaconda.org/t/*****/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda#962b9857ee8e7018c22f2776ffa0b2d7
https://conda.anaconda.org/t/*****/conda-forge/noarch/construct-2.10.70-pyhd8ed1ab_0.conda#58e88566bfbbf9d3ffbeda3290e7f4f0
https://conda.anaconda.org/t/*****/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda#44600c4667a319d67dbe0681fc0bc833
https://conda.anaconda.org/t/*****/conda-forge/osx-64/cyrus-sasl-2.1.27-hf9bab2b_7.conda#b3a8aa48d3d5e1bfb31ee3bde1f2c544
https://conda.anaconda.org/t/*****/conda-forge/osx-64/dbus-1.13.6-h811a1a6_3.tar.bz2#ea13787a6153d0b4bfed3ece7ea54820
https://conda.anaconda.org/t/*****/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda#9ce473d1d1be1cc3810856a48b3fab32
https://conda.anaconda.org/t/*****/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda#24c1ca34138ee57de72a943237cde4cc
https://conda.anaconda.org/t/*****/conda-forge/osx-64/ephem-4.2-py312h01d7ebd_0.conda#7c671e5180c3e7204cba4b6ad3f116af
https://conda.anaconda.org/t/*****/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda#a16662747cdeb9abbac74d0057cc976e
https://conda.anaconda.org/t/*****/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda#ef8b5fca76806159fc25b4f48d8737eb
https://conda.anaconda.org/t/*****/conda-forge/osx-64/fftw-3.3.10-nompi_h292e606_110.conda#e05219cbabb20b406ff0803a3e552419
https://conda.anaconda.org/t/*****/conda-forge/osx-64/fontconfig-2.15.0-h37eeddb_1.conda#84ccec5ee37eb03dd352db0a3f89ada3
https://conda.anaconda.org/t/*****/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_2.conda#1054c53c95d85e35b88143a3eda66373
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gdk-pixbuf-2.42.12-ha587570_0.conda#ee186d2e8db4605030753dc05025d4a0
https://conda.anaconda.org/t/*****/conda-forge/osx-64/glib-tools-2.82.2-hf8faeaf_1.conda#9c64be7c2dbbdde429d12a84c538ef1e
https://conda.anaconda.org/t/*****/conda-forge/osx-64/greenlet-3.1.1-py312haafddd8_1.conda#19975de700ec101663d9bbef10d6ee9c
https://conda.anaconda.org/t/*****/conda-forge/osx-64/hamlib-lua-4.6.2-lua54h6e16a3a_2.conda#355c1adcf9269ba26609b1d6a4a19207
https://conda.anaconda.org/t/*****/conda-forge/osx-64/hamlib-python-4.6.2-py312h01d7ebd_2.conda#ad8345d5f64dfbab379f49832524d5a9
https://conda.anaconda.org/t/*****/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda#0a802cb9888dd14eeefc611f05c40b6e
https://conda.anaconda.org/t/*****/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda#8e6923fc12f1fe8f8c4e5c9f343256ac
https://conda.anaconda.org/t/*****/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda#39a4f67be3286c86d696df570b1201b7
https://conda.anaconda.org/t/*****/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_1.conda#7ac5f795c15f288984e32add616cdc59
https://conda.anaconda.org/t/*****/conda-forge/osx-64/kiwisolver-1.4.8-py312h9275861_0.conda#88135d68c4ab7e6aedf52765b92acc70
https://conda.anaconda.org/t/*****/conda-forge/osx-64/lcms2-2.17-h72f5680_0.conda#bf210d0c63f2afb9e414a858b79f0eaa
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libad9361-iio-c-0.3-h9eea90d_1.conda#e3aa77c08e7ed7988e2a3a958bf44ddf
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libclang-cpp17-17.0.6-default_h3571c67_8.conda#448cfb783b49dd497c41c75e570e220c
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libclang13-19.1.7-default_hf2b7afa_1.conda#a05f68439c2b11e1fe74ae7fab57c84a
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libcurl-8.12.1-h5dec5d8_0.conda#b39e6b74b4eb475eacdfd463fce82138
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libgettextpo-devel-0.23.1-h27064b9_0.conda#fea8af9c8a5d38b3b1b7f72dc3d7080a
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libm2k-0.9.0-py312h3a92375_1.conda#a76cfa0fe4aa21134aa55b10230988b2
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libopenblas-0.3.29-openmp_hbf64a52_0.conda#a30dc52b2a8b6300f17eaabd2f940d41
https://conda.anaconda.org/t/*****/conda-forge/osx-64/lxml-5.3.1-py312h91b2f42_0.conda#a1b3a0206fc6c434fadc25d818002b82
https://conda.anaconda.org/t/*****/conda-forge/osx-64/m17-cxx-demod-2.3.3-haaa64e9_5.conda#04f6d5e81e5aad259688ff4879e824de
https://conda.anaconda.org/t/*****/conda-forge/osx-64/markupsafe-3.0.2-py312h3520af0_1.conda#32d6bc2407685d7e2d8db424f42018c6
https://conda.anaconda.org/t/*****/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19
https://conda.anaconda.org/t/*****/conda-forge/osx-64/openjpeg-2.5.3-h7fd6d84_0.conda#025c711177fc3309228ca1a32374458d
https://conda.anaconda.org/t/*****/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda#3bfed7e6228ebf2f7b9eaa47f1b4e2aa
https://conda.anaconda.org/t/*****/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda#5c092057b6badd30f75b06244ecd01c9
https://conda.anaconda.org/t/*****/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda#11a9d1d09a3615fc07c3faf79bc0b943
https://conda.anaconda.org/t/*****/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda#5a5870a74432aa332f7d32180633ad05
https://conda.anaconda.org/t/*****/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda#fd5062942bfa1b0bd5e0d2a4397b099e
https://conda.anaconda.org/t/*****/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda#7d9daffbb8d8e0af0f769dbbcd173a54
https://conda.anaconda.org/t/*****/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda#3bfdfb8dbcdc4af1ae3f9a8eb3948f04
https://conda.anaconda.org/t/*****/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda#12c566707c80111f9799308d9e265aef
https://conda.anaconda.org/t/*****/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda#232fb4577b6687b2d503ef8e254270c9
https://conda.anaconda.org/t/*****/conda-forge/noarch/pylibiio-0.26-py_1.conda#3be73c72b1383b1f0e9690333780d6cd
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyopengl-3.1.7-pyhd8ed1ab_0.conda#6d7d03be8e7f788b444c15262408d063
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyparsing-3.2.1-pyhd8ed1ab_0.conda#285e237b8f351e85e7574a2c7bfa6d46
https://conda.anaconda.org/t/*****/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda#461219d1a5bd61342293efa2c0c90eac
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-tzdata-2025.1-pyhd8ed1ab_0.conda#392c91c42edd569a7ec99ed8648f597a
https://conda.anaconda.org/t/*****/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda#3eeeeb9e4827ace8c0c1419c85d590ad
https://conda.anaconda.org/t/*****/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2#2807a0becd1d986fe1ef9b7f8135f215
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pyyaml-6.0.2-py312h3520af0_2.conda#4a2d83ac55752681d54f781534ddd209
https://conda.anaconda.org/t/*****/conda-forge/osx-64/rpds-py-0.23.1-py312hb59e30e_0.conda#b77397ede545ef388c85d795a986b40a
https://conda.anaconda.org/t/*****/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py312h3d0f464_1.conda#f4c0464f98dabcd65064e89991c3c9c2
https://conda.anaconda.org/t/*****/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda#9bddfdbf4e061821a1a443f93223be61
https://conda.anaconda.org/t/*****/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda#a451d576819089b0d672f18768be0f65
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-0.8.1-py312hc5c4d5f_5.conda#89d9c78b992dd0c558345c5711c32404
https://conda.anaconda.org/t/*****/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda#b0dd904de08b7db706167240bf37b164
https://conda.anaconda.org/t/*****/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda#ac944244f1fed2eb49bae07193ae8215
https://conda.anaconda.org/t/*****/conda-forge/osx-64/tornado-6.4.2-py312h01d7ebd_0.conda#1b977164053085b356297127d3d6be49
https://conda.anaconda.org/t/*****/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda#019a7385be9af33791c989871317e1ed
https://conda.anaconda.org/t/*****/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda#d17f13df8b65464ca316cbc000a3cb64
https://conda.anaconda.org/t/*****/conda-forge/osx-64/unicodedata2-16.0.0-py312h01d7ebd_0.conda#27740ecb2764b1cddbe1e7412ed16034
https://conda.anaconda.org/t/*****/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda#b68980f2495d096e71c7fd9d7ccf63e6
https://conda.anaconda.org/t/*****/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda#84f8f77f0a9c6ef401ee96611745da8f
https://conda.anaconda.org/t/*****/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda#75cb7132eb58d97896e173ef12ac9986
https://conda.anaconda.org/t/*****/conda-forge/osx-64/xorg-libxext-1.3.6-h00291cd_0.conda#62f4f9d7a6c176be164329b4a1fc2616
https://conda.anaconda.org/t/*****/conda-forge/osx-64/xorg-libxfixes-6.0.1-h00291cd_0.conda#466ace5d8c55c03e571e7c0dcd288b17
https://conda.anaconda.org/t/*****/conda-forge/osx-64/xorg-libxrender-0.9.12-h6e16a3a_0.conda#15949671046839008f5e782dfbf63e65
https://conda.anaconda.org/t/*****/conda-forge/osx-64/zeromq-4.3.5-h7130eaa_7.conda#6a0a76cd2b3d575e1b7aaeb283b9c3ed
https://conda.anaconda.org/t/*****/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda#0c3cc595284c5e8f0f9900a9b228a332
https://conda.anaconda.org/t/*****/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551
https://conda.anaconda.org/t/*****/conda-forge/osx-64/cairo-1.18.4-h950ec3b_0.conda#32403b4ef529a2018e4d8c4f2a719f16
https://conda.anaconda.org/t/*****/conda-forge/osx-64/cffi-1.17.1-py312hf857d28_0.conda#5bbc69b8194fedc2792e451026cac34f
https://conda.anaconda.org/t/*****/conda-forge/osx-64/fonttools-4.56.0-py312h3520af0_0.conda#9b603b2fa3072c966ef2ff119e8203f3
https://conda.anaconda.org/t/*****/conda-forge/noarch/fs-2.4.16-pyhd8ed1ab_0.conda#a231fa7cb5f101f1f3ae8480c0002f91
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gettext-0.23.1-hd385c8e_0.conda#22d89ca70e22979c38bd0146abf21c2a
https://conda.anaconda.org/t/*****/conda-forge/osx-64/glib-2.82.2-h915cd9b_1.conda#d9048176e6c7e96f52927e752b71136b
https://conda.anaconda.org/t/*****/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda#7ee49e89531c0dcbba9466f6d115d585
https://conda.anaconda.org/t/*****/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda#b4754fb1bdcb70c8fd54f918301582c6
https://conda.anaconda.org/t/*****/conda-forge/osx-64/hackrf-2024.02.1-h979b6e9_1.conda#23fb7ffa732ada9b59a306bdd80ec669
https://conda.anaconda.org/t/*****/conda-forge/noarch/hamlib-all-4.6.2-osx_2.conda#7dcf53c55bbff281ad826d44dde9ca84
https://conda.anaconda.org/t/*****/conda-forge/osx-64/hdf5-1.14.3-nompi_h1607680_109.conda#aa2b87330df24a89585b9d3e4d70c4d4
https://conda.anaconda.org/t/*****/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda#f4b39bf00c69f56ac01e020ebfac066c
https://conda.anaconda.org/t/*****/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda#c85c76dc67d75619a92f51dfbce06992
https://conda.anaconda.org/t/*****/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda#bd80ba060603cc228d9d81c257093119
https://conda.anaconda.org/t/*****/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda#a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9
https://conda.anaconda.org/t/*****/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda#446bd6c8cb26050d528881df495ce646
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libblas-3.9.0-31_h7f60823_openblas.conda#a8c1c9f95d1c46d67028a6146c1ea77c
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libiio-0.26-h98b3b24_1.conda#1ae331913d288794754c3696a1de63d6
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libliquid1-1.6.0-h8a64ec7_2.conda#7c7eb733e95ab82b59aa5af8f5b8a064
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libosmodsp0-0.4.0-h8a64ec7_2.conda#00bde4c9fc29ddb57b453f6249a72d09
https://conda.anaconda.org/t/*****/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda#af6ab708897df59bd6e7283ceab1b56b
https://conda.anaconda.org/t/*****/conda-forge/osx-64/openldap-2.6.9-hd8a590d_0.conda#10dff9d8c67ae8b807b9fe8cfe9ca1d0
https://conda.anaconda.org/t/*****/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda#d0d408b1f18883a944376da5cf8101ea
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pillow-11.1.0-py312hd9f36e3_0.conda#3b4657a78aaca3af9b392b0657eb3e94
https://conda.anaconda.org/t/*****/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda#79b5c1440aedc5010f687048d9103628
https://conda.anaconda.org/t/*****/conda-forge/noarch/prompt-toolkit-3.0.50-pyha770c72_0.conda#7d823138f550b14ecae927a5ff3286de
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyfiglet-0.8.post1-py_0.tar.bz2#e22d3c090f24856764e9d70e76fa3a5f
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda#5ba79d7c71f03c678c8ead841f347d6e
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pyzmq-26.3.0-py312h679dbab_0.conda#64faf394b4c93ad0e53e5e7d24cda358
https://conda.anaconda.org/t/*****/conda-forge/noarch/qtpy-2.4.3-pyhd8ed1ab_0.conda#c9ca35b6fb8fa9af418625192c118567
https://conda.anaconda.org/t/*****/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda#9140f1c09dd5489549c6a33931b943c7
https://conda.anaconda.org/t/*****/conda-forge/osx-64/ruamel.yaml-0.18.10-py312h01d7ebd_0.conda#e6fb89d650ea648b6be3bf2fa5026523
https://conda.anaconda.org/t/*****/conda-forge/osx-64/sdl3-3.2.8-h6dd79e8_0.conda#9c5cef995bcf827cc60796295e7a9846
https://conda.anaconda.org/t/*****/conda-forge/osx-64/sip-6.7.12-py312h444b7ae_0.conda#9c576e4025eb39cadac5b418d6203d38
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-module-airspy-0.2.0-ha64c28d_0.tar.bz2#b59403f2f4c2a8a5e63e1c85eac94721
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-module-airspyhf-0.2.0-ha64c28d_0.tar.bz2#db15c5581723856f829b15729a93b61b
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-module-audio-0.1.1-h4045702_2.conda#6e3e87c840cc1ba0edae90eedb986584
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-module-bladerf-0.4.1-h3f20bda_0.tar.bz2#9d17170198be228b05d25997cd53f5cb
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-module-hackrf-0.3.4-ha64c28d_0.tar.bz2#e995f7c2dcdf42749638838e3c0b53da
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-module-lms7-23.11.0-hd56791b_1.conda#1da83b05474dac999117c0401f132908
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-module-netsdr-0.2.0-h7ecdfb7_1.conda#057b901107874beef0dc507365d4e226
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-module-plutosdr-0.2.2-h71197eb_1.conda#88a8b909aaf5adc0bdffcc6a3dba281b
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-module-redpitaya-0.1.1-h7ecdfb7_0.conda#9365abf68cbb1a315f2b42333081b14b
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-module-remote-0.5.2-ha64c28d_2.tar.bz2#b46013cf640ecbe5bfb5ecb01d53561c
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-module-rtlsdr-0.3.3-h4104cfc_2.conda#04c6e158e3d0279348317b5cceb8c365
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-module-volk-converters-0.1.1-ha5c124a_3.conda#820b42a2b76b0089540f6c08b55dfca1
https://conda.anaconda.org/t/*****/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda#b1b505328da7a6b246787df4b5a49fbc
https://conda.anaconda.org/t/*****/conda-forge/osx-64/watchdog-6.0.0-py312h01d7ebd_0.conda#6bf329e9cdc3e6d65c0d11a43eca6e21
https://conda.anaconda.org/t/*****/conda-forge/noarch/werkzeug-3.1.3-pyhd8ed1ab_1.conda#0a9b57c159d56b508613cc39022c1b9e
https://conda.anaconda.org/t/*****/conda-forge/osx-64/xorg-libxdamage-1.1.6-h00291cd_0.conda#e5676cd0b207fc981cda61dff7fa8553
https://conda.anaconda.org/t/*****/conda-forge/osx-64/xorg-libxrandr-1.5.4-h00291cd_0.conda#5c1b6e96c60d0fb520898f2668352470
https://conda.anaconda.org/t/*****/conda-forge/noarch/zope.event-5.0-pyhd8ed1ab_1.conda#eed0f4438d9f9cc67314ed2926c3cdd3
https://conda.anaconda.org/t/*****/conda-forge/osx-64/zope.interface-7.2-py312h01d7ebd_0.conda#85291fede63ab150b08c785d05bade4c
https://conda.anaconda.org/t/*****/conda-forge/noarch/asciimatics-1.15.0-pyhd8ed1ab_1.conda#1e4474adec5bda131d146a587dcf5c79
https://conda.anaconda.org/t/*****/conda-forge/osx-64/cryptography-44.0.2-py312h0995e51_0.conda#f7bc4b60452afd2b788172a8e12a0371
https://conda.anaconda.org/t/*****/conda-forge/noarch/flask-3.1.0-pyhd8ed1ab_1.conda#2da939620e3a741f61fc1cb136df66fb
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gevent-24.11.1-py312hd2a4d73_0.conda#0b5e2e1043cd19cb10fdb766a8fc324c
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gstreamer-1.24.7-h3271b85_0.conda#9605eae5ac683af5aeb0aef5dc7871fb
https://conda.anaconda.org/t/*****/conda-forge/osx-64/harfbuzz-10.4.0-h86b413f_0.conda#05493515d0b4467f8229f1e154ec80c3
https://conda.anaconda.org/t/*****/conda-forge/noarch/ipython-9.0.2-pyhfb0248b_0.conda#b031bcd65b260a0a3353531eab50d465
https://conda.anaconda.org/t/*****/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda#3b519bc21bc80e60b456f1e62962a766
https://conda.anaconda.org/t/*****/conda-forge/noarch/libbladerf-python-2024.05-py_2.conda#1463dfd317f3603a9593cac153527c6e
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libcblas-3.9.0-31_hff6cab4_openblas.conda#c655cc2b0c48ec454f7a4db92415d012
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libflac-1.4.3-he965462_0.conda#7e330625e51803556425142ca5ccbdd8
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libgirepository-1.82.0-hdf4f3f7_0.conda#9b20e7a0c62f4446253dd4f5cb53bd02
https://conda.anaconda.org/t/*****/conda-forge/osx-64/liblapack-3.9.0-31_h236ab99_openblas.conda#d0f3bc17e0acef003cb9d9195a205888
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libmatio-1.5.28-h0572109_2.conda#abee721ed63e85a94f6923a6aae16699
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libpq-17.4-h9c5cfc2_0.conda#a3d6873b396f5dfdb5e4674ef01a9c13
https://conda.anaconda.org/t/*****/conda-forge/noarch/mako-1.3.9-pyhd8ed1ab_0.conda#422113c902cc5181ccaafbb4b827e492
https://conda.anaconda.org/t/*****/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda#06e9bebf748a0dea03ecbe1f0e27e909
https://conda.anaconda.org/t/*****/conda-forge/osx-64/mesalib-25.0.1-hc187380_0.conda#a33602a8eb9b05c82f4f17d06fc3bfc7
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pycairo-1.27.0-py312hc3eca63_0.conda#bfd17b0b7d82cf5fe23c272a2600392c
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pynacl-1.5.0-py312hb553811_4.conda#88be5bbe28b39b591eb61520d12658d0
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pyqt5-sip-12.12.2-py312he36337a_5.conda#933ecaa04344fbbe126f9cb731adeb84
https://conda.anaconda.org/t/*****/conda-forge/noarch/qdarkstyle-3.2.3-pyhd8ed1ab_1.conda#b5d204064e9c816535282a94f30a40c9
https://conda.anaconda.org/t/*****/conda-forge/osx-64/sdl2-2.32.50-hc0cb955_1.conda#9b99d270e406fdd34cb397c5c018f424
https://conda.anaconda.org/t/*****/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_1.conda#2c7536a04d9c21e1dd05bd4a3b1e3a39
https://conda.anaconda.org/t/*****/conda-forge/osx-64/zstandard-0.23.0-py312h01d7ebd_1.conda#493516415601e57f73bda23e91dda742
https://conda.anaconda.org/t/*****/conda-forge/osx-64/arpack-3.9.1-nompi_hdfe9103_102.conda#4fbf1ddfe3784263c01b7c33e6a6a3f7
https://conda.anaconda.org/t/*****/conda-forge/osx-64/bladerf-2024.05-h6e16a3a_2.conda#543918f9d39b3779093c6c80ec27f078
https://conda.anaconda.org/t/*****/conda-forge/noarch/gevent-websocket-0.10.1-py_0.tar.bz2#25b4b60b6ea50368cd90b75b4d00c711
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gsl-2.7-h93259b0_0.tar.bz2#b4942b1ee2a52fd67f446074488d774d
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gst-plugins-base-1.24.7-h0ee1d58_0.conda#f012d1ef168db3b601031bcef1c47343
https://conda.anaconda.org/t/*****/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda#a3cead9264b331b32fe8f0aabc967522
https://conda.anaconda.org/t/*****/conda-forge/osx-64/libsndfile-1.2.2-h9603cec_1.conda#8440dcb1adeceda826729f4244f0fd14
https://conda.anaconda.org/t/*****/conda-forge/osx-64/numpy-2.2.3-py312h6693b03_0.conda#19ba5fe74ffc9d196a75fbe1a3cd5fe3
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pango-1.56.2-hf94f63b_0.conda#8a9f86f40969b0e1bb6c79948f182c8e
https://conda.anaconda.org/t/*****/conda-forge/noarch/paramiko-3.5.1-pyhd8ed1ab_0.conda#4e6bea7eee94bb9d8a599385215719f9
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pygobject-3.50.0-py312h30111ac_1.conda#cc3539c885b6c74cf9f09f46533db930
https://conda.anaconda.org/t/*****/conda-forge/osx-64/sdl-1.2.68-hc0cb955_1.conda#c86e5594a623e90ceef8ed75d513cc5b
https://conda.anaconda.org/t/*****/conda-forge/noarch/simple-websocket-1.1.0-pyhd8ed1ab_0.conda#62e0b21f75a81735ddc72e6019d27c16
https://conda.anaconda.org/t/*****/conda-forge/osx-64/superlu-5.2.2-h1f0f902_0.tar.bz2#415a218b750ec31760d6a530d11dc98d
https://conda.anaconda.org/t/*****/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda#32674f8dbfb7b26410ed580dd3c10a29
https://conda.anaconda.org/t/*****/conda-forge/osx-64/wxwidgets-3.2.6-h91367df_3.conda#aabf76198008c19e56a6be361213592f
https://conda.anaconda.org/t/*****/conda-forge/osx-64/armadillo-14.4.0-h771da8f_0.conda#d0dc282bd92bb96522bec116996b5e5d
https://conda.anaconda.org/t/*****/conda-forge/osx-64/contourpy-1.3.1-py312hc47a885_0.conda#94715deb514df3f341f62bc2ffea5637
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-pmt-3.10.12.0-py312h1b5aeec_1.conda#3a3029a2e4ba6b6b98b27d329811b44c
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gtk3-3.24.43-h82a860e_4.conda#522364f052b5e18bfea181e33d1eed1b
https://conda.anaconda.org/t/*****/conda-forge/osx-64/h5py-3.13.0-nompi_py312hea5ca7c_100.conda#55bc071459c1de6abc4d02133a540021
https://conda.anaconda.org/t/*****/conda-forge/osx-64/librsvg-2.58.4-h21a6cfa_2.conda#0aa68f5a6ebfd2254daae40170439f03
https://conda.anaconda.org/t/*****/conda-forge/osx-64/limesuite-23.11.0-h8f9d4fd_1.conda#24b1b39b75d7870a61760a0ae05f32ba
https://conda.anaconda.org/t/*****/conda-forge/osx-64/numexpr-2.10.2-py312ha51eba0_0.conda#ffe2e5fb72043ed4aeb2877f3e0e61fd
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pandas-2.2.3-py312h98e817e_1.conda#a7f7c58bbbfcdf820edb6e544555fe8f
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyadi-iio-0.0.19-pyhd8ed1ab_0.conda#aca3bc166b666f8951a3f8b41f0d05be
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyqtgraph-0.13.7-pyhd8ed1ab_1.conda#569357b4d0b4565c57698a6e2dade74e
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-engineio-4.11.2-pyhff2d567_0.conda#480833a0855e1d1782d8ec3aa9d91db2
https://conda.anaconda.org/t/*****/conda-forge/osx-64/qt-main-5.15.15-h30a8c49_2.conda#7ae830dbcf46d82330392433104b15e0
https://conda.anaconda.org/t/*****/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda#a9b9368f3701a417eac9edbcae7cb737
https://conda.anaconda.org/t/*****/conda-forge/osx-64/scipy-1.15.2-py312hd04560d_0.conda#cea880e674e00193c7fb915eea6c8200
https://conda.anaconda.org/t/*****/conda-forge/noarch/adwaita-icon-theme-47.0-unix_0.conda#49436a5c604f99058473d84580f0e341
https://conda.anaconda.org/t/*****/conda-forge/osx-64/digital_rf-2.6.11-py312hb4e6a8e_0.conda#b605165ef9aef34fbf4c2688d1f2fa82
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-core-3.10.12.0-py312h74f4228_1.conda#5b6a78578d7b288546cfdd45062a1dbf
https://conda.anaconda.org/t/*****/conda-forge/osx-64/inspectrum-0.3.1-h4507090_0.conda#fae8fbc19b18b70bab47e05e0ea8361a
https://conda.anaconda.org/t/*****/conda-forge/osx-64/matplotlib-base-3.10.1-py312h535dea3_0.conda#9cbfac1eb73702dd1e4f379564658d48
https://conda.anaconda.org/t/*****/conda-forge/osx-64/pyqt-5.15.9-py312hd74d816_5.conda#d62c7597491cbfd388936263fc592670
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-socketio-5.12.1-pyhd8ed1ab_0.conda#d3ef77c1cebc66115af8109e893480b2
https://conda.anaconda.org/t/*****/conda-forge/osx-64/qwt-6.3.0-h69e1d46_0.conda#c14911f58f838744a023082cd842ec1a
https://conda.anaconda.org/t/*****/conda-forge/osx-64/uhd-4.8.0.0-py312h807a617_0.conda#42cc637c414b739cc26b2c8d68aa198f
https://conda.anaconda.org/t/*****/conda-forge/noarch/flask-socketio-5.5.1-pyh29332c3_0.conda#03fb6a9594f156a510118a5b4fe64a02
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-dect2-0.0.0.20250304.dev%2Bg27a3d6-np20py312ha54dcc3_1.conda#cb869a1662f5f74bdeec26e442d2b549
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-filerepeater-0.0.0.20250304.dev%2Bgec6b386-np20py312hd6957e9_2.conda#37734b9389ffdcd21b0fddbb19b1cbb6
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-foo-0.0.0.20250304.dev%2Bg9e0e2-np20py312ha031aef_1.conda#b8d74ddce1106a7e9bb53f8792118810
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-fosphor-0.0.0.20250304.dev%2Bg85a0b8f-np20py312hbc77901_1.conda#6f44d0760e25ae7214d6ced786e0652f
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-gpredict-doppler-0.0.0.20250303.dev%2Bg9473cbf-unix_py_1.conda#2a8e3e6791c85a38c88dfc94292dd084
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-grc-3.10.12.0-py312h4fad5d9_1.conda#21b2815051b900114acc56d2191c41ba
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-hermeslite2-1.0.0.0.post20250305%2Bg2e66561-np20py312ha54dcc3_0.conda#7e3bf0806ed3c468f27a0c35ffa85c14
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-hpsdr-0.0.0.20250304.dev%2Bg7748cc9-np20py312ha54dcc3_1.conda#693c2c3fc4cd9a5074a558013d90513b
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-iio-3.10.12.0-py312h0ef5ef5_1.conda#2a465577d17bb7d9265652d1345550b0
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-iqbalance-0.38.2-py312h792ae45_7.conda#2e7f10a70f3f593d337fafa568359339
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-iridium-1%211.0.0-py312h8846ea6_16.conda#394023bb5c91501b1725e14e7bced5c0
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-leo-1.0.0.post20250214%2Bg8f62b92-np20py312ha067ba0_2.conda#b60739349fc0a34f074a5a24415fc0bf
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-lora_sdr-0.0.0.20250305.dev%2Bga8143cb-np20py312hcd68dcb_0.conda#9a0790f0490ec05bfab1454377cb252a
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-m2k-1.0.0-py312he14e3f5_13.conda#9b3a335c0e58433043392ff7267cef92
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-paint-0.0.0.20250303.dev%2Bgfb4f7b6-np20py312hcd68dcb_2.conda#ab5663de0ef6a3dbd5e63c88819dc6c0
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-qtgui-3.10.12.0-py312h37fa559_1.conda#ea5d97c1fff190d65ba3f5aa75e87c62
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-radar-0.0.0.20250220.dev%2Bg92adce2-np20py312hd333b83_1.conda#8de991c8df9d5e6a843f4d86880638cb
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-rds-3.10.post20250305%2Bgc1cba54-np20py312ha54dcc3_0.conda#e20dc3e71edbbc7540fe1ed65b884379
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-soapy-3.10.12.0-py312hcd7aecb_1.conda#7a52353308a97aaf5f703d4b8b81ee11
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-uhd-3.10.12.0-py312h882d36b_1.conda#e55bc5ca6286e4b0387cf7b19db7b589
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-video-sdl-3.10.12.0-py312h4fad5d9_1.conda#00447f1901d54caa98aaa736dc50caad
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-zeromq-3.10.12.0-py312h074ed27_1.conda#92da88334b061d4d889f2982371d1cca
https://conda.anaconda.org/t/*****/conda-forge/osx-64/matplotlib-3.10.1-py312hb401068_0.conda#f2fb30daab9368843c5776fa9fe8c842
https://conda.anaconda.org/t/*****/conda-forge/noarch/mplcursors-0.6-pyhd8ed1ab_1.conda#fa7bf31f4427e5582f7373d0ba8498f6
https://conda.anaconda.org/t/*****/conda-forge/osx-64/soapysdr-module-uhd-0.4.1-h7986aa4_14.conda#6c1b727238ef4fd5465b799bb189e176
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-3.10.12.0-py312h0b3b3f0_1.conda#d6ced7a06d768aa2969adca0f45d23c1
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-adsb-0.0.0.20250304.dev%2Bg9645757-unix_py_1.conda#9e67f1f65df571de24cf8b19f06a51fb
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-ieee802_11-0.0.0.20250304.dev%2Bg761bdd9-np20py312hb9afde1_1.conda#c4e280cf4703f43e969a20887dbeb906
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-ieee802_15_4-3.6.post20250304%2Bg61f4c4a-np20py312hcd68dcb_1.conda#f8777eddfc8f9e1779683e02e54cd350
https://conda.anaconda.org/t/*****/ryanvolz/osx-64/gnuradio-inspector-0.0.0.20250303.dev%2Bgad6a69e-np20py312h3c55089_1.conda#48582e5d2f9f26abe7eb9a30f6bde439
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-osmosdr-0.2.6-py312h338709e_7.conda#573d7e7d1747faf8facf019d75238527
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnuradio-satellites-5.7.0-py312h334535e_1.conda#37ab4ff23cae981838ad728cef0f7537
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyfda-0.9.2-pyh9208f05_1.conda#a1fdcc4e47c1abb4e0554e2fd02a841c
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gnss-sdr-0.0.19-h27504fe_8.conda#e316f38984fca6538152b7601f1d1127
https://conda.anaconda.org/t/*****/conda-forge/osx-64/gqrx-2.17.6-h33da310_1.conda#d278a5edd5c36ec66bf019f4c3af1ea1

View File

@ -2,68 +2,68 @@ channels:
- conda-forge
- ryanvolz
dependencies:
- airspy=1.0.10=h0d85af4_0
- airspyhf=1.6.8=h0d85af4_0
- bladerf=2023.02=hb7f2c08_0
- codec2=1.0.3=h0d85af4_0
- digital_rf=2.6.9=py311h4b6fc2c_0
- ephem=4.1.5=py311he705e18_1
- gnss-sdr=0.0.18=h1fe6a09_19
- gnuradio-adsb=0.0.0.20240508.dev+gafd7fabda=unix_pyha6c0e43_0
- gnuradio-dect2=0.0.0.20240502.dev+gb296af2a9=py311hcd972f0_0
- gnuradio-filerepeater=0.0.0.20240502.dev+gd7bb8846c=py311ha3c3dc6_0
- gnuradio-foo=0.0.0.20240502.dev+gc53538a22=py311hedea448_0
- gnuradio-fosphor=0.0.0.20240502.dev+g656fe2f=py311he56f0a3_0
- gnuradio-gpredict-doppler=0.0.0.20240508.dev+gb06bc7678=unix_pyha1ad6f9_0
- gnuradio-hermeslite2=v1.0.0.0.post17+8b17ad3=py311hcd972f0_0
- gnuradio-hpsdr=0.0.0.20240507.dev+g958e157=py311h0afbd48_0
- gnuradio-ieee802_11=0.0.0.20240507.dev+g8c058d4e0=py311hd0cdf53_0
- gnuradio-ieee802_15_4=3.6.post133+g932c76f=py311h29adbb0_0
- gnuradio-inspector=0.0.0.20240525.dev+g55acca6=py311h416d156_0
- gnuradio-iqbalance=0.38.2=py311h243ac71_3
- gnuradio-iridium=1!1.0.0=py311he9f87ad_11
- gnuradio-leo=1.0.0.post105+12a346f=py311h8122525_0
- gnuradio-lora_sdr=0.0.0.20240508.dev+g751a65269=py311h8122525_0
- gnuradio-m2k=1.0.0=py311h3d3d031_9
- gnuradio-osmosdr=0.2.4=py311h57dc4cf_16
- gnuradio-paint=0.0.0.20240508.dev+g82696a2=py311h8122525_0
- gnuradio-radar=0.0.0.20240525.dev+gc59350d=py311h438d3bc_0
- gnuradio-rds=3.10.post22+g2134008=py311hee1d45a_0
- gnuradio-satellites=5.5.0=py311h87c04f2_2
- gnuradio=3.10.10.0=py311hc91e5ee_6
- gqrx=2.17.5=h8057050_4
- hackrf=2024.02.1=hbac3817_0
- hamlib-all=4.5.5=osx_3
- airspy=1.0.10=h6e16a3a_1
- airspyhf=1.6.8=h6e16a3a_1
- bladerf=2024.05=h6e16a3a_2
- codec2=1.2.0=h6e16a3a_3
- digital_rf=2.6.11=py312hb4e6a8e_0
- ephem=4.2=py312h01d7ebd_0
- gnss-sdr=0.0.19=h27504fe_8
- gnuradio-adsb=0.0.0.20250304.dev+g9645757=unix_py_1
- gnuradio-dect2=0.0.0.20250304.dev+g27a3d6=np20py312ha54dcc3_1
- gnuradio-filerepeater=0.0.0.20250304.dev+gec6b386=np20py312hd6957e9_2
- gnuradio-foo=0.0.0.20250304.dev+g9e0e2=np20py312ha031aef_1
- gnuradio-fosphor=0.0.0.20250304.dev+g85a0b8f=np20py312hbc77901_1
- gnuradio-gpredict-doppler=0.0.0.20250303.dev+g9473cbf=unix_py_1
- gnuradio-hermeslite2=1.0.0.0.post20250305+g2e66561=np20py312ha54dcc3_0
- gnuradio-hpsdr=0.0.0.20250304.dev+g7748cc9=np20py312ha54dcc3_1
- gnuradio-ieee802_11=0.0.0.20250304.dev+g761bdd9=np20py312hb9afde1_1
- gnuradio-ieee802_15_4=3.6.post20250304+g61f4c4a=np20py312hcd68dcb_1
- gnuradio-inspector=0.0.0.20250303.dev+gad6a69e=np20py312h3c55089_1
- gnuradio-iqbalance=0.38.2=py312h792ae45_7
- gnuradio-iridium=1!1.0.0=py312h8846ea6_16
- gnuradio-leo=1.0.0.post20250214+g8f62b92=np20py312ha067ba0_2
- gnuradio-lora_sdr=0.0.0.20250305.dev+ga8143cb=np20py312hcd68dcb_0
- gnuradio-m2k=1.0.0=py312he14e3f5_13
- gnuradio-osmosdr=0.2.6=py312h338709e_7
- gnuradio-paint=0.0.0.20250303.dev+gfb4f7b6=np20py312hcd68dcb_2
- gnuradio-radar=0.0.0.20250220.dev+g92adce2=np20py312hd333b83_1
- gnuradio-rds=3.10.post20250305+gc1cba54=np20py312ha54dcc3_0
- gnuradio-satellites=5.7.0=py312h334535e_1
- gnuradio=3.10.12.0=py312h0b3b3f0_1
- gqrx=2.17.6=h33da310_1
- hackrf=2024.02.1=h979b6e9_1
- hamlib-all=4.6.2=osx_2
- inspectrum=0.3.1=h4507090_0
- ipython=8.24.0=pyh707e725_0
- libiio=0.25=h694c41f_1
- libm2k=0.8.0=py311h254a74e_0
- limesuite=23.11.0=h56465c4_0
- m17-cxx-demod=2.3.3=hb3aaeea_3
- matplotlib=3.8.4=py311h6eed73b_2
- mirisdr=2.0.0=h10d778d_0
- numpy=1.26.4=py311hc43a94b_0
- pandas=2.2.2=py311hfdcbad3_1
- pyadi-iio=0.0.16=pyhd8ed1ab_0
- pyfda=0.8.4=pyh9208f05_0
- python=3.11.9=h657bba9_0_cpython
- rtl-sdr=2.0.1=h10d778d_0
- scipy=1.13.1=py311h40a1ab3_0
- ipython=9.0.2=pyhfb0248b_0
- libiio=0.26=h98b3b24_1
- libm2k=0.9.0=py312h3a92375_1
- limesuite=23.11.0=h8f9d4fd_1
- m17-cxx-demod=2.3.3=haaa64e9_5
- matplotlib=3.10.1=py312hb401068_0
- mirisdr=2.0.0=h6e16a3a_1
- numpy=2.2.3=py312h6693b03_0
- pandas=2.2.3=py312h98e817e_1
- pyadi-iio=0.0.19=pyhd8ed1ab_0
- pyfda=0.9.2=pyh9208f05_1
- python=3.12.9=h9ccd52b_1_cpython
- rtl-sdr=2.0.2=h6e16a3a_3
- scipy=1.15.2=py312hd04560d_0
- soapysdr-module-airspy=0.2.0=ha64c28d_0
- soapysdr-module-airspyhf=0.2.0=ha64c28d_0
- soapysdr-module-audio=0.1.1=h4104cfc_1
- soapysdr-module-audio=0.1.1=h4045702_2
- soapysdr-module-bladerf=0.4.1=h3f20bda_0
- soapysdr-module-hackrf=0.3.4=ha64c28d_0
- soapysdr-module-lms7=23.11.0=hf2e4411_0
- soapysdr-module-lms7=23.11.0=hd56791b_1
- soapysdr-module-netsdr=0.2.0=h7ecdfb7_1
- soapysdr-module-plutosdr=0.2.2=ha1538ea_0
- soapysdr-module-plutosdr=0.2.2=h71197eb_1
- soapysdr-module-redpitaya=0.1.1=h7ecdfb7_0
- soapysdr-module-remote=0.5.2=ha64c28d_2
- soapysdr-module-rtlsdr=0.3.3=h4104cfc_2
- soapysdr-module-uhd=0.4.1=hf6b9cc9_10
- soapysdr-module-volk-converters=0.1.1=h58154ba_2
- soapysdr=0.8.1=py311h5fe6e05_4
- uhd=4.6.0.0=py311h1202e05_0
- soapysdr-module-uhd=0.4.1=h7986aa4_14
- soapysdr-module-volk-converters=0.1.1=ha5c124a_3
- soapysdr=0.8.1=py312hc5c4d5f_5
- uhd=4.8.0.0=py312h807a617_0
name: radioconda
platform: osx-64
version: 2024.05.29
version: 2025.03.14

View File

@ -13,382 +13,402 @@ name: radioconda
post_install: post_install.sh
register_python_default: false
specs:
- adwaita-icon-theme=46.0=unix_0
- airspy=1.0.10=h0d85af4_0
- airspyhf=1.6.8=h0d85af4_0
- appdirs=1.4.4=pyh9f0ad1d_0
- archspec=0.2.3=pyhd8ed1ab_0
- armadillo=12.8.3=hc3b1926_0
- arpack=3.8.0=nompi_hb44a6d1_101
- asciimatics=1.15.0=pyhd8ed1ab_0
- asttokens=2.4.1=pyhd8ed1ab_0
- adwaita-icon-theme=47.0=unix_0
- airspy=1.0.10=h6e16a3a_1
- airspyhf=1.6.8=h6e16a3a_1
- appdirs=1.4.4=pyhd8ed1ab_1
- archspec=0.2.5=pyhd8ed1ab_0
- armadillo=14.4.0=h771da8f_0
- arpack=3.9.1=nompi_hdfe9103_102
- asciimatics=1.15.0=pyhd8ed1ab_1
- asttokens=3.0.0=pyhd8ed1ab_1
- atk-1.0=2.38.0=h4bec284_2
- attrs=23.2.0=pyh71513ae_0
- bcrypt=4.1.3=py311h295b1db_0
- bidict=0.23.1=pyhd8ed1ab_0
- bladerf=2023.02=hb7f2c08_0
- blinker=1.8.2=pyhd8ed1ab_0
- boltons=24.0.0=pyhd8ed1ab_0
- brotli-bin=1.1.0=h0dc2134_1
- brotli-python=1.1.0=py311hdf8f085_1
- brotli=1.1.0=h0dc2134_1
- bzip2=1.0.8=h10d778d_5
- c-ares=1.28.1=h10d778d_0
- ca-certificates=2024.2.2=h8857fd0_0
- attrs=25.3.0=pyh71513ae_0
- bcrypt=4.3.0=py312h0d0de52_0
- bidict=0.23.1=pyhd8ed1ab_1
- bladerf=2024.05=h6e16a3a_2
- blinker=1.9.0=pyhff2d567_0
- boltons=24.0.0=pyhd8ed1ab_1
- brotli-bin=1.1.0=h00291cd_2
- brotli-python=1.1.0=py312h5861a67_2
- brotli=1.1.0=h00291cd_2
- bzip2=1.0.8=hfdf4475_7
- c-ares=1.34.4=hf13058a_0
- ca-certificates=2025.1.31=h8857fd0_0
- cached-property=1.5.2=hd8ed1ab_1
- cached_property=1.5.2=pyha770c72_1
- cairo=1.18.0=h99e66fa_0
- certifi=2024.2.2=pyhd8ed1ab_0
- cffi=1.16.0=py311hc0b63fd_0
- charset-normalizer=3.3.2=pyhd8ed1ab_0
- click-plugins=1.1.1=py_0
- click=8.1.7=unix_pyh707e725_0
- codec2=1.0.3=h0d85af4_0
- colorama=0.4.6=pyhd8ed1ab_0
- conda-libmamba-solver=24.1.0=pyhd8ed1ab_0
- conda-package-handling=2.2.0=pyh38be061_0
- conda-package-streaming=0.9.0=pyhd8ed1ab_0
- conda=24.5.0=py311h6eed73b_0
- cairo=1.18.4=h950ec3b_0
- certifi=2025.1.31=pyhd8ed1ab_0
- cffi=1.17.1=py312hf857d28_0
- charset-normalizer=3.4.1=pyhd8ed1ab_0
- click=8.1.8=pyh707e725_0
- codec2=1.2.0=h6e16a3a_3
- colorama=0.4.6=pyhd8ed1ab_1
- conda-libmamba-solver=24.9.0=pyhd8ed1ab_0
- conda-package-handling=2.4.0=pyh7900ff3_2
- conda-package-streaming=0.11.0=pyhd8ed1ab_1
- conda=24.11.3=py312hb401068_0
- construct=2.10.70=pyhd8ed1ab_0
- contourpy=1.2.1=py311h1d816ee_0
- cryptography=42.0.7=py311h4ba4ffd_0
- cycler=0.12.1=pyhd8ed1ab_0
- decorator=5.1.1=pyhd8ed1ab_0
- digital_rf=2.6.9=py311h4b6fc2c_0
- distro=1.9.0=pyhd8ed1ab_0
- docutils=0.21.2=pyhd8ed1ab_0
- ephem=4.1.5=py311he705e18_1
- contourpy=1.3.1=py312hc47a885_0
- cryptography=44.0.2=py312h0995e51_0
- cycler=0.12.1=pyhd8ed1ab_1
- cyrus-sasl=2.1.27=hf9bab2b_7
- dbus=1.13.6=h811a1a6_3
- decorator=5.2.1=pyhd8ed1ab_0
- digital_rf=2.6.11=py312hb4e6a8e_0
- distro=1.9.0=pyhd8ed1ab_1
- docutils=0.21.2=pyhd8ed1ab_1
- ephem=4.2=py312h01d7ebd_0
- epoxy=1.5.10=h5eb16cf_1
- exceptiongroup=1.2.0=pyhd8ed1ab_2
- executing=2.0.1=pyhd8ed1ab_0
- expat=2.6.2=h73e2aa4_0
- fftw=3.3.10=nompi_h4fa670e_108
- flask-socketio=5.3.6=pyhd8ed1ab_0
- flask=3.0.3=pyhd8ed1ab_0
- fmt=10.2.1=h7728843_0
- exceptiongroup=1.2.2=pyhd8ed1ab_1
- executing=2.1.0=pyhd8ed1ab_1
- expat=2.6.4=h240833e_0
- fftw=3.3.10=nompi_h292e606_110
- flask-socketio=5.5.1=pyh29332c3_0
- flask=3.1.0=pyhd8ed1ab_1
- fmt=11.0.2=h3c5361c_0
- font-ttf-dejavu-sans-mono=2.37=hab24e00_0
- font-ttf-inconsolata=3.000=h77eed37_0
- font-ttf-source-code-pro=2.038=h77eed37_0
- font-ttf-ubuntu=0.83=h77eed37_2
- fontconfig=2.14.2=h5bb23bf_0
- font-ttf-ubuntu=0.83=h77eed37_3
- fontconfig=2.15.0=h37eeddb_1
- fonts-conda-ecosystem=1=0
- fonts-conda-forge=1=0
- fonttools=4.52.4=py311h72ae277_0
- freetype=2.12.1=h60636b9_2
- fonttools=4.56.0=py312h3520af0_0
- freetype=2.13.3=h40dfd5c_0
- fribidi=1.0.10=hbcb3906_0
- frozendict=2.4.4=py311h72ae277_0
- frozendict=2.4.6=py312h3d0f464_0
- fs=2.4.16=pyhd8ed1ab_0
- future=1.0.0=pyhd8ed1ab_0
- future=1.0.0=pyhd8ed1ab_2
- gdk-pixbuf=2.42.12=ha587570_0
- gettext-tools=0.22.5=h5ff76d1_2
- gettext=0.22.5=h5ff76d1_2
- gettext-tools=0.23.1=h27064b9_0
- gettext=0.23.1=hd385c8e_0
- gevent-websocket=0.10.1=py_0
- gevent=23.9.0.post1=py311h3a1e5a7_1
- gflags=2.2.2=hb1e8313_1004
- gevent=24.11.1=py312hd2a4d73_0
- gflags=2.2.2=hac325c4_1005
- glew=2.1.0=h046ec9c_2
- glfw=3.4=h10d778d_0
- glib-tools=2.80.2=hc27840c_0
- glib=2.80.2=h0f68cf7_0
- glog=0.6.0=h8ac2a54_0
- gmp=6.3.0=h73e2aa4_1
- gnss-sdr=0.0.18=h1fe6a09_19
- gnuradio-adsb=0.0.0.20240508.dev+gafd7fabda=unix_pyha6c0e43_0
- gnuradio-core=3.10.10.0=py311he8a1f08_6
- gnuradio-dect2=0.0.0.20240502.dev+gb296af2a9=py311hcd972f0_0
- gnuradio-filerepeater=0.0.0.20240502.dev+gd7bb8846c=py311ha3c3dc6_0
- gnuradio-foo=0.0.0.20240502.dev+gc53538a22=py311hedea448_0
- gnuradio-fosphor=0.0.0.20240502.dev+g656fe2f=py311he56f0a3_0
- gnuradio-gpredict-doppler=0.0.0.20240508.dev+gb06bc7678=unix_pyha1ad6f9_0
- gnuradio-grc=3.10.10.0=py311haf26971_6
- gnuradio-hermeslite2=v1.0.0.0.post17+8b17ad3=py311hcd972f0_0
- gnuradio-hpsdr=0.0.0.20240507.dev+g958e157=py311h0afbd48_0
- gnuradio-ieee802_11=0.0.0.20240507.dev+g8c058d4e0=py311hd0cdf53_0
- gnuradio-ieee802_15_4=3.6.post133+g932c76f=py311h29adbb0_0
- gnuradio-iio=3.10.10.0=py311h4e151cf_6
- gnuradio-inspector=0.0.0.20240525.dev+g55acca6=py311h416d156_0
- gnuradio-iqbalance=0.38.2=py311h243ac71_3
- gnuradio-iridium=1!1.0.0=py311he9f87ad_11
- gnuradio-leo-data=1.0.0.post105+12a346f=unix_0
- gnuradio-leo=1.0.0.post105+12a346f=py311h8122525_0
- gnuradio-lora_sdr=0.0.0.20240508.dev+g751a65269=py311h8122525_0
- gnuradio-m2k=1.0.0=py311h3d3d031_9
- gnuradio-osmosdr=0.2.4=py311h57dc4cf_16
- gnuradio-paint=0.0.0.20240508.dev+g82696a2=py311h8122525_0
- gnuradio-pmt=3.10.10.0=py311hbf4854b_6
- gnuradio-qtgui=3.10.10.0=py311h8663c3e_6
- gnuradio-radar=0.0.0.20240525.dev+gc59350d=py311h438d3bc_0
- gnuradio-rds=3.10.post22+g2134008=py311hee1d45a_0
- gnuradio-satellites=5.5.0=py311h87c04f2_2
- gnuradio-soapy=3.10.10.0=py311hec45aa0_6
- gnuradio-uhd=3.10.10.0=py311h4c0215c_6
- gnuradio-video-sdl=3.10.10.0=py311haf26971_6
- gnuradio-zeromq=3.10.10.0=py311h26d7922_6
- gnuradio=3.10.10.0=py311hc91e5ee_6
- gqrx=2.17.5=h8057050_4
- glib-tools=2.82.2=hf8faeaf_1
- glib=2.82.2=h915cd9b_1
- glog=0.7.1=h2790a97_0
- gmp=6.3.0=hf036a51_2
- gnss-sdr=0.0.19=h27504fe_8
- gnuradio-adsb=0.0.0.20250304.dev+g9645757=unix_py_1
- gnuradio-core=3.10.12.0=py312h74f4228_1
- gnuradio-dect2=0.0.0.20250304.dev+g27a3d6=np20py312ha54dcc3_1
- gnuradio-filerepeater=0.0.0.20250304.dev+gec6b386=np20py312hd6957e9_2
- gnuradio-foo=0.0.0.20250304.dev+g9e0e2=np20py312ha031aef_1
- gnuradio-fosphor=0.0.0.20250304.dev+g85a0b8f=np20py312hbc77901_1
- gnuradio-gpredict-doppler=0.0.0.20250303.dev+g9473cbf=unix_py_1
- gnuradio-grc=3.10.12.0=py312h4fad5d9_1
- gnuradio-hermeslite2=1.0.0.0.post20250305+g2e66561=np20py312ha54dcc3_0
- gnuradio-hpsdr=0.0.0.20250304.dev+g7748cc9=np20py312ha54dcc3_1
- gnuradio-ieee802_11=0.0.0.20250304.dev+g761bdd9=np20py312hb9afde1_1
- gnuradio-ieee802_15_4=3.6.post20250304+g61f4c4a=np20py312hcd68dcb_1
- gnuradio-iio=3.10.12.0=py312h0ef5ef5_1
- gnuradio-inspector=0.0.0.20250303.dev+gad6a69e=np20py312h3c55089_1
- gnuradio-iqbalance=0.38.2=py312h792ae45_7
- gnuradio-iridium=1!1.0.0=py312h8846ea6_16
- gnuradio-leo-data=1.0.0.post20250214+g8f62b92=unix_2
- gnuradio-leo=1.0.0.post20250214+g8f62b92=np20py312ha067ba0_2
- gnuradio-lora_sdr=0.0.0.20250305.dev+ga8143cb=np20py312hcd68dcb_0
- gnuradio-m2k=1.0.0=py312he14e3f5_13
- gnuradio-osmosdr=0.2.6=py312h338709e_7
- gnuradio-paint=0.0.0.20250303.dev+gfb4f7b6=np20py312hcd68dcb_2
- gnuradio-pmt=3.10.12.0=py312h1b5aeec_1
- gnuradio-qtgui=3.10.12.0=py312h37fa559_1
- gnuradio-radar=0.0.0.20250220.dev+g92adce2=np20py312hd333b83_1
- gnuradio-rds=3.10.post20250305+gc1cba54=np20py312ha54dcc3_0
- gnuradio-satellites=5.7.0=py312h334535e_1
- gnuradio-soapy=3.10.12.0=py312hcd7aecb_1
- gnuradio-uhd=3.10.12.0=py312h882d36b_1
- gnuradio-video-sdl=3.10.12.0=py312h4fad5d9_1
- gnuradio-zeromq=3.10.12.0=py312h074ed27_1
- gnuradio=3.10.12.0=py312h0b3b3f0_1
- gqrx=2.17.6=h33da310_1
- graphite2=1.3.13=h73e2aa4_1003
- greenlet=3.0.3=py311hdd0406b_0
- greenlet=3.1.1=py312haafddd8_1
- gsl=2.7=h93259b0_0
- gst-plugins-base=1.24.4=ha0a8333_0
- gstreamer-orc=0.4.38=hcdad5f4_0
- gstreamer=1.24.4=hbc75551_0
- gtest=1.14.0=h1c7c39f_1
- gtk3=3.24.42=h6d24b8e_0
- h11=0.14.0=pyhd8ed1ab_0
- h5py=3.11.0=nompi_py311h4faab6c_101
- hackrf=2024.02.1=hbac3817_0
- hamlib-all=4.5.5=osx_3
- hamlib-lua=4.5.5=lua54hcdad5f4_3
- hamlib-python=4.5.5=py311ha272bfe_3
- hamlib-tcl=4.5.5=h3642cd4_3
- hamlib=4.5.5=h2393b68_3
- harfbuzz=8.5.0=h053f038_0
- hdf5=1.14.3=nompi_h687a608_102
- gst-plugins-base=1.24.7=h0ee1d58_0
- gstreamer-orc=0.4.41=h9fdcad8_0
- gstreamer=1.24.7=h3271b85_0
- gtest=1.15.2=h3c5361c_0
- gtk3=3.24.43=h82a860e_4
- h11=0.14.0=pyhd8ed1ab_1
- h2=4.2.0=pyhd8ed1ab_0
- h5py=3.13.0=nompi_py312hea5ca7c_100
- hackrf=2024.02.1=h979b6e9_1
- hamlib-all=4.6.2=osx_2
- hamlib-lua=4.6.2=lua54h6e16a3a_2
- hamlib-python=4.6.2=py312h01d7ebd_2
- hamlib-tcl=4.6.2=h2c093e9_2
- hamlib=4.6.2=h4b0d998_2
- harfbuzz=10.4.0=h86b413f_0
- hdf5=1.14.3=nompi_h1607680_109
- hicolor-icon-theme=0.17=h694c41f_2
- icu=73.2=hf5e326d_0
- idna=3.7=pyhd8ed1ab_0
- importlib-metadata=7.1.0=pyha770c72_0
- importlib_resources=6.4.0=pyhd8ed1ab_0
- hpack=4.1.0=pyhd8ed1ab_0
- hyperframe=6.1.0=pyhd8ed1ab_0
- icu=75.1=h120a0e1_0
- idna=3.10=pyhd8ed1ab_1
- importlib-metadata=8.6.1=pyha770c72_0
- importlib_resources=6.5.2=pyhd8ed1ab_0
- inspectrum=0.3.1=h4507090_0
- ipython=8.24.0=pyh707e725_0
- itsdangerous=2.2.0=pyhd8ed1ab_0
- jedi=0.19.1=pyhd8ed1ab_0
- jinja2=3.1.4=pyhd8ed1ab_0
- jsonpatch=1.33=pyhd8ed1ab_0
- jsonpointer=2.4=py311h6eed73b_3
- jsonschema-specifications=2023.12.1=pyhd8ed1ab_0
- jsonschema=4.22.0=pyhd8ed1ab_0
- kiwisolver=1.4.5=py311h5fe6e05_1
- krb5=1.21.2=hb884880_0
- ipython=9.0.2=pyhfb0248b_0
- ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0
- itsdangerous=2.2.0=pyhd8ed1ab_1
- jedi=0.19.2=pyhd8ed1ab_1
- jinja2=3.1.6=pyhd8ed1ab_0
- jsonpatch=1.33=pyhd8ed1ab_1
- jsonpointer=3.0.0=py312hb401068_1
- jsonschema-specifications=2024.10.1=pyhd8ed1ab_1
- jsonschema=4.23.0=pyhd8ed1ab_1
- kiwisolver=1.4.8=py312h9275861_0
- krb5=1.21.3=h37d8d59_0
- lame=3.100=hb7f2c08_1003
- lcms2=2.16=ha2f27b4_0
- lcms2=2.17=h72f5680_0
- lerc=4.0.0=hb486fe8_0
- libabseil=20240116.2=cxx17_hc1bcbd7_0
- libad9361-iio=0.2=hafe1066_3
- libabseil=20240722.0=cxx17_h0e468a2_4
- libad9361-iio-c=0.3=h9eea90d_1
- libaec=1.1.3=h73e2aa4_0
- libairspy=1.0.10=h0d85af4_0
- libairspyhf=1.6.8=h0d85af4_0
- libarchive=3.7.4=h20e244c_0
- libasprintf-devel=0.22.5=h5ff76d1_2
- libasprintf=0.22.5=h5ff76d1_2
- libbladerf-python=2023.02=py_0
- libbladerf2=2023.02=hb7f2c08_0
- libblas=3.9.0=22_osx64_openblas
- libboost=1.82.0=h99d8d82_6
- libbrotlicommon=1.1.0=h0dc2134_1
- libbrotlidec=1.1.0=h0dc2134_1
- libbrotlienc=1.1.0=h0dc2134_1
- libcblas=3.9.0=22_osx64_openblas
- libclang-cpp15=15.0.7=default_h7151d67_5
- libclang13=18.1.6=default_hf5e5ce3_0
- libcodec2=1.0.3=h0d85af4_0
- libairspy=1.0.10=h6e16a3a_1
- libairspyhf=1.6.8=h6e16a3a_1
- libarchive=3.7.7=h1a33361_3
- libasprintf-devel=0.23.1=h27064b9_0
- libasprintf=0.23.1=h27064b9_0
- libbladerf-python=2024.05=py_2
- libbladerf2=2024.05=h6e16a3a_2
- libblas=3.9.0=31_h7f60823_openblas
- libboost=1.86.0=hf0da243_3
- libbrotlicommon=1.1.0=h00291cd_2
- libbrotlidec=1.1.0=h00291cd_2
- libbrotlienc=1.1.0=h00291cd_2
- libcblas=3.9.0=31_hff6cab4_openblas
- libclang-cpp17=17.0.6=default_h3571c67_8
- libclang13=19.1.7=default_hf2b7afa_1
- libcodec2=1.2.0=h6e16a3a_3
- libcorrect=0.0.0=hb7f2c08_0
- libcurl=8.8.0=hf9fcc65_0
- libcxx=17.0.6=h88467a6_0
- libdeflate=1.20=h49d49c5_0
- libedit=3.1.20191231=h0678c8f_2
- libcurl=8.12.1=h5dec5d8_0
- libcxx=19.1.7=hf95d169_0
- libdeflate=1.23=he65b83e_0
- libedit=3.1.20250104=pl5321ha958ccf_0
- libev=4.33=h10d778d_2
- libevent=2.1.12=ha90c15b_1
- libexpat=2.6.2=h73e2aa4_0
- libffi=3.4.2=h0d85af4_5
- libexpat=2.6.4=h240833e_0
- libffi=3.4.6=h281671d_0
- libflac=1.4.3=he965462_0
- libgettextpo-devel=0.22.5=h5ff76d1_2
- libgettextpo=0.22.5=h5ff76d1_2
- libgettextpo-devel=0.23.1=h27064b9_0
- libgettextpo=0.23.1=h27064b9_0
- libgfortran5=13.2.0=h2873a65_3
- libgfortran=5.0.0=13_2_0_h97931a8_3
- libgirepository=1.80.1=h756d8af_0
- libglib=2.80.2=h0f68cf7_0
- libhackrf0=2024.02.1=h10d778d_0
- libhamlib4=4.5.5=h53b3b88_3
- libiconv=1.17=hd75f5a5_2
- libiio-c=0.25=h7d457e9_1
- libiio=0.25=h694c41f_1
- libintl-devel=0.22.5=h5ff76d1_2
- libintl=0.22.5=h5ff76d1_2
- libgirepository=1.82.0=hdf4f3f7_0
- libglib=2.82.2=h5c976ab_1
- libhackrf0=2024.02.1=h6e16a3a_1
- libhamlib4=4.6.2=h240833e_2
- libiconv=1.18=h4b5e92a_1
- libiio-c=0.26=h699925a_1
- libiio=0.26=h98b3b24_1
- libintl-devel=0.23.1=h27064b9_0
- libintl=0.23.1=h27064b9_0
- libjpeg-turbo=3.0.0=h0dc2134_1
- liblapack=3.9.0=22_osx64_openblas
- liblimesuite=23.11.0=h93d8f39_0
- libliquid1=1.6.0=hbac3817_1
- libllvm15=15.0.7=hbedff68_4
- libllvm18=18.1.6=hd5e122f_0
- libm2k=0.8.0=py311h254a74e_0
- libmamba=1.5.8=ha449628_0
- libmambapy=1.5.8=py311h6c5c7ae_0
- libmatio=1.5.26=h253dbdd_0
- libmirisdr4=2.0.0=h10d778d_0
- libnghttp2=1.58.0=h64cf6d3_1
- libogg=1.3.4=h35c211d_1
- libopenblas=0.3.27=openmp_hfef2a42_0
- liblapack=3.9.0=31_h236ab99_openblas
- liblimesuite=23.11.0=h240833e_1
- libliquid1=1.6.0=h8a64ec7_2
- libllvm17=17.0.6=hbedff68_1
- libllvm19=19.1.7=hc29ff6c_1
- liblzma=5.6.4=hd471939_0
- libm2k=0.9.0=py312h3a92375_1
- libmamba=1.5.12=h415aaf8_0
- libmambapy=1.5.12=py312h4e4b3da_0
- libmatio=1.5.28=h0572109_2
- libmirisdr4=2.0.0=h6e16a3a_1
- libnghttp2=1.64.0=hc7306c3_0
- libntlm=1.8=h6e16a3a_0
- libogg=1.3.5=hfdf4475_0
- libopenblas=0.3.29=openmp_hbf64a52_0
- libopus=1.3.1=hc929b4f_1
- libosmodsp0=0.4.0=hbac3817_1
- libosmodsp0=0.4.0=h8a64ec7_2
- libpcap=1.10.4=h0dc2134_1
- libpng=1.6.43=h92b6c6a_0
- libpq=16.3=h4501773_0
- libprotobuf=4.25.3=h4e4d658_0
- librsvg=2.58.0=h7b06fc5_1
- libpng=1.6.47=h3c4a55f_0
- libpq=17.4=h9c5cfc2_0
- libprotobuf=5.28.3=h6401091_1
- librsvg=2.58.4=h21a6cfa_2
- librtaudio6=5.2.0=h73e2aa4_3
- libsndfile=1.2.2=h9603cec_1
- libsodium=1.0.18=hbcb3906_1
- libsolv=0.7.29=h4f92f52_0
- libsqlite=3.45.3=h92b6c6a_0
- libssh2=1.11.0=hd019ec5_0
- libthrift=0.20.0=h87f9345_0
- libtiff=4.6.0=h129831d_3
- libusb=1.0.27=h83ace79_100
- libuv=1.48.0=h67532ce_0
- libsodium=1.0.20=hfdf4475_0
- libsolv=0.7.30=h69d5d9b_0
- libsqlite=3.49.1=hdb6dae5_1
- libssh2=1.11.1=h3dc7d44_0
- libthrift=0.21.0=h75589b3_0
- libtiff=4.7.0=hb77a491_3
- libusb=1.0.27=h6e16a3a_101
- libuv=1.50.0=h4cb831e_0
- libvorbis=1.3.7=h046ec9c_0
- libwebp-base=1.4.0=h10d778d_0
- libxcb=1.15=hb7f2c08_0
- libxml2=2.12.7=h3e169fe_0
- libwebp-base=1.5.0=h6cf52b4_0
- libxcb=1.17.0=hf1f96e2_0
- libxml2=2.13.6=hebb159f_0
- libxslt=1.1.39=h03b04e6_0
- libzlib=1.2.13=h87427d6_6
- limesuite=23.11.0=h56465c4_0
- llvm-openmp=18.1.6=h15ab845_0
- libzlib=1.3.1=hd23fc13_2
- limesuite=23.11.0=h8f9d4fd_1
- llvm-openmp=19.1.7=ha54dae1_0
- lua=5.4.6=hf600f6b_1
- lxml=5.2.2=py311hf8c4076_0
- lz4-c=1.9.4=hf0c8a7f_0
- lxml=5.3.1=py312h91b2f42_0
- lz4-c=1.10.0=h240833e_1
- lzo=2.10=h10d778d_1001
- m17-cxx-demod=2.3.3=hb3aaeea_3
- mako=1.3.5=pyhd8ed1ab_0
- mamba=1.5.8=py311h8082e30_0
- m17-cxx-demod=2.3.3=haaa64e9_5
- mako=1.3.9=pyhd8ed1ab_0
- mamba=1.5.12=py312ha12221d_0
- markdown=3.6=pyhd8ed1ab_0
- markupsafe=2.1.5=py311he705e18_0
- matplotlib-base=3.8.4=py311hff79762_2
- matplotlib-inline=0.1.7=pyhd8ed1ab_0
- matplotlib=3.8.4=py311h6eed73b_2
- menuinst=2.1.0=py311h6eed73b_0
- mirisdr=2.0.0=h10d778d_0
- mpg123=1.32.6=h73e2aa4_0
- mplcursors=0.5.3=pyhd8ed1ab_0
- markupsafe=3.0.2=py312h3520af0_1
- matplotlib-base=3.10.1=py312h535dea3_0
- matplotlib-inline=0.1.7=pyhd8ed1ab_1
- matplotlib=3.10.1=py312hb401068_0
- menuinst=2.2.0=py312hb401068_0
- mesalib=25.0.1=hc187380_0
- mirisdr=2.0.0=h6e16a3a_1
- mpg123=1.32.9=h78e78a4_0
- mplcursors=0.6=pyhd8ed1ab_1
- munkres=1.1.4=pyh9f0ad1d_0
- mysql-common=8.3.0=hfd7a639_4
- mysql-libs=8.3.0=ha9146f8_4
- ncurses=6.5=h5846eda_0
- nspr=4.35=hea0b92c_0
- nss=3.100=h6606ded_0
- numexpr=2.8.4=py311hab14417_1
- numpy=1.26.4=py311hc43a94b_0
- openjpeg=2.5.2=h7310d3a_0
- openssl=3.3.0=h87427d6_3
- packaging=24.0=pyhd8ed1ab_0
- pandas=2.2.2=py311hfdcbad3_1
- pango=1.52.2=h7f2093b_0
- paramiko=3.4.0=pyhd8ed1ab_0
- parso=0.8.4=pyhd8ed1ab_0
- pcre2=10.43=h0ad2156_0
- pexpect=4.9.0=pyhd8ed1ab_0
- pickleshare=0.7.5=py_1003
- pillow=10.3.0=py311h1b85569_0
- pixman=0.43.4=h73e2aa4_0
- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1
- platformdirs=4.2.2=pyhd8ed1ab_0
- pluggy=1.5.0=pyhd8ed1ab_0
- ply=3.11=pyhd8ed1ab_2
- portaudio=19.6.0=he965462_9
- prompt-toolkit=3.0.42=pyha770c72_0
- pthread-stubs=0.4=hc929b4f_1001
- ptyprocess=0.7.0=pyhd3deb0d_0
- pugixml=1.14=he965462_0
- pure_eval=0.2.2=pyhd8ed1ab_0
- pyadi-iio=0.0.16=pyhd8ed1ab_0
- mysql-common=9.0.1=hd00b0ec_5
- mysql-libs=9.0.1=h062309a_5
- ncurses=6.5=h0622a9a_3
- nspr=4.36=h97d8b74_0
- nss=3.108=h32a8879_0
- numexpr=2.10.2=py312ha51eba0_0
- numpy=2.2.3=py312h6693b03_0
- openjpeg=2.5.3=h7fd6d84_0
- openldap=2.6.9=hd8a590d_0
- openssl=3.4.1=hc426f3f_0
- packaging=24.2=pyhd8ed1ab_2
- pandas=2.2.3=py312h98e817e_1
- pango=1.56.2=hf94f63b_0
- paramiko=3.5.1=pyhd8ed1ab_0
- parso=0.8.4=pyhd8ed1ab_1
- pcre2=10.44=h7634a1b_2
- pexpect=4.9.0=pyhd8ed1ab_1
- pickleshare=0.7.5=pyhd8ed1ab_1004
- pillow=11.1.0=py312hd9f36e3_0
- pip=25.0.1=pyh8b19718_0
- pixman=0.44.2=h1fd1274_0
- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_2
- platformdirs=4.3.6=pyhd8ed1ab_1
- pluggy=1.5.0=pyhd8ed1ab_1
- ply=3.11=pyhd8ed1ab_3
- portaudio=19.7.0=h97d8b74_0
- prompt-toolkit=3.0.50=pyha770c72_0
- pthread-stubs=0.4=h00291cd_1002
- ptyprocess=0.7.0=pyhd8ed1ab_1
- pugixml=1.15=h46091d4_0
- pure_eval=0.2.3=pyhd8ed1ab_1
- pyadi-iio=0.0.19=pyhd8ed1ab_0
- pybind11-abi=4=hd8ed1ab_3
- pycairo=1.26.0=py311h389a0fd_0
- pycosat=0.6.6=py311h2725bcf_0
- pycparser=2.22=pyhd8ed1ab_0
- pyfda=0.8.4=pyh9208f05_0
- pycairo=1.27.0=py312hc3eca63_0
- pycosat=0.6.6=py312h01d7ebd_2
- pycparser=2.22=pyh29332c3_1
- pyfda=0.9.2=pyh9208f05_1
- pyfiglet=0.8.post1=py_0
- pygments=2.18.0=pyhd8ed1ab_0
- pygobject=3.48.2=py311h5607175_0
- pylibiio=0.25=py_1
- pynacl=1.5.0=py311h2725bcf_3
- pyopengl=3.1.6=pyhd8ed1ab_1
- pyparsing=3.1.2=pyhd8ed1ab_0
- pyqt5-sip=12.12.2=py311h46b81f0_5
- pyqt=5.15.9=py311h5b1a2bc_5
- pyqtgraph=0.13.7=pyhd8ed1ab_0
- pysocks=1.7.1=pyha2e5f31_6
- python-dateutil=2.9.0=pyhd8ed1ab_0
- python-engineio=4.9.1=pyhd8ed1ab_0
- python-socketio=5.11.2=pyhd8ed1ab_0
- python-tzdata=2024.1=pyhd8ed1ab_0
- python=3.11.9=h657bba9_0_cpython
- python_abi=3.11=4_cp311
- pygments=2.19.1=pyhd8ed1ab_0
- pygobject=3.50.0=py312h30111ac_1
- pylibiio=0.26=py_1
- pynacl=1.5.0=py312hb553811_4
- pyopengl=3.1.7=pyhd8ed1ab_0
- pyparsing=3.2.1=pyhd8ed1ab_0
- pyqt5-sip=12.12.2=py312he36337a_5
- pyqt=5.15.9=py312hd74d816_5
- pyqtgraph=0.13.7=pyhd8ed1ab_1
- pysocks=1.7.1=pyha55dd90_7
- python-dateutil=2.9.0.post0=pyhff2d567_1
- python-engineio=4.11.2=pyhff2d567_0
- python-socketio=5.12.1=pyhd8ed1ab_0
- python-tzdata=2025.1=pyhd8ed1ab_0
- python=3.12.9=h9ccd52b_1_cpython
- python_abi=3.12=5_cp312
- pytz=2024.1=pyhd8ed1ab_0
- pywin32-on-windows=0.1.0=pyh1179c8e_3
- pyyaml=6.0.1=py311h2725bcf_1
- pyzmq=26.0.3=py311h89e2aaa_0
- qdarkstyle=3.2.3=pyhd8ed1ab_0
- qt-main=5.15.8=hecaf5c3_21
- qtpy=2.4.1=pyhd8ed1ab_0
- pyyaml=6.0.2=py312h3520af0_2
- pyzmq=26.3.0=py312h679dbab_0
- qdarkstyle=3.2.3=pyhd8ed1ab_1
- qhull=2020.2=h3c5361c_5
- qt-main=5.15.15=h30a8c49_2
- qtpy=2.4.3=pyhd8ed1ab_0
- qwt=6.3.0=h69e1d46_0
- readline=8.2=h9e318b2_1
- referencing=0.35.1=pyhd8ed1ab_0
- reproc-cpp=14.2.4.post0=h93d8f39_1
- reproc=14.2.4.post0=h10d778d_1
- requests=2.32.2=pyhd8ed1ab_0
- rpds-py=0.18.1=py311h295b1db_0
- rtl-sdr=2.0.1=h10d778d_0
- ruamel.yaml.clib=0.2.8=py311he705e18_0
- ruamel.yaml=0.18.6=py311he705e18_0
- scipy=1.13.1=py311h40a1ab3_0
- sdl2=2.30.2=h73e2aa4_0
- sdl=1.2.68=hce1cd6f_0
- setuptools=70.0.0=pyhd8ed1ab_0
- simple-websocket=1.0.0=pyhd8ed1ab_1
- sip=6.7.12=py311hd39e593_0
- six=1.16.0=pyh6c4a22f_0
- readline=8.2=h7cca4af_2
- referencing=0.36.2=pyh29332c3_0
- reproc-cpp=14.2.5.post0=h240833e_0
- reproc=14.2.5.post0=h6e16a3a_0
- requests=2.32.3=pyhd8ed1ab_1
- rpds-py=0.23.1=py312hb59e30e_0
- rtl-sdr=2.0.2=h6e16a3a_3
- ruamel.yaml.clib=0.2.8=py312h3d0f464_1
- ruamel.yaml=0.18.10=py312h01d7ebd_0
- scipy=1.15.2=py312hd04560d_0
- sdl2=2.32.50=hc0cb955_1
- sdl3=3.2.8=h6dd79e8_0
- sdl=1.2.68=hc0cb955_1
- setuptools=75.8.2=pyhff2d567_0
- simple-websocket=1.1.0=pyhd8ed1ab_0
- sip=6.7.12=py312h444b7ae_0
- six=1.17.0=pyhd8ed1ab_0
- soapysdr-module-airspy=0.2.0=ha64c28d_0
- soapysdr-module-airspyhf=0.2.0=ha64c28d_0
- soapysdr-module-audio=0.1.1=h4104cfc_1
- soapysdr-module-audio=0.1.1=h4045702_2
- soapysdr-module-bladerf=0.4.1=h3f20bda_0
- soapysdr-module-hackrf=0.3.4=ha64c28d_0
- soapysdr-module-lms7=23.11.0=hf2e4411_0
- soapysdr-module-lms7=23.11.0=hd56791b_1
- soapysdr-module-netsdr=0.2.0=h7ecdfb7_1
- soapysdr-module-plutosdr=0.2.2=ha1538ea_0
- soapysdr-module-plutosdr=0.2.2=h71197eb_1
- soapysdr-module-redpitaya=0.1.1=h7ecdfb7_0
- soapysdr-module-remote=0.5.2=ha64c28d_2
- soapysdr-module-rtlsdr=0.3.3=h4104cfc_2
- soapysdr-module-uhd=0.4.1=hf6b9cc9_10
- soapysdr-module-volk-converters=0.1.1=h58154ba_2
- soapysdr=0.8.1=py311h5fe6e05_4
- spdlog=1.12.0=h8dd852c_2
- stack_data=0.6.2=pyhd8ed1ab_0
- soapysdr-module-uhd=0.4.1=h7986aa4_14
- soapysdr-module-volk-converters=0.1.1=ha5c124a_3
- soapysdr=0.8.1=py312hc5c4d5f_5
- spdlog=1.15.1=h65da0ee_0
- stack_data=0.6.3=pyhd8ed1ab_1
- superlu=5.2.2=h1f0f902_0
- tk=8.6.13=h1abcd95_1
- toml=0.10.2=pyhd8ed1ab_0
- tomli=2.0.1=pyhd8ed1ab_0
- tornado=6.4=py311he705e18_0
- tqdm=4.66.4=pyhd8ed1ab_0
- traitlets=5.14.3=pyhd8ed1ab_0
- truststore=0.8.0=pyhd8ed1ab_0
- typing_extensions=4.11.0=pyha770c72_0
- tzdata=2024a=h0c530f3_0
- uhd=4.6.0.0=py311h1202e05_0
- urllib3=2.2.1=pyhd8ed1ab_0
- volk-gnss-sdr=0.0.18=ha0df490_19
- volk=3.1.2=hba0ec3d_0
- watchdog=4.0.1=py311h72ae277_0
- wcwidth=0.2.13=pyhd8ed1ab_0
- websocket-client=1.8.0=pyhd8ed1ab_0
- werkzeug=3.0.3=pyhd8ed1ab_0
- wsproto=1.2.0=pyhd8ed1ab_0
- wxwidgets=3.2.5=h6efa675_0
- xorg-libxau=1.0.11=h0dc2134_0
- xorg-libxdmcp=1.1.3=h35c211d_0
- xz=5.2.6=h775f41a_0
- toml=0.10.2=pyhd8ed1ab_1
- tomli=2.2.1=pyhd8ed1ab_1
- tornado=6.4.2=py312h01d7ebd_0
- tqdm=4.67.1=pyhd8ed1ab_1
- traitlets=5.14.3=pyhd8ed1ab_1
- truststore=0.10.1=pyh29332c3_0
- typing_extensions=4.12.2=pyha770c72_1
- tzdata=2025a=h78e105d_0
- uhd=4.8.0.0=py312h807a617_0
- unicodedata2=16.0.0=py312h01d7ebd_0
- urllib3=2.3.0=pyhd8ed1ab_0
- volk-gnss-sdr=0.0.19=h82088ff_8
- volk=3.2.0=hfa89f99_0
- watchdog=6.0.0=py312h01d7ebd_0
- wcwidth=0.2.13=pyhd8ed1ab_1
- websocket-client=1.8.0=pyhd8ed1ab_1
- werkzeug=3.1.3=pyhd8ed1ab_1
- wheel=0.45.1=pyhd8ed1ab_1
- wsproto=1.2.0=pyhd8ed1ab_1
- wxwidgets=3.2.6=h91367df_3
- xorg-libx11=1.8.12=h217831a_0
- xorg-libxau=1.0.12=h6e16a3a_0
- xorg-libxdamage=1.1.6=h00291cd_0
- xorg-libxdmcp=1.1.5=h00291cd_0
- xorg-libxext=1.3.6=h00291cd_0
- xorg-libxfixes=6.0.1=h00291cd_0
- xorg-libxrandr=1.5.4=h00291cd_0
- xorg-libxrender=0.9.12=h6e16a3a_0
- yaml-cpp=0.8.0=he965462_0
- yaml=0.2.5=h0d85af4_2
- zeromq=4.3.5=hde137ed_4
- zipp=3.17.0=pyhd8ed1ab_0
- zlib=1.2.13=h87427d6_6
- zope.event=5.0=pyhd8ed1ab_0
- zope.interface=6.4.post2=py311h72ae277_0
- zstandard=0.19.0=py311h5547dcb_0
- zstd=1.5.6=h915ae27_0
- zeromq=4.3.5=h7130eaa_7
- zipp=3.21.0=pyhd8ed1ab_1
- zlib=1.3.1=hd23fc13_2
- zope.event=5.0=pyhd8ed1ab_1
- zope.interface=7.2=py312h01d7ebd_0
- zstandard=0.23.0=py312h01d7ebd_1
- zstd=1.5.7=h8210216_1
user_requested_specs:
- airspy
- airspyhf
- bladerf
- codec2
- conda
- digital_rf
- ephem
- gnss-sdr
@ -448,6 +468,6 @@ user_requested_specs:
- soapysdr-module-uhd
- soapysdr-module-volk-converters
- uhd
version: 2024.05.29
version: 2025.03.14
welcome_image: welcome.png
write_condarc: true

View File

@ -1,349 +1,368 @@
# Generated by conda-lock.
# platform: osx-arm64
# input_hash: 661ef824408f42f2680d80793b818da9233520e013e53fd25b9aa68482cff151
# input_hash: fe7762bacfdc8f34b974a4b09db097bf7de0dd4650cd44ce20f732a87fd0c0f7
@EXPLICIT
https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda#1bbc659ca658bfd49a481b5ef7a0f40f
https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.28.1-h93a5062_0.conda#04f776a6139f7eafc2f38668570eb7db
https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda#fb416a1795f18dcc5a038bc2dc54edf9
https://conda.anaconda.org/conda-forge/osx-arm64/epoxy-1.5.10-h1c322ee_1.tar.bz2#20dd7359a6052120d52e1e13b4c818b9
https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45
https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6
https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb
https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda#cbbe59391138ea5ad3658c76912e147f
https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2#c64443234ff91d70cb9c7dc926c58834
https://conda.anaconda.org/conda-forge/osx-arm64/glfw-3.4-h93a5062_0.conda#b7bf4ccb27f1e75c9292a218974dcfac
https://conda.anaconda.org/conda-forge/osx-arm64/gstreamer-orc-0.4.38-h93a5062_0.conda#3b1fa977a9ca3e7929e1150d311dbf05
https://conda.anaconda.org/conda-forge/osx-arm64/hicolor-icon-theme-0.17-hce30654_2.tar.bz2#237b05b7eb284d7eebc3c5d93f5e4bca
https://conda.anaconda.org/conda-forge/osx-arm64/icu-73.2-hc8870d7_0.conda#8521bd47c0e11c5902535bb1a17c565f
https://conda.anaconda.org/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2#bff0e851d66725f78dc2fd8b032ddb7e
https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-0.22.5-h8fbad5d_2.conda#1b27402397a76115679c4855ab2ece41
https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hb547adb_1.conda#cd68f024df0304be41d29a9088162b02
https://conda.anaconda.org/conda-forge/osx-arm64/libcodec2-1.0.3-h3422bc3_0.tar.bz2#0895b09c580f78a3b370c6a15ed2fa3e
https://conda.anaconda.org/conda-forge/osx-arm64/libcorrect-0.0.0-h1a8c8d9_0.conda#1b22175ccb06a90f74566d2dc97800f0
https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.20-h93a5062_0.conda#97efeaeba2a9a82bdf46fc6d025e3a57
https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda#36d33e440c31857372a72137f78bacf5
https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.2-hebf3989_0.conda#e3cde7cfa87f82f7cb13d482d5e0ad09
https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2#086914b672be056eb70fd4285b6783b6
https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda#69bda57310071cf6d2b86caf11573d2d
https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda#3ff1e053dc3a2b8e36b9bfa4256a58d1
https://conda.anaconda.org/conda-forge/osx-arm64/libogg-1.3.4-h27ca646_1.tar.bz2#fb211883ad5716e398b974a9cde9d78e
https://conda.anaconda.org/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2#3d0dbee0ccd2f6d6781d270313627b62
https://conda.anaconda.org/conda-forge/osx-arm64/libpcap-1.10.4-hb547adb_1.conda#6a8f7dfe1c5f4d159a596ce499c810d4
https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2#90859688dbca4735b74c02af14c4c793
https://conda.anaconda.org/conda-forge/osx-arm64/libusb-1.0.27-h93a5062_100.conda#711b8190e3e1e30a6598f5f76e0f8a20
https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.48.0-h93a5062_0.conda#abfd49e80f13453b62a56be226120ea8
https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.4.0-h93a5062_0.conda#c0af0edfebe780b19940e94871f1a765
https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-hb89a1cb_0.conda#b13ad5724ac9ae98b6b4fd87e4500ba4
https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2#d3f26c6494d4105d4ecb85203d687102
https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2#878f923dd6acc8aeb47a75da6c4098be
https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.10-4_cp310.conda#1a3d9c6bb5f0b1b22d9e9296c127e8c7
https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8
https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hb547adb_0.conda#ca73dc4f01ea91e44e3ed76602c5ea61
https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2#6738b13f7fadc18725965abdd4129c36
https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2#39c6b54e94014701dd157f4f576ed211
https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2#4bb3f014845110883a3c5ee811fd84b4
https://conda.anaconda.org/conda-forge/osx-arm64/codec2-1.0.3-h3422bc3_0.tar.bz2#0a5879963953069e33af28d6d415430b
https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.6.2-hebf3989_0.conda#de0cff0ec74f273c4b6aa281479906c3
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-leo-data-1.0.0.post105+12a346f-unix_0.tar.bz2#07a7b1d08dcc3bdb0939dfb23a648b02
https://conda.anaconda.org/conda-forge/osx-arm64/libairspy-1.0.10-h3422bc3_0.tar.bz2#292b931a0bb3b0ef53668caa7b2306e5
https://conda.anaconda.org/conda-forge/osx-arm64/libairspyhf-1.6.8-h3422bc3_0.tar.bz2#3dab7eb103a9ae00eceb5f070ed954ca
https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-devel-0.22.5-h8fbad5d_2.conda#480c106e87d4c4791e6b55a6d1678866
https://conda.anaconda.org/conda-forge/osx-arm64/libbladerf2-2023.02-h1a8c8d9_0.conda#b71008e804a9f06761d9d6f69d4e6ccb
https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hb547adb_1.conda#ee1a519335cc10d0ec7e097602058c0a
https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hb547adb_1.conda#d7e077f326a98b2cc60087eaff7c730b
https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-17.0.6-h5f092b4_0.conda#a96fd5dda8ce56c86a971e0fa02751d0
https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2#30e4362988a2623e9eb34337b83e01f9
https://conda.anaconda.org/conda-forge/osx-arm64/libhackrf0-2024.02.1-h93a5062_0.conda#ba80ffe745f9b9a291555bcf51187ac9
https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.22.5-h8fbad5d_2.conda#3d216d0add050129007de3342be7b8c5
https://conda.anaconda.org/conda-forge/osx-arm64/libmirisdr4-2.0.0-h93a5062_0.conda#c1601bf8d8e157340d4d1edbf2234336
https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.15-hf346824_0.conda#988d5f86ab60fa6de91b3ee3a88a3af9
https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-hfb2fe0b_6.conda#9c4e121cd926cab631bd1c4a61d18b17
https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-18.1.6-hde57baf_0.conda#f4565f7e5ce486f33705ff6bfc586688
https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.0-hfb2fe0b_3.conda#730f618b008b3c13c1e3f973408ddd67
https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda#8cbb776a2f641b943d413b3e19df71f4
https://conda.anaconda.org/conda-forge/osx-arm64/rtl-sdr-2.0.1-h93a5062_0.conda#0c8564880555c93c2b5f76a89aefcecb
https://conda.anaconda.org/conda-forge/osx-arm64/airspy-1.0.10-h3422bc3_0.tar.bz2#0fda367c4b6fdb30b647f58536441f52
https://conda.anaconda.org/conda-forge/osx-arm64/airspyhf-1.6.8-h3422bc3_0.tar.bz2#884033788eb06726f5be734389b44c4d
https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.1.0-hb547adb_1.conda#990d04f8c017b1b77103f9a7730a5f12
https://conda.anaconda.org/conda-forge/osx-arm64/fmt-10.2.1-h2ffa867_0.conda#8cccde6755bdd787f9840f38a34b4e7d
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab
https://conda.anaconda.org/conda-forge/osx-arm64/gettext-tools-0.22.5-h8fbad5d_2.conda#31117a80d73f4fac856ab09fd9f3c6b5
https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hc88da5d_1004.tar.bz2#aab9ddfad863e9ef81229a1f8852211b
https://conda.anaconda.org/conda-forge/osx-arm64/glew-2.1.0-h9f76cd9_2.tar.bz2#ec67d4b810ad567618722a2772e9755c
https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.3.0-hebf3989_1.conda#64f45819921ba710398706e1a6404eb5
https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-hebf3989_1003.conda#339991336eeddb70076d8ca826dac625
https://conda.anaconda.org/conda-forge/osx-arm64/gtest-1.14.0-h1995070_1.conda#06fcdee735ef3e60e0d53c4dccfef5ff
https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda#92f1cff174a538e0722bf2efb16fc0b2
https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2#de462d5aacda3b30721b512c5da4e742
https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.2-cxx17_hebf3989_0.conda#edc3edb68fd9cbb014ac675dc73006c2
https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.3-hebf3989_0.conda#6f0b8e56d2e7bae12a18fc5b2cd9f310
https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda#1a109764bff3bdc7bdd84088347d71dc
https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-0.22.5-h8fbad5d_2.conda#a66fad933e22d22599a6dd149d359d25
https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda#66ac81d54e95c534ae488726c1f698ea
https://conda.anaconda.org/conda-forge/osx-arm64/libhamlib4-4.5.5-h965bd2d_3.conda#2cde3606cddce6e65a69c6e74de3dd3d
https://conda.anaconda.org/conda-forge/osx-arm64/libintl-devel-0.22.5-h8fbad5d_2.conda#962b3348c68efd25da253e94590ea9a2
https://conda.anaconda.org/conda-forge/osx-arm64/liblimesuite-23.11.0-h965bd2d_0.conda#d9054785a6d04d03aa94140fd7dcccbd
https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda#1813e066bfcef82de579a0be8a766df4
https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.43-h091b4b1_0.conda#77e684ca58d82cae9deebafb95b1a2b8
https://conda.anaconda.org/conda-forge/osx-arm64/librtaudio6-5.2.0-hebf3989_3.conda#9c5887b8a07f189f56b539020e5f77e6
https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.45.3-h091b4b1_0.conda#c8c1186c7f3351f6ffddb97b1f54fc58
https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda#029f7dc931a3b626b94823bc77830b01
https://conda.anaconda.org/conda-forge/osx-arm64/libvorbis-1.3.7-h9f76cd9_0.tar.bz2#92a1a88d1a1d468c19d9e1659ac8d3df
https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.12.7-ha661575_0.conda#3de3b94d23f85429b87cf1e00c02582d
https://conda.anaconda.org/conda-forge/osx-arm64/lua-5.4.6-hfd2a410_1.conda#087e4726e700f22692001da83f071bde
https://conda.anaconda.org/conda-forge/osx-arm64/mirisdr-2.0.0-h93a5062_0.conda#03e40b00a364e2a8ad2f4b680276c5ae
https://conda.anaconda.org/conda-forge/osx-arm64/mpg123-1.32.6-hebf3989_0.conda#06c3ccb81e97ed431dccf875e5ebac4d
https://conda.anaconda.org/conda-forge/osx-arm64/mysql-common-8.3.0-hd1853d3_4.conda#f93a6079f12ef00195d7d0b96ff98191
https://conda.anaconda.org/conda-forge/osx-arm64/nspr-4.35-hb7217d7_0.conda#f81b5ec944dbbcff3dd08375eb036efa
https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.43-h26f9a81_0.conda#1ddc87f00014612830f3235b5ad6d821
https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.43.4-hebf3989_0.conda#0308c68e711cd295aaa026a4f8c4b1e5
https://conda.anaconda.org/conda-forge/osx-arm64/portaudio-19.6.0-h13dd4ca_9.conda#d325d46394b6c46d15718c855fb20b4a
https://conda.anaconda.org/conda-forge/osx-arm64/pugixml-1.14-h13dd4ca_0.conda#4de774bb04e03af9704ec1a2618c636c
https://conda.anaconda.org/conda-forge/osx-arm64/sdl2-2.30.2-hebf3989_0.conda#b962526879a8bad545c671b2a1a97549
https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda#b50a57ba89c32b62428b71a875291c9b
https://conda.anaconda.org/conda-forge/osx-arm64/volk-3.1.2-hebf3989_0.conda#bca78451d754e17bdfe60356b8de792e
https://conda.anaconda.org/conda-forge/osx-arm64/volk-gnss-sdr-0.0.18-h3f3aa29_19.conda#30791b40f23207091b41ec0adef82213
https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-hfb2fe0b_6.conda#88cf27df3eff5813734b538461f4c8cf
https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.6-hb46c0d2_0.conda#d96942c06c3e84bfcc5efb038724a7fd
https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.1.0-hb547adb_1.conda#a33aa58d448cbc054f887e39dd1dfaea
https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda#e6085e516a3e304ce41a8ee08b9b89ad
https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.6.0-h6da1cb0_0.tar.bz2#5a570729c7709399cf8511aeeda6f989
https://conda.anaconda.org/conda-forge/osx-arm64/hamlib-4.5.5-h1e4ffcf_3.conda#87044119f47b033cf86766e0652c9596
https://conda.anaconda.org/conda-forge/osx-arm64/hamlib-lua-4.5.5-lua54h93a5062_3.conda#63ff856c78a045b849935f5db17da00c
https://conda.anaconda.org/conda-forge/osx-arm64/hamlib-tcl-4.5.5-h1510aa7_3.conda#7ab25890b666924f6aa7fdcb572de457
https://conda.anaconda.org/conda-forge/osx-arm64/libboost-1.82.0-h489e689_6.conda#baf3cf8cf993a572454175a3adf3a149
https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.8.0-h7b6f9a7_0.conda#245b30f99dc5379ebe1c78899be8d3f5
https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-devel-0.22.5-h8fbad5d_2.conda#1113aa220b042b7ce8d077ea8f696f98
https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda#4a55d9e169114b2b90d3ec4604cd7bbf
https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.80.2-h535f939_0.conda#4ac7cb698ca919924e205af3ab3aacf3
https://conda.anaconda.org/conda-forge/osx-arm64/libiio-c-0.25-hec7c9b8_1.conda#be88778166a704587af6b9e0a913c5c0
https://conda.anaconda.org/conda-forge/osx-arm64/libllvm15-15.0.7-h2621b3d_4.conda#8d7f7a7286d99a2671df2619cb3bfb2c
https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.6-hdac5640_0.conda#0f810485b34dee7169728fa89b00683b
https://conda.anaconda.org/conda-forge/osx-arm64/libpq-16.3-h7afe498_0.conda#b0f5315a3f630ade192cb9b569ce54ba
https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hbfab5d5_0.conda#5f70b2b945a9741cba7e6dfe735a02a7
https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.20.0-h33edb3e_0.conda#02edc807c5d79cdf2e000edcbe9518e8
https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.6.0-h07db509_3.conda#28c9f8c6dd75666dfb296aea06c49cb8
https://conda.anaconda.org/conda-forge/osx-arm64/libxslt-1.1.39-h223e5b9_0.conda#560c9cacc33e927f55b998eaa0cb1732
https://conda.anaconda.org/conda-forge/osx-arm64/mysql-libs-8.3.0-hf036fc4_4.conda#9cb8011d749d99db2cba868053bcd8cb
https://conda.anaconda.org/conda-forge/osx-arm64/nss-3.100-hc6e9f88_0.conda#5510f8855b43310ed7609395f8d777dd
https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.14-h2469fbe_0_cpython.conda#4ae999c8227c6d8c7623d32d51d25ea9
https://conda.anaconda.org/conda-forge/osx-arm64/sdl-1.2.68-hfc12253_0.conda#3f2b68e7acdffc200fea7b801be0ed36
https://conda.anaconda.org/conda-forge/osx-arm64/spdlog-1.12.0-he64bfa9_2.conda#ef84dce6d582965c3fc1e4a52ba51114
https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-hcc0f68c_4.conda#39fb79e7a7a880a03f82c1f2eb7f7c73
https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b
https://conda.anaconda.org/conda-forge/osx-arm64/atk-1.0-2.38.0-hd03087b_2.conda#57301986d02d30d6805fdce6c99074ee
https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda#5e4c0743c70186509d1412e03c2d8dfa
https://conda.anaconda.org/conda-forge/osx-arm64/bcrypt-4.1.3-py310h947b723_0.conda#37feda9d93d0cacdb7354c83d7d5ceb1
https://conda.anaconda.org/conda-forge/noarch/bidict-0.23.1-pyhd8ed1ab_0.conda#c9916c3975b19f470218f415701d6362
https://conda.anaconda.org/conda-forge/noarch/blinker-1.8.2-pyhd8ed1ab_0.conda#cf85c002319c15e9721934104aaa1137
https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py310h1253130_1.conda#26fab7f65a80fff9f402ec3b7860b88a
https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a
https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda#0876280e409658fc6f9e75d035960333
https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda#7f4a9e3fcff3f6356ae99244a014da6a
https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda#f3ad426304898027fc619827ff428eca
https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99
https://conda.anaconda.org/conda-forge/noarch/construct-2.10.70-pyhd8ed1ab_0.conda#58e88566bfbbf9d3ffbeda3290e7f4f0
https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda#5cd86562580f274031ede6aa6aa24441
https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364
https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_0.conda#e8cd5d629f65bdf0f3bb312cde14659e
https://conda.anaconda.org/conda-forge/osx-arm64/ephem-4.1.5-py310hd125d64_1.conda#c0646856b551dcc1f36f04d5c3d2a1eb
https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda#8d652ea2ee8eaee02ed8dc820bc794aa
https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda#e16be50e378d8a4533b989035b196ab8
https://conda.anaconda.org/conda-forge/osx-arm64/fftw-3.3.10-nompi_h3046061_108.conda#8b7ac9f19a96f724398017337ff81765
https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda#f77d47ddb6d3cc5b39b9bdf65635afbb
https://conda.anaconda.org/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_0.conda#650a7807e689642dddd3590eb817beed
https://conda.anaconda.org/conda-forge/osx-arm64/gdk-pixbuf-2.42.12-h7ddc832_0.conda#151309a7e1eb57a3c2ab8088a1d74f3e
https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.22.5-h8fbad5d_2.conda#404e2894e9cb2835246cef47317ff763
https://conda.anaconda.org/conda-forge/osx-arm64/glib-tools-2.80.2-h4c882b9_0.conda#cbb22f46214f22c8e73c09175f516fab
https://conda.anaconda.org/conda-forge/osx-arm64/greenlet-3.0.3-py310h692a8b6_0.conda#144a094effe5db16450c7ed9c8876e7f
https://conda.anaconda.org/conda-forge/osx-arm64/hamlib-python-4.5.5-py310hd125d64_3.conda#8b9ce8102b4181eb2f531dc48022fa46
https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.3-nompi_hec07895_102.conda#907a46a97e11629c15ff91c42d1db6d2
https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda#c0cc1420498b17414d8617d0b9f506ca
https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_0.conda#ff7ca04134ee8dde1d7cf491a78ef7c7
https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.5-py310h38f39d4_1.conda#84392f391faad11ea910f38226590a88
https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.16-ha0e7c42_0.conda#66f6c134e76fe13cce8a9ea5814b5dd5
https://conda.anaconda.org/conda-forge/osx-arm64/libad9361-iio-0.2-h5f0d74c_3.tar.bz2#39f976ce1cb5e7f88f8f37ad125f1f4a
https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp15-15.0.7-default_he012953_5.conda#a3035345155ca0a31eb1588bbbb2cff0
https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-18.1.6-default_h174537c_0.conda#01675cddf58c8a407b31d848649f9c32
https://conda.anaconda.org/conda-forge/osx-arm64/libm2k-0.8.0-py310hb469b4f_0.conda#c2ca3b158791bce087239196e828b056
https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.27-openmp_h6c19121_0.conda#82eba59f4eca26a9fc904d584f8761c0
https://conda.anaconda.org/conda-forge/osx-arm64/lxml-5.2.2-py310h9905115_0.conda#743b484a70e77849128a27a06dee67ca
https://conda.anaconda.org/conda-forge/osx-arm64/m17-cxx-demod-2.3.3-h3700a85_3.conda#bc2163947bfb31875574c56b7cd319e5
https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.5-py310hd125d64_0.conda#29a6f644679ed1e2b94fc20c7e3dcc2d
https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19
https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.2-h9f1df11_0.conda#5029846003f0bc14414b9128a1f7c84b
https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda#248f521b64ce055e7feae3105e7abeb8
https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda#81534b420deb77da8833f2289b8d47ac
https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761
https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda#405678b942f2481cecdb3e010f4925d9
https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_2.conda#18c6deb6f9602e32446398203c8f0e91
https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2#359eeb6536da0e687af562ed265ec263
https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883
https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda#844d9eb3b43095b031874477f7d70088
https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda#b7f5c092b8f9800150d998a71b76d5a1
https://conda.anaconda.org/conda-forge/noarch/pylibiio-0.25-py_1.conda#810ae49bb989b27783c17c1b7d36595e
https://conda.anaconda.org/conda-forge/noarch/pyopengl-3.1.6-pyhd8ed1ab_1.tar.bz2#c968eb974b0fae4676e7a7858c4cc56e
https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.2-pyhd8ed1ab_0.conda#b9a4dacf97241704529131a0dfc0494f
https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2#2a7de29fb590ca14b5243c4c812c8025
https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.1-pyhd8ed1ab_0.conda#98206ea9954216ee7540f0c773f2104d
https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda#3eeeeb9e4827ace8c0c1419c85d590ad
https://conda.anaconda.org/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2#2807a0becd1d986fe1ef9b7f8135f215
https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.1-py310h2aa6e3c_1.conda#0e7ccdd121ce7b486f1de7917178387c
https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-26.0.3-py310h16e08c9_0.conda#0788836c393aef2b46851f83416fd0d7
https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.18.1-py310h947b723_0.conda#dd3c552f3b52bc446338cd4c9faba7cb
https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py310hd125d64_0.conda#e0b9a24f19622386be17bf9f29674e81
https://conda.anaconda.org/conda-forge/noarch/setuptools-70.0.0-pyhd8ed1ab_0.conda#c8ddb4f34a208df4dd42509a0f6a1c89
https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-0.8.1-py310h38f39d4_4.conda#c34979da1691ff4e910c6b8fc58295f7
https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095
https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96
https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4-py310hd125d64_0.conda#918e4a0c909366d09cf9530bdf3dc398
https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda#3df84416a021220d8b5700c613af2dc5
https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda#6ef2fc37559256cf682d8b3375e89b80
https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-15.1.0-py310h2aa6e3c_0.conda#9dbba0c13148e8efbb80eb60186b2d8c
https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda#68f0738df502a14213624b288c60c9ad
https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda#f372c576b8774922da83cda2b12f9d29
https://conda.anaconda.org/conda-forge/osx-arm64/wxwidgets-3.2.5-hd78d63a_0.conda#ba37147414e2ba1db57e91102d952ba8
https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda#2e4d6bc0b14e10f895fc6791a7d9b26a
https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda#5f25798dcefd8252ce5f9dc494d5f571
https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551
https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.0-hd1e100b_0.conda#3fa6eebabb77f65e82f86b72b95482db
https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.16.0-py310hdcd7c05_0.conda#8855823d908004e4d3b4fd4218795ad2
https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f
https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.52.4-py310ha6dd24b_0.conda#deed84811cdbfb04f6f4d6635b532b40
https://conda.anaconda.org/conda-forge/noarch/fs-2.4.16-pyhd8ed1ab_0.conda#a231fa7cb5f101f1f3ae8480c0002f91
https://conda.anaconda.org/conda-forge/osx-arm64/glib-2.80.2-h535f939_0.conda#9b69f620f2a8153ba4467fedc09e89f1
https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2#b21ed0883505ba1910994f1df031a428
https://conda.anaconda.org/conda-forge/osx-arm64/hackrf-2024.02.1-hdaa6d3f_0.conda#ba19eec99fa5e854bca9d1d26968f1e4
https://conda.anaconda.org/conda-forge/noarch/hamlib-all-4.5.5-osx_3.conda#993b68647a6559ec2064620d16f7136b
https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda#0896606848b2dc5cebdf111b6543aa04
https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda#c5d3907ad8bd7bf557521a1833cf7e6d
https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda#81a3be0b2023e1ea8555781f0ad904a2
https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda#7b86ecb7d3557821c649b3c31e3eb9f2
https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-22_osxarm64_openblas.conda#aeaf35355ef0f37c7c1ba35b7b7db55f
https://conda.anaconda.org/conda-forge/osx-arm64/libflac-1.4.3-hb765f3a_0.conda#356faba64411660f6c4d24ea31640733
https://conda.anaconda.org/conda-forge/osx-arm64/libiio-0.25-hce30654_1.conda#de98caf7fa1d35d1606407201738958e
https://conda.anaconda.org/conda-forge/osx-arm64/libliquid1-1.6.0-hdaa6d3f_1.conda#73dfa30667444418ba99c439bcfae2c6
https://conda.anaconda.org/conda-forge/osx-arm64/libmatio-1.5.26-h3b23503_0.conda#1f84ad1a0f39fe2f435d6bf90e7850dd
https://conda.anaconda.org/conda-forge/osx-arm64/libosmodsp0-0.4.0-hdaa6d3f_1.conda#cb546f1e7660858fb581d79cfc24b1d1
https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda#779345c95648be40d22aaa89de7d4254
https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_0.conda#629f3203c99b32e0988910c93e77f3b6
https://conda.anaconda.org/conda-forge/osx-arm64/pillow-10.3.0-py310h81a8c2e_0.conda#b43bee0bd86ae53a15ebc2858b737e5d
https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.42-pyha770c72_0.conda#0bf64bf10eee21f46ac83c161917fa86
https://conda.anaconda.org/conda-forge/noarch/pyfiglet-0.8.post1-py_0.tar.bz2#e22d3c090f24856764e9d70e76fa3a5f
https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda#2cf4264fffb9e6eff6031c5b6884d61c
https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.1-pyhd8ed1ab_0.conda#7f391bd70d2abfb70f304ba5aa4e1261
https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda#0fc8b52192a8898627c3efae1003e9f6
https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py310hd125d64_0.conda#122d1d9bab6c74cebc0f17736a705e32
https://conda.anaconda.org/conda-forge/osx-arm64/sip-6.8.3-py310h692a8b6_0.conda#534eb071080776985638f17c6ea4b5d3
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-module-airspy-0.2.0-h4306ade_0.tar.bz2#718454fcd0364ede5ea5f4711601830d
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-module-airspyhf-0.2.0-h4306ade_0.tar.bz2#58e9064bfe34a66c96ba5b7ffc11fd3a
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-module-audio-0.1.1-h70b5976_1.conda#44ab2d09dc7b66d6c96ceb5101290203
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-module-bladerf-0.4.1-h8167e30_0.tar.bz2#34951ed2aac6ef34606a77a41d929eb9
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-module-hackrf-0.3.4-h4306ade_0.tar.bz2#3452da20c05a4f67925983d8e4afcb2e
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-module-lms7-23.11.0-he20d445_0.conda#cfde13e102a50c5ca093171ff3c7ea43
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-module-netsdr-0.2.0-h370950c_1.conda#236f57bc34705e71588faadea184b05b
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-module-plutosdr-0.2.2-hef1adc2_0.conda#32c0d7c61ba5d8f41694ea2da20188bb
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-module-redpitaya-0.1.1-h370950c_0.conda#782a3bff21bb0f18255ccb3f841ebdec
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-module-remote-0.5.2-h4306ade_2.tar.bz2#2a80ff3672c59b7e15f87c206a1923c2
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-module-rtlsdr-0.3.3-h70b5976_2.conda#accb1f9fa896db57f059f7c73164bbb5
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-module-volk-converters-0.1.1-hd9aa7c5_2.conda#27deb1699619ab41d1de96349ae6ca5f
https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda#08807a87fa7af10754d46f63b368e016
https://conda.anaconda.org/conda-forge/osx-arm64/watchdog-4.0.1-py310ha6dd24b_0.conda#fd34c87132a69fc07be5abdd0a18105e
https://conda.anaconda.org/conda-forge/noarch/werkzeug-3.0.3-pyhd8ed1ab_0.conda#2e60f5f388845027ee87fca6bee4ac23
https://conda.anaconda.org/conda-forge/noarch/zope.event-5.0-pyhd8ed1ab_0.conda#b4a7b86cf51f2831015e9eebd284dc0a
https://conda.anaconda.org/conda-forge/osx-arm64/zope.interface-6.4.post2-py310ha6dd24b_0.conda#c507911c7b174a6030e9e3d1d96ab537
https://conda.anaconda.org/conda-forge/noarch/asciimatics-1.15.0-pyhd8ed1ab_0.conda#94bdb59db7572d651230d10dd15c188d
https://conda.anaconda.org/conda-forge/osx-arm64/cryptography-42.0.7-py310ha71c378_0.conda#3ca48769dc6c0edfe93acf4e2c276c41
https://conda.anaconda.org/conda-forge/noarch/flask-3.0.3-pyhd8ed1ab_0.conda#dcdb937144fa20d7757bf512db1ea769
https://conda.anaconda.org/conda-forge/osx-arm64/gevent-23.9.0.post1-py310hdf46697_1.conda#b53e5077cd2cbd1c7f5c8cf90f66a1a5
https://conda.anaconda.org/conda-forge/osx-arm64/gstreamer-1.24.4-h430e707_0.conda#73dec96255be4192c5de3b26e94ef995
https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-8.5.0-h1836168_0.conda#aa22b942b980c17612d344adcd0f8798
https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda#a0e4efb5f35786a05af4809a2fb1f855
https://conda.anaconda.org/conda-forge/noarch/libbladerf-python-2023.02-py_0.conda#3d313832d2b63b19fe9ffe240e4fb746
https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-22_osxarm64_openblas.conda#37b3682240a69874a22658dedbca37d9
https://conda.anaconda.org/conda-forge/osx-arm64/libgirepository-1.80.1-hee7aab5_0.conda#07e1615344b29a640cb9b38b5d6eb1f4
https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-22_osxarm64_openblas.conda#f2794950bc005e123b2c21f7fa3d7a6e
https://conda.anaconda.org/conda-forge/osx-arm64/libsndfile-1.2.2-h9739721_1.conda#77d552455cbc52e089cdb9df5b283199
https://conda.anaconda.org/conda-forge/osx-arm64/limesuite-23.11.0-h778206f_0.conda#803255c40efa3eac6659bac96a34f2c6
https://conda.anaconda.org/conda-forge/noarch/mako-1.3.5-pyhd8ed1ab_0.conda#29fddbfa0e2361636a98de4f46ead2ac
https://conda.anaconda.org/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda#06e9bebf748a0dea03ecbe1f0e27e909
https://conda.anaconda.org/conda-forge/osx-arm64/pycairo-1.26.0-py310hea34faf_0.conda#96e396320cd5d8eeb93b9d76da63adfa
https://conda.anaconda.org/conda-forge/osx-arm64/pynacl-1.5.0-py310h2aa6e3c_3.conda#c684863c740f57038bf66d18935b966c
https://conda.anaconda.org/conda-forge/osx-arm64/pyqt5-sip-12.12.2-py310h1253130_5.conda#cdf5fa7a77660c885dfc91dfcdec75a7
https://conda.anaconda.org/conda-forge/noarch/qdarkstyle-3.2.3-pyhd8ed1ab_0.conda#ab475868d7e0b110c43bf74c90237a5f
https://conda.anaconda.org/conda-forge/noarch/requests-2.32.2-pyhd8ed1ab_0.conda#e1643b34b19df8c028a4f00bf5df58a6
https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af
https://conda.anaconda.org/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_0.tar.bz2#00ba804b54f451d102f6a7615f08470d
https://conda.anaconda.org/conda-forge/osx-arm64/arpack-3.8.0-nompi_ha3438d0_101.tar.bz2#d935e37c345fc0082ba2b46b7498a7da
https://conda.anaconda.org/conda-forge/osx-arm64/bladerf-2023.02-h1a8c8d9_0.conda#913fafc2abcc54b7b7efb0dfb728003d
https://conda.anaconda.org/conda-forge/noarch/gevent-websocket-0.10.1-py_0.tar.bz2#25b4b60b6ea50368cd90b75b4d00c711
https://conda.anaconda.org/conda-forge/osx-arm64/gsl-2.7-h6e638da_0.tar.bz2#2a2126a940e033e7225a5dc7215eea9a
https://conda.anaconda.org/conda-forge/osx-arm64/gst-plugins-base-1.24.4-h8a8f8c8_0.conda#05d2fa13307d6e949f883b9de658e154
https://conda.anaconda.org/conda-forge/noarch/ipython-8.24.0-pyh707e725_0.conda#1fb1f1fcbe053a762748dbf0ae4cfd0d
https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.22.0-pyhd8ed1ab_0.conda#b9661a4b1200d6bc7d8a4cdafdc91468
https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py310hd45542a_0.conda#267ee89a3a0b8c8fa838a2353f9ea0c0
https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.52.2-hb067d4f_0.conda#fc1b2e68f2d7b693d6930f12324a06f3
https://conda.anaconda.org/conda-forge/noarch/paramiko-3.4.0-pyhd8ed1ab_0.conda#a5e792523b028b06d7ce6e65a6cd4a33
https://conda.anaconda.org/conda-forge/osx-arm64/pygobject-3.48.2-py310h5ffc74c_0.conda#5a8021a35e7f809b256cb476a65f5c60
https://conda.anaconda.org/conda-forge/noarch/simple-websocket-1.0.0-pyhd8ed1ab_1.conda#4e9136be6c66312f63b3a8ef60443389
https://conda.anaconda.org/conda-forge/osx-arm64/superlu-5.2.2-hc615359_0.tar.bz2#563c35f95395ad5b986dc66239a938a9
https://conda.anaconda.org/conda-forge/osx-arm64/armadillo-12.8.3-h871507b_0.conda#bed922f08c85b09e9b1a55717e393f15
https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.2.1-py310h21239e6_0.conda#db10923835b6b8c082b126c7cbbe50ff
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-pmt-3.10.10.0-py310heae92f6_6.conda#1dbf8cee4ea86a176718036258049f65
https://conda.anaconda.org/conda-forge/osx-arm64/gtk3-3.24.42-hcad41e0_0.conda#9b506e8cefd436b9525194dfb9a05e7b
https://conda.anaconda.org/conda-forge/osx-arm64/h5py-3.11.0-nompi_py310h92897fd_101.conda#63fa3f48470d1bf9857a8e46f9520e1c
https://conda.anaconda.org/conda-forge/osx-arm64/librsvg-2.58.0-hb3d354b_1.conda#eefc587613e6097d9c0b14188c292b5d
https://conda.anaconda.org/conda-forge/osx-arm64/numexpr-2.8.4-py310h1cdf563_1.conda#df5cb645f9f84a817d6df89ad876dc36
https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.2-py310h2216879_1.conda#0a86a0c81dfd7170f6b40209088bb82b
https://conda.anaconda.org/conda-forge/noarch/pyadi-iio-0.0.16-pyhd8ed1ab_0.conda#667c2c87d132e2fdf0b2f42200fbfbff
https://conda.anaconda.org/conda-forge/noarch/pyqtgraph-0.13.7-pyhd8ed1ab_0.conda#d31a6f00bd89ff46a5e457c935578c33
https://conda.anaconda.org/conda-forge/noarch/python-engineio-4.9.1-pyhd8ed1ab_0.conda#14eac7853ce0afb52fab40521d8ed9f7
https://conda.anaconda.org/conda-forge/osx-arm64/qt-main-5.15.8-hf679f28_21.conda#715342108a6cc6336f489c36b85ba6f1
https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.13.1-py310h7057308_0.conda#6bfcb9595fecdd3f658f1688acd052ec
https://conda.anaconda.org/conda-forge/osx-arm64/uhd-4.6.0.0-py310h1420c5e_0.conda#6ce8bca5e97f9eced2f441fd556c88b9
https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-46.0-unix_0.conda#f1dcbaeb1b69a1424b9ac618b2a7cdc8
https://conda.anaconda.org/conda-forge/osx-arm64/digital_rf-2.6.9-py310hac6c426_0.conda#6e2ac4aba82b79fd4a3051760c9e76d2
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-core-3.10.10.0-py310haa06dbd_6.conda#7749f85f340390de4a8f785fd8d486cb
https://conda.anaconda.org/conda-forge/osx-arm64/inspectrum-0.3.1-h591b114_0.conda#e1e58a5e8f6b1a5603839454c27438b7
https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.8.4-py310hedb7998_2.conda#60b2cad9f6e0b0560e93861543b53964
https://conda.anaconda.org/conda-forge/osx-arm64/pyqt-5.15.9-py310h2924129_5.conda#0156cad315c914ef43fdcf5a10e744d1
https://conda.anaconda.org/conda-forge/noarch/python-socketio-5.11.2-pyhd8ed1ab_0.conda#08c4689825cdf902fc643a6a0934068e
https://conda.anaconda.org/conda-forge/osx-arm64/qwt-6.3.0-h4ff56cd_0.conda#49aec06c9aee37c8579e9bcbd4b3f38f
https://conda.anaconda.org/conda-forge/osx-arm64/soapysdr-module-uhd-0.4.1-hcfb10c7_10.conda#b7a5900e9578f7ad8b0fb122b0815345
https://conda.anaconda.org/conda-forge/noarch/flask-socketio-5.3.6-pyhd8ed1ab_0.conda#ef521fc208ad82733c942d150199cf3e
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-dect2-0.0.0.20240502.dev+gb296af2a9-py310hf97cb1e_0.tar.bz2#f2ef55c7dbf0194025228e67c1f33e2f
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-filerepeater-0.0.0.20240508.dev+gd7bb8846c-py310h108dd60_0.tar.bz2#560d030aeef522d5279492e276ba1ade
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-foo-0.0.0.20240502.dev+gc53538a22-py310hd1a744e_0.tar.bz2#9561b90b6c651678873e0f2eee7a6854
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-fosphor-0.0.0.20240502.dev+g656fe2f-py310hbfd932c_0.tar.bz2#2a1f35b6c289c90cc17c1d683b8a0b40
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-gpredict-doppler-0.0.0.20240508.dev+gb06bc7678-unix_pyha1ad6f9_0.tar.bz2#b414c3119957d01e5edb2ec24b438bd1
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-grc-3.10.10.0-py310ha0e405d_6.conda#223f150e5ccdc509fef469532df0dc90
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-hermeslite2-v1.0.0.0.post17+8b17ad3-py310hf97cb1e_0.tar.bz2#1e9f5a4da565f946f85ca5d64ff52e4d
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-hpsdr-0.0.0.20240507.dev+g958e157-py310h0f0892f_0.tar.bz2#480eaa5aa402d4268870819251764e30
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-iio-3.10.10.0-py310h038d8e2_6.conda#a98d7857ebcbc5cc0ed72a75d1d70ddd
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-iqbalance-0.38.2-py310h7bae070_3.conda#613333f359ad453fd6943698b1d55a7a
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-iridium-1!1.0.0-py310h1a9487a_11.conda#ba485003ef9413ae5c3dbf5398b39d4a
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-leo-1.0.0.post105+12a346f-py310hbd5b434_0.tar.bz2#1ecdd396a9515b272b704e76b9c9534f
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-lora_sdr-0.0.0.20240508.dev+g751a65269-py310hbd5b434_0.tar.bz2#3acb8b01511993d29b7a61a152c3366a
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-m2k-1.0.0-py310hf60a216_9.conda#169595bd7a16c3f7c7b66a18988bc4d0
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-paint-0.0.0.20240508.dev+g82696a2-py310hbd5b434_0.tar.bz2#fd7c3c5eb9f03c3021e168b0f147b259
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-qtgui-3.10.10.0-py310h90ffc91_6.conda#fabfdcc63f02c91ed49c06f657c39f15
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-radar-0.0.0.20240525.dev+gc59350d-py310h323dc59_0.tar.bz2#b0024575fad6f6e8e7d94798992d8e48
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-rds-3.10.post22+g2134008-py310hebe94f0_0.tar.bz2#31e61a225ec99b515c50260a0058abf9
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-soapy-3.10.10.0-py310h5118e3d_6.conda#23977724b33b94f0fa2e24ce290a14e7
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-uhd-3.10.10.0-py310hbe4225f_6.conda#6d2c4aeeb0b51ef62cc7c660b233e218
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-video-sdl-3.10.10.0-py310ha0e405d_6.conda#9b9fdcc877e63772c9b5d2b52ecdc972
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-zeromq-3.10.10.0-py310hd332203_6.conda#d5cb0babbeee7369331f724e5536a4d4
https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-3.8.4-py310hb6292c7_2.conda#db30441d94ae737e3f665ec8c3c0677d
https://conda.anaconda.org/conda-forge/noarch/mplcursors-0.5.3-pyhd8ed1ab_0.conda#41db08c32bbbb2849d6f57fd1d1da460
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-3.10.10.0-py310he46b942_6.conda#59f123d7bbb2d214505177089bfa7153
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-adsb-0.0.0.20240508.dev+gafd7fabda-unix_pyha6c0e43_0.tar.bz2#56f998dffe40fa91563395e3cbc935b7
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-ieee802_11-0.0.0.20240507.dev+g8c058d4e0-py310h9081a98_0.tar.bz2#6a1a87e621d0a3fe2053c583e216744a
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-ieee802_15_4-3.6.post133+g932c76f-py310h0131f0b_0.tar.bz2#567dfaaa62f3a6b9fd13d1cfcf253e51
https://conda.anaconda.org/ryanvolz/osx-arm64/gnuradio-inspector-0.0.0.20240525.dev+g55acca6-py310h1fae84c_0.tar.bz2#e537df87a5b292b28641182542596c9f
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-osmosdr-0.2.4-py310h5c4d73c_16.conda#d00f4d030f63c3f92bffe946b9f01196
https://conda.anaconda.org/conda-forge/osx-arm64/gnuradio-satellites-5.5.0-py310h4de452a_2.conda#3cf182c8eaa308f900fffedcafb1d78f
https://conda.anaconda.org/conda-forge/noarch/pyfda-0.8.4-pyh9208f05_0.conda#c772efaac9008abc155bbb8da0ed451d
https://conda.anaconda.org/conda-forge/osx-arm64/gnss-sdr-0.0.18-h8747f70_19.conda#c98cf1e7c30335c4e582a8b6a72c2083
https://conda.anaconda.org/conda-forge/osx-arm64/gqrx-2.17.5-py310h1a81a2b_4.conda#9287f006c4cbd88575a90bf1f5d59c92
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/ca-certificates-2025.1.31-hf0a4a13_0.conda#3569d6a9141adc64d2fe4797f3289e06
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/epoxy-1.5.10-h1c322ee_1.tar.bz2#20dd7359a6052120d52e1e13b4c818b9
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda#49023d73832ef61042f6a237cb2687e7
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2#c64443234ff91d70cb9c7dc926c58834
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/glfw-3.4-h93a5062_0.conda#b7bf4ccb27f1e75c9292a218974dcfac
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/hicolor-icon-theme-0.17-hce30654_2.tar.bz2#237b05b7eb284d7eebc3c5d93f5e4bca
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2#bff0e851d66725f78dc2fd8b032ddb7e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libcorrect-0.0.0-h1a8c8d9_0.conda#1b22175ccb06a90f74566d2dc97800f0
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda#36d33e440c31857372a72137f78bacf5
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2#086914b672be056eb70fd4285b6783b6
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda#3ff1e053dc3a2b8e36b9bfa4256a58d1
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2#3d0dbee0ccd2f6d6781d270313627b62
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libpcap-1.10.4-hb547adb_1.conda#6a8f7dfe1c5f4d159a596ce499c810d4
https://conda.anaconda.org/t/*****/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2#878f923dd6acc8aeb47a75da6c4098be
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/python_abi-3.12-5_cp312.conda#b76f9b1c862128e56ac7aa8cd2333de9
https://conda.anaconda.org/t/*****/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda#dbcace4706afdfb7eb891f7b37d07c04
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2#4bb3f014845110883a3c5ee811fd84b4
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda#fc6948412dbbbe9a4c9ddbbcfe0a79ab
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/c-ares-1.34.4-h5505292_0.conda#c1c999a38a4303b29d75c636eaa13cf9
https://conda.anaconda.org/t/*****/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-leo-data-1.0.0.post20250214%2Bg8f62b92-unix_2.conda#c4ae33379222c031be2cd82093e561e1
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gstreamer-orc-0.4.41-h4a9b20c_0.conda#1aaa1f04ee4107a4659554c0e5fa6ef5
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda#5eb22c1d7b3fc4abb50d92d621583137
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda#d0bf1dff146b799b319ea0434b93f779
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libcodec2-1.2.0-h5505292_3.conda#ee4a2689fedd17712008db8c71993c93
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libcxx-19.1.7-ha82da77_0.conda#5b3e1610ff8bd5443476b91d618f5b77
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libdeflate-1.23-hec38601_0.conda#1d8b9588be14e71df38c525767a1ac30
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda#38d2656dd914feb0cab8c629370768bf
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libiconv-1.18-hfe07756_1.conda#450e6bdc0c7d986acf7b8443dce87111
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/liblzma-5.6.4-h39f12f2_0.conda#e3fd1f8320a100f2b210e690a57cd615
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libntlm-1.8-h5505292_0.conda#c90c1d3bd778f5ec0d4bb4ef36cbd5b6
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libogg-1.3.5-h99b78c6_0.conda#57b668b9b78dea2c08e44bb2385d57c0
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda#a7ce36e284c5faaf93c220dfc39e3abd
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libusb-1.0.27-h5505292_101.conda#15042a61b4378a67b930b372086dfb0c
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libuv-1.50.0-h5505292_0.conda#20717343fb30798ab7c23c2e92b748c1
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda#569466afeb84f90d5bb88c11cc23d746
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda#369964e85dc26bfe78f41399b366c435
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/llvm-openmp-19.1.7-hdb05f8b_0.conda#c4d54bfd3817313ce758aa76283b118d
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda#068d497125e4bf8a66bf707254fff5ae
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/openssl-3.4.1-h81ee809_0.conda#75f9f0c7b1740017e2db83a53ab9a28e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda#415816daf82e0b23a736a069a75e9da7
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/xorg-libxau-1.0.12-h5505292_0.conda#50901e0764b7701d8ed7343496f4f301
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/xorg-libxdmcp-1.1.5-hd74edd7_0.conda#77c447f48cab5d3a15ac224edb86a968
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/codec2-1.2.0-h5505292_3.conda#4f2b1a1916956ce65e115c6f7c1b7f1f
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/expat-2.6.4-h286801f_0.conda#a37ffeecc1b8a62205bdd8319652758b
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/fmt-11.0.2-h420ef59_0.conda#0e44849fd4764e9f85ed8caa9f24c118
https://conda.anaconda.org/t/*****/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda#57a511a5905caa37540eb914dfcbf1fb
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/glew-2.1.0-h9f76cd9_2.tar.bz2#ec67d4b810ad567618722a2772e9755c
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda#eed7278dfbab727b56f2c0b64330814b
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/graphite2-1.3.13-hebf3989_1003.conda#339991336eeddb70076d8ca826dac625
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gtest-1.15.2-h420ef59_0.conda#539e1126f517d18d5c26b7c460374297
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2#de462d5aacda3b30721b512c5da4e742
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda#c2d95bd7aa8d564a9bd7eca5e571a5b3
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libaec-1.1.3-hebf3989_0.conda#6f0b8e56d2e7bae12a18fc5b2cd9f310
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libairspy-1.0.10-h5505292_1.conda#408fa26c97efe71bd626eb09933d65bb
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libairspyhf-1.6.8-h5505292_1.conda#e5e3c774283df43c42c10d6a60e15f54
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libasprintf-0.23.1-h493aca8_0.conda#baf9e4423f10a15ca7eab26480007639
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libbladerf2-2024.05-h5505292_2.conda#ae0fe6a5970e1adf583d3587a218d438
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda#55e66e68ce55523a6811633dd1ac74e2
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda#4f3a434504c67b2c42565c0b85c1885c
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda#44083d2d2c2025afca315c7a172eab2b
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda#1a109764bff3bdc7bdd84088347d71dc
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda#66ac81d54e95c534ae488726c1f698ea
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libhackrf0-2024.02.1-h5505292_1.conda#c85943f98d11b2ad1c8c46d510e4bdba
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libhamlib4-4.6.2-h286801f_2.conda#c83168680cc710addf6d2b8c51ccc4a8
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libintl-0.23.1-h493aca8_0.conda#7b8faf3b5fc52744bda99c4cd1d6438d
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/liblimesuite-23.11.0-h286801f_1.conda#7edd3a8c4e4b0b94992de585f684d111
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libmirisdr4-2.0.0-h5505292_1.conda#d6ed330169e9cc840df9fb44dcd3853f
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda#3408c02539cee5f1141f9f11450b6a51
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libpng-1.6.47-h3783ad8_0.conda#3550e05e3af94a3fa9cef2694417ccdf
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/librtaudio6-5.2.0-hebf3989_3.conda#9c5887b8a07f189f56b539020e5f77e6
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libsqlite-3.49.1-h3f77e49_1.conda#c83357a21092bd952933c36c5cb4f4d6
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libssh2-1.11.1-h9cc3647_0.conda#ddc7194676c285513706e5fc64f214d7
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libvorbis-1.3.7-h9f76cd9_0.tar.bz2#92a1a88d1a1d468c19d9e1659ac8d3df
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda#af523aae2eca6dfa1c8eec693f5b9a79
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libxml2-2.13.6-h178c5d8_0.conda#277864577d514bea4b30f8a9335b8d26
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/mpg123-1.32.9-hf642e45_0.conda#d2b4857bdc3b76c36e23236172d09840
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/mysql-common-9.0.1-hd7719f6_5.conda#0b7348c3e06689bdff9dfdf9e9caaab5
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/nspr-4.36-h5833ebf_0.conda#026a08bd5b6a2a2f240c00c32446156d
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pcre2-10.44-h297a79d_2.conda#147c83e5e44780c7492998acbacddf52
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pixman-0.44.2-h2f9eb0b_0.conda#fa8e429fdb9e5b757281f69b8cc4330b
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/portaudio-19.7.0-h5833ebf_0.conda#fb72bb70cfea298990d5e1a12317047c
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pugixml-1.15-hd3d436d_0.conda#b9a4004e46de7aeb005304a13b35cb94
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/qhull-2020.2-h420ef59_5.conda#6483b1f59526e05d7d894e466b5b6924
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda#63ef3f6e6d6d5c589e64f11263dc5676
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/rtl-sdr-2.0.2-h5505292_3.conda#121de75923e2e2dc71eb483ed8e16c77
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda#b50a57ba89c32b62428b71a875291c9b
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/volk-3.2.0-h71a8b11_0.conda#bfa09b70af6ad32c8207f8ec60b2962e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/volk-gnss-sdr-0.0.19-h06bbddc_8.conda#2ee2f148ade00ae6b8403c50da4bdef5
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda#e3170d898ca6cb48f1bb567afb92f775
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/zstd-1.5.7-h6491c7d_1.conda#66e5c4b02aa97230459efdd4f64c8ce6
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/airspy-1.0.10-h5505292_1.conda#b37e460f1651501cb2c989219a91ad1e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/airspyhf-1.6.8-h5505292_1.conda#7276de86168c6d18a23469c66ad80fea
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/brotli-bin-1.1.0-hd74edd7_2.conda#b8512db2145dc3ae8d86cdc21a8d421e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/freetype-2.13.3-h1d14073_0.conda#630445a505ea6e59f55714853d8c9ed0
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gettext-tools-0.23.1-h493aca8_0.conda#4086817e75778198f96c9b2ed4bc5a6e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda#fef68d0a95aa5b84b5c1a4f6f3bf40e1
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/hamlib-4.6.2-h60c98da_2.conda#385dd00f26b2350edb9f81512e395a66
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/hamlib-tcl-4.6.2-h3c7de25_2.conda#de897bdee8a8d73b0179a58f0facf324
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda#c6dc8a0fdec13a0565936655c33069a1
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libasprintf-devel-0.23.1-h493aca8_0.conda#13d4d79418eb3137fc94fe61e9e572e7
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libboost-1.86.0-hc9fb7c5_3.conda#722715e61d51bcc7bd74f7a2b133f0d7
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libgettextpo-0.23.1-h493aca8_0.conda#18ad77def4cb7326692033eded9c815d
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda#4a55d9e169114b2b90d3ec4604cd7bbf
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libglib-2.82.2-hdff4504_1.conda#849da57c370384ce48bef2e050488882
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libiio-c-0.26-h0c029c7_1.conda#5436f5fff54fb341a1a84195de266273
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libintl-devel-0.23.1-h493aca8_0.conda#f9c6d5edc5951ef4010be8cbde9f12d4
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libllvm17-17.0.6-hc4b4ae8_3.conda#2a75227e917a3ec0a064155f1ed11b06
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libllvm19-19.1.7-hc4b4ae8_1.conda#020aeb16fc952ac441852d8eba2cf2fd
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda#bdbfea4cf45ae36652c6bbcc2e7ebe91
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libthrift-0.21.0-h64651cc_0.conda#7ce2bd2f650f8c31ad7ba4c7bfea61b7
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libtiff-4.7.0-h551f018_3.conda#a5d084a957563e614ec0c0196d890654
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libxslt-1.1.39-h223e5b9_0.conda#560c9cacc33e927f55b998eaa0cb1732
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/lua-5.4.6-hfd2a410_1.conda#087e4726e700f22692001da83f071bde
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/mirisdr-2.0.0-h5505292_1.conda#340ef6579d0b833a24720dac5c6ac5fd
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/mysql-libs-9.0.1-ha8be5b7_5.conda#f0eec7f32614b20d59a0a663219b15c2
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/nss-3.108-ha3c76ea_0.conda#c31f54afadf1024210057b76445227d1
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/python-3.12.9-hc22306f_1_cpython.conda#d9fac7b334ff6e5f93abd27509a53060
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/spdlog-1.15.1-hed1c2b2_0.conda#95277d613352000a8cd51533076bf1db
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/xorg-libx11-1.8.12-h6a5fb8c_0.conda#89b59aaa3c35257dba0b7c2d980f35f0
https://conda.anaconda.org/t/*****/conda-forge/noarch/appdirs-1.4.4-pyhd8ed1ab_1.conda#f4e90937bbfc3a4a92539545a37bb448
https://conda.anaconda.org/t/*****/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda#8f587de4bcf981e26228f268df374a9b
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/atk-1.0-2.38.0-hd03087b_2.conda#57301986d02d30d6805fdce6c99074ee
https://conda.anaconda.org/t/*****/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda#a10d11958cadc13fdb43df75f8b1903f
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/bcrypt-4.3.0-py312hcd83bfe_0.conda#346513ef778843401b775b184e68ea9b
https://conda.anaconda.org/t/*****/conda-forge/noarch/bidict-0.23.1-pyhd8ed1ab_1.conda#a6d521e8054c6b38aea1095060bd7e14
https://conda.anaconda.org/t/*****/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda#42834439227a4551b939beeeb8a4b085
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/brotli-1.1.0-hd74edd7_2.conda#215e3dc8f2f837906d066e7f01aa77c0
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/brotli-python-1.1.0-py312hde4cb15_2.conda#a83c2ef76ccb11bc2349f4f17696b15d
https://conda.anaconda.org/t/*****/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a
https://conda.anaconda.org/t/*****/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda#c207fa5ac7ea99b149344385a9c0880d
https://conda.anaconda.org/t/*****/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda#e83a31202d1c0a000fce3e9cf3825875
https://conda.anaconda.org/t/*****/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda#f22f4d4970e09d68a10b922cbb0408d3
https://conda.anaconda.org/t/*****/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda#962b9857ee8e7018c22f2776ffa0b2d7
https://conda.anaconda.org/t/*****/conda-forge/noarch/construct-2.10.70-pyhd8ed1ab_0.conda#58e88566bfbbf9d3ffbeda3290e7f4f0
https://conda.anaconda.org/t/*****/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda#44600c4667a319d67dbe0681fc0bc833
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/cyrus-sasl-2.1.27-h60b93bd_7.conda#80a3b015d05a7d235db1bf09911fe08e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/dbus-1.13.6-h3818c69_3.tar.bz2#23730a06679644276233a5894eb2ef00
https://conda.anaconda.org/t/*****/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda#9ce473d1d1be1cc3810856a48b3fab32
https://conda.anaconda.org/t/*****/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda#24c1ca34138ee57de72a943237cde4cc
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/ephem-4.2-py312hea69d52_0.conda#35260239ec1b52a74ea5790e6bdf1463
https://conda.anaconda.org/t/*****/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda#a16662747cdeb9abbac74d0057cc976e
https://conda.anaconda.org/t/*****/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda#ef8b5fca76806159fc25b4f48d8737eb
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/fftw-3.3.10-nompi_h6637ab6_110.conda#622f99e8f4820c2ca1b208a3bb6ed5e6
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/fontconfig-2.15.0-h1383a14_1.conda#7b29f48742cea5d1ccb5edd839cb5621
https://conda.anaconda.org/t/*****/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_2.conda#1054c53c95d85e35b88143a3eda66373
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gdk-pixbuf-2.42.12-h7ddc832_0.conda#151309a7e1eb57a3c2ab8088a1d74f3e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/glib-tools-2.82.2-h1dc7a0c_1.conda#bdc35b7b75b7cd2bcfd288e399333f29
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/greenlet-3.1.1-py312hd8f9ff3_1.conda#a86b17a70c836a899dc5b3098594d343
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/hamlib-lua-4.6.2-lua54h5505292_2.conda#18c2921a6663b0d739280470387fdbd8
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/hamlib-python-4.6.2-py312hea69d52_2.conda#5aa76fe40db322e0bddf445fb801525a
https://conda.anaconda.org/t/*****/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda#0a802cb9888dd14eeefc611f05c40b6e
https://conda.anaconda.org/t/*****/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda#8e6923fc12f1fe8f8c4e5c9f343256ac
https://conda.anaconda.org/t/*****/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda#39a4f67be3286c86d696df570b1201b7
https://conda.anaconda.org/t/*****/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_1.conda#7ac5f795c15f288984e32add616cdc59
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/kiwisolver-1.4.8-py312h2c4a281_0.conda#a94f3ac940c391e7716b6ffd332d7463
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/lcms2-2.17-h7eeda09_0.conda#92a61fd30b19ebd5c1621a5bfe6d8b5f
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libad9361-iio-c-0.3-hf663b7a_1.conda#4ca2cdea6e7b39708a807df77576b4b8
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libclang-cpp17-17.0.6-default_hf90f093_8.conda#72b4d7dc789ea3fe3ee49e3ca7c5d971
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libclang13-19.1.7-default_h81d93ff_1.conda#cb7198149d58db396ed82b166c7183d2
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libcurl-8.12.1-h73640d1_0.conda#105f0cceef753644912f42e11c1ae9cf
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libgettextpo-devel-0.23.1-h493aca8_0.conda#e6f75805f4b533d449a5a6d60cbc9a71
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libm2k-0.9.0-py312hfdc89fd_1.conda#de6afab45e3c9f8e6ea027f335dd5553
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libopenblas-0.3.29-openmp_hf332438_0.conda#0cd1148c68f09027ee0b0f0179f77c30
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/lxml-5.3.1-py312h9535dd2_0.conda#f9d4307bbe7d394ac3634fe85a4c0e94
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/m17-cxx-demod-2.3.3-h7b87d6f_5.conda#8f2ea573c3e655bfc8bc059f86c03a36
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/markupsafe-3.0.2-py312h998013c_1.conda#46e547061080fddf9cf95a0327e8aba6
https://conda.anaconda.org/t/*****/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/openjpeg-2.5.3-h8a3d83b_0.conda#4b71d78648dbcf68ce8bf22bb07ff838
https://conda.anaconda.org/t/*****/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda#3bfed7e6228ebf2f7b9eaa47f1b4e2aa
https://conda.anaconda.org/t/*****/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda#5c092057b6badd30f75b06244ecd01c9
https://conda.anaconda.org/t/*****/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda#11a9d1d09a3615fc07c3faf79bc0b943
https://conda.anaconda.org/t/*****/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda#5a5870a74432aa332f7d32180633ad05
https://conda.anaconda.org/t/*****/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda#fd5062942bfa1b0bd5e0d2a4397b099e
https://conda.anaconda.org/t/*****/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda#7d9daffbb8d8e0af0f769dbbcd173a54
https://conda.anaconda.org/t/*****/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda#3bfdfb8dbcdc4af1ae3f9a8eb3948f04
https://conda.anaconda.org/t/*****/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda#12c566707c80111f9799308d9e265aef
https://conda.anaconda.org/t/*****/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda#232fb4577b6687b2d503ef8e254270c9
https://conda.anaconda.org/t/*****/conda-forge/noarch/pylibiio-0.26-py_1.conda#3be73c72b1383b1f0e9690333780d6cd
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyopengl-3.1.7-pyhd8ed1ab_0.conda#6d7d03be8e7f788b444c15262408d063
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyparsing-3.2.1-pyhd8ed1ab_0.conda#285e237b8f351e85e7574a2c7bfa6d46
https://conda.anaconda.org/t/*****/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda#461219d1a5bd61342293efa2c0c90eac
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-tzdata-2025.1-pyhd8ed1ab_0.conda#392c91c42edd569a7ec99ed8648f597a
https://conda.anaconda.org/t/*****/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda#3eeeeb9e4827ace8c0c1419c85d590ad
https://conda.anaconda.org/t/*****/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh1179c8e_3.tar.bz2#2807a0becd1d986fe1ef9b7f8135f215
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pyyaml-6.0.2-py312h998013c_2.conda#68149ed4d4e9e1c42d2ba1f27f08ca96
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/rpds-py-0.23.1-py312hd60eec9_0.conda#21bfb8afb20f48a6c60e83a2f01d7034
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312h0bf5046_1.conda#2ed5f254c9ea57b6d0fd4e12baa4b87f
https://conda.anaconda.org/t/*****/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda#9bddfdbf4e061821a1a443f93223be61
https://conda.anaconda.org/t/*****/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda#a451d576819089b0d672f18768be0f65
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-0.8.1-py312h6142ec9_5.conda#a7e24c5c73bf6ee1f8bc2f82bc7ed4e7
https://conda.anaconda.org/t/*****/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda#b0dd904de08b7db706167240bf37b164
https://conda.anaconda.org/t/*****/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda#ac944244f1fed2eb49bae07193ae8215
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/tornado-6.4.2-py312hea69d52_0.conda#fb0605888a475d6a380ae1d1a819d976
https://conda.anaconda.org/t/*****/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda#019a7385be9af33791c989871317e1ed
https://conda.anaconda.org/t/*****/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda#d17f13df8b65464ca316cbc000a3cb64
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/unicodedata2-16.0.0-py312hea69d52_0.conda#9a835052506b91ea8f0d8e352cd12246
https://conda.anaconda.org/t/*****/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda#b68980f2495d096e71c7fd9d7ccf63e6
https://conda.anaconda.org/t/*****/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda#84f8f77f0a9c6ef401ee96611745da8f
https://conda.anaconda.org/t/*****/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda#75cb7132eb58d97896e173ef12ac9986
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/xorg-libxext-1.3.6-hd74edd7_0.conda#acf6c394865f1b7a51c8e57fec6fcde3
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/xorg-libxfixes-6.0.1-hd74edd7_0.conda#d59076ce442150458d39285c01ebf26a
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/xorg-libxrender-0.9.12-h5505292_0.conda#01690f6107fc7487529242d29bf2abe8
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/zeromq-4.3.5-hc1bb282_7.conda#f7e6b65943cb73bce0143737fded08f1
https://conda.anaconda.org/t/*****/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda#0c3cc595284c5e8f0f9900a9b228a332
https://conda.anaconda.org/t/*****/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/cairo-1.18.4-h6a3b0d2_0.conda#38f6df8bc8c668417b904369a01ba2e2
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/cffi-1.17.1-py312h0fad829_0.conda#19a5456f72f505881ba493979777b24e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/fonttools-4.56.0-py312h998013c_0.conda#a5cf7d0629863be81d90054882de908c
https://conda.anaconda.org/t/*****/conda-forge/noarch/fs-2.4.16-pyhd8ed1ab_0.conda#a231fa7cb5f101f1f3ae8480c0002f91
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gettext-0.23.1-h3dcc1bd_0.conda#123c4d62e1bcba6274511af8c7cf40d5
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/glib-2.82.2-heee381b_1.conda#cfa4d35e70b54664fd8c898962e6396c
https://conda.anaconda.org/t/*****/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda#7ee49e89531c0dcbba9466f6d115d585
https://conda.anaconda.org/t/*****/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda#b4754fb1bdcb70c8fd54f918301582c6
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/hackrf-2024.02.1-h5d7887c_1.conda#9a3abd366db7cd80e96571768b146230
https://conda.anaconda.org/t/*****/conda-forge/noarch/hamlib-all-4.6.2-osx_2.conda#7dcf53c55bbff281ad826d44dde9ca84
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/hdf5-1.14.3-nompi_ha698983_109.conda#be8bf1f5aabe7b5486ccfe5a3cc8bbfe
https://conda.anaconda.org/t/*****/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda#f4b39bf00c69f56ac01e020ebfac066c
https://conda.anaconda.org/t/*****/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda#c85c76dc67d75619a92f51dfbce06992
https://conda.anaconda.org/t/*****/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda#bd80ba060603cc228d9d81c257093119
https://conda.anaconda.org/t/*****/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda#a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9
https://conda.anaconda.org/t/*****/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda#446bd6c8cb26050d528881df495ce646
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libblas-3.9.0-31_h10e41b3_openblas.conda#39b053da5e7035c6592102280aa7612a
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libiio-0.26-h00f1824_1.conda#07465b9927de517293d541c20e53adb4
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libliquid1-1.6.0-h58f6a93_2.conda#6f368e6cdac2f2a6188d00eee4522ba1
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libosmodsp0-0.4.0-h58f6a93_2.conda#470ad0da2373041f776c045178e00881
https://conda.anaconda.org/t/*****/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda#af6ab708897df59bd6e7283ceab1b56b
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/openldap-2.6.9-hbe55e7a_0.conda#8291e59e1dd136bceecdefbc7207ecd6
https://conda.anaconda.org/t/*****/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda#d0d408b1f18883a944376da5cf8101ea
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pillow-11.1.0-py312h50aef2c_0.conda#94d6ba8cd468668a9fb04193b0f4b36e
https://conda.anaconda.org/t/*****/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda#79b5c1440aedc5010f687048d9103628
https://conda.anaconda.org/t/*****/conda-forge/noarch/prompt-toolkit-3.0.50-pyha770c72_0.conda#7d823138f550b14ecae927a5ff3286de
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyfiglet-0.8.post1-py_0.tar.bz2#e22d3c090f24856764e9d70e76fa3a5f
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda#5ba79d7c71f03c678c8ead841f347d6e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pyzmq-26.3.0-py312hf4875e0_0.conda#9a37ca625fba18b908c1071d133109c5
https://conda.anaconda.org/t/*****/conda-forge/noarch/qtpy-2.4.3-pyhd8ed1ab_0.conda#c9ca35b6fb8fa9af418625192c118567
https://conda.anaconda.org/t/*****/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda#9140f1c09dd5489549c6a33931b943c7
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/ruamel.yaml-0.18.10-py312hea69d52_0.conda#29a66b19662a643786715a8885c645d0
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/sdl3-3.2.8-he842692_0.conda#91aa06698ea397eb036958469599642d
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/sip-6.8.6-py312hde4cb15_1.conda#5f4b7e6b934d97c588de2c9140023ce0
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-module-airspy-0.2.0-h4306ade_0.tar.bz2#718454fcd0364ede5ea5f4711601830d
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-module-airspyhf-0.2.0-h4306ade_0.tar.bz2#58e9064bfe34a66c96ba5b7ffc11fd3a
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-module-audio-0.1.1-hdc5eb89_2.conda#f276b9624826c67de66d74a62ce58539
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-module-bladerf-0.4.1-h8167e30_0.tar.bz2#34951ed2aac6ef34606a77a41d929eb9
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-module-hackrf-0.3.4-h4306ade_0.tar.bz2#3452da20c05a4f67925983d8e4afcb2e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-module-lms7-23.11.0-he93768a_1.conda#3673d2985f69b9dd10d3842d797b9ca8
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-module-netsdr-0.2.0-h370950c_1.conda#236f57bc34705e71588faadea184b05b
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-module-plutosdr-0.2.2-h0fda6b5_1.conda#86f660e21f22af0e6518c8f4e313bcf2
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-module-redpitaya-0.1.1-h370950c_0.conda#782a3bff21bb0f18255ccb3f841ebdec
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-module-remote-0.5.2-h4306ade_2.tar.bz2#2a80ff3672c59b7e15f87c206a1923c2
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-module-rtlsdr-0.3.3-h70b5976_2.conda#accb1f9fa896db57f059f7c73164bbb5
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-module-volk-converters-0.1.1-hd699764_3.conda#1f0d9deb6b2bc72fe864021322cafb18
https://conda.anaconda.org/t/*****/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda#b1b505328da7a6b246787df4b5a49fbc
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/watchdog-6.0.0-py312hea69d52_0.conda#ce2a02fd5a911d4eb963af9a84c00d2c
https://conda.anaconda.org/t/*****/conda-forge/noarch/werkzeug-3.1.3-pyhd8ed1ab_1.conda#0a9b57c159d56b508613cc39022c1b9e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/xorg-libxdamage-1.1.6-hd74edd7_0.conda#89c86989c374affb64e882412efcd0ab
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/xorg-libxrandr-1.5.4-hd74edd7_0.conda#64990615d3ec645f1f300d14926c13f9
https://conda.anaconda.org/t/*****/conda-forge/noarch/zope.event-5.0-pyhd8ed1ab_1.conda#eed0f4438d9f9cc67314ed2926c3cdd3
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/zope.interface-7.2-py312hea69d52_0.conda#802a9c7d240be203adab545c3ca5dbd1
https://conda.anaconda.org/t/*****/conda-forge/noarch/asciimatics-1.15.0-pyhd8ed1ab_1.conda#1e4474adec5bda131d146a587dcf5c79
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/cryptography-44.0.2-py312hf9bd80e_0.conda#eee2ab52656d35a574711457f246f667
https://conda.anaconda.org/t/*****/conda-forge/noarch/flask-3.1.0-pyhd8ed1ab_1.conda#2da939620e3a741f61fc1cb136df66fb
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gevent-24.11.1-py312heb20540_0.conda#45233a19c134c0b18020d3f72a1bf8fd
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gstreamer-1.24.7-hc3f5269_0.conda#51a487eebf20e94bec393d83901ca5eb
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/harfbuzz-10.4.0-hb72c1af_0.conda#c13f50a1000cc3adadb2d93c76dcedab
https://conda.anaconda.org/t/*****/conda-forge/noarch/ipython-9.0.2-pyhfb0248b_0.conda#b031bcd65b260a0a3353531eab50d465
https://conda.anaconda.org/t/*****/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda#3b519bc21bc80e60b456f1e62962a766
https://conda.anaconda.org/t/*****/conda-forge/noarch/libbladerf-python-2024.05-py_2.conda#1463dfd317f3603a9593cac153527c6e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libcblas-3.9.0-31_hb3479ef_openblas.conda#7353c2bf0e90834cb70545671996d871
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libflac-1.4.3-hb765f3a_0.conda#356faba64411660f6c4d24ea31640733
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libgirepository-1.82.0-h607895c_0.conda#bef5f28e148103f1bb79ab4997113c2d
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/liblapack-3.9.0-31_hc9a63f6_openblas.conda#ff57a55a2cbce171ef5707fb463caf19
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libmatio-1.5.28-h36f0bf9_2.conda#5afd06c50d30eed80f4799096cc176b4
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libpq-17.4-h6896619_0.conda#7adc11bee52d70bf08855c69c887bb9c
https://conda.anaconda.org/t/*****/conda-forge/noarch/mako-1.3.9-pyhd8ed1ab_0.conda#422113c902cc5181ccaafbb4b827e492
https://conda.anaconda.org/t/*****/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda#06e9bebf748a0dea03ecbe1f0e27e909
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/mesalib-25.0.1-h5c1a3a9_0.conda#1b1ba5ab4a48a07f44f6007e9ae9360b
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pycairo-1.27.0-py312h798cee4_0.conda#545c360a65024e98b17c744b3c4eb6d9
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pynacl-1.5.0-py312h024a12e_4.conda#7febc246a29d77449bdb3e7a18382788
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pyqt5-sip-12.12.2-py312h9f69965_5.conda#d96792bb6923eb754ed7295e9926907d
https://conda.anaconda.org/t/*****/conda-forge/noarch/qdarkstyle-3.2.3-pyhd8ed1ab_1.conda#b5d204064e9c816535282a94f30a40c9
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/sdl2-2.32.50-h994913f_1.conda#ff589d08171ffeb5867e9c6a68ec913d
https://conda.anaconda.org/t/*****/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_1.conda#2c7536a04d9c21e1dd05bd4a3b1e3a39
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/zstandard-0.23.0-py312hea69d52_1.conda#b0af1b749dbf9621fbea742c2de68ff8
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/arpack-3.9.1-nompi_h1f29f7c_102.conda#7da333ca69131caf002baf360f5de7f9
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/bladerf-2024.05-h5505292_2.conda#c7d9d9751e0b1137243d43b163a14b5a
https://conda.anaconda.org/t/*****/conda-forge/noarch/gevent-websocket-0.10.1-py_0.tar.bz2#25b4b60b6ea50368cd90b75b4d00c711
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gsl-2.7-h6e638da_0.tar.bz2#2a2126a940e033e7225a5dc7215eea9a
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gst-plugins-base-1.24.7-hb49d354_0.conda#3dfb86c12a1bc38d03be9f52225b8ef7
https://conda.anaconda.org/t/*****/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda#a3cead9264b331b32fe8f0aabc967522
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/libsndfile-1.2.2-h9739721_1.conda#77d552455cbc52e089cdb9df5b283199
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/numpy-2.2.3-py312h7c1f314_0.conda#d2265734b798f3935561a0d30281a532
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pango-1.56.2-h73f1e88_0.conda#8741a541dcb48f260284649463291c4b
https://conda.anaconda.org/t/*****/conda-forge/noarch/paramiko-3.5.1-pyhd8ed1ab_0.conda#4e6bea7eee94bb9d8a599385215719f9
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pygobject-3.50.0-py312hc4f7465_1.conda#11ff2bde073e412ff3b43b4214568b40
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/sdl-1.2.68-h994913f_1.conda#b66493d1d20151ed69b1fba5a3c3c23f
https://conda.anaconda.org/t/*****/conda-forge/noarch/simple-websocket-1.1.0-pyhd8ed1ab_0.conda#62e0b21f75a81735ddc72e6019d27c16
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/superlu-5.2.2-hc615359_0.tar.bz2#563c35f95395ad5b986dc66239a938a9
https://conda.anaconda.org/t/*****/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda#32674f8dbfb7b26410ed580dd3c10a29
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/wxwidgets-3.2.6-hbeba7cf_3.conda#8476e6cfcade368e3501001861246b22
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/armadillo-14.4.0-h4ebc4dc_0.conda#a8d6b0af6cdc863a294aebf0852b951c
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/contourpy-1.3.1-py312hb23fbb9_0.conda#f4408290387836e05ac267cd7ec80c5c
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-pmt-3.10.12.0-py312hf3ff670_1.conda#7df78d9a3fe8a069ba52ebc0c32e0a66
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gtk3-3.24.43-he7bb075_4.conda#a01d2dd60413e43f581445d1b2ed8d5d
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/h5py-3.13.0-nompi_py312hd7c5113_100.conda#227b0c53bc3d4131996bf7de479fe185
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/librsvg-2.58.4-h266df6f_2.conda#82c31ce77bac095b5700b1fdaad9a628
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/limesuite-23.11.0-hf6a06aa_1.conda#f2ab893b6be04cdd6e17877862a5f049
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/numexpr-2.10.2-py312hbbbb429_0.conda#b02d84bc1dfb80c9651f1625d443737f
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pandas-2.2.3-py312hcd31e36_1.conda#c68bfa69e6086c381c74e16fd72613a8
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyadi-iio-0.0.19-pyhd8ed1ab_0.conda#aca3bc166b666f8951a3f8b41f0d05be
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyqtgraph-0.13.7-pyhd8ed1ab_1.conda#569357b4d0b4565c57698a6e2dade74e
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-engineio-4.11.2-pyhff2d567_0.conda#480833a0855e1d1782d8ec3aa9d91db2
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/qt-main-5.15.15-h67564f6_2.conda#b973b38464db08db7198fef4b1f74030
https://conda.anaconda.org/t/*****/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda#a9b9368f3701a417eac9edbcae7cb737
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/scipy-1.15.2-py312h99a188d_0.conda#b1d324bf5018b451152bbdc4ffd3d378
https://conda.anaconda.org/t/*****/conda-forge/noarch/adwaita-icon-theme-47.0-unix_0.conda#49436a5c604f99058473d84580f0e341
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/digital_rf-2.6.11-py312hcc8cfac_0.conda#67cfb01b52b41bd4a69826a56b164324
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-core-3.10.12.0-py312h1cd45be_1.conda#32f9ad19f8a21b0bf241499bd22369ca
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/inspectrum-0.3.1-h591b114_0.conda#e1e58a5e8f6b1a5603839454c27438b7
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/matplotlib-base-3.10.1-py312hdbc7e53_0.conda#81e256fa3f734686f049a8cdb930887f
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/pyqt-5.15.9-py312h550cae4_5.conda#e32e9f00bf2c00aa568fa1b0af31c800
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-socketio-5.12.1-pyhd8ed1ab_0.conda#d3ef77c1cebc66115af8109e893480b2
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/qwt-6.3.0-h4ff56cd_0.conda#49aec06c9aee37c8579e9bcbd4b3f38f
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/uhd-4.8.0.0-py312hcf98d66_0.conda#27bd5bbf08c01fa887367ee283455216
https://conda.anaconda.org/t/*****/conda-forge/noarch/flask-socketio-5.5.1-pyh29332c3_0.conda#03fb6a9594f156a510118a5b4fe64a02
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-dect2-0.0.0.20250304.dev%2Bg27a3d6-np20py312h21d183f_1.conda#dcbfea752791ed1e53ac6b97e31831f9
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-filerepeater-0.0.0.20250304.dev%2Bgec6b386-np20py312h9f7a168_2.conda#291193ff43a52b2044e756f217a17178
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-foo-0.0.0.20250304.dev%2Bg9e0e2-np20py312h40c587e_1.conda#7ee32c250afb866eaf7cd247115c8615
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-fosphor-0.0.0.20250304.dev%2Bg85a0b8f-np20py312h5c45ce2_1.conda#0a45d3921f2255c35f06f77ef9055a3c
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-gpredict-doppler-0.0.0.20250303.dev%2Bg9473cbf-unix_py_1.conda#2a8e3e6791c85a38c88dfc94292dd084
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-grc-3.10.12.0-py312h66d8579_1.conda#0d6296a6bc275eacb93df6fb5ce286b3
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-hermeslite2-1.0.0.0.post20250305%2Bg2e66561-np20py312h21d183f_0.conda#140cb1175ba92ac429f5ee3a40a4c3bf
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-hpsdr-0.0.0.20250304.dev%2Bg7748cc9-np20py312h21d183f_1.conda#934d122ca0a82e5f8531d99de115182d
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-iio-3.10.12.0-py312hcebcc41_1.conda#a3267f03bc7a51afb6c5e4ed7cd97b65
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-iqbalance-0.38.2-py312he1353b8_7.conda#abec0ad941da9f4bd35599b03fd0ed0e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-iridium-1%211.0.0-py312h4cd8392_16.conda#08e4124738094f29d4f62ab8f73e668b
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-leo-1.0.0.post20250214%2Bg8f62b92-np20py312h9f13bda_2.conda#c1834b0c958ab81df426e21b1cf2a1f0
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-lora_sdr-0.0.0.20250305.dev%2Bga8143cb-np20py312h5dd478e_0.conda#23831c94381da96a7f992f5ccb573d35
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-m2k-1.0.0-py312h7ef93ee_13.conda#1dc5df12dd8ba0d2d64b23667a33641b
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-paint-0.0.0.20250303.dev%2Bgfb4f7b6-np20py312h5dd478e_2.conda#96e23da3f80e832be4b9138e891d1646
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-qtgui-3.10.12.0-py312h285d4ff_1.conda#a3b63cf843891b4924bc5358b2f5dcb1
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-radar-0.0.0.20250220.dev%2Bg92adce2-np20py312hd0075c7_1.conda#565967f744fe29480083e10364237e6f
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-rds-3.10.post20250305%2Bgc1cba54-np20py312h21d183f_0.conda#7c764234b14ccfcd47208932bfb79f4c
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-soapy-3.10.12.0-py312ha587f02_1.conda#5b8fbe8e99e9905c94bb9be8c7569dc1
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-uhd-3.10.12.0-py312h401ace4_1.conda#3595c154cf23f5b3e8ace64b2d63ee63
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-video-sdl-3.10.12.0-py312h66d8579_1.conda#161cc5716a9c443046d29bab0f9f1841
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-zeromq-3.10.12.0-py312h014023b_1.conda#b919d04428de897b55cdbfb5dff4077e
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/matplotlib-3.10.1-py312h1f38498_0.conda#5aa3d52c72f5fd96a947d68d85c460f3
https://conda.anaconda.org/t/*****/conda-forge/noarch/mplcursors-0.6-pyhd8ed1ab_1.conda#fa7bf31f4427e5582f7373d0ba8498f6
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/soapysdr-module-uhd-0.4.1-h1e7af17_14.conda#df95d4d731b075554fde817c6eb78879
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-3.10.12.0-py312hf6b0b74_1.conda#9e0e9f9cb6e19694cb020e1a1be08ba6
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-adsb-0.0.0.20250304.dev%2Bg9645757-unix_py_1.conda#9e67f1f65df571de24cf8b19f06a51fb
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-ieee802_11-0.0.0.20250304.dev%2Bg761bdd9-np20py312h0f5d4df_2.conda#0d53222190cac02631657b4c6e93e5c6
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-ieee802_15_4-3.6.post20250304%2Bg61f4c4a-np20py312h5dd478e_1.conda#81fe384a5ee5dfe7c610ef4b1f12a677
https://conda.anaconda.org/t/*****/ryanvolz/osx-arm64/gnuradio-inspector-0.0.0.20250303.dev%2Bgad6a69e-np20py312h0417059_2.conda#bab68f20e4645ccdaa3a711a1bd43b49
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-osmosdr-0.2.6-py312h293049b_7.conda#ff73bcd5fc68df52b65cceb9116b916a
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnuradio-satellites-5.7.0-py312h436bcf2_1.conda#4493a1df2a3c94ed7196db26b5ea4823
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyfda-0.9.2-pyh9208f05_1.conda#a1fdcc4e47c1abb4e0554e2fd02a841c
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gnss-sdr-0.0.19-h07a5497_8.conda#9c62fa18cc0e1aeb0d576bf8e34736d0
https://conda.anaconda.org/t/*****/conda-forge/osx-arm64/gqrx-2.17.6-py312h4e6af8f_1.conda#e0f4ae49e142a2aae5f04f04e3c052a9

View File

@ -2,68 +2,68 @@ channels:
- conda-forge
- ryanvolz
dependencies:
- airspy=1.0.10=h3422bc3_0
- airspyhf=1.6.8=h3422bc3_0
- bladerf=2023.02=h1a8c8d9_0
- codec2=1.0.3=h3422bc3_0
- digital_rf=2.6.9=py310hac6c426_0
- ephem=4.1.5=py310hd125d64_1
- gnss-sdr=0.0.18=h8747f70_19
- gnuradio-adsb=0.0.0.20240508.dev+gafd7fabda=unix_pyha6c0e43_0
- gnuradio-dect2=0.0.0.20240502.dev+gb296af2a9=py310hf97cb1e_0
- gnuradio-filerepeater=0.0.0.20240508.dev+gd7bb8846c=py310h108dd60_0
- gnuradio-foo=0.0.0.20240502.dev+gc53538a22=py310hd1a744e_0
- gnuradio-fosphor=0.0.0.20240502.dev+g656fe2f=py310hbfd932c_0
- gnuradio-gpredict-doppler=0.0.0.20240508.dev+gb06bc7678=unix_pyha1ad6f9_0
- gnuradio-hermeslite2=v1.0.0.0.post17+8b17ad3=py310hf97cb1e_0
- gnuradio-hpsdr=0.0.0.20240507.dev+g958e157=py310h0f0892f_0
- gnuradio-ieee802_11=0.0.0.20240507.dev+g8c058d4e0=py310h9081a98_0
- gnuradio-ieee802_15_4=3.6.post133+g932c76f=py310h0131f0b_0
- gnuradio-inspector=0.0.0.20240525.dev+g55acca6=py310h1fae84c_0
- gnuradio-iqbalance=0.38.2=py310h7bae070_3
- gnuradio-iridium=1!1.0.0=py310h1a9487a_11
- gnuradio-leo=1.0.0.post105+12a346f=py310hbd5b434_0
- gnuradio-lora_sdr=0.0.0.20240508.dev+g751a65269=py310hbd5b434_0
- gnuradio-m2k=1.0.0=py310hf60a216_9
- gnuradio-osmosdr=0.2.4=py310h5c4d73c_16
- gnuradio-paint=0.0.0.20240508.dev+g82696a2=py310hbd5b434_0
- gnuradio-radar=0.0.0.20240525.dev+gc59350d=py310h323dc59_0
- gnuradio-rds=3.10.post22+g2134008=py310hebe94f0_0
- gnuradio-satellites=5.5.0=py310h4de452a_2
- gnuradio=3.10.10.0=py310he46b942_6
- gqrx=2.17.5=py310h1a81a2b_4
- hackrf=2024.02.1=hdaa6d3f_0
- hamlib-all=4.5.5=osx_3
- airspy=1.0.10=h5505292_1
- airspyhf=1.6.8=h5505292_1
- bladerf=2024.05=h5505292_2
- codec2=1.2.0=h5505292_3
- digital_rf=2.6.11=py312hcc8cfac_0
- ephem=4.2=py312hea69d52_0
- gnss-sdr=0.0.19=h07a5497_8
- gnuradio-adsb=0.0.0.20250304.dev+g9645757=unix_py_1
- gnuradio-dect2=0.0.0.20250304.dev+g27a3d6=np20py312h21d183f_1
- gnuradio-filerepeater=0.0.0.20250304.dev+gec6b386=np20py312h9f7a168_2
- gnuradio-foo=0.0.0.20250304.dev+g9e0e2=np20py312h40c587e_1
- gnuradio-fosphor=0.0.0.20250304.dev+g85a0b8f=np20py312h5c45ce2_1
- gnuradio-gpredict-doppler=0.0.0.20250303.dev+g9473cbf=unix_py_1
- gnuradio-hermeslite2=1.0.0.0.post20250305+g2e66561=np20py312h21d183f_0
- gnuradio-hpsdr=0.0.0.20250304.dev+g7748cc9=np20py312h21d183f_1
- gnuradio-ieee802_11=0.0.0.20250304.dev+g761bdd9=np20py312h0f5d4df_2
- gnuradio-ieee802_15_4=3.6.post20250304+g61f4c4a=np20py312h5dd478e_1
- gnuradio-inspector=0.0.0.20250303.dev+gad6a69e=np20py312h0417059_2
- gnuradio-iqbalance=0.38.2=py312he1353b8_7
- gnuradio-iridium=1!1.0.0=py312h4cd8392_16
- gnuradio-leo=1.0.0.post20250214+g8f62b92=np20py312h9f13bda_2
- gnuradio-lora_sdr=0.0.0.20250305.dev+ga8143cb=np20py312h5dd478e_0
- gnuradio-m2k=1.0.0=py312h7ef93ee_13
- gnuradio-osmosdr=0.2.6=py312h293049b_7
- gnuradio-paint=0.0.0.20250303.dev+gfb4f7b6=np20py312h5dd478e_2
- gnuradio-radar=0.0.0.20250220.dev+g92adce2=np20py312hd0075c7_1
- gnuradio-rds=3.10.post20250305+gc1cba54=np20py312h21d183f_0
- gnuradio-satellites=5.7.0=py312h436bcf2_1
- gnuradio=3.10.12.0=py312hf6b0b74_1
- gqrx=2.17.6=py312h4e6af8f_1
- hackrf=2024.02.1=h5d7887c_1
- hamlib-all=4.6.2=osx_2
- inspectrum=0.3.1=h591b114_0
- ipython=8.24.0=pyh707e725_0
- libiio=0.25=hce30654_1
- libm2k=0.8.0=py310hb469b4f_0
- limesuite=23.11.0=h778206f_0
- m17-cxx-demod=2.3.3=h3700a85_3
- matplotlib=3.8.4=py310hb6292c7_2
- mirisdr=2.0.0=h93a5062_0
- numpy=1.26.4=py310hd45542a_0
- pandas=2.2.2=py310h2216879_1
- pyadi-iio=0.0.16=pyhd8ed1ab_0
- pyfda=0.8.4=pyh9208f05_0
- python=3.10.14=h2469fbe_0_cpython
- rtl-sdr=2.0.1=h93a5062_0
- scipy=1.13.1=py310h7057308_0
- ipython=9.0.2=pyhfb0248b_0
- libiio=0.26=h00f1824_1
- libm2k=0.9.0=py312hfdc89fd_1
- limesuite=23.11.0=hf6a06aa_1
- m17-cxx-demod=2.3.3=h7b87d6f_5
- matplotlib=3.10.1=py312h1f38498_0
- mirisdr=2.0.0=h5505292_1
- numpy=2.2.3=py312h7c1f314_0
- pandas=2.2.3=py312hcd31e36_1
- pyadi-iio=0.0.19=pyhd8ed1ab_0
- pyfda=0.9.2=pyh9208f05_1
- python=3.12.9=hc22306f_1_cpython
- rtl-sdr=2.0.2=h5505292_3
- scipy=1.15.2=py312h99a188d_0
- soapysdr-module-airspy=0.2.0=h4306ade_0
- soapysdr-module-airspyhf=0.2.0=h4306ade_0
- soapysdr-module-audio=0.1.1=h70b5976_1
- soapysdr-module-audio=0.1.1=hdc5eb89_2
- soapysdr-module-bladerf=0.4.1=h8167e30_0
- soapysdr-module-hackrf=0.3.4=h4306ade_0
- soapysdr-module-lms7=23.11.0=he20d445_0
- soapysdr-module-lms7=23.11.0=he93768a_1
- soapysdr-module-netsdr=0.2.0=h370950c_1
- soapysdr-module-plutosdr=0.2.2=hef1adc2_0
- soapysdr-module-plutosdr=0.2.2=h0fda6b5_1
- soapysdr-module-redpitaya=0.1.1=h370950c_0
- soapysdr-module-remote=0.5.2=h4306ade_2
- soapysdr-module-rtlsdr=0.3.3=h70b5976_2
- soapysdr-module-uhd=0.4.1=hcfb10c7_10
- soapysdr-module-volk-converters=0.1.1=hd9aa7c5_2
- soapysdr=0.8.1=py310h38f39d4_4
- uhd=4.6.0.0=py310h1420c5e_0
- soapysdr-module-uhd=0.4.1=h1e7af17_14
- soapysdr-module-volk-converters=0.1.1=hd699764_3
- soapysdr=0.8.1=py312h6142ec9_5
- uhd=4.8.0.0=py312hcf98d66_0
name: radioconda
platform: osx-arm64
version: 2024.05.29
version: 2025.03.14

View File

@ -13,383 +13,402 @@ name: radioconda
post_install: post_install.sh
register_python_default: false
specs:
- adwaita-icon-theme=46.0=unix_0
- airspy=1.0.10=h3422bc3_0
- airspyhf=1.6.8=h3422bc3_0
- appdirs=1.4.4=pyh9f0ad1d_0
- archspec=0.2.3=pyhd8ed1ab_0
- armadillo=12.8.3=h871507b_0
- arpack=3.8.0=nompi_ha3438d0_101
- asciimatics=1.15.0=pyhd8ed1ab_0
- asttokens=2.4.1=pyhd8ed1ab_0
- adwaita-icon-theme=47.0=unix_0
- airspy=1.0.10=h5505292_1
- airspyhf=1.6.8=h5505292_1
- appdirs=1.4.4=pyhd8ed1ab_1
- archspec=0.2.5=pyhd8ed1ab_0
- armadillo=14.4.0=h4ebc4dc_0
- arpack=3.9.1=nompi_h1f29f7c_102
- asciimatics=1.15.0=pyhd8ed1ab_1
- asttokens=3.0.0=pyhd8ed1ab_1
- atk-1.0=2.38.0=hd03087b_2
- attrs=23.2.0=pyh71513ae_0
- bcrypt=4.1.3=py310h947b723_0
- bidict=0.23.1=pyhd8ed1ab_0
- bladerf=2023.02=h1a8c8d9_0
- blinker=1.8.2=pyhd8ed1ab_0
- boltons=24.0.0=pyhd8ed1ab_0
- brotli-bin=1.1.0=hb547adb_1
- brotli-python=1.1.0=py310h1253130_1
- brotli=1.1.0=hb547adb_1
- bzip2=1.0.8=h93a5062_5
- c-ares=1.28.1=h93a5062_0
- ca-certificates=2024.2.2=hf0a4a13_0
- attrs=25.3.0=pyh71513ae_0
- bcrypt=4.3.0=py312hcd83bfe_0
- bidict=0.23.1=pyhd8ed1ab_1
- bladerf=2024.05=h5505292_2
- blinker=1.9.0=pyhff2d567_0
- boltons=24.0.0=pyhd8ed1ab_1
- brotli-bin=1.1.0=hd74edd7_2
- brotli-python=1.1.0=py312hde4cb15_2
- brotli=1.1.0=hd74edd7_2
- bzip2=1.0.8=h99b78c6_7
- c-ares=1.34.4=h5505292_0
- ca-certificates=2025.1.31=hf0a4a13_0
- cached-property=1.5.2=hd8ed1ab_1
- cached_property=1.5.2=pyha770c72_1
- cairo=1.18.0=hd1e100b_0
- certifi=2024.2.2=pyhd8ed1ab_0
- cffi=1.16.0=py310hdcd7c05_0
- charset-normalizer=3.3.2=pyhd8ed1ab_0
- click-plugins=1.1.1=py_0
- click=8.1.7=unix_pyh707e725_0
- codec2=1.0.3=h3422bc3_0
- colorama=0.4.6=pyhd8ed1ab_0
- conda-libmamba-solver=24.1.0=pyhd8ed1ab_0
- conda-package-handling=2.2.0=pyh38be061_0
- conda-package-streaming=0.9.0=pyhd8ed1ab_0
- conda=24.5.0=py310hbe9552e_0
- cairo=1.18.4=h6a3b0d2_0
- certifi=2025.1.31=pyhd8ed1ab_0
- cffi=1.17.1=py312h0fad829_0
- charset-normalizer=3.4.1=pyhd8ed1ab_0
- click=8.1.8=pyh707e725_0
- codec2=1.2.0=h5505292_3
- colorama=0.4.6=pyhd8ed1ab_1
- conda-libmamba-solver=24.9.0=pyhd8ed1ab_0
- conda-package-handling=2.4.0=pyh7900ff3_2
- conda-package-streaming=0.11.0=pyhd8ed1ab_1
- conda=24.11.3=py312h81bd7bf_0
- construct=2.10.70=pyhd8ed1ab_0
- contourpy=1.2.1=py310h21239e6_0
- cryptography=42.0.7=py310ha71c378_0
- cycler=0.12.1=pyhd8ed1ab_0
- decorator=5.1.1=pyhd8ed1ab_0
- digital_rf=2.6.9=py310hac6c426_0
- distro=1.9.0=pyhd8ed1ab_0
- docutils=0.21.2=pyhd8ed1ab_0
- ephem=4.1.5=py310hd125d64_1
- contourpy=1.3.1=py312hb23fbb9_0
- cryptography=44.0.2=py312hf9bd80e_0
- cycler=0.12.1=pyhd8ed1ab_1
- cyrus-sasl=2.1.27=h60b93bd_7
- dbus=1.13.6=h3818c69_3
- decorator=5.2.1=pyhd8ed1ab_0
- digital_rf=2.6.11=py312hcc8cfac_0
- distro=1.9.0=pyhd8ed1ab_1
- docutils=0.21.2=pyhd8ed1ab_1
- ephem=4.2=py312hea69d52_0
- epoxy=1.5.10=h1c322ee_1
- exceptiongroup=1.2.0=pyhd8ed1ab_2
- executing=2.0.1=pyhd8ed1ab_0
- expat=2.6.2=hebf3989_0
- fftw=3.3.10=nompi_h3046061_108
- flask-socketio=5.3.6=pyhd8ed1ab_0
- flask=3.0.3=pyhd8ed1ab_0
- fmt=10.2.1=h2ffa867_0
- exceptiongroup=1.2.2=pyhd8ed1ab_1
- executing=2.1.0=pyhd8ed1ab_1
- expat=2.6.4=h286801f_0
- fftw=3.3.10=nompi_h6637ab6_110
- flask-socketio=5.5.1=pyh29332c3_0
- flask=3.1.0=pyhd8ed1ab_1
- fmt=11.0.2=h420ef59_0
- font-ttf-dejavu-sans-mono=2.37=hab24e00_0
- font-ttf-inconsolata=3.000=h77eed37_0
- font-ttf-source-code-pro=2.038=h77eed37_0
- font-ttf-ubuntu=0.83=h77eed37_2
- fontconfig=2.14.2=h82840c6_0
- font-ttf-ubuntu=0.83=h77eed37_3
- fontconfig=2.15.0=h1383a14_1
- fonts-conda-ecosystem=1=0
- fonts-conda-forge=1=0
- fonttools=4.52.4=py310ha6dd24b_0
- freetype=2.12.1=hadb7bae_2
- fonttools=4.56.0=py312h998013c_0
- freetype=2.13.3=h1d14073_0
- fribidi=1.0.10=h27ca646_0
- frozendict=2.4.4=py310ha6dd24b_0
- frozendict=2.4.6=py312h0bf5046_0
- fs=2.4.16=pyhd8ed1ab_0
- future=1.0.0=pyhd8ed1ab_0
- future=1.0.0=pyhd8ed1ab_2
- gdk-pixbuf=2.42.12=h7ddc832_0
- gettext-tools=0.22.5=h8fbad5d_2
- gettext=0.22.5=h8fbad5d_2
- gettext-tools=0.23.1=h493aca8_0
- gettext=0.23.1=h3dcc1bd_0
- gevent-websocket=0.10.1=py_0
- gevent=23.9.0.post1=py310hdf46697_1
- gflags=2.2.2=hc88da5d_1004
- gevent=24.11.1=py312heb20540_0
- gflags=2.2.2=hf9b8971_1005
- glew=2.1.0=h9f76cd9_2
- glfw=3.4=h93a5062_0
- glib-tools=2.80.2=h4c882b9_0
- glib=2.80.2=h535f939_0
- glog=0.6.0=h6da1cb0_0
- gmp=6.3.0=hebf3989_1
- gnss-sdr=0.0.18=h8747f70_19
- gnuradio-adsb=0.0.0.20240508.dev+gafd7fabda=unix_pyha6c0e43_0
- gnuradio-core=3.10.10.0=py310haa06dbd_6
- gnuradio-dect2=0.0.0.20240502.dev+gb296af2a9=py310hf97cb1e_0
- gnuradio-filerepeater=0.0.0.20240508.dev+gd7bb8846c=py310h108dd60_0
- gnuradio-foo=0.0.0.20240502.dev+gc53538a22=py310hd1a744e_0
- gnuradio-fosphor=0.0.0.20240502.dev+g656fe2f=py310hbfd932c_0
- gnuradio-gpredict-doppler=0.0.0.20240508.dev+gb06bc7678=unix_pyha1ad6f9_0
- gnuradio-grc=3.10.10.0=py310ha0e405d_6
- gnuradio-hermeslite2=v1.0.0.0.post17+8b17ad3=py310hf97cb1e_0
- gnuradio-hpsdr=0.0.0.20240507.dev+g958e157=py310h0f0892f_0
- gnuradio-ieee802_11=0.0.0.20240507.dev+g8c058d4e0=py310h9081a98_0
- gnuradio-ieee802_15_4=3.6.post133+g932c76f=py310h0131f0b_0
- gnuradio-iio=3.10.10.0=py310h038d8e2_6
- gnuradio-inspector=0.0.0.20240525.dev+g55acca6=py310h1fae84c_0
- gnuradio-iqbalance=0.38.2=py310h7bae070_3
- gnuradio-iridium=1!1.0.0=py310h1a9487a_11
- gnuradio-leo-data=1.0.0.post105+12a346f=unix_0
- gnuradio-leo=1.0.0.post105+12a346f=py310hbd5b434_0
- gnuradio-lora_sdr=0.0.0.20240508.dev+g751a65269=py310hbd5b434_0
- gnuradio-m2k=1.0.0=py310hf60a216_9
- gnuradio-osmosdr=0.2.4=py310h5c4d73c_16
- gnuradio-paint=0.0.0.20240508.dev+g82696a2=py310hbd5b434_0
- gnuradio-pmt=3.10.10.0=py310heae92f6_6
- gnuradio-qtgui=3.10.10.0=py310h90ffc91_6
- gnuradio-radar=0.0.0.20240525.dev+gc59350d=py310h323dc59_0
- gnuradio-rds=3.10.post22+g2134008=py310hebe94f0_0
- gnuradio-satellites=5.5.0=py310h4de452a_2
- gnuradio-soapy=3.10.10.0=py310h5118e3d_6
- gnuradio-uhd=3.10.10.0=py310hbe4225f_6
- gnuradio-video-sdl=3.10.10.0=py310ha0e405d_6
- gnuradio-zeromq=3.10.10.0=py310hd332203_6
- gnuradio=3.10.10.0=py310he46b942_6
- gqrx=2.17.5=py310h1a81a2b_4
- glib-tools=2.82.2=h1dc7a0c_1
- glib=2.82.2=heee381b_1
- glog=0.7.1=heb240a5_0
- gmp=6.3.0=h7bae524_2
- gnss-sdr=0.0.19=h07a5497_8
- gnuradio-adsb=0.0.0.20250304.dev+g9645757=unix_py_1
- gnuradio-core=3.10.12.0=py312h1cd45be_1
- gnuradio-dect2=0.0.0.20250304.dev+g27a3d6=np20py312h21d183f_1
- gnuradio-filerepeater=0.0.0.20250304.dev+gec6b386=np20py312h9f7a168_2
- gnuradio-foo=0.0.0.20250304.dev+g9e0e2=np20py312h40c587e_1
- gnuradio-fosphor=0.0.0.20250304.dev+g85a0b8f=np20py312h5c45ce2_1
- gnuradio-gpredict-doppler=0.0.0.20250303.dev+g9473cbf=unix_py_1
- gnuradio-grc=3.10.12.0=py312h66d8579_1
- gnuradio-hermeslite2=1.0.0.0.post20250305+g2e66561=np20py312h21d183f_0
- gnuradio-hpsdr=0.0.0.20250304.dev+g7748cc9=np20py312h21d183f_1
- gnuradio-ieee802_11=0.0.0.20250304.dev+g761bdd9=np20py312h0f5d4df_2
- gnuradio-ieee802_15_4=3.6.post20250304+g61f4c4a=np20py312h5dd478e_1
- gnuradio-iio=3.10.12.0=py312hcebcc41_1
- gnuradio-inspector=0.0.0.20250303.dev+gad6a69e=np20py312h0417059_2
- gnuradio-iqbalance=0.38.2=py312he1353b8_7
- gnuradio-iridium=1!1.0.0=py312h4cd8392_16
- gnuradio-leo-data=1.0.0.post20250214+g8f62b92=unix_2
- gnuradio-leo=1.0.0.post20250214+g8f62b92=np20py312h9f13bda_2
- gnuradio-lora_sdr=0.0.0.20250305.dev+ga8143cb=np20py312h5dd478e_0
- gnuradio-m2k=1.0.0=py312h7ef93ee_13
- gnuradio-osmosdr=0.2.6=py312h293049b_7
- gnuradio-paint=0.0.0.20250303.dev+gfb4f7b6=np20py312h5dd478e_2
- gnuradio-pmt=3.10.12.0=py312hf3ff670_1
- gnuradio-qtgui=3.10.12.0=py312h285d4ff_1
- gnuradio-radar=0.0.0.20250220.dev+g92adce2=np20py312hd0075c7_1
- gnuradio-rds=3.10.post20250305+gc1cba54=np20py312h21d183f_0
- gnuradio-satellites=5.7.0=py312h436bcf2_1
- gnuradio-soapy=3.10.12.0=py312ha587f02_1
- gnuradio-uhd=3.10.12.0=py312h401ace4_1
- gnuradio-video-sdl=3.10.12.0=py312h66d8579_1
- gnuradio-zeromq=3.10.12.0=py312h014023b_1
- gnuradio=3.10.12.0=py312hf6b0b74_1
- gqrx=2.17.6=py312h4e6af8f_1
- graphite2=1.3.13=hebf3989_1003
- greenlet=3.0.3=py310h692a8b6_0
- greenlet=3.1.1=py312hd8f9ff3_1
- gsl=2.7=h6e638da_0
- gst-plugins-base=1.24.4=h8a8f8c8_0
- gstreamer-orc=0.4.38=h93a5062_0
- gstreamer=1.24.4=h430e707_0
- gtest=1.14.0=h1995070_1
- gtk3=3.24.42=hcad41e0_0
- h11=0.14.0=pyhd8ed1ab_0
- h5py=3.11.0=nompi_py310h92897fd_101
- hackrf=2024.02.1=hdaa6d3f_0
- hamlib-all=4.5.5=osx_3
- hamlib-lua=4.5.5=lua54h93a5062_3
- hamlib-python=4.5.5=py310hd125d64_3
- hamlib-tcl=4.5.5=h1510aa7_3
- hamlib=4.5.5=h1e4ffcf_3
- harfbuzz=8.5.0=h1836168_0
- hdf5=1.14.3=nompi_hec07895_102
- gst-plugins-base=1.24.7=hb49d354_0
- gstreamer-orc=0.4.41=h4a9b20c_0
- gstreamer=1.24.7=hc3f5269_0
- gtest=1.15.2=h420ef59_0
- gtk3=3.24.43=he7bb075_4
- h11=0.14.0=pyhd8ed1ab_1
- h2=4.2.0=pyhd8ed1ab_0
- h5py=3.13.0=nompi_py312hd7c5113_100
- hackrf=2024.02.1=h5d7887c_1
- hamlib-all=4.6.2=osx_2
- hamlib-lua=4.6.2=lua54h5505292_2
- hamlib-python=4.6.2=py312hea69d52_2
- hamlib-tcl=4.6.2=h3c7de25_2
- hamlib=4.6.2=h60c98da_2
- harfbuzz=10.4.0=hb72c1af_0
- hdf5=1.14.3=nompi_ha698983_109
- hicolor-icon-theme=0.17=hce30654_2
- icu=73.2=hc8870d7_0
- idna=3.7=pyhd8ed1ab_0
- importlib-metadata=7.1.0=pyha770c72_0
- importlib_resources=6.4.0=pyhd8ed1ab_0
- hpack=4.1.0=pyhd8ed1ab_0
- hyperframe=6.1.0=pyhd8ed1ab_0
- icu=75.1=hfee45f7_0
- idna=3.10=pyhd8ed1ab_1
- importlib-metadata=8.6.1=pyha770c72_0
- importlib_resources=6.5.2=pyhd8ed1ab_0
- inspectrum=0.3.1=h591b114_0
- ipython=8.24.0=pyh707e725_0
- itsdangerous=2.2.0=pyhd8ed1ab_0
- jedi=0.19.1=pyhd8ed1ab_0
- jinja2=3.1.4=pyhd8ed1ab_0
- jsonpatch=1.33=pyhd8ed1ab_0
- jsonpointer=2.4=py310hbe9552e_3
- jsonschema-specifications=2023.12.1=pyhd8ed1ab_0
- jsonschema=4.22.0=pyhd8ed1ab_0
- kiwisolver=1.4.5=py310h38f39d4_1
- krb5=1.21.2=h92f50d5_0
- ipython=9.0.2=pyhfb0248b_0
- ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0
- itsdangerous=2.2.0=pyhd8ed1ab_1
- jedi=0.19.2=pyhd8ed1ab_1
- jinja2=3.1.6=pyhd8ed1ab_0
- jsonpatch=1.33=pyhd8ed1ab_1
- jsonpointer=3.0.0=py312h81bd7bf_1
- jsonschema-specifications=2024.10.1=pyhd8ed1ab_1
- jsonschema=4.23.0=pyhd8ed1ab_1
- kiwisolver=1.4.8=py312h2c4a281_0
- krb5=1.21.3=h237132a_0
- lame=3.100=h1a8c8d9_1003
- lcms2=2.16=ha0e7c42_0
- lcms2=2.17=h7eeda09_0
- lerc=4.0.0=h9a09cb3_0
- libabseil=20240116.2=cxx17_hebf3989_0
- libad9361-iio=0.2=h5f0d74c_3
- libabseil=20240722.0=cxx17_h07bc746_4
- libad9361-iio-c=0.3=hf663b7a_1
- libaec=1.1.3=hebf3989_0
- libairspy=1.0.10=h3422bc3_0
- libairspyhf=1.6.8=h3422bc3_0
- libarchive=3.7.4=h83d404f_0
- libasprintf-devel=0.22.5=h8fbad5d_2
- libasprintf=0.22.5=h8fbad5d_2
- libbladerf-python=2023.02=py_0
- libbladerf2=2023.02=h1a8c8d9_0
- libblas=3.9.0=22_osxarm64_openblas
- libboost=1.82.0=h489e689_6
- libbrotlicommon=1.1.0=hb547adb_1
- libbrotlidec=1.1.0=hb547adb_1
- libbrotlienc=1.1.0=hb547adb_1
- libcblas=3.9.0=22_osxarm64_openblas
- libclang-cpp15=15.0.7=default_he012953_5
- libclang13=18.1.6=default_h174537c_0
- libcodec2=1.0.3=h3422bc3_0
- libairspy=1.0.10=h5505292_1
- libairspyhf=1.6.8=h5505292_1
- libarchive=3.7.7=h3b16cec_3
- libasprintf-devel=0.23.1=h493aca8_0
- libasprintf=0.23.1=h493aca8_0
- libbladerf-python=2024.05=py_2
- libbladerf2=2024.05=h5505292_2
- libblas=3.9.0=31_h10e41b3_openblas
- libboost=1.86.0=hc9fb7c5_3
- libbrotlicommon=1.1.0=hd74edd7_2
- libbrotlidec=1.1.0=hd74edd7_2
- libbrotlienc=1.1.0=hd74edd7_2
- libcblas=3.9.0=31_hb3479ef_openblas
- libclang-cpp17=17.0.6=default_hf90f093_8
- libclang13=19.1.7=default_h81d93ff_1
- libcodec2=1.2.0=h5505292_3
- libcorrect=0.0.0=h1a8c8d9_0
- libcurl=8.8.0=h7b6f9a7_0
- libcxx=17.0.6=h5f092b4_0
- libdeflate=1.20=h93a5062_0
- libedit=3.1.20191231=hc8eb9b7_2
- libcurl=8.12.1=h73640d1_0
- libcxx=19.1.7=ha82da77_0
- libdeflate=1.23=hec38601_0
- libedit=3.1.20250104=pl5321hafb1f1b_0
- libev=4.33=h93a5062_2
- libevent=2.1.12=h2757513_1
- libexpat=2.6.2=hebf3989_0
- libexpat=2.6.4=h286801f_0
- libffi=3.4.2=h3422bc3_5
- libflac=1.4.3=hb765f3a_0
- libgettextpo-devel=0.22.5=h8fbad5d_2
- libgettextpo=0.22.5=h8fbad5d_2
- libgettextpo-devel=0.23.1=h493aca8_0
- libgettextpo=0.23.1=h493aca8_0
- libgfortran5=13.2.0=hf226fd6_3
- libgfortran=5.0.0=13_2_0_hd922786_3
- libgirepository=1.80.1=hee7aab5_0
- libglib=2.80.2=h535f939_0
- libhackrf0=2024.02.1=h93a5062_0
- libhamlib4=4.5.5=h965bd2d_3
- libiconv=1.17=h0d3ecfb_2
- libiio-c=0.25=hec7c9b8_1
- libiio=0.25=hce30654_1
- libintl-devel=0.22.5=h8fbad5d_2
- libintl=0.22.5=h8fbad5d_2
- libgirepository=1.82.0=h607895c_0
- libglib=2.82.2=hdff4504_1
- libhackrf0=2024.02.1=h5505292_1
- libhamlib4=4.6.2=h286801f_2
- libiconv=1.18=hfe07756_1
- libiio-c=0.26=h0c029c7_1
- libiio=0.26=h00f1824_1
- libintl-devel=0.23.1=h493aca8_0
- libintl=0.23.1=h493aca8_0
- libjpeg-turbo=3.0.0=hb547adb_1
- liblapack=3.9.0=22_osxarm64_openblas
- liblimesuite=23.11.0=h965bd2d_0
- libliquid1=1.6.0=hdaa6d3f_1
- libllvm15=15.0.7=h2621b3d_4
- libllvm18=18.1.6=hdac5640_0
- libm2k=0.8.0=py310hb469b4f_0
- libmamba=1.5.8=h90c426b_0
- libmambapy=1.5.8=py310h5e0a2f6_0
- libmatio=1.5.26=h3b23503_0
- libmirisdr4=2.0.0=h93a5062_0
- libnghttp2=1.58.0=ha4dd798_1
- libogg=1.3.4=h27ca646_1
- libopenblas=0.3.27=openmp_h6c19121_0
- liblapack=3.9.0=31_hc9a63f6_openblas
- liblimesuite=23.11.0=h286801f_1
- libliquid1=1.6.0=h58f6a93_2
- libllvm17=17.0.6=hc4b4ae8_3
- libllvm19=19.1.7=hc4b4ae8_1
- liblzma=5.6.4=h39f12f2_0
- libm2k=0.9.0=py312hfdc89fd_1
- libmamba=1.5.12=hdf44a08_0
- libmambapy=1.5.12=py312h86ad8a2_0
- libmatio=1.5.28=h36f0bf9_2
- libmirisdr4=2.0.0=h5505292_1
- libnghttp2=1.64.0=h6d7220d_0
- libntlm=1.8=h5505292_0
- libogg=1.3.5=h99b78c6_0
- libopenblas=0.3.29=openmp_hf332438_0
- libopus=1.3.1=h27ca646_1
- libosmodsp0=0.4.0=hdaa6d3f_1
- libosmodsp0=0.4.0=h58f6a93_2
- libpcap=1.10.4=hb547adb_1
- libpng=1.6.43=h091b4b1_0
- libpq=16.3=h7afe498_0
- libprotobuf=4.25.3=hbfab5d5_0
- librsvg=2.58.0=hb3d354b_1
- libpng=1.6.47=h3783ad8_0
- libpq=17.4=h6896619_0
- libprotobuf=5.28.3=h3bd63a1_1
- librsvg=2.58.4=h266df6f_2
- librtaudio6=5.2.0=hebf3989_3
- libsndfile=1.2.2=h9739721_1
- libsodium=1.0.18=h27ca646_1
- libsolv=0.7.29=h1efcc80_0
- libsqlite=3.45.3=h091b4b1_0
- libssh2=1.11.0=h7a5bd25_0
- libthrift=0.20.0=h33edb3e_0
- libtiff=4.6.0=h07db509_3
- libusb=1.0.27=h93a5062_100
- libuv=1.48.0=h93a5062_0
- libsodium=1.0.20=h99b78c6_0
- libsolv=0.7.30=h6c9b7f8_0
- libsqlite=3.49.1=h3f77e49_1
- libssh2=1.11.1=h9cc3647_0
- libthrift=0.21.0=h64651cc_0
- libtiff=4.7.0=h551f018_3
- libusb=1.0.27=h5505292_101
- libuv=1.50.0=h5505292_0
- libvorbis=1.3.7=h9f76cd9_0
- libwebp-base=1.4.0=h93a5062_0
- libxcb=1.15=hf346824_0
- libxml2=2.12.7=ha661575_0
- libwebp-base=1.5.0=h2471fea_0
- libxcb=1.17.0=hdb1d25a_0
- libxml2=2.13.6=h178c5d8_0
- libxslt=1.1.39=h223e5b9_0
- libzlib=1.2.13=hfb2fe0b_6
- limesuite=23.11.0=h778206f_0
- llvm-openmp=18.1.6=hde57baf_0
- libzlib=1.3.1=h8359307_2
- limesuite=23.11.0=hf6a06aa_1
- llvm-openmp=19.1.7=hdb05f8b_0
- lua=5.4.6=hfd2a410_1
- lxml=5.2.2=py310h9905115_0
- lz4-c=1.9.4=hb7217d7_0
- lxml=5.3.1=py312h9535dd2_0
- lz4-c=1.10.0=h286801f_1
- lzo=2.10=h93a5062_1001
- m17-cxx-demod=2.3.3=h3700a85_3
- mako=1.3.5=pyhd8ed1ab_0
- mamba=1.5.8=py310ha5d4528_0
- m17-cxx-demod=2.3.3=h7b87d6f_5
- mako=1.3.9=pyhd8ed1ab_0
- mamba=1.5.12=py312h14bc7db_0
- markdown=3.6=pyhd8ed1ab_0
- markupsafe=2.1.5=py310hd125d64_0
- matplotlib-base=3.8.4=py310hedb7998_2
- matplotlib-inline=0.1.7=pyhd8ed1ab_0
- matplotlib=3.8.4=py310hb6292c7_2
- menuinst=2.1.0=py310hbe9552e_0
- mirisdr=2.0.0=h93a5062_0
- mpg123=1.32.6=hebf3989_0
- mplcursors=0.5.3=pyhd8ed1ab_0
- markupsafe=3.0.2=py312h998013c_1
- matplotlib-base=3.10.1=py312hdbc7e53_0
- matplotlib-inline=0.1.7=pyhd8ed1ab_1
- matplotlib=3.10.1=py312h1f38498_0
- menuinst=2.2.0=py312h81bd7bf_0
- mesalib=25.0.1=h5c1a3a9_0
- mirisdr=2.0.0=h5505292_1
- mpg123=1.32.9=hf642e45_0
- mplcursors=0.6=pyhd8ed1ab_1
- munkres=1.1.4=pyh9f0ad1d_0
- mysql-common=8.3.0=hd1853d3_4
- mysql-libs=8.3.0=hf036fc4_4
- ncurses=6.5=hb89a1cb_0
- nspr=4.35=hb7217d7_0
- nss=3.100=hc6e9f88_0
- numexpr=2.8.4=py310h1cdf563_1
- numpy=1.26.4=py310hd45542a_0
- openjpeg=2.5.2=h9f1df11_0
- openssl=3.3.0=hfb2fe0b_3
- packaging=24.0=pyhd8ed1ab_0
- pandas=2.2.2=py310h2216879_1
- pango=1.52.2=hb067d4f_0
- paramiko=3.4.0=pyhd8ed1ab_0
- parso=0.8.4=pyhd8ed1ab_0
- pcre2=10.43=h26f9a81_0
- pexpect=4.9.0=pyhd8ed1ab_0
- pickleshare=0.7.5=py_1003
- pillow=10.3.0=py310h81a8c2e_0
- pixman=0.43.4=hebf3989_0
- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1
- platformdirs=4.2.2=pyhd8ed1ab_0
- pluggy=1.5.0=pyhd8ed1ab_0
- ply=3.11=pyhd8ed1ab_2
- portaudio=19.6.0=h13dd4ca_9
- prompt-toolkit=3.0.42=pyha770c72_0
- pthread-stubs=0.4=h27ca646_1001
- ptyprocess=0.7.0=pyhd3deb0d_0
- pugixml=1.14=h13dd4ca_0
- pure_eval=0.2.2=pyhd8ed1ab_0
- pyadi-iio=0.0.16=pyhd8ed1ab_0
- mysql-common=9.0.1=hd7719f6_5
- mysql-libs=9.0.1=ha8be5b7_5
- ncurses=6.5=h5e97a16_3
- nspr=4.36=h5833ebf_0
- nss=3.108=ha3c76ea_0
- numexpr=2.10.2=py312hbbbb429_0
- numpy=2.2.3=py312h7c1f314_0
- openjpeg=2.5.3=h8a3d83b_0
- openldap=2.6.9=hbe55e7a_0
- openssl=3.4.1=h81ee809_0
- packaging=24.2=pyhd8ed1ab_2
- pandas=2.2.3=py312hcd31e36_1
- pango=1.56.2=h73f1e88_0
- paramiko=3.5.1=pyhd8ed1ab_0
- parso=0.8.4=pyhd8ed1ab_1
- pcre2=10.44=h297a79d_2
- pexpect=4.9.0=pyhd8ed1ab_1
- pickleshare=0.7.5=pyhd8ed1ab_1004
- pillow=11.1.0=py312h50aef2c_0
- pip=25.0.1=pyh8b19718_0
- pixman=0.44.2=h2f9eb0b_0
- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_2
- platformdirs=4.3.6=pyhd8ed1ab_1
- pluggy=1.5.0=pyhd8ed1ab_1
- ply=3.11=pyhd8ed1ab_3
- portaudio=19.7.0=h5833ebf_0
- prompt-toolkit=3.0.50=pyha770c72_0
- pthread-stubs=0.4=hd74edd7_1002
- ptyprocess=0.7.0=pyhd8ed1ab_1
- pugixml=1.15=hd3d436d_0
- pure_eval=0.2.3=pyhd8ed1ab_1
- pyadi-iio=0.0.19=pyhd8ed1ab_0
- pybind11-abi=4=hd8ed1ab_3
- pycairo=1.26.0=py310hea34faf_0
- pycosat=0.6.6=py310h2aa6e3c_0
- pycparser=2.22=pyhd8ed1ab_0
- pyfda=0.8.4=pyh9208f05_0
- pycairo=1.27.0=py312h798cee4_0
- pycosat=0.6.6=py312hea69d52_2
- pycparser=2.22=pyh29332c3_1
- pyfda=0.9.2=pyh9208f05_1
- pyfiglet=0.8.post1=py_0
- pygments=2.18.0=pyhd8ed1ab_0
- pygobject=3.48.2=py310h5ffc74c_0
- pylibiio=0.25=py_1
- pynacl=1.5.0=py310h2aa6e3c_3
- pyopengl=3.1.6=pyhd8ed1ab_1
- pyparsing=3.1.2=pyhd8ed1ab_0
- pyqt5-sip=12.12.2=py310h1253130_5
- pyqt=5.15.9=py310h2924129_5
- pyqtgraph=0.13.7=pyhd8ed1ab_0
- pysocks=1.7.1=pyha2e5f31_6
- python-dateutil=2.9.0=pyhd8ed1ab_0
- python-engineio=4.9.1=pyhd8ed1ab_0
- python-socketio=5.11.2=pyhd8ed1ab_0
- python-tzdata=2024.1=pyhd8ed1ab_0
- python=3.10.14=h2469fbe_0_cpython
- python_abi=3.10=4_cp310
- pygments=2.19.1=pyhd8ed1ab_0
- pygobject=3.50.0=py312hc4f7465_1
- pylibiio=0.26=py_1
- pynacl=1.5.0=py312h024a12e_4
- pyopengl=3.1.7=pyhd8ed1ab_0
- pyparsing=3.2.1=pyhd8ed1ab_0
- pyqt5-sip=12.12.2=py312h9f69965_5
- pyqt=5.15.9=py312h550cae4_5
- pyqtgraph=0.13.7=pyhd8ed1ab_1
- pysocks=1.7.1=pyha55dd90_7
- python-dateutil=2.9.0.post0=pyhff2d567_1
- python-engineio=4.11.2=pyhff2d567_0
- python-socketio=5.12.1=pyhd8ed1ab_0
- python-tzdata=2025.1=pyhd8ed1ab_0
- python=3.12.9=hc22306f_1_cpython
- python_abi=3.12=5_cp312
- pytz=2024.1=pyhd8ed1ab_0
- pywin32-on-windows=0.1.0=pyh1179c8e_3
- pyyaml=6.0.1=py310h2aa6e3c_1
- pyzmq=26.0.3=py310h16e08c9_0
- qdarkstyle=3.2.3=pyhd8ed1ab_0
- qt-main=5.15.8=hf679f28_21
- qtpy=2.4.1=pyhd8ed1ab_0
- pyyaml=6.0.2=py312h998013c_2
- pyzmq=26.3.0=py312hf4875e0_0
- qdarkstyle=3.2.3=pyhd8ed1ab_1
- qhull=2020.2=h420ef59_5
- qt-main=5.15.15=h67564f6_2
- qtpy=2.4.3=pyhd8ed1ab_0
- qwt=6.3.0=h4ff56cd_0
- readline=8.2=h92ec313_1
- referencing=0.35.1=pyhd8ed1ab_0
- reproc-cpp=14.2.4.post0=h965bd2d_1
- reproc=14.2.4.post0=h93a5062_1
- requests=2.32.2=pyhd8ed1ab_0
- rpds-py=0.18.1=py310h947b723_0
- rtl-sdr=2.0.1=h93a5062_0
- ruamel.yaml.clib=0.2.8=py310hd125d64_0
- ruamel.yaml=0.18.6=py310hd125d64_0
- scipy=1.13.1=py310h7057308_0
- sdl2=2.30.2=hebf3989_0
- sdl=1.2.68=hfc12253_0
- setuptools=70.0.0=pyhd8ed1ab_0
- simple-websocket=1.0.0=pyhd8ed1ab_1
- sip=6.8.3=py310h692a8b6_0
- six=1.16.0=pyh6c4a22f_0
- readline=8.2=h1d1bf99_2
- referencing=0.36.2=pyh29332c3_0
- reproc-cpp=14.2.5.post0=h286801f_0
- reproc=14.2.5.post0=h5505292_0
- requests=2.32.3=pyhd8ed1ab_1
- rpds-py=0.23.1=py312hd60eec9_0
- rtl-sdr=2.0.2=h5505292_3
- ruamel.yaml.clib=0.2.8=py312h0bf5046_1
- ruamel.yaml=0.18.10=py312hea69d52_0
- scipy=1.15.2=py312h99a188d_0
- sdl2=2.32.50=h994913f_1
- sdl3=3.2.8=he842692_0
- sdl=1.2.68=h994913f_1
- setuptools=75.8.2=pyhff2d567_0
- simple-websocket=1.1.0=pyhd8ed1ab_0
- sip=6.8.6=py312hde4cb15_1
- six=1.17.0=pyhd8ed1ab_0
- soapysdr-module-airspy=0.2.0=h4306ade_0
- soapysdr-module-airspyhf=0.2.0=h4306ade_0
- soapysdr-module-audio=0.1.1=h70b5976_1
- soapysdr-module-audio=0.1.1=hdc5eb89_2
- soapysdr-module-bladerf=0.4.1=h8167e30_0
- soapysdr-module-hackrf=0.3.4=h4306ade_0
- soapysdr-module-lms7=23.11.0=he20d445_0
- soapysdr-module-lms7=23.11.0=he93768a_1
- soapysdr-module-netsdr=0.2.0=h370950c_1
- soapysdr-module-plutosdr=0.2.2=hef1adc2_0
- soapysdr-module-plutosdr=0.2.2=h0fda6b5_1
- soapysdr-module-redpitaya=0.1.1=h370950c_0
- soapysdr-module-remote=0.5.2=h4306ade_2
- soapysdr-module-rtlsdr=0.3.3=h70b5976_2
- soapysdr-module-uhd=0.4.1=hcfb10c7_10
- soapysdr-module-volk-converters=0.1.1=hd9aa7c5_2
- soapysdr=0.8.1=py310h38f39d4_4
- spdlog=1.12.0=he64bfa9_2
- stack_data=0.6.2=pyhd8ed1ab_0
- soapysdr-module-uhd=0.4.1=h1e7af17_14
- soapysdr-module-volk-converters=0.1.1=hd699764_3
- soapysdr=0.8.1=py312h6142ec9_5
- spdlog=1.15.1=hed1c2b2_0
- stack_data=0.6.3=pyhd8ed1ab_1
- superlu=5.2.2=hc615359_0
- tk=8.6.13=h5083fa2_1
- toml=0.10.2=pyhd8ed1ab_0
- tomli=2.0.1=pyhd8ed1ab_0
- tornado=6.4=py310hd125d64_0
- tqdm=4.66.4=pyhd8ed1ab_0
- traitlets=5.14.3=pyhd8ed1ab_0
- truststore=0.8.0=pyhd8ed1ab_0
- typing_extensions=4.11.0=pyha770c72_0
- tzdata=2024a=h0c530f3_0
- uhd=4.6.0.0=py310h1420c5e_0
- unicodedata2=15.1.0=py310h2aa6e3c_0
- urllib3=2.2.1=pyhd8ed1ab_0
- volk-gnss-sdr=0.0.18=h3f3aa29_19
- volk=3.1.2=hebf3989_0
- watchdog=4.0.1=py310ha6dd24b_0
- wcwidth=0.2.13=pyhd8ed1ab_0
- websocket-client=1.8.0=pyhd8ed1ab_0
- werkzeug=3.0.3=pyhd8ed1ab_0
- wsproto=1.2.0=pyhd8ed1ab_0
- wxwidgets=3.2.5=hd78d63a_0
- xorg-libxau=1.0.11=hb547adb_0
- xorg-libxdmcp=1.1.3=h27ca646_0
- xz=5.2.6=h57fd34a_0
- toml=0.10.2=pyhd8ed1ab_1
- tomli=2.2.1=pyhd8ed1ab_1
- tornado=6.4.2=py312hea69d52_0
- tqdm=4.67.1=pyhd8ed1ab_1
- traitlets=5.14.3=pyhd8ed1ab_1
- truststore=0.10.1=pyh29332c3_0
- typing_extensions=4.12.2=pyha770c72_1
- tzdata=2025a=h78e105d_0
- uhd=4.8.0.0=py312hcf98d66_0
- unicodedata2=16.0.0=py312hea69d52_0
- urllib3=2.3.0=pyhd8ed1ab_0
- volk-gnss-sdr=0.0.19=h06bbddc_8
- volk=3.2.0=h71a8b11_0
- watchdog=6.0.0=py312hea69d52_0
- wcwidth=0.2.13=pyhd8ed1ab_1
- websocket-client=1.8.0=pyhd8ed1ab_1
- werkzeug=3.1.3=pyhd8ed1ab_1
- wheel=0.45.1=pyhd8ed1ab_1
- wsproto=1.2.0=pyhd8ed1ab_1
- wxwidgets=3.2.6=hbeba7cf_3
- xorg-libx11=1.8.12=h6a5fb8c_0
- xorg-libxau=1.0.12=h5505292_0
- xorg-libxdamage=1.1.6=hd74edd7_0
- xorg-libxdmcp=1.1.5=hd74edd7_0
- xorg-libxext=1.3.6=hd74edd7_0
- xorg-libxfixes=6.0.1=hd74edd7_0
- xorg-libxrandr=1.5.4=hd74edd7_0
- xorg-libxrender=0.9.12=h5505292_0
- yaml-cpp=0.8.0=h13dd4ca_0
- yaml=0.2.5=h3422bc3_2
- zeromq=4.3.5=hcc0f68c_4
- zipp=3.17.0=pyhd8ed1ab_0
- zlib=1.2.13=hfb2fe0b_6
- zope.event=5.0=pyhd8ed1ab_0
- zope.interface=6.4.post2=py310ha6dd24b_0
- zstandard=0.19.0=py310h8e9501a_0
- zstd=1.5.6=hb46c0d2_0
- zeromq=4.3.5=hc1bb282_7
- zipp=3.21.0=pyhd8ed1ab_1
- zlib=1.3.1=h8359307_2
- zope.event=5.0=pyhd8ed1ab_1
- zope.interface=7.2=py312hea69d52_0
- zstandard=0.23.0=py312hea69d52_1
- zstd=1.5.7=h6491c7d_1
user_requested_specs:
- airspy
- airspyhf
- bladerf
- codec2
- conda
- digital_rf
- ephem
- gnss-sdr
@ -449,6 +468,6 @@ user_requested_specs:
- soapysdr-module-uhd
- soapysdr-module-volk-converters
- uhd
version: 2024.05.29
version: 2025.03.14
welcome_image: welcome.png
write_condarc: true

View File

@ -1,323 +1,331 @@
# Generated by conda-lock.
# platform: win-64
# input_hash: 497b456c8fed8f5eacefb6ca915c4cb8b736047f784307f842312772652313cd
# input_hash: 467ae3d61a3054e7c09e72216eb8551a4102bad616fed2be764549dbb15adf23
@EXPLICIT
https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda#63da060240ab8087b60d1357051ea7d6
https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45
https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6
https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb
https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda#cbbe59391138ea5ad3658c76912e147f
https://conda.anaconda.org/conda-forge/win-64/hicolor-icon-theme-0.17-h57928b3_2.tar.bz2#ce6379735baacc42bf1e684bdda2e2c3
https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.2-h63175ca_0.conda#bc592d03f62779511d392c175dcece64
https://conda.anaconda.org/conda-forge/noarch/llvm-meta-5.0.0-0.tar.bz2#213b5b5ad34008147a824460e50a691c
https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2#b0309b72560df66f71a9d5e34a5efdfa
https://conda.anaconda.org/conda-forge/noarch/nomkl-1.0-h5ca1d4c_0.tar.bz2#9a66894dfd07c4510beb6b3f9672ccc0
https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2#878f923dd6acc8aeb47a75da6c4098be
https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-4_cp311.conda#70513332c71b56eace4ee6441e66c012
https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8
https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2#72608f6cd3e5898229c3ea16deb1ac43
https://conda.anaconda.org/conda-forge/win-64/expat-2.6.2-h63175ca_0.conda#52f9dec6758ceb8ce0ea8af9fa13eb1a
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-leo-data-1.0.0.post105+12a346f-win_0.tar.bz2#d22a757d1bfefb0e356173a25a7d6f49
https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2#53a1c73e1e3d185516d7e3af177596d9
https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2#774130a326dee16f1ceb05cc687ee4f0
https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.38.33135-h835141b_20.conda#e971b35a5765862fabc4ba6e5ddf9470
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab
https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2#4289d80fb4d272f1f3b56cfe87ac90bd
https://conda.anaconda.org/conda-forge/win-64/vc-14.3-ha32ba9b_20.conda#2abfb5cb1b9d41a50f765d60f0be563d
https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.38.33135-h22015db_20.conda#bb4f5ab332e46e1b022d8842e72905b1
https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda#26eb8ca6ea332b675e11704cce84a3be
https://conda.anaconda.org/conda-forge/win-64/epoxy-1.5.10-h8d14728_1.tar.bz2#38bcf3a96ee224b1704251d6235f4515
https://conda.anaconda.org/conda-forge/win-64/fftw-3.3.10-nompi_h38027f0_108.conda#09196a7ba69b70d2124aff7b2763035d
https://conda.anaconda.org/conda-forge/win-64/fmt-10.2.1-h181d51b_0.conda#4253b572559cc775cae49def5c97b3c0
https://conda.anaconda.org/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2#807e81d915f2bb2e49951648615241f6
https://conda.anaconda.org/conda-forge/win-64/glew-2.1.0-h39d44d4_2.tar.bz2#840d21c1ee66b91af3d0211e7766393a
https://conda.anaconda.org/conda-forge/win-64/glfw-3.4-hcfcfb64_0.conda#5d41478e933d70273686b267827d2ae6
https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.13-h63175ca_1003.conda#3194499ee7d1a67404a87d0eefdd92c6
https://conda.anaconda.org/conda-forge/win-64/gtest-1.14.0-h91493d7_1.conda#521bc74750a6f3bc87e0fc013f4569ef
https://conda.anaconda.org/conda-forge/win-64/icu-73.2-h63175ca_0.conda#0f47d9e3192d9e09ae300da0d28e0f56
https://conda.anaconda.org/conda-forge/win-64/khronos-opencl-icd-loader-2023.04.17-h64bf75a_0.conda#8c51fee1005a058dc96b1da5eba9b308
https://conda.anaconda.org/conda-forge/win-64/lame-3.100-hcfcfb64_1003.tar.bz2#d92e64077c44c9e32c72d4b5799d47e4
https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2#1900cb3cab5055833cfddb0ba233b074
https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda#8723000f6ffdbdaef16025f0a01b64c5
https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-hcfcfb64_1.conda#f77f319fb82980166569e1280d5b2864
https://conda.anaconda.org/conda-forge/win-64/libcorrect-0.0.0-hcfcfb64_0.conda#b8af2446b57598de52a74e3d89bed48b
https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.20-hcfcfb64_0.conda#b12b5bde5eb201a1df75e49320cc938a
https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2#2c96d1b6915b408893f9472569dee135
https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda#e1eb10b1cca179f2baa3601e4efc8712
https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda#3f1b948619c45b1ca714d60c7389092c
https://conda.anaconda.org/conda-forge/win-64/libogg-1.3.4-h8ffe710_1.tar.bz2#04286d905a0dcb7f7d4a12bdfe02516d
https://conda.anaconda.org/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2#e35a6bcfeb20ea83aab21dfc50ae62a4
https://conda.anaconda.org/conda-forge/win-64/librtaudio6-5.2.0-h63175ca_3.conda#afe3f08985c7f1e342f3477eb96fbd88
https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.18-h8d14728_1.tar.bz2#5c1fb45b5e2912c19098750ae8a32604
https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.3-hcfcfb64_0.conda#73f5dc8e2d55d9a1e14b11f49c3b4a28
https://conda.anaconda.org/conda-forge/win-64/libusb-1.0.27-hcfcfb64_100.conda#8809b476652183e09ab79da43342aa46
https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.4.0-hcfcfb64_0.conda#abd61d0ab127ec5cd68f62c2969e6f34
https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-h2466b09_6.conda#9f41e3481778398837720a84dd26b7b1
https://conda.anaconda.org/conda-forge/win-64/lua-5.4.6-h2466b09_1.conda#1e3d1c0ea2d57cb78f57958a5f132e02
https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2#066552ac6b907ec6d72c0ddab29050dc
https://conda.anaconda.org/conda-forge/win-64/mpg123-1.32.6-h63175ca_0.conda#2bb30e347ef0c873bd6fe27efba925f0
https://conda.anaconda.org/conda-forge/win-64/mpir-3.0.0-he025d50_1002.tar.bz2#126ea50b4b4a33448c3994df2ff8b0cc
https://conda.anaconda.org/conda-forge/win-64/openmp-5.0.0-vc14_1.tar.bz2#8284c925330fa53668ade00db3c9e787
https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.0-h2466b09_3.conda#d7fec5d3bb8fc0c8e266bf1ad350cec5
https://conda.anaconda.org/conda-forge/win-64/pixman-0.43.4-h63175ca_0.conda#b98135614135d5f458b75ab9ebb9558c
https://conda.anaconda.org/conda-forge/win-64/portaudio-19.6.0-h63175ca_9.conda#62046084688064857ae9152cefd10abf
https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2#e2da8758d7d51ff6aa78a14dfb9dbed4
https://conda.anaconda.org/conda-forge/win-64/sdl2-2.30.2-h63175ca_0.conda#18017f8551ce74d2281f5684f16eb71f
https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda#fc048363eb8f03cd1737600a5d08aafe
https://conda.anaconda.org/conda-forge/win-64/volk-3.1.2-h63175ca_0.conda#1d7c303bb25a7e30206b0c3410b711e3
https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2#515d77642eaa3639413c6b1bc3f94219
https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2#adbfb9f45d1004a26763652246a33764
https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda#6e8b0f22b4eef3b3cb3849bb4c3d47f9
https://conda.anaconda.org/conda-forge/win-64/libairspy-1.0.10-h8ffe710_0.tar.bz2#d97f7b93b14b4c2551758da5de612632
https://conda.anaconda.org/conda-forge/win-64/libairspyhf-1.6.8-h8ffe710_0.tar.bz2#8f3fc43a918692f4031c2b379e9b8a94
https://conda.anaconda.org/conda-forge/win-64/libbladerf2-2023.02-hcfcfb64_0.conda#a92d6e9a1788ae3c3314c1360442fd5f
https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-hcfcfb64_1.conda#19ce3e1dacc7912b3d6ff40690ba9ae0
https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-hcfcfb64_1.conda#71e890a0b361fd58743a13f77e1506b7
https://conda.anaconda.org/conda-forge/win-64/libflac-1.4.3-h63175ca_0.conda#9aca744e428be2ced2f35b421bf19afa
https://conda.anaconda.org/conda-forge/win-64/libflang-5.0.0-h6538335_20180525.tar.bz2#9f473a344e18668e99a93f7e21a54b69
https://conda.anaconda.org/conda-forge/win-64/libhackrf0-2024.02.1-hcfcfb64_0.conda#711724de76a4f292ca49672a968142c6
https://conda.anaconda.org/conda-forge/win-64/libintl-0.22.5-h5728263_2.conda#aa622c938af057adc119f8b8eecada01
https://conda.anaconda.org/conda-forge/win-64/liblimesuite-23.11.0-h63175ca_0.conda#b3bf578309ba21677ef0682e5bd5af6a
https://conda.anaconda.org/conda-forge/win-64/libmirisdr4-2.0.0-hcfcfb64_0.conda#bb310bcb5e63764e8856579159444b24
https://conda.anaconda.org/conda-forge/win-64/libosmodsp0-0.4.0-h857e13b_1.conda#4d86f2a18505e8da54a0f75bdfced0bb
https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.43-h19919ed_0.conda#77e398acc32617a0384553aea29e866b
https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda#dc262d03aae04fe26825062879141a41
https://conda.anaconda.org/conda-forge/win-64/libvorbis-1.3.7-h0e60522_0.tar.bz2#e1a22282de0169c93e4ffe6ce6acc212
https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.7-h283a6d9_0.conda#1451be68a5549561979125c1827b79ed
https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2#fe759119b8b3bfa720b8762c6fdc35de
https://conda.anaconda.org/conda-forge/win-64/pcre2-10.43-h17e33f8_0.conda#d0485b8aa2cedb141a7bd27b4efa4c9c
https://conda.anaconda.org/conda-forge/win-64/python-3.11.9-h631f459_0_cpython.conda#d7ed1e7c4e2dcdfd4599bd42c0613e6c
https://conda.anaconda.org/conda-forge/win-64/rtl-sdr-2.0.1-hcfcfb64_0.conda#57b4ad1ac93c1bd8ccfb2077d95f13b4
https://conda.anaconda.org/conda-forge/win-64/sdl-1.2.68-h21dd15a_0.conda#695be37cf7e9d14a14ec5f79ef1ffc6b
https://conda.anaconda.org/conda-forge/win-64/spdlog-1.12.0-h64d2f7d_2.conda#e039fdff30fd25fbfc7cb91755d80a4f
https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-h2466b09_6.conda#86591a585a18e35d23279b6b384eb4b9
https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda#9a17230f95733c04dc40a2b1e5491d74
https://conda.anaconda.org/conda-forge/win-64/airspy-1.0.10-h8ffe710_0.tar.bz2#fcb6419d32d9912061c6345ea71b2245
https://conda.anaconda.org/conda-forge/win-64/airspyhf-1.6.8-h8ffe710_0.tar.bz2#0a63c50fdaf76c041e8606e4651ca049
https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2#5f095bc6454094e96f146491fd03633b
https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda#5e4c0743c70186509d1412e03c2d8dfa
https://conda.anaconda.org/conda-forge/win-64/bcrypt-4.1.3-py311h533ab2d_0.conda#f59f6041150ee91ceabe3c4e8623cedd
https://conda.anaconda.org/conda-forge/noarch/bidict-0.23.1-pyhd8ed1ab_0.conda#c9916c3975b19f470218f415701d6362
https://conda.anaconda.org/conda-forge/noarch/blinker-1.8.2-pyhd8ed1ab_0.conda#cf85c002319c15e9721934104aaa1137
https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-hcfcfb64_1.conda#0105229d7c5fabaa840043a86c10ec64
https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py311h12c1d0e_1.conda#42fbf4e947c17ea605e6a4d7f526669a
https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a
https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda#0876280e409658fc6f9e75d035960333
https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda#7f4a9e3fcff3f6356ae99244a014da6a
https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2#3faab06a954c2a04039983f2c4a50d99
https://conda.anaconda.org/conda-forge/noarch/construct-2.10.70-pyhd8ed1ab_0.conda#58e88566bfbbf9d3ffbeda3290e7f4f0
https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda#5cd86562580f274031ede6aa6aa24441
https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2#43afe5ab04e35e17ba28649471dd7364
https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_0.conda#e8cd5d629f65bdf0f3bb312cde14659e
https://conda.anaconda.org/conda-forge/win-64/ephem-4.1.5-py311ha68e1ae_1.conda#7e46963dbae9b1b45e5d6393274af648
https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda#8d652ea2ee8eaee02ed8dc820bc794aa
https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda#e16be50e378d8a4533b989035b196ab8
https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda#3761b23693f768dc75a8fd0a73ca053f
https://conda.anaconda.org/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_0.conda#650a7807e689642dddd3590eb817beed
https://conda.anaconda.org/conda-forge/win-64/greenlet-3.0.3-py311h12c1d0e_0.conda#b951f974beab977f3e6b99cba8864ebd
https://conda.anaconda.org/conda-forge/win-64/hackrf-2024.02.1-h9647d90_0.conda#8eabc7ddf475b22d0c5100b2d158e735
https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda#c0cc1420498b17414d8617d0b9f506ca
https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_0.conda#ff7ca04134ee8dde1d7cf491a78ef7c7
https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.5-py311h005e61a_1.conda#de0b3f37405f8386ac8be18fdc06ff92
https://conda.anaconda.org/conda-forge/win-64/libboost-1.82.0-h65993cd_6.conda#99ac3b41fe8ddfe92a98642b51cae768
https://conda.anaconda.org/conda-forge/win-64/libclang13-18.1.6-default_hf64faad_0.conda#cb8ef624b31ede2c69f0e33135d00110
https://conda.anaconda.org/conda-forge/win-64/libcodec2-1.0.3-hcd874cb_0.tar.bz2#2fa31fd5cbe57b0e672c2efe87cd1524
https://conda.anaconda.org/conda-forge/win-64/libcurl-8.8.0-hd5e4a3a_0.conda#4f86149dc6228f1e5617faa2cce90f94
https://conda.anaconda.org/conda-forge/win-64/libglib-2.80.2-h0df6a38_0.conda#ef9ae80bb2a15aee7a30180c057678ea
https://conda.anaconda.org/conda-forge/win-64/libhamlib4-4.5.5-ha1f6986_3.conda#fc36659f9c878a8dce8653f803fb0ce5
https://conda.anaconda.org/conda-forge/win-64/libiio-c-0.25-h90d4e70_1.conda#278e25189e918b7b241fc9c6ba22dbef
https://conda.anaconda.org/conda-forge/win-64/libintl-devel-0.22.5-h5728263_2.conda#a2ad82fae23975e4ccbfab2847d31d48
https://conda.anaconda.org/conda-forge/win-64/libliquid1-1.6.0-h382ab44_1.conda#12581dc8b0999dd0599fc15b32d6c3d5
https://conda.anaconda.org/conda-forge/win-64/libopenblas-0.3.27-pthreads_hc140b1d_0.conda#84ff56055a31cbc0022898f21b35092b
https://conda.anaconda.org/conda-forge/win-64/libsndfile-1.2.2-h81429f1_1.conda#54f4ab13d4f8f4f4660676903a7869a1
https://conda.anaconda.org/conda-forge/win-64/libtiff-4.6.0-hddb2be6_3.conda#6d1828c9039929e2f185c5fa9d133018
https://conda.anaconda.org/conda-forge/win-64/libxslt-1.1.39-h3df6e99_0.conda#279ee338c9b34871d578cb3c7aa68f70
https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py311ha68e1ae_0.conda#07da1326e2837e055ef6f44ef3334b0a
https://conda.anaconda.org/conda-forge/win-64/menuinst-2.1.0-py311hda3d55a_0.conda#503b2e0bdfb0d6b5ec096560c224addb
https://conda.anaconda.org/conda-forge/win-64/mirisdr-2.0.0-hcfcfb64_0.conda#0fd42e09e2a4a563925be1cd43cbe40a
https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19
https://conda.anaconda.org/conda-forge/noarch/packaging-24.0-pyhd8ed1ab_0.conda#248f521b64ce055e7feae3105e7abeb8
https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda#81534b420deb77da8833f2289b8d47ac
https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2#415f0ebb6198cc2801c73438a9fb5761
https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda#405678b942f2481cecdb3e010f4925d9
https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_2.conda#18c6deb6f9602e32446398203c8f0e91
https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2#a1f820480193ea83582b13249a7e7bd9
https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2#6784285c7e55cb7212efabc79e4c2883
https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda#844d9eb3b43095b031874477f7d70088
https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda#b7f5c092b8f9800150d998a71b76d5a1
https://conda.anaconda.org/conda-forge/noarch/pyopengl-3.1.6-pyhd8ed1ab_1.tar.bz2#c968eb974b0fae4676e7a7858c4cc56e
https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.1.2-pyhd8ed1ab_0.conda#b9a4dacf97241704529131a0dfc0494f
https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.1-pyhd8ed1ab_0.conda#98206ea9954216ee7540f0c773f2104d
https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda#3eeeeb9e4827ace8c0c1419c85d590ad
https://conda.anaconda.org/conda-forge/win-64/pywin32-306-py311h12c1d0e_2.conda#25df0fc55722ea1a94494f41302e2d1c
https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py311ha68e1ae_1.conda#2b4128962cd665153e946f2a88667a3b
https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.18.1-py311h533ab2d_0.conda#6c14e6ed5dd4e5c51f5023f5c726ba38
https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py311ha68e1ae_0.conda#4938101fc72fa2a9919c51f194a733cb
https://conda.anaconda.org/conda-forge/noarch/setuptools-70.0.0-pyhd8ed1ab_0.conda#c8ddb4f34a208df4dd42509a0f6a1c89
https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2#e5f25f8dbc060e9a8d912e432202afc2
https://conda.anaconda.org/conda-forge/win-64/soapysdr-0.8.1-py311h005e61a_4.conda#8c10b5f2dfd6a13fdc98980d2ad13b24
https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2#f832c45a477c78bebd107098db465095
https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2#5844808ffab9ebdb694585b50ba02a96
https://conda.anaconda.org/conda-forge/win-64/tornado-6.4-py311ha68e1ae_0.conda#7bbff4fa9c26e56821e2eb89466436b1
https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda#3df84416a021220d8b5700c613af2dc5
https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.11.0-pyha770c72_0.conda#6ef2fc37559256cf682d8b3375e89b80
https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda#68f0738df502a14213624b288c60c9ad
https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda#f372c576b8774922da83cda2b12f9d29
https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2#30878ecc4bd36e8deeea1e3c151b2e0b
https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda#c46ba8712093cb0114404ae8a7582e1a
https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2#46878ebb6b9cbd8afcf8088d7ef00ece
https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-he1f189c_4.conda#b755eb545c2728b9a53729f02e627834
https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda#2e4d6bc0b14e10f895fc6791a7d9b26a
https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda#5f25798dcefd8252ce5f9dc494d5f571
https://conda.anaconda.org/conda-forge/win-64/atk-1.0-2.38.0-hb44c4ce_2.conda#c39ec84d125a70d055270b9e6a1ef804
https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-hcfcfb64_1.conda#f47f6db2528e38321fb00ae31674c133
https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551
https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py311ha68e1ae_0.conda#d109d6e767c4890ea32880b8bfa4a3b6
https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda#3549ecbceb6cd77b91a105511b7d0786
https://conda.anaconda.org/conda-forge/win-64/codec2-1.0.3-hcd874cb_0.tar.bz2#a5ba71d61fc5503f6df9262e2cbca76d
https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.14.2-hbde0cde_0.conda#08767992f1a4f1336a257af1241034bd
https://conda.anaconda.org/conda-forge/noarch/fs-2.4.16-pyhd8ed1ab_0.conda#a231fa7cb5f101f1f3ae8480c0002f91
https://conda.anaconda.org/conda-forge/win-64/gdk-pixbuf-2.42.12-hed59a49_0.conda#350196a65e715882abefffd1a702172d
https://conda.anaconda.org/conda-forge/win-64/glib-tools-2.80.2-h2f9d560_0.conda#42fc785d9db7ab051a206fbf882ecf2e
https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2#b21ed0883505ba1910994f1df031a428
https://conda.anaconda.org/conda-forge/win-64/hamlib-4.5.5-h3df6e99_3.conda#a840960b3ce697c700cb44b14691c1d8
https://conda.anaconda.org/conda-forge/win-64/hamlib-lua-4.5.5-lua54hcfcfb64_3.conda#48170455973f4d5cb92e2da9e645f74d
https://conda.anaconda.org/conda-forge/win-64/hamlib-python-4.5.5-py311ha68e1ae_3.conda#f472389f4321e92ca28898e7da3e8502
https://conda.anaconda.org/conda-forge/win-64/hamlib-tcl-4.5.5-h7534570_3.conda#8f50c7bdd21ae20c5a8a17ae91a579fe
https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_h2b43c12_102.conda#ef60988e99d4110d992cd84e6b581ee4
https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda#0896606848b2dc5cebdf111b6543aa04
https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.0-pyhd8ed1ab_0.conda#c5d3907ad8bd7bf557521a1833cf7e6d
https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda#81a3be0b2023e1ea8555781f0ad904a2
https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda#7b86ecb7d3557821c649b3c31e3eb9f2
https://conda.anaconda.org/conda-forge/win-64/lcms2-2.16-h67d730c_0.conda#d3592435917b62a8becff3a60db674f6
https://conda.anaconda.org/conda-forge/win-64/libad9361-iio-0.2-hd08dcc8_3.tar.bz2#c4ab7261314a0e2727ff1510083ed228
https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-22_win64_openblas.conda#2ab0756ac16e79ae9d1acdb66824f981
https://conda.anaconda.org/conda-forge/win-64/libm2k-0.8.0-py311h256898b_0.conda#d5e46a7d3f7298d5b99fda72537fe61f
https://conda.anaconda.org/conda-forge/win-64/libxcb-1.15-hcd874cb_0.conda#090d91b69396f14afef450c285f9758c
https://conda.anaconda.org/conda-forge/win-64/lxml-5.2.2-py311h12967d8_0.conda#19c75191766eb97a27d64b9b323e9593
https://conda.anaconda.org/conda-forge/win-64/m17-cxx-demod-2.3.3-hdfbca9c_3.conda#1526f0dacb6b7166529f270fc8f5284e
https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda#779345c95648be40d22aaa89de7d4254
https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.2-h3d672ee_0.conda#7e7099ad94ac3b599808950cec30ad4e
https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.42-pyha770c72_0.conda#0bf64bf10eee21f46ac83c161917fa86
https://conda.anaconda.org/conda-forge/noarch/pyfiglet-0.8.post1-py_0.tar.bz2#e22d3c090f24856764e9d70e76fa3a5f
https://conda.anaconda.org/conda-forge/noarch/pylibiio-0.25-py_1.conda#810ae49bb989b27783c17c1b7d36595e
https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2#56cd9fe388baac0e90c7149cfac95b60
https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda#2cf4264fffb9e6eff6031c5b6884d61c
https://conda.anaconda.org/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh07e9846_2.tar.bz2#91733394059b880d9cc0d010c20abda0
https://conda.anaconda.org/conda-forge/win-64/pyzmq-26.0.3-py311h484c95c_0.conda#f32e37cabb3bc68396d2bc7939ac333c
https://conda.anaconda.org/conda-forge/noarch/qtpy-2.4.1-pyhd8ed1ab_0.conda#7f391bd70d2abfb70f304ba5aa4e1261
https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda#0fc8b52192a8898627c3efae1003e9f6
https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py311ha68e1ae_0.conda#d471ed4194d2e3aa016278223a8fa52c
https://conda.anaconda.org/conda-forge/win-64/sip-6.7.12-py311h12c1d0e_0.conda#c29f20b2860d1824535135d76d022394
https://conda.anaconda.org/conda-forge/win-64/soapysdr-module-airspy-0.2.0-h23704b7_0.tar.bz2#438df427a47086858b8e020ae4cb5500
https://conda.anaconda.org/conda-forge/win-64/soapysdr-module-airspyhf-0.2.0-h23704b7_0.tar.bz2#a6681b932193fa3964d97d7b6fbe3a30
https://conda.anaconda.org/conda-forge/win-64/soapysdr-module-audio-0.1.1-h78c1c11_1.conda#38d51f9ab16efa8c0fe595e30553e4a3
https://conda.anaconda.org/conda-forge/win-64/soapysdr-module-bladerf-0.4.1-h23704b7_0.tar.bz2#10b366f22dabe8490fc99b6ec409e8de
https://conda.anaconda.org/conda-forge/win-64/soapysdr-module-hackrf-0.3.4-h23704b7_0.tar.bz2#b522ddc5d54a9eb3a04d8799b866d5f9
https://conda.anaconda.org/conda-forge/win-64/soapysdr-module-lms7-23.11.0-h83e77cb_0.conda#78720a067d3ee4cabebb503e6e28d593
https://conda.anaconda.org/conda-forge/win-64/soapysdr-module-netsdr-0.2.0-h78c1c11_1.conda#a79b341b5498b2be57cee5b04d7b27e9
https://conda.anaconda.org/conda-forge/win-64/soapysdr-module-redpitaya-0.1.1-h78c1c11_0.conda#8dcf7401d0b5ddab652aeb6f504fcafb
https://conda.anaconda.org/conda-forge/win-64/soapysdr-module-remote-0.5.2-h23704b7_2.tar.bz2#d591decb33cd0c3ad25aa0e3b207df89
https://conda.anaconda.org/conda-forge/win-64/soapysdr-module-rtlsdr-0.3.3-h78c1c11_2.conda#5b8f9181817e3607de2f92493423ef7a
https://conda.anaconda.org/conda-forge/win-64/soapysdr-module-volk-converters-0.1.1-h4df33ff_2.conda#b291d89152118a9058f9ffe6531c4695
https://conda.anaconda.org/conda-forge/win-64/watchdog-4.0.1-py311h1ea47a8_0.conda#9a62743b6f1047a28861aa38a7472b36
https://conda.anaconda.org/conda-forge/noarch/werkzeug-3.0.3-pyhd8ed1ab_0.conda#2e60f5f388845027ee87fca6bee4ac23
https://conda.anaconda.org/conda-forge/win-64/wxwidgets-3.2.5-h7907063_0.conda#39576d49788749a1b8c0c9ef652ac88c
https://conda.anaconda.org/conda-forge/noarch/zope.event-5.0-pyhd8ed1ab_0.conda#b4a7b86cf51f2831015e9eebd284dc0a
https://conda.anaconda.org/conda-forge/win-64/zope.interface-6.4.post2-py311he736701_0.conda#d72015511f30c2dd8af81300c9754071
https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.0-h1fef639_0.conda#b3fe2c6381ec74afe8128e16a11eee02
https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2#4fd2c6b53934bd7d96d1f3fdaf99b79f
https://conda.anaconda.org/conda-forge/win-64/cryptography-42.0.7-py311hfd75b31_0.conda#e3cf35372ee6be14a67335fc2dfc8ca7
https://conda.anaconda.org/conda-forge/noarch/flask-3.0.3-pyhd8ed1ab_0.conda#dcdb937144fa20d7757bf512db1ea769
https://conda.anaconda.org/conda-forge/win-64/fonttools-4.52.4-py311he736701_0.conda#a657c6fa95f1488ea372982dea215faf
https://conda.anaconda.org/conda-forge/win-64/gevent-23.9.0.post1-py311ha68e1ae_1.conda#0412a1166ecda1447f96222fb34c983b
https://conda.anaconda.org/conda-forge/win-64/glib-2.80.2-h0df6a38_0.conda#a728ca6f04c33ecb0f39eeda5fbd0e23
https://conda.anaconda.org/conda-forge/noarch/hamlib-all-4.5.5-win_3.conda#d77345ac6b6a931fd2c73e92e39a3e6e
https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.12.1-pyhd8ed1ab_0.conda#a0e4efb5f35786a05af4809a2fb1f855
https://conda.anaconda.org/conda-forge/noarch/libbladerf-python-2023.02-py_0.conda#3d313832d2b63b19fe9ffe240e4fb746
https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-22_win64_openblas.conda#4d923369db654f12b8fd66b0cc1de9e2
https://conda.anaconda.org/conda-forge/win-64/libiio-0.25-h57928b3_1.conda#796894dfe362d218f19f190db0ee5f36
https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-22_win64_openblas.conda#7f69d8f99e92832f1df1d99c8199f3c3
https://conda.anaconda.org/conda-forge/win-64/limesuite-23.11.0-hdee86e2_0.conda#761da3093ef5bbbc6f23b3d42f3aef24
https://conda.anaconda.org/conda-forge/noarch/mako-1.3.5-pyhd8ed1ab_0.conda#29fddbfa0e2361636a98de4f46ead2ac
https://conda.anaconda.org/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda#06e9bebf748a0dea03ecbe1f0e27e909
https://conda.anaconda.org/conda-forge/win-64/pillow-10.3.0-py311h6819b35_0.conda#86b3e331bf65cca7b8b5aacf9fefa1be
https://conda.anaconda.org/conda-forge/win-64/pynacl-1.5.0-py311hd53affc_3.conda#f281b8aabfefac05a58db6a623be8e5c
https://conda.anaconda.org/conda-forge/win-64/pyqt5-sip-12.12.2-py311h12c1d0e_5.conda#1b53a20f311bd99a1e55b31b7219106f
https://conda.anaconda.org/conda-forge/noarch/qdarkstyle-3.2.3-pyhd8ed1ab_0.conda#ab475868d7e0b110c43bf74c90237a5f
https://conda.anaconda.org/conda-forge/win-64/soapysdr-module-plutosdr-0.2.2-hfc7d00b_0.conda#7f38ed07a0525049d368aeae4a4dcefe
https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda#e7df0fdd404616638df5ece6e69ba7af
https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.1-pyhd8ed1ab_0.conda#08807a87fa7af10754d46f63b368e016
https://conda.anaconda.org/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_0.tar.bz2#00ba804b54f451d102f6a7615f08470d
https://conda.anaconda.org/conda-forge/noarch/asciimatics-1.15.0-pyhd8ed1ab_0.conda#94bdb59db7572d651230d10dd15c188d
https://conda.anaconda.org/conda-forge/win-64/bladerf-2023.02-hcfcfb64_0.conda#fcb9937df5e7af6f429e70ec06dbe621
https://conda.anaconda.org/conda-forge/noarch/gevent-websocket-0.10.1-py_0.tar.bz2#25b4b60b6ea50368cd90b75b4d00c711
https://conda.anaconda.org/conda-forge/win-64/gsl-2.7-hdfb1a43_0.tar.bz2#ca5c581b3659140455cf6ae00f6a2ea9
https://conda.anaconda.org/conda-forge/win-64/gstreamer-1.24.4-h5006eae_0.conda#3d7ebad364d5f63a1ae54eecb35aee31
https://conda.anaconda.org/conda-forge/win-64/harfbuzz-8.5.0-h81778c3_0.conda#2ff854071c04998038c0e1db4c9232f7
https://conda.anaconda.org/conda-forge/noarch/ipython-8.24.0-pyh7428d3b_0.conda#5c51b5f02a949233a2130284ff7fc416
https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.22.0-pyhd8ed1ab_0.conda#b9661a4b1200d6bc7d8a4cdafdc91468
https://conda.anaconda.org/conda-forge/win-64/libgirepository-1.80.1-h4a5d6e9_0.conda#892f4675f4067fb9d22cb7467ab9e5d7
https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda#7b240edd44fd7a0991aa409b07cee776
https://conda.anaconda.org/conda-forge/noarch/paramiko-3.4.0-pyhd8ed1ab_0.conda#a5e792523b028b06d7ce6e65a6cd4a33
https://conda.anaconda.org/conda-forge/win-64/pycairo-1.26.0-py311h99894aa_0.conda#3c4efda907ddec87ad06447d7200e9f9
https://conda.anaconda.org/conda-forge/noarch/requests-2.32.2-pyhd8ed1ab_0.conda#e1643b34b19df8c028a4f00bf5df58a6
https://conda.anaconda.org/conda-forge/noarch/simple-websocket-1.0.0-pyhd8ed1ab_1.conda#4e9136be6c66312f63b3a8ef60443389
https://conda.anaconda.org/conda-forge/win-64/contourpy-1.2.1-py311h005e61a_0.conda#050075a7a22e39222595b9191bc082e3
https://conda.anaconda.org/conda-forge/win-64/gnuradio-pmt-3.10.10.0-py311h671c198_6.conda#5c6a9c41004d50655ef8318d23b7fb80
https://conda.anaconda.org/conda-forge/win-64/gst-plugins-base-1.24.4-hba88be7_0.conda#0b1d683d462029446924fa87a50dda12
https://conda.anaconda.org/conda-forge/win-64/h5py-3.11.0-nompi_py311h67016bb_101.conda#6e649b90f587dbbc6a1c035b4c41d271
https://conda.anaconda.org/conda-forge/win-64/numexpr-2.8.4-py311h0aebda5_101.conda#1d7a4db0c7621ac9c22e2b10738d52a9
https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.2-py311hcf9f919_1.conda#ec3ed8d602148625469dc13c481f23b5
https://conda.anaconda.org/conda-forge/win-64/pango-1.52.2-h07c897b_0.conda#d4b8ab1b86d06d9d6c65eaed989a018d
https://conda.anaconda.org/conda-forge/noarch/pyadi-iio-0.0.16-pyhd8ed1ab_0.conda#667c2c87d132e2fdf0b2f42200fbfbff
https://conda.anaconda.org/conda-forge/win-64/pygobject-3.48.2-py311h037c6d6_0.conda#299ba6e17b4e8567fc72b7e7048b149b
https://conda.anaconda.org/conda-forge/noarch/pyqtgraph-0.13.7-pyhd8ed1ab_0.conda#d31a6f00bd89ff46a5e457c935578c33
https://conda.anaconda.org/conda-forge/noarch/python-engineio-4.9.1-pyhd8ed1ab_0.conda#14eac7853ce0afb52fab40521d8ed9f7
https://conda.anaconda.org/conda-forge/win-64/scipy-1.13.1-py311hd4686c6_0.conda#980070a1c48686998f8256d0c4d76cf2
https://conda.anaconda.org/conda-forge/win-64/uhd-4.6.0.0-py311h0c75be5_0.conda#c9ac38098e075a3a99c84c3b9bf84bb2
https://conda.anaconda.org/conda-forge/win-64/digital_rf-2.6.9-py311hc9dfcda_0.conda#413a8fa6eb0671ad77c03bd8b88a8649
https://conda.anaconda.org/conda-forge/win-64/gnuradio-core-3.10.10.0-py311ha8a86db_6.conda#7206398e120493f9779197028748abf3
https://conda.anaconda.org/conda-forge/win-64/gtk3-3.24.42-h06195f2_0.conda#4ef4724a601f2ecc6f34c95071f8fc21
https://conda.anaconda.org/conda-forge/win-64/librsvg-2.58.0-h172eb2b_1.conda#7f1e33327f592bf1122c707bd443013d
https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.8.4-py311h9b31f6e_2.conda#dbf84485273ba5fea107ef140a173e30
https://conda.anaconda.org/conda-forge/noarch/python-socketio-5.11.2-pyhd8ed1ab_0.conda#08c4689825cdf902fc643a6a0934068e
https://conda.anaconda.org/conda-forge/win-64/qt-main-5.15.8-hcef0176_21.conda#76544d3dfeff8fd52250df168cb0005b
https://conda.anaconda.org/conda-forge/win-64/soapysdr-module-uhd-0.4.1-h497d21a_10.conda#d427bd427e5899815c68ae78bf3a04b3
https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-46.0-win_0.conda#ce287b2e374a9816d37cb6622d6474d4
https://conda.anaconda.org/conda-forge/noarch/flask-socketio-5.3.6-pyhd8ed1ab_0.conda#ef521fc208ad82733c942d150199cf3e
https://conda.anaconda.org/ryanvolz/win-64/gnuradio-dect2-0.0.0.20240502.dev+gb296af2a9-py311h731d093_0.tar.bz2#4293ee65f81e8055a7f820661fb87967
https://conda.anaconda.org/ryanvolz/win-64/gnuradio-filerepeater-0.0.0.20240502.dev+gd7bb8846c-py311hc73e630_0.tar.bz2#a6cf3b1c869569af8b148a2824704afe
https://conda.anaconda.org/ryanvolz/win-64/gnuradio-foo-0.0.0.20240502.dev+gc53538a22-py311hd88f94d_0.tar.bz2#f76bac411f7b4cf21acf3643bc8b533f
https://conda.anaconda.org/ryanvolz/win-64/gnuradio-fosphor-0.0.0.20240502.dev+g656fe2f-py311h8c3b4f8_0.tar.bz2#956d499719a2f83fc135784eeb890284
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-gpredict-doppler-0.0.0.20240508.dev+gb06bc7678-win_pyh761a00b_0.tar.bz2#6ba2c6d893f004bb20fc389fb9476378
https://conda.anaconda.org/conda-forge/win-64/gnuradio-iio-3.10.10.0-py311haeac71a_6.conda#5b2bb4ea5e0895c157f8bde550227b41
https://conda.anaconda.org/conda-forge/win-64/gnuradio-iqbalance-0.38.2-py311h612ad4a_3.conda#337d98e6bcc6c7f47ed7ad5148ecd984
https://conda.anaconda.org/conda-forge/win-64/gnuradio-iridium-1!1.0.0-py311h12d8b78_11.conda#4418be57c1b88ffa024a053efa220a2e
https://conda.anaconda.org/ryanvolz/win-64/gnuradio-leo-1.0.0.post105+12a346f-py311h16091ff_0.tar.bz2#8d30418fcfc0c1a5bebab521502c6f08
https://conda.anaconda.org/ryanvolz/win-64/gnuradio-lora_sdr-0.0.0.20240508.dev+g751a65269-py311h16091ff_0.tar.bz2#66a5f87725926fd396751626ccc47a6d
https://conda.anaconda.org/conda-forge/win-64/gnuradio-m2k-1.0.0-py311h7960a3c_9.conda#ac2e44c8fc68359244516b666eb539ad
https://conda.anaconda.org/ryanvolz/win-64/gnuradio-paint-0.0.0.20240508.dev+g82696a2-py311h16091ff_0.tar.bz2#5d4e9ca674b04a6b4c6e78ac245a9443
https://conda.anaconda.org/ryanvolz/win-64/gnuradio-rds-3.10.post22+g2134008-py311haee66f7_0.tar.bz2#f138cfb68da12a3b93e59f3604b1bb98
https://conda.anaconda.org/conda-forge/win-64/gnuradio-soapy-3.10.10.0-py311hc5bda4f_6.conda#8218e404a47ee5137c2a0d724fe91941
https://conda.anaconda.org/conda-forge/win-64/gnuradio-video-sdl-3.10.10.0-py311h329eb19_6.conda#44c6c0fd762c4a4beaa1658801813000
https://conda.anaconda.org/conda-forge/win-64/gnuradio-zeromq-3.10.10.0-py311h69341d5_6.conda#f9e2e2f5a7973721e08c752d99b28cc5
https://conda.anaconda.org/conda-forge/win-64/inspectrum-0.3.1-hfd82842_0.conda#129b641bfade8345d786d9e0a6df1196
https://conda.anaconda.org/conda-forge/noarch/mplcursors-0.5.3-pyhd8ed1ab_0.conda#41db08c32bbbb2849d6f57fd1d1da460
https://conda.anaconda.org/conda-forge/win-64/pyqt-5.15.9-py311h125bc19_5.conda#29d36acae7ccbcb1f0ec4a39841b3197
https://conda.anaconda.org/conda-forge/win-64/qwt-6.3.0-h9417a65_0.conda#582871afa5be8855196265f6f599cc0c
https://conda.anaconda.org/ryanvolz/noarch/gnuradio-adsb-0.0.0.20240508.dev+gafd7fabda-win_pyh0207874_0.tar.bz2#12bb4c4ddada6219991d668d45036cc7
https://conda.anaconda.org/conda-forge/win-64/gnuradio-grc-3.10.10.0-py311h329eb19_6.conda#1083421db29b3b7ae97189a29e0aff18
https://conda.anaconda.org/ryanvolz/win-64/gnuradio-ieee802_11-0.0.0.20240507.dev+g8c058d4e0-py311hc4e8945_0.tar.bz2#2ea8b40053d2dbd962fac8caf2445b8e
https://conda.anaconda.org/ryanvolz/win-64/gnuradio-ieee802_15_4-3.6.post133+g932c76f-py311h80bdee0_0.tar.bz2#635de8e7d85c13ce90f2084999c87c12
https://conda.anaconda.org/conda-forge/win-64/gnuradio-qtgui-3.10.10.0-py311h101ccf3_6.conda#fba2ba95ee4579b435aefaaa3d8a00e8
https://conda.anaconda.org/ryanvolz/win-64/gnuradio-radar-0.0.0.20240525.dev+gc59350d-py311h94e600c_0.tar.bz2#406ad660397f2791a7bc5a9acd8fe9a1
https://conda.anaconda.org/conda-forge/win-64/gnuradio-satellites-5.5.0-py311he9fa361_2.conda#143a7b67e5c3127aa7aadcd89a72580b
https://conda.anaconda.org/conda-forge/win-64/gnuradio-uhd-3.10.10.0-py311ha2ea127_6.conda#58a51fcd398e16343178f486101e6968
https://conda.anaconda.org/conda-forge/win-64/matplotlib-3.8.4-py311h1ea47a8_2.conda#97b9e2a44c863a5ad7b20cbbb908db13
https://conda.anaconda.org/conda-forge/noarch/pyfda-0.8.4-pyh9208f05_0.conda#c772efaac9008abc155bbb8da0ed451d
https://conda.anaconda.org/conda-forge/win-64/gnuradio-3.10.10.0-py311h6faf1ab_6.conda#eb573188130a8cedf78f6dd700d47d6f
https://conda.anaconda.org/ryanvolz/win-64/gnuradio-inspector-0.0.0.20240525.dev+g55acca6-py311h66c5512_0.tar.bz2#ad9192c81fe255d361c9198f5aa8ed06
https://conda.anaconda.org/conda-forge/win-64/gnuradio-osmosdr-0.2.4-py311hcfe3240_16.conda#4d993cdc3fd0b9677f94b7a29d22acad
https://conda.anaconda.org/conda-forge/win-64/gqrx-2.17.5-h30ace0d_4.conda#4c3c4d5e5b2365867f7fabdf6507cf54
https://conda.anaconda.org/t/*****/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda#5304a31607974dfc2110dfbb662ed092
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb
https://conda.anaconda.org/t/*****/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda#49023d73832ef61042f6a237cb2687e7
https://conda.anaconda.org/t/*****/conda-forge/win-64/hicolor-icon-theme-0.17-h57928b3_2.tar.bz2#ce6379735baacc42bf1e684bdda2e2c3
https://conda.anaconda.org/t/*****/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda#2d89243bfb53652c182a7c73182cce4f
https://conda.anaconda.org/t/*****/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2#878f923dd6acc8aeb47a75da6c4098be
https://conda.anaconda.org/t/*****/conda-forge/win-64/python_abi-3.12-5_cp312.conda#e8681f534453af7afab4cd2bc1423eec
https://conda.anaconda.org/t/*****/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda#dbcace4706afdfb7eb891f7b37d07c04
https://conda.anaconda.org/t/*****/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda#6797b005cd0f439c4c5c9ac565783700
https://conda.anaconda.org/t/*****/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-leo-data-1.0.0.post20250214%2Bg8f62b92-win_2.conda#1d3a9a16bf187594e89a39391c5ae3e5
https://conda.anaconda.org/t/*****/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda#08bfa5da6e242025304b206d152479ef
https://conda.anaconda.org/t/*****/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_24.conda#5fceb7d965d59955888d9a9732719aa8
https://conda.anaconda.org/t/*****/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab
https://conda.anaconda.org/t/*****/conda-forge/win-64/libgomp-14.2.0-h1383e82_2.conda#dd6b1ab49e28bcb6154cd131acec985b
https://conda.anaconda.org/t/*****/conda-forge/win-64/vc-14.3-hbf610ac_24.conda#9098c5cfb418fc0b0204bf2efc1e9afa
https://conda.anaconda.org/t/*****/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_24.conda#1dd2e838eb13190ae1f1e2760c036fdc
https://conda.anaconda.org/t/*****/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda#37e16618af5c4851a3f3d66dd0e11141
https://conda.anaconda.org/t/*****/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda#276e7ffe9ffe39688abc665ef0f45596
https://conda.anaconda.org/t/*****/conda-forge/win-64/double-conversion-3.3.1-he0c23c2_0.conda#e9a1402439c18a4e3c7a52e4246e9e1c
https://conda.anaconda.org/t/*****/conda-forge/win-64/epoxy-1.5.10-h8d14728_1.tar.bz2#38bcf3a96ee224b1704251d6235f4515
https://conda.anaconda.org/t/*****/conda-forge/win-64/fftw-3.3.10-nompi_h89e6982_110.conda#c1c00a097000feb485afb2e9fa7368fc
https://conda.anaconda.org/t/*****/conda-forge/win-64/fmt-11.0.2-h7f575de_0.conda#4bd427b6423eead4edea9533dc5381ba
https://conda.anaconda.org/t/*****/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2#807e81d915f2bb2e49951648615241f6
https://conda.anaconda.org/t/*****/conda-forge/win-64/glew-2.1.0-h39d44d4_2.tar.bz2#840d21c1ee66b91af3d0211e7766393a
https://conda.anaconda.org/t/*****/conda-forge/win-64/glfw-3.4-hcfcfb64_0.conda#5d41478e933d70273686b267827d2ae6
https://conda.anaconda.org/t/*****/conda-forge/win-64/graphite2-1.3.13-h63175ca_1003.conda#3194499ee7d1a67404a87d0eefdd92c6
https://conda.anaconda.org/t/*****/conda-forge/win-64/gtest-1.15.2-hc790b64_0.conda#d3be2a4f511c28dc626bdb3c5dc297c6
https://conda.anaconda.org/t/*****/conda-forge/win-64/icu-75.1-he0c23c2_0.conda#8579b6bb8d18be7c0b27fb08adeeeb40
https://conda.anaconda.org/t/*****/conda-forge/win-64/lame-3.100-hcfcfb64_1003.tar.bz2#d92e64077c44c9e32c72d4b5799d47e4
https://conda.anaconda.org/t/*****/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2#1900cb3cab5055833cfddb0ba233b074
https://conda.anaconda.org/t/*****/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda#8723000f6ffdbdaef16025f0a01b64c5
https://conda.anaconda.org/t/*****/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda#f7dc9a8f21d74eab46456df301da2972
https://conda.anaconda.org/t/*****/conda-forge/win-64/libcorrect-0.0.0-hcfcfb64_0.conda#b8af2446b57598de52a74e3d89bed48b
https://conda.anaconda.org/t/*****/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda#a9624935147a25b06013099d3038e467
https://conda.anaconda.org/t/*****/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda#eb383771c680aa792feb529eaf9df82f
https://conda.anaconda.org/t/*****/conda-forge/win-64/libffi-3.4.6-h537db12_0.conda#31d5107f75b2f204937728417e2e39e5
https://conda.anaconda.org/t/*****/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda#21fc5dba2cbcd8e5e26ff976a312122c
https://conda.anaconda.org/t/*****/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda#3f1b948619c45b1ca714d60c7389092c
https://conda.anaconda.org/t/*****/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda#c48f6ad0ef0a555b27b233dfcab46a90
https://conda.anaconda.org/t/*****/conda-forge/win-64/libogg-1.3.5-h2466b09_0.conda#44a4d173e62c5ed6d715f18ae7c46b7a
https://conda.anaconda.org/t/*****/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2#e35a6bcfeb20ea83aab21dfc50ae62a4
https://conda.anaconda.org/t/*****/conda-forge/win-64/librtaudio6-5.2.0-h63175ca_3.conda#afe3f08985c7f1e342f3477eb96fbd88
https://conda.anaconda.org/t/*****/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda#198bb594f202b205c7d18b936fa4524f
https://conda.anaconda.org/t/*****/conda-forge/win-64/libsqlite-3.49.1-h67fdade_1.conda#88931435901c1f13d4e3a472c24965aa
https://conda.anaconda.org/t/*****/conda-forge/win-64/libusb-1.0.27-h2466b09_101.conda#01486f395f3bdd22c071ee57d409fdcd
https://conda.anaconda.org/t/*****/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda#33f7313967072c6e6d8f865f5493c7ae
https://conda.anaconda.org/t/*****/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda#41fbfac52c601159df6c01f875de31b9
https://conda.anaconda.org/t/*****/conda-forge/win-64/lua-5.4.6-h2466b09_1.conda#1e3d1c0ea2d57cb78f57958a5f132e02
https://conda.anaconda.org/t/*****/conda-forge/win-64/mpg123-1.32.9-h01009b0_0.conda#1ed1580d4211223b285787eff05560f9
https://conda.anaconda.org/t/*****/conda-forge/win-64/mpir-3.0.0-he025d50_1002.tar.bz2#126ea50b4b4a33448c3994df2ff8b0cc
https://conda.anaconda.org/t/*****/conda-forge/win-64/opencl-headers-2024.10.24-he0c23c2_0.conda#20248dbb7d4a877ba783a2e06ecc2d02
https://conda.anaconda.org/t/*****/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda#0730f8094f7088592594f9bf3ae62b3f
https://conda.anaconda.org/t/*****/conda-forge/win-64/pixman-0.44.2-had0cd8c_0.conda#c720ac9a3bd825bf8b4dc7523ea49be4
https://conda.anaconda.org/t/*****/conda-forge/win-64/portaudio-19.7.0-he0c23c2_0.conda#7a4b1663dd15dcbf1a55f3a3ddfac0aa
https://conda.anaconda.org/t/*****/conda-forge/win-64/qhull-2020.2-hc790b64_5.conda#854fbdff64b572b5c0b470f334d34c11
https://conda.anaconda.org/t/*****/conda-forge/win-64/tk-8.6.13-h5226925_1.conda#fc048363eb8f03cd1737600a5d08aafe
https://conda.anaconda.org/t/*****/conda-forge/win-64/volk-3.2.0-hb838788_0.conda#06e666d4dfc41cd80e36a2b4ebea0442
https://conda.anaconda.org/t/*****/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2#adbfb9f45d1004a26763652246a33764
https://conda.anaconda.org/t/*****/conda-forge/win-64/khronos-opencl-icd-loader-2024.10.24-h2466b09_1.conda#71a72eb0eed16a4a76fd88359be48fec
https://conda.anaconda.org/t/*****/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda#31aec030344e962fbd7dbbbbd68e60a9
https://conda.anaconda.org/t/*****/conda-forge/win-64/libairspy-1.0.10-h2466b09_1.conda#67624c2e6b59453ccdd8db2aaeb659b7
https://conda.anaconda.org/t/*****/conda-forge/win-64/libairspyhf-1.6.8-h2466b09_1.conda#9a684507879ae6ab8c0d7d812db02398
https://conda.anaconda.org/t/*****/conda-forge/win-64/libbladerf2-2024.05-h2466b09_2.conda#55941d4dab886557f9e9ca469ec65109
https://conda.anaconda.org/t/*****/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda#9bae75ce723fa34e98e239d21d752a7e
https://conda.anaconda.org/t/*****/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda#85741a24d97954a991e55e34bc55990b
https://conda.anaconda.org/t/*****/conda-forge/win-64/libflac-1.4.3-h63175ca_0.conda#9aca744e428be2ced2f35b421bf19afa
https://conda.anaconda.org/t/*****/conda-forge/win-64/libgcc-14.2.0-h1383e82_2.conda#4a74c1461a0ba47a3346c04bdccbe2ad
https://conda.anaconda.org/t/*****/conda-forge/win-64/libhackrf0-2024.02.1-h2466b09_1.conda#cb75af050af86831a4f77b44106ea02a
https://conda.anaconda.org/t/*****/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda#2cf0cf76cc15d360dfa2f17fd6cf9772
https://conda.anaconda.org/t/*****/conda-forge/win-64/liblimesuite-23.11.0-he0c23c2_1.conda#97f1cd95485ea9b44e347caea34c7370
https://conda.anaconda.org/t/*****/conda-forge/win-64/libmirisdr4-2.0.0-h2466b09_1.conda#352cb6b0810b7a071096b163ff7c0d41
https://conda.anaconda.org/t/*****/conda-forge/win-64/libosmodsp0-0.4.0-h857e13b_2.conda#1b67477500e9f34db956370475a130c4
https://conda.anaconda.org/t/*****/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda#7d717163d9dab337c65f2bf21a676b8f
https://conda.anaconda.org/t/*****/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda#af0cbf037dd614c34399b3b3e568c557
https://conda.anaconda.org/t/*****/conda-forge/win-64/libvorbis-1.3.7-h0e60522_0.tar.bz2#e1a22282de0169c93e4ffe6ce6acc212
https://conda.anaconda.org/t/*****/conda-forge/win-64/libxml2-2.13.6-he286e8c_0.conda#c66d5bece33033a9c028bbdf1e627ec5
https://conda.anaconda.org/t/*****/conda-forge/win-64/pcre2-10.44-h3d7b363_2.conda#a3a3baddcfb8c80db84bec3cb7746fb8
https://conda.anaconda.org/t/*****/conda-forge/win-64/python-3.12.9-h3f84c4b_1_cpython.conda#f0a0ad168b815fee4ce9718d4e6c1925
https://conda.anaconda.org/t/*****/conda-forge/win-64/rtl-sdr-2.0.2-h2466b09_3.conda#cc48f8774cb5639ae10766ecd8961f4e
https://conda.anaconda.org/t/*****/conda-forge/win-64/sdl3-3.2.8-he0c23c2_0.conda#5bc274893cf3685e5154cead0958f049
https://conda.anaconda.org/t/*****/conda-forge/win-64/spdlog-1.15.1-hf4138ee_0.conda#cfbc396d49e61c43f56178d082166df7
https://conda.anaconda.org/t/*****/conda-forge/win-64/zstd-1.5.7-hbeecb71_1.conda#bf190adcc22f146d8ec66da215c9d78b
https://conda.anaconda.org/t/*****/conda-forge/win-64/airspy-1.0.10-h2466b09_1.conda#0bb65320d775c847fef3e57d24f8a09c
https://conda.anaconda.org/t/*****/conda-forge/win-64/airspyhf-1.6.8-h2466b09_1.conda#636d9fb818b45594f05387861efeeb13
https://conda.anaconda.org/t/*****/conda-forge/noarch/appdirs-1.4.4-pyhd8ed1ab_1.conda#f4e90937bbfc3a4a92539545a37bb448
https://conda.anaconda.org/t/*****/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda#8f587de4bcf981e26228f268df374a9b
https://conda.anaconda.org/t/*****/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda#a10d11958cadc13fdb43df75f8b1903f
https://conda.anaconda.org/t/*****/conda-forge/win-64/bcrypt-4.3.0-py312h2615798_0.conda#207981ffbb19e2cd0e17ef19c40d7a0b
https://conda.anaconda.org/t/*****/conda-forge/noarch/bidict-0.23.1-pyhd8ed1ab_1.conda#a6d521e8054c6b38aea1095060bd7e14
https://conda.anaconda.org/t/*****/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda#42834439227a4551b939beeeb8a4b085
https://conda.anaconda.org/t/*****/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda#d22534a9be5771fc58eb7564947f669d
https://conda.anaconda.org/t/*****/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_2.conda#a99aec1ac46794a5fb1cd3cf5d2b6110
https://conda.anaconda.org/t/*****/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2#576d629e47797577ab0f1b351297ef4a
https://conda.anaconda.org/t/*****/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda#c207fa5ac7ea99b149344385a9c0880d
https://conda.anaconda.org/t/*****/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda#e83a31202d1c0a000fce3e9cf3825875
https://conda.anaconda.org/t/*****/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda#962b9857ee8e7018c22f2776ffa0b2d7
https://conda.anaconda.org/t/*****/conda-forge/noarch/construct-2.10.70-pyhd8ed1ab_0.conda#58e88566bfbbf9d3ffbeda3290e7f4f0
https://conda.anaconda.org/t/*****/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda#44600c4667a319d67dbe0681fc0bc833
https://conda.anaconda.org/t/*****/conda-forge/noarch/decorator-5.2.1-pyhd8ed1ab_0.conda#9ce473d1d1be1cc3810856a48b3fab32
https://conda.anaconda.org/t/*****/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda#24c1ca34138ee57de72a943237cde4cc
https://conda.anaconda.org/t/*****/conda-forge/win-64/ephem-4.2-py312h4389bb4_0.conda#bc90af487465cafec80df4d2f3a96ecc
https://conda.anaconda.org/t/*****/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda#a16662747cdeb9abbac74d0057cc976e
https://conda.anaconda.org/t/*****/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda#ef8b5fca76806159fc25b4f48d8737eb
https://conda.anaconda.org/t/*****/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda#9c461ed7b07fb360d2c8cfe726c7d521
https://conda.anaconda.org/t/*****/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_2.conda#1054c53c95d85e35b88143a3eda66373
https://conda.anaconda.org/t/*****/conda-forge/win-64/greenlet-3.1.1-py312h275cf98_1.conda#db1ff6ac27d2d7bea014a15713ac622a
https://conda.anaconda.org/t/*****/conda-forge/win-64/hackrf-2024.02.1-hc14e81b_1.conda#c5ad0df53a57612af1201c5677606ce6
https://conda.anaconda.org/t/*****/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda#0a802cb9888dd14eeefc611f05c40b6e
https://conda.anaconda.org/t/*****/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda#8e6923fc12f1fe8f8c4e5c9f343256ac
https://conda.anaconda.org/t/*****/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda#39a4f67be3286c86d696df570b1201b7
https://conda.anaconda.org/t/*****/conda-forge/noarch/itsdangerous-2.2.0-pyhd8ed1ab_1.conda#7ac5f795c15f288984e32add616cdc59
https://conda.anaconda.org/t/*****/conda-forge/win-64/kiwisolver-1.4.8-py312hc790b64_0.conda#7ef59428fc0dcb8a78a5e23dc4f50aa3
https://conda.anaconda.org/t/*****/conda-forge/win-64/libboost-1.86.0-hb0986bb_3.conda#d0550e3c23e9e9885bf410fe6f519361
https://conda.anaconda.org/t/*****/conda-forge/win-64/libclang13-19.1.7-default_ha5278ca_1.conda#9b1f1d408bea019772a06be7719a58c0
https://conda.anaconda.org/t/*****/conda-forge/win-64/libcodec2-1.2.0-hb66ff0d_3.conda#04d8e66b79f3807d2ea95ff1ad70603a
https://conda.anaconda.org/t/*****/conda-forge/win-64/libcurl-8.12.1-h88aaa65_0.conda#2b1c729d91f3b07502981b6e0c7727cc
https://conda.anaconda.org/t/*****/conda-forge/win-64/libglib-2.82.2-h7025463_1.conda#40596e78a77327f271acea904efdc911
https://conda.anaconda.org/t/*****/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda#b87a0ac5ab6495d8225db5dc72dd21cd
https://conda.anaconda.org/t/*****/conda-forge/win-64/libiio-c-0.26-hb85ab18_1.conda#47ce49525bc49085e0d0638a42d3ae92
https://conda.anaconda.org/t/*****/conda-forge/win-64/libintl-devel-0.22.5-h5728263_3.conda#7537784e9e35399234d4007f45cdb744
https://conda.anaconda.org/t/*****/conda-forge/win-64/libliquid1-1.6.0-h96e8fb8_2.conda#f3d9d67c93cbbdc3da6b03a67fa181af
https://conda.anaconda.org/t/*****/conda-forge/win-64/libsndfile-1.2.2-h81429f1_1.conda#54f4ab13d4f8f4f4660676903a7869a1
https://conda.anaconda.org/t/*****/conda-forge/win-64/libstdcxx-14.2.0-h904f734_2.conda#d4ed3b935046595e0876a53623803232
https://conda.anaconda.org/t/*****/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda#defed79ff7a9164ad40320e3f116a138
https://conda.anaconda.org/t/*****/conda-forge/win-64/libxslt-1.1.39-h3df6e99_0.conda#279ee338c9b34871d578cb3c7aa68f70
https://conda.anaconda.org/t/*****/conda-forge/win-64/markupsafe-3.0.2-py312h31fea79_1.conda#944fdd848abfbd6929e57c790b8174dd
https://conda.anaconda.org/t/*****/conda-forge/win-64/menuinst-2.2.0-py312h275cf98_0.conda#c435a5681c148e369bb49f8fa15acbaf
https://conda.anaconda.org/t/*****/conda-forge/win-64/mirisdr-2.0.0-h2466b09_1.conda#23bf0306bfc45364d70a3c8a52c4fc44
https://conda.anaconda.org/t/*****/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2#2ba8498c1018c1e9c61eb99b973dfe19
https://conda.anaconda.org/t/*****/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda#3bfed7e6228ebf2f7b9eaa47f1b4e2aa
https://conda.anaconda.org/t/*****/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda#5c092057b6badd30f75b06244ecd01c9
https://conda.anaconda.org/t/*****/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda#11a9d1d09a3615fc07c3faf79bc0b943
https://conda.anaconda.org/t/*****/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda#5a5870a74432aa332f7d32180633ad05
https://conda.anaconda.org/t/*****/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda#fd5062942bfa1b0bd5e0d2a4397b099e
https://conda.anaconda.org/t/*****/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda#3c8f2573569bb816483e5cf57efbbe29
https://conda.anaconda.org/t/*****/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda#3bfdfb8dbcdc4af1ae3f9a8eb3948f04
https://conda.anaconda.org/t/*****/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda#12c566707c80111f9799308d9e265aef
https://conda.anaconda.org/t/*****/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda#232fb4577b6687b2d503ef8e254270c9
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyopengl-3.1.7-pyhd8ed1ab_0.conda#6d7d03be8e7f788b444c15262408d063
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyparsing-3.2.1-pyhd8ed1ab_0.conda#285e237b8f351e85e7574a2c7bfa6d46
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-tzdata-2025.1-pyhd8ed1ab_0.conda#392c91c42edd569a7ec99ed8648f597a
https://conda.anaconda.org/t/*****/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda#3eeeeb9e4827ace8c0c1419c85d590ad
https://conda.anaconda.org/t/*****/conda-forge/win-64/pywin32-307-py312h275cf98_3.conda#1747fbbdece8ab4358b584698b19c44d
https://conda.anaconda.org/t/*****/conda-forge/win-64/pyyaml-6.0.2-py312h31fea79_2.conda#ba00a2e5059c1fde96459858537cc8f5
https://conda.anaconda.org/t/*****/conda-forge/win-64/rpds-py-0.23.1-py312hfe1d9c4_0.conda#f0410386ac90b39f953a0313ad111a31
https://conda.anaconda.org/t/*****/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312h4389bb4_1.conda#5758e70a80936d7527f70196685c6695
https://conda.anaconda.org/t/*****/conda-forge/win-64/sdl2-2.32.50-hecf2515_1.conda#3b73ebaea5aa1b7739358efaed25b458
https://conda.anaconda.org/t/*****/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda#9bddfdbf4e061821a1a443f93223be61
https://conda.anaconda.org/t/*****/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda#a451d576819089b0d672f18768be0f65
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-0.8.1-py312hd5eb7cc_5.conda#d763f117c3705becc1f463f8f925cf52
https://conda.anaconda.org/t/*****/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda#b0dd904de08b7db706167240bf37b164
https://conda.anaconda.org/t/*****/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda#ac944244f1fed2eb49bae07193ae8215
https://conda.anaconda.org/t/*****/conda-forge/win-64/tornado-6.4.2-py312h4389bb4_0.conda#f06104f71f496b0784b35b23e30e7990
https://conda.anaconda.org/t/*****/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda#019a7385be9af33791c989871317e1ed
https://conda.anaconda.org/t/*****/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda#d17f13df8b65464ca316cbc000a3cb64
https://conda.anaconda.org/t/*****/conda-forge/win-64/unicodedata2-16.0.0-py312h4389bb4_0.conda#3b124c38c7852704ba6a42a170c152a1
https://conda.anaconda.org/t/*****/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda#b68980f2495d096e71c7fd9d7ccf63e6
https://conda.anaconda.org/t/*****/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_1.conda#84f8f77f0a9c6ef401ee96611745da8f
https://conda.anaconda.org/t/*****/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda#75cb7132eb58d97896e173ef12ac9986
https://conda.anaconda.org/t/*****/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda#46e441ba871f524e2b067929da3051c2
https://conda.anaconda.org/t/*****/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda#2ffbfae4548098297c033228256eb96e
https://conda.anaconda.org/t/*****/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda#8393c0f7e7870b4eb45553326f81f0ff
https://conda.anaconda.org/t/*****/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_7.conda#e03f2c245a5ee6055752465519363b1c
https://conda.anaconda.org/t/*****/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda#0c3cc595284c5e8f0f9900a9b228a332
https://conda.anaconda.org/t/*****/conda-forge/win-64/atk-1.0-2.38.0-hb44c4ce_2.conda#c39ec84d125a70d055270b9e6a1ef804
https://conda.anaconda.org/t/*****/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda#378f1c9421775dfe644731cb121c8979
https://conda.anaconda.org/t/*****/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2#9b347a7ec10940d3f7941ff6c460b551
https://conda.anaconda.org/t/*****/conda-forge/win-64/cffi-1.17.1-py312h4389bb4_0.conda#08310c1a22ef957d537e547f8d484f92
https://conda.anaconda.org/t/*****/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda#90e5571556f7a45db92ee51cb8f97af6
https://conda.anaconda.org/t/*****/conda-forge/win-64/codec2-1.2.0-hb66ff0d_3.conda#14be2f86b6c381aec8fdceb33a4d9822
https://conda.anaconda.org/t/*****/conda-forge/win-64/fontconfig-2.15.0-h765892d_1.conda#9bb0026a2131b09404c59c4290c697cd
https://conda.anaconda.org/t/*****/conda-forge/noarch/fs-2.4.16-pyhd8ed1ab_0.conda#a231fa7cb5f101f1f3ae8480c0002f91
https://conda.anaconda.org/t/*****/conda-forge/win-64/gdk-pixbuf-2.42.12-hed59a49_0.conda#350196a65e715882abefffd1a702172d
https://conda.anaconda.org/t/*****/conda-forge/win-64/glib-tools-2.82.2-h4394cf3_1.conda#1e0986766b1b26ad9355a061b8de02cd
https://conda.anaconda.org/t/*****/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda#7ee49e89531c0dcbba9466f6d115d585
https://conda.anaconda.org/t/*****/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda#b4754fb1bdcb70c8fd54f918301582c6
https://conda.anaconda.org/t/*****/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda#ebb61f3e8b35cc15e78876649b7246f7
https://conda.anaconda.org/t/*****/conda-forge/noarch/importlib-metadata-8.6.1-pyha770c72_0.conda#f4b39bf00c69f56ac01e020ebfac066c
https://conda.anaconda.org/t/*****/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda#c85c76dc67d75619a92f51dfbce06992
https://conda.anaconda.org/t/*****/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda#bd80ba060603cc228d9d81c257093119
https://conda.anaconda.org/t/*****/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda#a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9
https://conda.anaconda.org/t/*****/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda#446bd6c8cb26050d528881df495ce646
https://conda.anaconda.org/t/*****/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda#3538827f77b82a837fa681a4579e37a1
https://conda.anaconda.org/t/*****/conda-forge/win-64/libad9361-iio-c-0.3-h4e9078e_1.conda#29173bfe625041cbb712edc343b3648a
https://conda.anaconda.org/t/*****/conda-forge/win-64/libhamlib4-4.6.2-h0e07d3f_2.conda#a6091aae6b11f182e63925bc8e67f40d
https://conda.anaconda.org/t/*****/conda-forge/win-64/libm2k-0.9.0-py312h87514d0_1.conda#1b6326b9c44d1089078e9bed01cc7e69
https://conda.anaconda.org/t/*****/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda#a69bbf778a462da324489976c84cfc8c
https://conda.anaconda.org/t/*****/conda-forge/win-64/lxml-5.3.1-py312h53bce91_0.conda#c86f153c26b4d6235de9e19eafc01ce8
https://conda.anaconda.org/t/*****/conda-forge/win-64/m17-cxx-demod-2.3.3-h01e1179_5.conda#d0d609afdcb93f4f402895339a2b341f
https://conda.anaconda.org/t/*****/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda#af6ab708897df59bd6e7283ceab1b56b
https://conda.anaconda.org/t/*****/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda#fc050366dd0b8313eb797ed1ffef3a29
https://conda.anaconda.org/t/*****/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda#79b5c1440aedc5010f687048d9103628
https://conda.anaconda.org/t/*****/conda-forge/noarch/prompt-toolkit-3.0.50-pyha770c72_0.conda#7d823138f550b14ecae927a5ff3286de
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyfiglet-0.8.post1-py_0.tar.bz2#e22d3c090f24856764e9d70e76fa3a5f
https://conda.anaconda.org/t/*****/conda-forge/noarch/pylibiio-0.26-py_1.conda#3be73c72b1383b1f0e9690333780d6cd
https://conda.anaconda.org/t/*****/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda#e2fd202833c4a981ce8a65974fe4abd1
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda#5ba79d7c71f03c678c8ead841f347d6e
https://conda.anaconda.org/t/*****/conda-forge/noarch/pywin32-on-windows-0.1.0-pyh07e9846_2.tar.bz2#91733394059b880d9cc0d010c20abda0
https://conda.anaconda.org/t/*****/conda-forge/win-64/pyzmq-26.3.0-py312hd7027bb_0.conda#5795400c7af6fcc8dc30b72e77e52dca
https://conda.anaconda.org/t/*****/conda-forge/noarch/qtpy-2.4.3-pyhd8ed1ab_0.conda#c9ca35b6fb8fa9af418625192c118567
https://conda.anaconda.org/t/*****/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda#9140f1c09dd5489549c6a33931b943c7
https://conda.anaconda.org/t/*****/conda-forge/win-64/ruamel.yaml-0.18.10-py312h4389bb4_0.conda#a5d15fd8ca166ab55225e6cfa8cb51f0
https://conda.anaconda.org/t/*****/conda-forge/win-64/sdl-1.2.68-hecf2515_1.conda#b00c96684203b2284f28f0f6ed3d787b
https://conda.anaconda.org/t/*****/conda-forge/win-64/sip-6.7.12-py312h53d5487_0.conda#a5d3d1363d6d0b4827d6b940414a5b76
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-module-airspy-0.2.0-h23704b7_0.tar.bz2#438df427a47086858b8e020ae4cb5500
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-module-airspyhf-0.2.0-h23704b7_0.tar.bz2#a6681b932193fa3964d97d7b6fbe3a30
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-module-bladerf-0.4.1-h23704b7_0.tar.bz2#10b366f22dabe8490fc99b6ec409e8de
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-module-hackrf-0.3.4-h23704b7_0.tar.bz2#b522ddc5d54a9eb3a04d8799b866d5f9
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-module-lms7-23.11.0-hdfb3ff0_1.conda#4bd75dd8ff1985ddc46d11a8461c0284
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-module-netsdr-0.2.0-h78c1c11_1.conda#a79b341b5498b2be57cee5b04d7b27e9
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-module-redpitaya-0.1.1-h78c1c11_0.conda#8dcf7401d0b5ddab652aeb6f504fcafb
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-module-remote-0.5.2-h23704b7_2.tar.bz2#d591decb33cd0c3ad25aa0e3b207df89
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-module-rtlsdr-0.3.3-h78c1c11_2.conda#5b8f9181817e3607de2f92493423ef7a
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-module-volk-converters-0.1.1-h6358f5f_3.conda#7888db07d1f987cf499db54a41dd94ab
https://conda.anaconda.org/t/*****/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda#b1b505328da7a6b246787df4b5a49fbc
https://conda.anaconda.org/t/*****/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda#9190dd0a23d925f7602f9628b3aed511
https://conda.anaconda.org/t/*****/conda-forge/win-64/watchdog-6.0.0-py312h2e8e312_0.conda#3b401a2d5ecf5da721aa89ffa003cd76
https://conda.anaconda.org/t/*****/conda-forge/noarch/werkzeug-3.1.3-pyhd8ed1ab_1.conda#0a9b57c159d56b508613cc39022c1b9e
https://conda.anaconda.org/t/*****/conda-forge/win-64/wxwidgets-3.2.6-h7c045ee_3.conda#e2f1f46f1e8ba3ccb29765198a692181
https://conda.anaconda.org/t/*****/conda-forge/noarch/zope.event-5.0-pyhd8ed1ab_1.conda#eed0f4438d9f9cc67314ed2926c3cdd3
https://conda.anaconda.org/t/*****/conda-forge/win-64/zope.interface-7.2-py312h4389bb4_0.conda#4d8276e8c9c82ca3aab60cff89c19072
https://conda.anaconda.org/t/*****/conda-forge/win-64/cairo-1.18.4-h5782bbf_0.conda#20e32ced54300292aff690a69c5e7b97
https://conda.anaconda.org/t/*****/conda-forge/win-64/cryptography-44.0.2-py312h9500af3_0.conda#b7f6a9da5fb75ba83c507246f0f95798
https://conda.anaconda.org/t/*****/conda-forge/noarch/flask-3.1.0-pyhd8ed1ab_1.conda#2da939620e3a741f61fc1cb136df66fb
https://conda.anaconda.org/t/*****/conda-forge/win-64/fonttools-4.56.0-py312h31fea79_0.conda#7c08698c54ca6390314c19167c16745e
https://conda.anaconda.org/t/*****/conda-forge/win-64/gevent-24.11.1-py312h4389bb4_0.conda#a9206572441b4acd3a2f075f024a93de
https://conda.anaconda.org/t/*****/conda-forge/win-64/glib-2.82.2-h3d4babf_1.conda#09c75bd4a611937a21e8b87dc0926ec0
https://conda.anaconda.org/t/*****/conda-forge/win-64/hamlib-4.6.2-h9f2b807_2.conda#62468f04a79a9dcc52f1b81ff15fdf14
https://conda.anaconda.org/t/*****/conda-forge/win-64/hamlib-lua-4.6.2-lua54h0e40799_2.conda#6ac73e0ad4b81f3910141450aec1d2c8
https://conda.anaconda.org/t/*****/conda-forge/win-64/hamlib-python-4.6.2-py312h2c12667_2.conda#d196ea1f0d22f932ed49f569cbba6ec2
https://conda.anaconda.org/t/*****/conda-forge/win-64/hamlib-tcl-4.6.2-h80c6058_2.conda#8e01cb67427970e97ee775457f9e1f06
https://conda.anaconda.org/t/*****/conda-forge/noarch/ipython-9.0.2-pyhca29cf9_0.conda#e5ba968166136311157765e8b2ccb9d0
https://conda.anaconda.org/t/*****/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_1.conda#3b519bc21bc80e60b456f1e62962a766
https://conda.anaconda.org/t/*****/conda-forge/noarch/libbladerf-python-2024.05-py_2.conda#1463dfd317f3603a9593cac153527c6e
https://conda.anaconda.org/t/*****/conda-forge/win-64/libiio-0.26-h8f595e5_1.conda#2ef2b98659c345ff034b40d2aa8b2acb
https://conda.anaconda.org/t/*****/conda-forge/win-64/limesuite-23.11.0-h06e44ad_1.conda#b92074de6f3f156ef38cc88162e59439
https://conda.anaconda.org/t/*****/conda-forge/noarch/mako-1.3.9-pyhd8ed1ab_0.conda#422113c902cc5181ccaafbb4b827e492
https://conda.anaconda.org/t/*****/conda-forge/noarch/markdown-3.6-pyhd8ed1ab_0.conda#06e9bebf748a0dea03ecbe1f0e27e909
https://conda.anaconda.org/t/*****/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda#302dff2807f2927b3e9e0d19d60121de
https://conda.anaconda.org/t/*****/conda-forge/win-64/pillow-11.1.0-py312h078707f_0.conda#e609a6cb41a83f7b67c326e51f008a79
https://conda.anaconda.org/t/*****/conda-forge/win-64/pynacl-1.5.0-py312hdb89ce9_4.conda#387a2ee1c47c7458e969129fa741cd64
https://conda.anaconda.org/t/*****/conda-forge/win-64/pyqt5-sip-12.12.2-py312h53d5487_5.conda#dbaa69d84f7da6ac3ec20de2a9529a4b
https://conda.anaconda.org/t/*****/conda-forge/noarch/qdarkstyle-3.2.3-pyhd8ed1ab_1.conda#b5d204064e9c816535282a94f30a40c9
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-module-audio-0.1.1-h2b4c12a_2.conda#7c62dc14495704fc802a7043cf8d4db8
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-module-plutosdr-0.2.2-h18c8474_1.conda#96f9be9f3cb8a83b76e4bc7d7bae38b2
https://conda.anaconda.org/t/*****/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_1.conda#2c7536a04d9c21e1dd05bd4a3b1e3a39
https://conda.anaconda.org/t/*****/conda-forge/win-64/zstandard-0.23.0-py312h4389bb4_1.conda#5028543ffb67666ca4fc3ebd620c97b8
https://conda.anaconda.org/t/*****/conda-forge/noarch/asciimatics-1.15.0-pyhd8ed1ab_1.conda#1e4474adec5bda131d146a587dcf5c79
https://conda.anaconda.org/t/*****/conda-forge/win-64/bladerf-2024.05-h2466b09_2.conda#2277a355cd7ccc5a2d8d14fc8c0c1836
https://conda.anaconda.org/t/*****/conda-forge/noarch/gevent-websocket-0.10.1-py_0.tar.bz2#25b4b60b6ea50368cd90b75b4d00c711
https://conda.anaconda.org/t/*****/conda-forge/win-64/gstreamer-1.24.7-h5006eae_0.conda#58e1df95fdab219039e39033302771e8
https://conda.anaconda.org/t/*****/conda-forge/noarch/hamlib-all-4.6.2-win_2.conda#2cdcbea9c850cfcb664257a1630e5e87
https://conda.anaconda.org/t/*****/conda-forge/win-64/harfbuzz-10.4.0-h9e37d49_0.conda#63185f1b04a3f5ebd728cf1bec2dbedc
https://conda.anaconda.org/t/*****/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda#a3cead9264b331b32fe8f0aabc967522
https://conda.anaconda.org/t/*****/conda-forge/win-64/libblas-3.9.0-31_h641d27c_mkl.conda#d05563c577fe2f37693a554b3f271e8f
https://conda.anaconda.org/t/*****/conda-forge/win-64/libgirepository-1.82.0-h35b7f07_0.conda#14496745e30734f731593994d23b2f3d
https://conda.anaconda.org/t/*****/conda-forge/noarch/paramiko-3.5.1-pyhd8ed1ab_0.conda#4e6bea7eee94bb9d8a599385215719f9
https://conda.anaconda.org/t/*****/conda-forge/win-64/pycairo-1.27.0-py312h487989a_0.conda#98c899838bc7e262cdfc39cfee9a67e8
https://conda.anaconda.org/t/*****/conda-forge/noarch/simple-websocket-1.1.0-pyhd8ed1ab_0.conda#62e0b21f75a81735ddc72e6019d27c16
https://conda.anaconda.org/t/*****/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda#32674f8dbfb7b26410ed580dd3c10a29
https://conda.anaconda.org/t/*****/conda-forge/win-64/gst-plugins-base-1.24.7-hb0a98b8_0.conda#92edfae477856e97db6c2610dea95bb1
https://conda.anaconda.org/t/*****/conda-forge/win-64/libcblas-3.9.0-31_h5e41251_mkl.conda#43c100b94ad2607382b0cf0f3a6b0bf3
https://conda.anaconda.org/t/*****/conda-forge/win-64/liblapack-3.9.0-31_h1aa476e_mkl.conda#40b47ee720a185289760960fc6185750
https://conda.anaconda.org/t/*****/conda-forge/win-64/pango-1.56.2-h286b592_0.conda#7e467ef9f06980521f75a0866a7c8c65
https://conda.anaconda.org/t/*****/conda-forge/win-64/pygobject-3.50.0-py312h901f84b_1.conda#0d916f971e1cb83d8cd54412609b3256
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-engineio-4.11.2-pyhff2d567_0.conda#480833a0855e1d1782d8ec3aa9d91db2
https://conda.anaconda.org/t/*****/conda-forge/win-64/qt6-main-6.8.2-h1259614_0.conda#d4efb20c96c35ad07dc9be1069f1c5f4
https://conda.anaconda.org/t/*****/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda#a9b9368f3701a417eac9edbcae7cb737
https://conda.anaconda.org/t/*****/conda-forge/win-64/gsl-2.7-hdfb1a43_0.tar.bz2#ca5c581b3659140455cf6ae00f6a2ea9
https://conda.anaconda.org/t/*****/conda-forge/win-64/gtk3-3.24.43-h7c34e04_4.conda#e6991e558d4374fa2ba20e1dbfca5874
https://conda.anaconda.org/t/*****/conda-forge/win-64/librsvg-2.58.4-h5ce5fed_2.conda#2ef0210889174157f26990bd3e22deb7
https://conda.anaconda.org/t/*****/conda-forge/win-64/numpy-2.2.3-py312h3150e54_0.conda#27009cd1c1ff60561fdd83fac84e3486
https://conda.anaconda.org/t/*****/conda-forge/win-64/pyside6-6.8.2-py312h2ee7485_1.conda#3181e883064c2c457d4bc04068c73341
https://conda.anaconda.org/t/*****/conda-forge/noarch/python-socketio-5.12.1-pyhd8ed1ab_0.conda#d3ef77c1cebc66115af8109e893480b2
https://conda.anaconda.org/t/*****/conda-forge/win-64/qt-main-5.15.15-h9151539_2.conda#854204dfdee16b3e444a316dd6c8c3fc
https://conda.anaconda.org/t/*****/conda-forge/noarch/adwaita-icon-theme-47.0-win_0.conda#91df3adb601b03b1b17c38ba3156569c
https://conda.anaconda.org/t/*****/conda-forge/win-64/contourpy-1.3.1-py312hd5eb7cc_0.conda#83f7a2ec652abd37a178e35493dfd029
https://conda.anaconda.org/t/*****/conda-forge/noarch/flask-socketio-5.5.1-pyh29332c3_0.conda#03fb6a9594f156a510118a5b4fe64a02
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-pmt-3.10.12.0-py312h1f9cfd4_1.conda#3a2f7a96db550c019ef37585a123d85d
https://conda.anaconda.org/t/*****/conda-forge/win-64/h5py-3.13.0-nompi_py312ha036244_100.conda#fe41c7e14279ad2729752ddf4e83bc42
https://conda.anaconda.org/t/*****/conda-forge/win-64/inspectrum-0.3.1-hfd82842_0.conda#129b641bfade8345d786d9e0a6df1196
https://conda.anaconda.org/t/*****/conda-forge/win-64/numexpr-2.10.2-mkl_py312h5e4250c_0.conda#21a3ca1eb0b4d08d9626a90988b63ae9
https://conda.anaconda.org/t/*****/conda-forge/win-64/pandas-2.2.3-py312h72972c8_1.conda#bf6f01c03e0688523d4b5cff8fe8c977
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyadi-iio-0.0.19-pyhd8ed1ab_0.conda#aca3bc166b666f8951a3f8b41f0d05be
https://conda.anaconda.org/t/*****/conda-forge/win-64/pyqt-5.15.9-py312he09f080_5.conda#fb0861092c40e5d054e984abd88e5ea8
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyqtgraph-0.13.7-pyhd8ed1ab_1.conda#569357b4d0b4565c57698a6e2dade74e
https://conda.anaconda.org/t/*****/conda-forge/win-64/qwt-6.3.0-h9417a65_0.conda#582871afa5be8855196265f6f599cc0c
https://conda.anaconda.org/t/*****/conda-forge/win-64/scipy-1.15.2-py312h451d5c4_0.conda#50632c72cc92ae3ebb615cb496bbf946
https://conda.anaconda.org/t/*****/conda-forge/win-64/uhd-4.8.0.0-py312h80b3061_0.conda#fc31c3fbb1612e41d38249d9b148ff0f
https://conda.anaconda.org/t/*****/conda-forge/win-64/digital_rf-2.6.11-py312h4ae2cae_0.conda#a0fa1459303d71ee5d1bfd39384f64c4
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-core-3.10.12.0-py312h509acc3_1.conda#b158473a3d47e9f440183ddbdf0505e5
https://conda.anaconda.org/t/*****/conda-forge/win-64/matplotlib-base-3.10.1-py312h90004f6_0.conda#0b2717dde63e94ca39149f4527f934bb
https://conda.anaconda.org/t/*****/conda-forge/win-64/soapysdr-module-uhd-0.4.1-h241d428_14.conda#5f6b34c7a9ca4a59c5aef1e4d76103cf
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-adsb-0.0.0.20250304.dev%2Bg9645757-win_py_1.conda#5d58cbeb005395a8b71cf41512aab57a
https://conda.anaconda.org/t/*****/ryanvolz/win-64/gnuradio-dect2-0.0.0.20250304.dev%2Bg27a3d6-np20py312h9258957_1.conda#89ba79e0d815b0d81847ebf932819d09
https://conda.anaconda.org/t/*****/ryanvolz/win-64/gnuradio-filerepeater-0.0.0.20250304.dev%2Bgec6b386-np20py312h7ccdc22_2.conda#70052a88348654fd6538a2826e06b92d
https://conda.anaconda.org/t/*****/ryanvolz/win-64/gnuradio-foo-0.0.0.20250304.dev%2Bg9e0e2-np20py312h5493229_1.conda#a0a6fa66c7d7811d91884b6f2aa0e6b5
https://conda.anaconda.org/t/*****/ryanvolz/win-64/gnuradio-fosphor-0.0.0.20250304.dev%2Bg85a0b8f-np20py312h882ae0e_1.conda#cdfa6a6b480be5699493001bb9aaf942
https://conda.anaconda.org/t/*****/ryanvolz/noarch/gnuradio-gpredict-doppler-0.0.0.20250303.dev%2Bg9473cbf-win_py_1.conda#262cb722531fd3b51d889cc461e5bb59
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-grc-3.10.12.0-py312h8dc5eaa_1.conda#9e9d57b4da346a18459d2962a5478a25
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-iio-3.10.12.0-py312hb16bde5_1.conda#6a52f28eee3c9175d8e1ae84fe514891
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-iqbalance-0.38.2-py312h8eec19f_7.conda#0964f6abc2328408d5eab0e0cc30bf4b
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-iridium-1%211.0.0-py312hb011683_16.conda#092cad4bd40c94d9c972eacf4fbb9add
https://conda.anaconda.org/t/*****/ryanvolz/win-64/gnuradio-leo-1.0.0.post20250214%2Bg8f62b92-np20py312h2db4f98_2.conda#7b3ce2f4137b3a8a1261fcf7440fd278
https://conda.anaconda.org/t/*****/ryanvolz/win-64/gnuradio-lora_sdr-0.0.0.20250305.dev%2Bga8143cb-np20py312h7473803_0.conda#fe3caa787e4d9fd33120d6da6a427bdc
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-m2k-1.0.0-py312h7d4c3bc_13.conda#bf3345597108cc59a87afe839620bff6
https://conda.anaconda.org/t/*****/ryanvolz/win-64/gnuradio-paint-0.0.0.20250303.dev%2Bgfb4f7b6-np20py312h7473803_2.conda#b26c90da15627d38d2d82ff720a365af
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-qtgui-3.10.12.0-py312h8031a72_1.conda#42e665fd6c2ff1524496cd3776a5b6e0
https://conda.anaconda.org/t/*****/ryanvolz/win-64/gnuradio-radar-0.0.0.20250220.dev%2Bg92adce2-np20py312h8a59db7_1.conda#43c7b3600db23dd2941e8d8bd30c9e13
https://conda.anaconda.org/t/*****/ryanvolz/win-64/gnuradio-rds-3.10.post20250305%2Bgc1cba54-np20py312h9258957_0.conda#92f10e7ee6d4b6cda31de78cdfe6485f
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-soapy-3.10.12.0-py312haf4daf0_1.conda#f91363e8fb9ef734cd4777e62ee1f9b5
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-uhd-3.10.12.0-py312h76e1f7e_1.conda#dcf3dbe24b3ebf07c5c006d3d61c04dd
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-video-sdl-3.10.12.0-py312h8dc5eaa_1.conda#60301283c4317901c8c187ad9d60b66b
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-zeromq-3.10.12.0-py312h1617942_1.conda#e07e89f32a91c3150c2cbb90c8c6c9b6
https://conda.anaconda.org/t/*****/conda-forge/win-64/matplotlib-3.10.1-py312h2e8e312_0.conda#c214eaf3ddfad8e216dffd9e5cbf2908
https://conda.anaconda.org/t/*****/conda-forge/noarch/mplcursors-0.6-pyhd8ed1ab_1.conda#fa7bf31f4427e5582f7373d0ba8498f6
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-3.10.12.0-py312h71de32f_1.conda#f10e58e3c0411a9ed440ea82e9d63d15
https://conda.anaconda.org/t/*****/ryanvolz/win-64/gnuradio-ieee802_11-0.0.0.20250304.dev%2Bg761bdd9-np20py312he13c6b4_2.conda#91094223302c7e634c825208e3a1de2e
https://conda.anaconda.org/t/*****/ryanvolz/win-64/gnuradio-ieee802_15_4-3.6.post20250304%2Bg61f4c4a-np20py312h7473803_1.conda#69f3a913e20921e8aba9549c427ac5eb
https://conda.anaconda.org/t/*****/ryanvolz/win-64/gnuradio-inspector-0.0.0.20250303.dev%2Bgad6a69e-np20py312hdc842b3_2.conda#201b932943a54c9c33dc9d4d7900969b
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-osmosdr-0.2.6-py312h2d50b52_7.conda#3c6d60e8b0259971be18cc77ac8dc38f
https://conda.anaconda.org/t/*****/conda-forge/win-64/gnuradio-satellites-5.7.0-py312hbcc94bf_1.conda#346a0f7829d65c78e77ff5412119fb84
https://conda.anaconda.org/t/*****/conda-forge/noarch/pyfda-0.9.2-pyh9208f05_1.conda#a1fdcc4e47c1abb4e0554e2fd02a841c
https://conda.anaconda.org/t/*****/conda-forge/win-64/gqrx-2.17.6-h8ed8190_1.conda#fb1b6e5dfa76781d7233ef308c8c932e

View File

@ -2,65 +2,65 @@ channels:
- conda-forge
- ryanvolz
dependencies:
- airspy=1.0.10=h8ffe710_0
- airspyhf=1.6.8=h8ffe710_0
- bladerf=2023.02=hcfcfb64_0
- codec2=1.0.3=hcd874cb_0
- digital_rf=2.6.9=py311hc9dfcda_0
- ephem=4.1.5=py311ha68e1ae_1
- gnuradio-adsb=0.0.0.20240508.dev+gafd7fabda=win_pyh0207874_0
- gnuradio-dect2=0.0.0.20240502.dev+gb296af2a9=py311h731d093_0
- gnuradio-filerepeater=0.0.0.20240502.dev+gd7bb8846c=py311hc73e630_0
- gnuradio-foo=0.0.0.20240502.dev+gc53538a22=py311hd88f94d_0
- gnuradio-fosphor=0.0.0.20240502.dev+g656fe2f=py311h8c3b4f8_0
- gnuradio-gpredict-doppler=0.0.0.20240508.dev+gb06bc7678=win_pyh761a00b_0
- gnuradio-ieee802_11=0.0.0.20240507.dev+g8c058d4e0=py311hc4e8945_0
- gnuradio-ieee802_15_4=3.6.post133+g932c76f=py311h80bdee0_0
- gnuradio-inspector=0.0.0.20240525.dev+g55acca6=py311h66c5512_0
- gnuradio-iqbalance=0.38.2=py311h612ad4a_3
- gnuradio-iridium=1!1.0.0=py311h12d8b78_11
- gnuradio-leo=1.0.0.post105+12a346f=py311h16091ff_0
- gnuradio-lora_sdr=0.0.0.20240508.dev+g751a65269=py311h16091ff_0
- gnuradio-m2k=1.0.0=py311h7960a3c_9
- gnuradio-osmosdr=0.2.4=py311hcfe3240_16
- gnuradio-paint=0.0.0.20240508.dev+g82696a2=py311h16091ff_0
- gnuradio-radar=0.0.0.20240525.dev+gc59350d=py311h94e600c_0
- gnuradio-rds=3.10.post22+g2134008=py311haee66f7_0
- gnuradio-satellites=5.5.0=py311he9fa361_2
- gnuradio=3.10.10.0=py311h6faf1ab_6
- gqrx=2.17.5=h30ace0d_4
- hackrf=2024.02.1=h9647d90_0
- hamlib-all=4.5.5=win_3
- airspy=1.0.10=h2466b09_1
- airspyhf=1.6.8=h2466b09_1
- bladerf=2024.05=h2466b09_2
- codec2=1.2.0=hb66ff0d_3
- digital_rf=2.6.11=py312h4ae2cae_0
- ephem=4.2=py312h4389bb4_0
- gnuradio-adsb=0.0.0.20250304.dev+g9645757=win_py_1
- gnuradio-dect2=0.0.0.20250304.dev+g27a3d6=np20py312h9258957_1
- gnuradio-filerepeater=0.0.0.20250304.dev+gec6b386=np20py312h7ccdc22_2
- gnuradio-foo=0.0.0.20250304.dev+g9e0e2=np20py312h5493229_1
- gnuradio-fosphor=0.0.0.20250304.dev+g85a0b8f=np20py312h882ae0e_1
- gnuradio-gpredict-doppler=0.0.0.20250303.dev+g9473cbf=win_py_1
- gnuradio-ieee802_11=0.0.0.20250304.dev+g761bdd9=np20py312he13c6b4_2
- gnuradio-ieee802_15_4=3.6.post20250304+g61f4c4a=np20py312h7473803_1
- gnuradio-inspector=0.0.0.20250303.dev+gad6a69e=np20py312hdc842b3_2
- gnuradio-iqbalance=0.38.2=py312h8eec19f_7
- gnuradio-iridium=1!1.0.0=py312hb011683_16
- gnuradio-leo=1.0.0.post20250214+g8f62b92=np20py312h2db4f98_2
- gnuradio-lora_sdr=0.0.0.20250305.dev+ga8143cb=np20py312h7473803_0
- gnuradio-m2k=1.0.0=py312h7d4c3bc_13
- gnuradio-osmosdr=0.2.6=py312h2d50b52_7
- gnuradio-paint=0.0.0.20250303.dev+gfb4f7b6=np20py312h7473803_2
- gnuradio-radar=0.0.0.20250220.dev+g92adce2=np20py312h8a59db7_1
- gnuradio-rds=3.10.post20250305+gc1cba54=np20py312h9258957_0
- gnuradio-satellites=5.7.0=py312hbcc94bf_1
- gnuradio=3.10.12.0=py312h71de32f_1
- gqrx=2.17.6=h8ed8190_1
- hackrf=2024.02.1=hc14e81b_1
- hamlib-all=4.6.2=win_2
- inspectrum=0.3.1=hfd82842_0
- ipython=8.24.0=pyh7428d3b_0
- libiio=0.25=h57928b3_1
- libm2k=0.8.0=py311h256898b_0
- limesuite=23.11.0=hdee86e2_0
- m17-cxx-demod=2.3.3=hdfbca9c_3
- matplotlib=3.8.4=py311h1ea47a8_2
- mirisdr=2.0.0=hcfcfb64_0
- numpy=1.26.4=py311h0b4df5a_0
- pandas=2.2.2=py311hcf9f919_1
- pyadi-iio=0.0.16=pyhd8ed1ab_0
- pyfda=0.8.4=pyh9208f05_0
- python=3.11.9=h631f459_0_cpython
- rtl-sdr=2.0.1=hcfcfb64_0
- scipy=1.13.1=py311hd4686c6_0
- ipython=9.0.2=pyhca29cf9_0
- libiio=0.26=h8f595e5_1
- libm2k=0.9.0=py312h87514d0_1
- limesuite=23.11.0=h06e44ad_1
- m17-cxx-demod=2.3.3=h01e1179_5
- matplotlib=3.10.1=py312h2e8e312_0
- mirisdr=2.0.0=h2466b09_1
- numpy=2.2.3=py312h3150e54_0
- pandas=2.2.3=py312h72972c8_1
- pyadi-iio=0.0.19=pyhd8ed1ab_0
- pyfda=0.9.2=pyh9208f05_1
- python=3.12.9=h3f84c4b_1_cpython
- rtl-sdr=2.0.2=h2466b09_3
- scipy=1.15.2=py312h451d5c4_0
- soapysdr-module-airspy=0.2.0=h23704b7_0
- soapysdr-module-airspyhf=0.2.0=h23704b7_0
- soapysdr-module-audio=0.1.1=h78c1c11_1
- soapysdr-module-audio=0.1.1=h2b4c12a_2
- soapysdr-module-bladerf=0.4.1=h23704b7_0
- soapysdr-module-hackrf=0.3.4=h23704b7_0
- soapysdr-module-lms7=23.11.0=h83e77cb_0
- soapysdr-module-lms7=23.11.0=hdfb3ff0_1
- soapysdr-module-netsdr=0.2.0=h78c1c11_1
- soapysdr-module-plutosdr=0.2.2=hfc7d00b_0
- soapysdr-module-plutosdr=0.2.2=h18c8474_1
- soapysdr-module-redpitaya=0.1.1=h78c1c11_0
- soapysdr-module-remote=0.5.2=h23704b7_2
- soapysdr-module-rtlsdr=0.3.3=h78c1c11_2
- soapysdr-module-uhd=0.4.1=h497d21a_10
- soapysdr-module-volk-converters=0.1.1=h4df33ff_2
- soapysdr=0.8.1=py311h005e61a_4
- uhd=4.6.0.0=py311h0c75be5_0
- soapysdr-module-uhd=0.4.1=h241d428_14
- soapysdr-module-volk-converters=0.1.1=h6358f5f_3
- soapysdr=0.8.1=py312hd5eb7cc_5
- uhd=4.8.0.0=py312h80b3061_0
name: radioconda
platform: win-64
variables:
@ -68,4 +68,4 @@ variables:
GR_PREFIX: ''
UHD_PKG_PATH: ''
VOLK_PREFIX: ''
version: 2024.05.29
version: 2025.03.14

View File

@ -16,357 +16,365 @@ nsis_template: main.nsi.tmpl
post_install: post_install.bat
register_python_default: false
specs:
- adwaita-icon-theme=46.0=win_0
- airspy=1.0.10=h8ffe710_0
- airspyhf=1.6.8=h8ffe710_0
- appdirs=1.4.4=pyh9f0ad1d_0
- archspec=0.2.3=pyhd8ed1ab_0
- asciimatics=1.15.0=pyhd8ed1ab_0
- asttokens=2.4.1=pyhd8ed1ab_0
- _openmp_mutex=4.5=2_gnu
- adwaita-icon-theme=47.0=win_0
- airspy=1.0.10=h2466b09_1
- airspyhf=1.6.8=h2466b09_1
- appdirs=1.4.4=pyhd8ed1ab_1
- archspec=0.2.5=pyhd8ed1ab_0
- asciimatics=1.15.0=pyhd8ed1ab_1
- asttokens=3.0.0=pyhd8ed1ab_1
- atk-1.0=2.38.0=hb44c4ce_2
- attrs=23.2.0=pyh71513ae_0
- bcrypt=4.1.3=py311h533ab2d_0
- bidict=0.23.1=pyhd8ed1ab_0
- bladerf=2023.02=hcfcfb64_0
- blinker=1.8.2=pyhd8ed1ab_0
- boltons=24.0.0=pyhd8ed1ab_0
- brotli-bin=1.1.0=hcfcfb64_1
- brotli-python=1.1.0=py311h12c1d0e_1
- brotli=1.1.0=hcfcfb64_1
- bzip2=1.0.8=hcfcfb64_5
- ca-certificates=2024.2.2=h56e8100_0
- attrs=25.3.0=pyh71513ae_0
- bcrypt=4.3.0=py312h2615798_0
- bidict=0.23.1=pyhd8ed1ab_1
- bladerf=2024.05=h2466b09_2
- blinker=1.9.0=pyhff2d567_0
- boltons=24.0.0=pyhd8ed1ab_1
- brotli-bin=1.1.0=h2466b09_2
- brotli-python=1.1.0=py312h275cf98_2
- brotli=1.1.0=h2466b09_2
- bzip2=1.0.8=h2466b09_7
- ca-certificates=2025.1.31=h56e8100_0
- cached-property=1.5.2=hd8ed1ab_1
- cached_property=1.5.2=pyha770c72_1
- cairo=1.18.0=h1fef639_0
- certifi=2024.2.2=pyhd8ed1ab_0
- cffi=1.16.0=py311ha68e1ae_0
- charset-normalizer=3.3.2=pyhd8ed1ab_0
- click-plugins=1.1.1=py_0
- click=8.1.7=win_pyh7428d3b_0
- codec2=1.0.3=hcd874cb_0
- colorama=0.4.6=pyhd8ed1ab_0
- conda-libmamba-solver=24.1.0=pyhd8ed1ab_0
- conda-package-handling=2.2.0=pyh38be061_0
- conda-package-streaming=0.9.0=pyhd8ed1ab_0
- conda=24.5.0=py311h1ea47a8_0
- cairo=1.18.4=h5782bbf_0
- certifi=2025.1.31=pyhd8ed1ab_0
- cffi=1.17.1=py312h4389bb4_0
- charset-normalizer=3.4.1=pyhd8ed1ab_0
- click=8.1.8=pyh7428d3b_0
- codec2=1.2.0=hb66ff0d_3
- colorama=0.4.6=pyhd8ed1ab_1
- conda-libmamba-solver=24.9.0=pyhd8ed1ab_0
- conda-package-handling=2.4.0=pyh7900ff3_2
- conda-package-streaming=0.11.0=pyhd8ed1ab_1
- conda=24.11.3=py312h2e8e312_0
- construct=2.10.70=pyhd8ed1ab_0
- contourpy=1.2.1=py311h005e61a_0
- cryptography=42.0.7=py311hfd75b31_0
- cycler=0.12.1=pyhd8ed1ab_0
- decorator=5.1.1=pyhd8ed1ab_0
- digital_rf=2.6.9=py311hc9dfcda_0
- distro=1.9.0=pyhd8ed1ab_0
- docutils=0.21.2=pyhd8ed1ab_0
- ephem=4.1.5=py311ha68e1ae_1
- contourpy=1.3.1=py312hd5eb7cc_0
- cryptography=44.0.2=py312h9500af3_0
- cycler=0.12.1=pyhd8ed1ab_1
- decorator=5.2.1=pyhd8ed1ab_0
- digital_rf=2.6.11=py312h4ae2cae_0
- distro=1.9.0=pyhd8ed1ab_1
- docutils=0.21.2=pyhd8ed1ab_1
- double-conversion=3.3.1=he0c23c2_0
- ephem=4.2=py312h4389bb4_0
- epoxy=1.5.10=h8d14728_1
- exceptiongroup=1.2.0=pyhd8ed1ab_2
- executing=2.0.1=pyhd8ed1ab_0
- expat=2.6.2=h63175ca_0
- fftw=3.3.10=nompi_h38027f0_108
- flask-socketio=5.3.6=pyhd8ed1ab_0
- flask=3.0.3=pyhd8ed1ab_0
- fmt=10.2.1=h181d51b_0
- exceptiongroup=1.2.2=pyhd8ed1ab_1
- executing=2.1.0=pyhd8ed1ab_1
- fftw=3.3.10=nompi_h89e6982_110
- flask-socketio=5.5.1=pyh29332c3_0
- flask=3.1.0=pyhd8ed1ab_1
- fmt=11.0.2=h7f575de_0
- font-ttf-dejavu-sans-mono=2.37=hab24e00_0
- font-ttf-inconsolata=3.000=h77eed37_0
- font-ttf-source-code-pro=2.038=h77eed37_0
- font-ttf-ubuntu=0.83=h77eed37_2
- fontconfig=2.14.2=hbde0cde_0
- font-ttf-ubuntu=0.83=h77eed37_3
- fontconfig=2.15.0=h765892d_1
- fonts-conda-ecosystem=1=0
- fonts-conda-forge=1=0
- fonttools=4.52.4=py311he736701_0
- freetype=2.12.1=hdaf720e_2
- fonttools=4.56.0=py312h31fea79_0
- freetype=2.13.3=h0b5ce68_0
- fribidi=1.0.10=h8d14728_0
- frozendict=2.4.4=py311he736701_0
- frozendict=2.4.6=py312h4389bb4_0
- fs=2.4.16=pyhd8ed1ab_0
- future=1.0.0=pyhd8ed1ab_0
- future=1.0.0=pyhd8ed1ab_2
- gdk-pixbuf=2.42.12=hed59a49_0
- gevent-websocket=0.10.1=py_0
- gevent=23.9.0.post1=py311ha68e1ae_1
- gevent=24.11.1=py312h4389bb4_0
- glew=2.1.0=h39d44d4_2
- glfw=3.4=hcfcfb64_0
- glib-tools=2.80.2=h2f9d560_0
- glib=2.80.2=h0df6a38_0
- gnuradio-adsb=0.0.0.20240508.dev+gafd7fabda=win_pyh0207874_0
- gnuradio-core=3.10.10.0=py311ha8a86db_6
- gnuradio-dect2=0.0.0.20240502.dev+gb296af2a9=py311h731d093_0
- gnuradio-filerepeater=0.0.0.20240502.dev+gd7bb8846c=py311hc73e630_0
- gnuradio-foo=0.0.0.20240502.dev+gc53538a22=py311hd88f94d_0
- gnuradio-fosphor=0.0.0.20240502.dev+g656fe2f=py311h8c3b4f8_0
- gnuradio-gpredict-doppler=0.0.0.20240508.dev+gb06bc7678=win_pyh761a00b_0
- gnuradio-grc=3.10.10.0=py311h329eb19_6
- gnuradio-ieee802_11=0.0.0.20240507.dev+g8c058d4e0=py311hc4e8945_0
- gnuradio-ieee802_15_4=3.6.post133+g932c76f=py311h80bdee0_0
- gnuradio-iio=3.10.10.0=py311haeac71a_6
- gnuradio-inspector=0.0.0.20240525.dev+g55acca6=py311h66c5512_0
- gnuradio-iqbalance=0.38.2=py311h612ad4a_3
- gnuradio-iridium=1!1.0.0=py311h12d8b78_11
- gnuradio-leo-data=1.0.0.post105+12a346f=win_0
- gnuradio-leo=1.0.0.post105+12a346f=py311h16091ff_0
- gnuradio-lora_sdr=0.0.0.20240508.dev+g751a65269=py311h16091ff_0
- gnuradio-m2k=1.0.0=py311h7960a3c_9
- gnuradio-osmosdr=0.2.4=py311hcfe3240_16
- gnuradio-paint=0.0.0.20240508.dev+g82696a2=py311h16091ff_0
- gnuradio-pmt=3.10.10.0=py311h671c198_6
- gnuradio-qtgui=3.10.10.0=py311h101ccf3_6
- gnuradio-radar=0.0.0.20240525.dev+gc59350d=py311h94e600c_0
- gnuradio-rds=3.10.post22+g2134008=py311haee66f7_0
- gnuradio-satellites=5.5.0=py311he9fa361_2
- gnuradio-soapy=3.10.10.0=py311hc5bda4f_6
- gnuradio-uhd=3.10.10.0=py311ha2ea127_6
- gnuradio-video-sdl=3.10.10.0=py311h329eb19_6
- gnuradio-zeromq=3.10.10.0=py311h69341d5_6
- gnuradio=3.10.10.0=py311h6faf1ab_6
- gqrx=2.17.5=h30ace0d_4
- glib-tools=2.82.2=h4394cf3_1
- glib=2.82.2=h3d4babf_1
- gnuradio-adsb=0.0.0.20250304.dev+g9645757=win_py_1
- gnuradio-core=3.10.12.0=py312h509acc3_1
- gnuradio-dect2=0.0.0.20250304.dev+g27a3d6=np20py312h9258957_1
- gnuradio-filerepeater=0.0.0.20250304.dev+gec6b386=np20py312h7ccdc22_2
- gnuradio-foo=0.0.0.20250304.dev+g9e0e2=np20py312h5493229_1
- gnuradio-fosphor=0.0.0.20250304.dev+g85a0b8f=np20py312h882ae0e_1
- gnuradio-gpredict-doppler=0.0.0.20250303.dev+g9473cbf=win_py_1
- gnuradio-grc=3.10.12.0=py312h8dc5eaa_1
- gnuradio-ieee802_11=0.0.0.20250304.dev+g761bdd9=np20py312he13c6b4_2
- gnuradio-ieee802_15_4=3.6.post20250304+g61f4c4a=np20py312h7473803_1
- gnuradio-iio=3.10.12.0=py312hb16bde5_1
- gnuradio-inspector=0.0.0.20250303.dev+gad6a69e=np20py312hdc842b3_2
- gnuradio-iqbalance=0.38.2=py312h8eec19f_7
- gnuradio-iridium=1!1.0.0=py312hb011683_16
- gnuradio-leo-data=1.0.0.post20250214+g8f62b92=win_2
- gnuradio-leo=1.0.0.post20250214+g8f62b92=np20py312h2db4f98_2
- gnuradio-lora_sdr=0.0.0.20250305.dev+ga8143cb=np20py312h7473803_0
- gnuradio-m2k=1.0.0=py312h7d4c3bc_13
- gnuradio-osmosdr=0.2.6=py312h2d50b52_7
- gnuradio-paint=0.0.0.20250303.dev+gfb4f7b6=np20py312h7473803_2
- gnuradio-pmt=3.10.12.0=py312h1f9cfd4_1
- gnuradio-qtgui=3.10.12.0=py312h8031a72_1
- gnuradio-radar=0.0.0.20250220.dev+g92adce2=np20py312h8a59db7_1
- gnuradio-rds=3.10.post20250305+gc1cba54=np20py312h9258957_0
- gnuradio-satellites=5.7.0=py312hbcc94bf_1
- gnuradio-soapy=3.10.12.0=py312haf4daf0_1
- gnuradio-uhd=3.10.12.0=py312h76e1f7e_1
- gnuradio-video-sdl=3.10.12.0=py312h8dc5eaa_1
- gnuradio-zeromq=3.10.12.0=py312h1617942_1
- gnuradio=3.10.12.0=py312h71de32f_1
- gqrx=2.17.6=h8ed8190_1
- graphite2=1.3.13=h63175ca_1003
- greenlet=3.0.3=py311h12c1d0e_0
- greenlet=3.1.1=py312h275cf98_1
- gsl=2.7=hdfb1a43_0
- gst-plugins-base=1.24.4=hba88be7_0
- gstreamer=1.24.4=h5006eae_0
- gtest=1.14.0=h91493d7_1
- gtk3=3.24.42=h06195f2_0
- h11=0.14.0=pyhd8ed1ab_0
- h5py=3.11.0=nompi_py311h67016bb_101
- hackrf=2024.02.1=h9647d90_0
- hamlib-all=4.5.5=win_3
- hamlib-lua=4.5.5=lua54hcfcfb64_3
- hamlib-python=4.5.5=py311ha68e1ae_3
- hamlib-tcl=4.5.5=h7534570_3
- hamlib=4.5.5=h3df6e99_3
- harfbuzz=8.5.0=h81778c3_0
- hdf5=1.14.3=nompi_h2b43c12_102
- gst-plugins-base=1.24.7=hb0a98b8_0
- gstreamer=1.24.7=h5006eae_0
- gtest=1.15.2=hc790b64_0
- gtk3=3.24.43=h7c34e04_4
- h11=0.14.0=pyhd8ed1ab_1
- h2=4.2.0=pyhd8ed1ab_0
- h5py=3.13.0=nompi_py312ha036244_100
- hackrf=2024.02.1=hc14e81b_1
- hamlib-all=4.6.2=win_2
- hamlib-lua=4.6.2=lua54h0e40799_2
- hamlib-python=4.6.2=py312h2c12667_2
- hamlib-tcl=4.6.2=h80c6058_2
- hamlib=4.6.2=h9f2b807_2
- harfbuzz=10.4.0=h9e37d49_0
- hdf5=1.14.3=nompi_hb2c4d47_109
- hicolor-icon-theme=0.17=h57928b3_2
- icu=73.2=h63175ca_0
- idna=3.7=pyhd8ed1ab_0
- importlib-metadata=7.1.0=pyha770c72_0
- importlib_resources=6.4.0=pyhd8ed1ab_0
- hpack=4.1.0=pyhd8ed1ab_0
- hyperframe=6.1.0=pyhd8ed1ab_0
- icu=75.1=he0c23c2_0
- idna=3.10=pyhd8ed1ab_1
- importlib-metadata=8.6.1=pyha770c72_0
- importlib_resources=6.5.2=pyhd8ed1ab_0
- inspectrum=0.3.1=hfd82842_0
- ipython=8.24.0=pyh7428d3b_0
- itsdangerous=2.2.0=pyhd8ed1ab_0
- jedi=0.19.1=pyhd8ed1ab_0
- jinja2=3.1.4=pyhd8ed1ab_0
- jsonpatch=1.33=pyhd8ed1ab_0
- jsonpointer=2.4=py311h1ea47a8_3
- jsonschema-specifications=2023.12.1=pyhd8ed1ab_0
- jsonschema=4.22.0=pyhd8ed1ab_0
- khronos-opencl-icd-loader=2023.04.17=h64bf75a_0
- kiwisolver=1.4.5=py311h005e61a_1
- krb5=1.21.2=heb0366b_0
- intel-openmp=2024.2.1=h57928b3_1083
- ipython=9.0.2=pyhca29cf9_0
- ipython_pygments_lexers=1.1.1=pyhd8ed1ab_0
- itsdangerous=2.2.0=pyhd8ed1ab_1
- jedi=0.19.2=pyhd8ed1ab_1
- jinja2=3.1.6=pyhd8ed1ab_0
- jsonpatch=1.33=pyhd8ed1ab_1
- jsonpointer=3.0.0=py312h2e8e312_1
- jsonschema-specifications=2024.10.1=pyhd8ed1ab_1
- jsonschema=4.23.0=pyhd8ed1ab_1
- khronos-opencl-icd-loader=2024.10.24=h2466b09_1
- kiwisolver=1.4.8=py312hc790b64_0
- krb5=1.21.3=hdf4eb48_0
- lame=3.100=hcfcfb64_1003
- lcms2=2.16=h67d730c_0
- lcms2=2.17=hbcf6048_0
- lerc=4.0.0=h63175ca_0
- libad9361-iio=0.2=hd08dcc8_3
- libad9361-iio-c=0.3=h4e9078e_1
- libaec=1.1.3=h63175ca_0
- libairspy=1.0.10=h8ffe710_0
- libairspyhf=1.6.8=h8ffe710_0
- libarchive=3.7.4=haf234dc_0
- libbladerf-python=2023.02=py_0
- libbladerf2=2023.02=hcfcfb64_0
- libblas=3.9.0=22_win64_openblas
- libboost=1.82.0=h65993cd_6
- libbrotlicommon=1.1.0=hcfcfb64_1
- libbrotlidec=1.1.0=hcfcfb64_1
- libbrotlienc=1.1.0=hcfcfb64_1
- libcblas=3.9.0=22_win64_openblas
- libclang13=18.1.6=default_hf64faad_0
- libcodec2=1.0.3=hcd874cb_0
- libairspy=1.0.10=h2466b09_1
- libairspyhf=1.6.8=h2466b09_1
- libarchive=3.7.7=h979ed78_3
- libbladerf-python=2024.05=py_2
- libbladerf2=2024.05=h2466b09_2
- libblas=3.9.0=31_h641d27c_mkl
- libboost=1.86.0=hb0986bb_3
- libbrotlicommon=1.1.0=h2466b09_2
- libbrotlidec=1.1.0=h2466b09_2
- libbrotlienc=1.1.0=h2466b09_2
- libcblas=3.9.0=31_h5e41251_mkl
- libclang13=19.1.7=default_ha5278ca_1
- libcodec2=1.2.0=hb66ff0d_3
- libcorrect=0.0.0=hcfcfb64_0
- libcurl=8.8.0=hd5e4a3a_0
- libdeflate=1.20=hcfcfb64_0
- libexpat=2.6.2=h63175ca_0
- libffi=3.4.2=h8ffe710_5
- libcurl=8.12.1=h88aaa65_0
- libdeflate=1.23=h9062f6e_0
- libexpat=2.6.4=he0c23c2_0
- libffi=3.4.6=h537db12_0
- libflac=1.4.3=h63175ca_0
- libflang=5.0.0=h6538335_20180525
- libgirepository=1.80.1=h4a5d6e9_0
- libglib=2.80.2=h0df6a38_0
- libhackrf0=2024.02.1=hcfcfb64_0
- libhamlib4=4.5.5=ha1f6986_3
- libiconv=1.17=hcfcfb64_2
- libiio-c=0.25=h90d4e70_1
- libiio=0.25=h57928b3_1
- libintl-devel=0.22.5=h5728263_2
- libintl=0.22.5=h5728263_2
- libgcc=14.2.0=h1383e82_2
- libgirepository=1.82.0=h35b7f07_0
- libglib=2.82.2=h7025463_1
- libgomp=14.2.0=h1383e82_2
- libhackrf0=2024.02.1=h2466b09_1
- libhamlib4=4.6.2=h0e07d3f_2
- libhwloc=2.11.2=default_ha69328c_1001
- libiconv=1.18=h135ad9c_1
- libiio-c=0.26=hb85ab18_1
- libiio=0.26=h8f595e5_1
- libintl-devel=0.22.5=h5728263_3
- libintl=0.22.5=h5728263_3
- libjpeg-turbo=3.0.0=hcfcfb64_1
- liblapack=3.9.0=22_win64_openblas
- liblimesuite=23.11.0=h63175ca_0
- libliquid1=1.6.0=h382ab44_1
- libm2k=0.8.0=py311h256898b_0
- libmamba=1.5.8=h3f09ed1_0
- libmambapy=1.5.8=py311h0317a69_0
- libmirisdr4=2.0.0=hcfcfb64_0
- libogg=1.3.4=h8ffe710_1
- libopenblas=0.3.27=pthreads_hc140b1d_0
- liblapack=3.9.0=31_h1aa476e_mkl
- liblimesuite=23.11.0=he0c23c2_1
- libliquid1=1.6.0=h96e8fb8_2
- liblzma=5.6.4=h2466b09_0
- libm2k=0.9.0=py312h87514d0_1
- libmamba=1.5.12=hc493ae7_0
- libmambapy=1.5.12=py312h510e527_0
- libmirisdr4=2.0.0=h2466b09_1
- libogg=1.3.5=h2466b09_0
- libopus=1.3.1=h8ffe710_1
- libosmodsp0=0.4.0=h857e13b_1
- libpng=1.6.43=h19919ed_0
- librsvg=2.58.0=h172eb2b_1
- libosmodsp0=0.4.0=h857e13b_2
- libpng=1.6.47=had7236b_0
- librsvg=2.58.4=h5ce5fed_2
- librtaudio6=5.2.0=h63175ca_3
- libsndfile=1.2.2=h81429f1_1
- libsodium=1.0.18=h8d14728_1
- libsolv=0.7.29=h0ea2cb4_0
- libsqlite=3.45.3=hcfcfb64_0
- libssh2=1.11.0=h7dfc565_0
- libtiff=4.6.0=hddb2be6_3
- libusb=1.0.27=hcfcfb64_100
- libsodium=1.0.20=hc70643c_0
- libsolv=0.7.30=hbb528cf_0
- libsqlite=3.49.1=h67fdade_1
- libssh2=1.11.1=he619c9f_0
- libstdcxx=14.2.0=h904f734_2
- libtiff=4.7.0=h797046b_3
- libusb=1.0.27=h2466b09_101
- libvorbis=1.3.7=h0e60522_0
- libwebp-base=1.4.0=hcfcfb64_0
- libxcb=1.15=hcd874cb_0
- libxml2=2.12.7=h283a6d9_0
- libwebp-base=1.5.0=h3b0e114_0
- libwinpthread=12.0.0.r4.gg4f2fc60ca=h57928b3_9
- libxcb=1.17.0=h0e4246c_0
- libxml2=2.13.6=he286e8c_0
- libxslt=1.1.39=h3df6e99_0
- libzlib=1.2.13=h2466b09_6
- limesuite=23.11.0=hdee86e2_0
- llvm-meta=5.0.0=0
- libzlib=1.3.1=h2466b09_2
- limesuite=23.11.0=h06e44ad_1
- lua=5.4.6=h2466b09_1
- lxml=5.2.2=py311h12967d8_0
- lz4-c=1.9.4=hcfcfb64_0
- lxml=5.3.1=py312h53bce91_0
- lz4-c=1.10.0=h2466b09_1
- lzo=2.10=hcfcfb64_1001
- m17-cxx-demod=2.3.3=hdfbca9c_3
- m2w64-gcc-libgfortran=5.3.0=6
- m2w64-gcc-libs-core=5.3.0=7
- m2w64-gcc-libs=5.3.0=7
- m2w64-gmp=6.1.0=2
- m2w64-libwinpthread-git=5.0.0.4634.697f757=2
- mako=1.3.5=pyhd8ed1ab_0
- mamba=1.5.8=py311h8cb466b_0
- m17-cxx-demod=2.3.3=h01e1179_5
- mako=1.3.9=pyhd8ed1ab_0
- mamba=1.5.12=py312h5494d5c_0
- markdown=3.6=pyhd8ed1ab_0
- markupsafe=2.1.5=py311ha68e1ae_0
- matplotlib-base=3.8.4=py311h9b31f6e_2
- matplotlib-inline=0.1.7=pyhd8ed1ab_0
- matplotlib=3.8.4=py311h1ea47a8_2
- menuinst=2.1.0=py311hda3d55a_0
- markupsafe=3.0.2=py312h31fea79_1
- matplotlib-base=3.10.1=py312h90004f6_0
- matplotlib-inline=0.1.7=pyhd8ed1ab_1
- matplotlib=3.10.1=py312h2e8e312_0
- menuinst=2.2.0=py312h275cf98_0
- miniforge_console_shortcut=2.0=h57928b3_1
- mirisdr=2.0.0=hcfcfb64_0
- mpg123=1.32.6=h63175ca_0
- mirisdr=2.0.0=h2466b09_1
- mkl=2024.2.2=h66d3029_15
- mpg123=1.32.9=h01009b0_0
- mpir=3.0.0=he025d50_1002
- mplcursors=0.5.3=pyhd8ed1ab_0
- msys2-conda-epoch=20160418=1
- mplcursors=0.6=pyhd8ed1ab_1
- munkres=1.1.4=pyh9f0ad1d_0
- nomkl=1.0=h5ca1d4c_0
- numexpr=2.8.4=py311h0aebda5_101
- numpy=1.26.4=py311h0b4df5a_0
- openjpeg=2.5.2=h3d672ee_0
- openmp=5.0.0=vc14_1
- openssl=3.3.0=h2466b09_3
- packaging=24.0=pyhd8ed1ab_0
- pandas=2.2.2=py311hcf9f919_1
- pango=1.52.2=h07c897b_0
- paramiko=3.4.0=pyhd8ed1ab_0
- parso=0.8.4=pyhd8ed1ab_0
- pcre2=10.43=h17e33f8_0
- pickleshare=0.7.5=py_1003
- pillow=10.3.0=py311h6819b35_0
- pixman=0.43.4=h63175ca_0
- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1
- platformdirs=4.2.2=pyhd8ed1ab_0
- pluggy=1.5.0=pyhd8ed1ab_0
- ply=3.11=pyhd8ed1ab_2
- portaudio=19.6.0=h63175ca_9
- prompt-toolkit=3.0.42=pyha770c72_0
- pthread-stubs=0.4=hcd874cb_1001
- pthreads-win32=2.9.1=hfa6e2cd_3
- pure_eval=0.2.2=pyhd8ed1ab_0
- pyadi-iio=0.0.16=pyhd8ed1ab_0
- numexpr=2.10.2=mkl_py312h5e4250c_0
- numpy=2.2.3=py312h3150e54_0
- opencl-headers=2024.10.24=he0c23c2_0
- openjpeg=2.5.3=h4d64b90_0
- openssl=3.4.1=ha4e3fda_0
- packaging=24.2=pyhd8ed1ab_2
- pandas=2.2.3=py312h72972c8_1
- pango=1.56.2=h286b592_0
- paramiko=3.5.1=pyhd8ed1ab_0
- parso=0.8.4=pyhd8ed1ab_1
- pcre2=10.44=h3d7b363_2
- pickleshare=0.7.5=pyhd8ed1ab_1004
- pillow=11.1.0=py312h078707f_0
- pip=25.0.1=pyh8b19718_0
- pixman=0.44.2=had0cd8c_0
- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_2
- platformdirs=4.3.6=pyhd8ed1ab_1
- pluggy=1.5.0=pyhd8ed1ab_1
- ply=3.11=pyhd8ed1ab_3
- portaudio=19.7.0=he0c23c2_0
- prompt-toolkit=3.0.50=pyha770c72_0
- pthread-stubs=0.4=h0e40799_1002
- pure_eval=0.2.3=pyhd8ed1ab_1
- pyadi-iio=0.0.19=pyhd8ed1ab_0
- pybind11-abi=4=hd8ed1ab_3
- pycairo=1.26.0=py311h99894aa_0
- pycosat=0.6.6=py311ha68e1ae_0
- pycparser=2.22=pyhd8ed1ab_0
- pyfda=0.8.4=pyh9208f05_0
- pycairo=1.27.0=py312h487989a_0
- pycosat=0.6.6=py312h4389bb4_2
- pycparser=2.22=pyh29332c3_1
- pyfda=0.9.2=pyh9208f05_1
- pyfiglet=0.8.post1=py_0
- pygments=2.18.0=pyhd8ed1ab_0
- pygobject=3.48.2=py311h037c6d6_0
- pylibiio=0.25=py_1
- pynacl=1.5.0=py311hd53affc_3
- pyopengl=3.1.6=pyhd8ed1ab_1
- pyparsing=3.1.2=pyhd8ed1ab_0
- pyqt5-sip=12.12.2=py311h12c1d0e_5
- pyqt=5.15.9=py311h125bc19_5
- pyqtgraph=0.13.7=pyhd8ed1ab_0
- pysocks=1.7.1=pyh0701188_6
- python-dateutil=2.9.0=pyhd8ed1ab_0
- python-engineio=4.9.1=pyhd8ed1ab_0
- python-socketio=5.11.2=pyhd8ed1ab_0
- python-tzdata=2024.1=pyhd8ed1ab_0
- python=3.11.9=h631f459_0_cpython
- python_abi=3.11=4_cp311
- pygments=2.19.1=pyhd8ed1ab_0
- pygobject=3.50.0=py312h901f84b_1
- pylibiio=0.26=py_1
- pynacl=1.5.0=py312hdb89ce9_4
- pyopengl=3.1.7=pyhd8ed1ab_0
- pyparsing=3.2.1=pyhd8ed1ab_0
- pyqt5-sip=12.12.2=py312h53d5487_5
- pyqt=5.15.9=py312he09f080_5
- pyqtgraph=0.13.7=pyhd8ed1ab_1
- pyside6=6.8.2=py312h2ee7485_1
- pysocks=1.7.1=pyh09c184e_7
- python-dateutil=2.9.0.post0=pyhff2d567_1
- python-engineio=4.11.2=pyhff2d567_0
- python-socketio=5.12.1=pyhd8ed1ab_0
- python-tzdata=2025.1=pyhd8ed1ab_0
- python=3.12.9=h3f84c4b_1_cpython
- python_abi=3.12=5_cp312
- pytz=2024.1=pyhd8ed1ab_0
- pywin32-on-windows=0.1.0=pyh07e9846_2
- pywin32=306=py311h12c1d0e_2
- pyyaml=6.0.1=py311ha68e1ae_1
- pyzmq=26.0.3=py311h484c95c_0
- qdarkstyle=3.2.3=pyhd8ed1ab_0
- qt-main=5.15.8=hcef0176_21
- qtpy=2.4.1=pyhd8ed1ab_0
- pywin32=307=py312h275cf98_3
- pyyaml=6.0.2=py312h31fea79_2
- pyzmq=26.3.0=py312hd7027bb_0
- qdarkstyle=3.2.3=pyhd8ed1ab_1
- qhull=2020.2=hc790b64_5
- qt-main=5.15.15=h9151539_2
- qt6-main=6.8.2=h1259614_0
- qtpy=2.4.3=pyhd8ed1ab_0
- qwt=6.3.0=h9417a65_0
- referencing=0.35.1=pyhd8ed1ab_0
- reproc-cpp=14.2.4.post0=h63175ca_1
- reproc=14.2.4.post0=hcfcfb64_1
- requests=2.32.2=pyhd8ed1ab_0
- rpds-py=0.18.1=py311h533ab2d_0
- rtl-sdr=2.0.1=hcfcfb64_0
- ruamel.yaml.clib=0.2.8=py311ha68e1ae_0
- ruamel.yaml=0.18.6=py311ha68e1ae_0
- scipy=1.13.1=py311hd4686c6_0
- sdl2=2.30.2=h63175ca_0
- sdl=1.2.68=h21dd15a_0
- setuptools=70.0.0=pyhd8ed1ab_0
- simple-websocket=1.0.0=pyhd8ed1ab_1
- sip=6.7.12=py311h12c1d0e_0
- six=1.16.0=pyh6c4a22f_0
- referencing=0.36.2=pyh29332c3_0
- reproc-cpp=14.2.5.post0=he0c23c2_0
- reproc=14.2.5.post0=h2466b09_0
- requests=2.32.3=pyhd8ed1ab_1
- rpds-py=0.23.1=py312hfe1d9c4_0
- rtl-sdr=2.0.2=h2466b09_3
- ruamel.yaml.clib=0.2.8=py312h4389bb4_1
- ruamel.yaml=0.18.10=py312h4389bb4_0
- scipy=1.15.2=py312h451d5c4_0
- sdl2=2.32.50=hecf2515_1
- sdl3=3.2.8=he0c23c2_0
- sdl=1.2.68=hecf2515_1
- setuptools=75.8.2=pyhff2d567_0
- simple-websocket=1.1.0=pyhd8ed1ab_0
- sip=6.7.12=py312h53d5487_0
- six=1.17.0=pyhd8ed1ab_0
- soapysdr-module-airspy=0.2.0=h23704b7_0
- soapysdr-module-airspyhf=0.2.0=h23704b7_0
- soapysdr-module-audio=0.1.1=h78c1c11_1
- soapysdr-module-audio=0.1.1=h2b4c12a_2
- soapysdr-module-bladerf=0.4.1=h23704b7_0
- soapysdr-module-hackrf=0.3.4=h23704b7_0
- soapysdr-module-lms7=23.11.0=h83e77cb_0
- soapysdr-module-lms7=23.11.0=hdfb3ff0_1
- soapysdr-module-netsdr=0.2.0=h78c1c11_1
- soapysdr-module-plutosdr=0.2.2=hfc7d00b_0
- soapysdr-module-plutosdr=0.2.2=h18c8474_1
- soapysdr-module-redpitaya=0.1.1=h78c1c11_0
- soapysdr-module-remote=0.5.2=h23704b7_2
- soapysdr-module-rtlsdr=0.3.3=h78c1c11_2
- soapysdr-module-uhd=0.4.1=h497d21a_10
- soapysdr-module-volk-converters=0.1.1=h4df33ff_2
- soapysdr=0.8.1=py311h005e61a_4
- spdlog=1.12.0=h64d2f7d_2
- stack_data=0.6.2=pyhd8ed1ab_0
- soapysdr-module-uhd=0.4.1=h241d428_14
- soapysdr-module-volk-converters=0.1.1=h6358f5f_3
- soapysdr=0.8.1=py312hd5eb7cc_5
- spdlog=1.15.1=hf4138ee_0
- stack_data=0.6.3=pyhd8ed1ab_1
- tbb=2021.13.0=h62715c5_1
- tk=8.6.13=h5226925_1
- toml=0.10.2=pyhd8ed1ab_0
- tomli=2.0.1=pyhd8ed1ab_0
- tornado=6.4=py311ha68e1ae_0
- tqdm=4.66.4=pyhd8ed1ab_0
- traitlets=5.14.3=pyhd8ed1ab_0
- truststore=0.8.0=pyhd8ed1ab_0
- typing_extensions=4.11.0=pyha770c72_0
- tzdata=2024a=h0c530f3_0
- ucrt=10.0.22621.0=h57928b3_0
- uhd=4.6.0.0=py311h0c75be5_0
- urllib3=2.2.1=pyhd8ed1ab_0
- vc14_runtime=14.38.33135=h835141b_20
- vc=14.3=ha32ba9b_20
- volk=3.1.2=h63175ca_0
- vs2015_runtime=14.38.33135=h22015db_20
- watchdog=4.0.1=py311h1ea47a8_0
- wcwidth=0.2.13=pyhd8ed1ab_0
- websocket-client=1.8.0=pyhd8ed1ab_0
- werkzeug=3.0.3=pyhd8ed1ab_0
- win_inet_pton=1.1.0=pyhd8ed1ab_6
- wsproto=1.2.0=pyhd8ed1ab_0
- wxwidgets=3.2.5=h7907063_0
- xorg-libxau=1.0.11=hcd874cb_0
- xorg-libxdmcp=1.1.3=hcd874cb_0
- xz=5.2.6=h8d14728_0
- toml=0.10.2=pyhd8ed1ab_1
- tomli=2.2.1=pyhd8ed1ab_1
- tornado=6.4.2=py312h4389bb4_0
- tqdm=4.67.1=pyhd8ed1ab_1
- traitlets=5.14.3=pyhd8ed1ab_1
- truststore=0.10.1=pyh29332c3_0
- typing_extensions=4.12.2=pyha770c72_1
- tzdata=2025a=h78e105d_0
- ucrt=10.0.22621.0=h57928b3_1
- uhd=4.8.0.0=py312h80b3061_0
- unicodedata2=16.0.0=py312h4389bb4_0
- urllib3=2.3.0=pyhd8ed1ab_0
- vc14_runtime=14.42.34438=hfd919c2_24
- vc=14.3=hbf610ac_24
- volk=3.2.0=hb838788_0
- vs2015_runtime=14.42.34438=h7142326_24
- watchdog=6.0.0=py312h2e8e312_0
- wcwidth=0.2.13=pyhd8ed1ab_1
- websocket-client=1.8.0=pyhd8ed1ab_1
- werkzeug=3.1.3=pyhd8ed1ab_1
- wheel=0.45.1=pyhd8ed1ab_1
- win_inet_pton=1.1.0=pyh7428d3b_8
- wsproto=1.2.0=pyhd8ed1ab_1
- wxwidgets=3.2.6=h7c045ee_3
- xorg-libxau=1.0.12=h0e40799_0
- xorg-libxdmcp=1.1.5=h0e40799_0
- yaml-cpp=0.8.0=h63175ca_0
- yaml=0.2.5=h8ffe710_2
- zeromq=4.3.5=he1f189c_4
- zipp=3.17.0=pyhd8ed1ab_0
- zlib=1.2.13=h2466b09_6
- zope.event=5.0=pyhd8ed1ab_0
- zope.interface=6.4.post2=py311he736701_0
- zstandard=0.19.0=py311ha68e1ae_0
- zstd=1.5.6=h0ea2cb4_0
- zeromq=4.3.5=ha9f60a1_7
- zipp=3.21.0=pyhd8ed1ab_1
- zope.event=5.0=pyhd8ed1ab_1
- zope.interface=7.2=py312h4389bb4_0
- zstandard=0.23.0=py312h4389bb4_1
- zstd=1.5.7=hbeecb71_1
user_requested_specs:
- airspy
- airspyhf
- bladerf
- codec2
- conda
- digital_rf
- ephem
- gnuradio
@ -424,6 +432,6 @@ user_requested_specs:
- soapysdr-module-uhd
- soapysdr-module-volk-converters
- uhd
version: 2024.05.29
version: 2025.03.14
welcome_image: welcome.png
write_condarc: true

File diff suppressed because it is too large Load Diff

View File

@ -25,6 +25,7 @@ dependencies:
- gnuradio-filerepeater
- gnuradio-foo
- gnuradio-fosphor
- gnuradio-funcube # [linux]
- gnuradio-gpredict-doppler
- gnuradio-hermeslite2 # [unix]
- gnuradio-hpsdr # [unix]
@ -64,6 +65,7 @@ dependencies:
- soapysdr-module-airspyhf
- soapysdr-module-audio
- soapysdr-module-bladerf
- soapysdr-module-fcdpp # [linux]
- soapysdr-module-hackrf
- soapysdr-module-netsdr
- soapysdr-module-lms7

View File

@ -2,6 +2,8 @@ name: radioconda_installer
category: installer
channels:
- conda-forge
- ryanvolz
dependencies:
- mamba
- conda
- mamba <2
- miniforge_console_shortcut # [win]