diff --git a/.github/workflows/CI_master.yml b/.github/workflows/CI_master.yml
index 58c7b8873a..752b0707d7 100644
--- a/.github/workflows/CI_master.yml
+++ b/.github/workflows/CI_master.yml
@@ -39,17 +39,11 @@ jobs:
with:
artifactBasename: Prepare-${{ github.run_id }}
- MacOS_13_Conda_Apple:
+ Pixi:
needs: [Prepare]
- uses: ./.github/workflows/sub_buildMacOSCondaApple.yml
+ uses: ./.github/workflows/sub_buildPixi.yml
with:
- artifactBasename: MacOS_13_Conda_Apple-${{ github.run_id }}
-
-# MacOS_13_Conda_Intel:
-# needs: [Prepare]
-# uses: ./.github/workflows/sub_buildMacOSCondaIntel.yml
-# with:
-# artifactBasename: MacOS_13_Conda_Intel-${{ github.run_id }}
+ artifactBasename: Pixi-${{ github.run_id }}
Ubuntu_20-04:
needs: [Prepare]
@@ -57,31 +51,12 @@ jobs:
with:
artifactBasename: Ubuntu_20-04-${{ github.run_id }}
- Ubuntu_22-04_Conda:
- needs: [Prepare]
- uses: ./.github/workflows/sub_buildUbuntu2204Conda.yml
- with:
- artifactBasename: Ubuntu_22-04_Conda-${{ github.run_id }}
-
- Ubuntu_22-04_Conda_Qt6:
- needs: [Prepare]
- uses: ./.github/workflows/sub_buildUbuntu2204CondaQt6.yml
- with:
- artifactBasename: Ubuntu_22-04_Conda-Qt6-${{ github.run_id }}
-
Windows:
needs: [Prepare]
uses: ./.github/workflows/sub_buildWindows.yml
with:
artifactBasename: Windows-${{ github.run_id }}
- ## Disable until the following issue is resolved: https://github.com/mamba-org/mamba/issues/3292
- # Windows_Conda:
- # needs: [Prepare]
- # uses: ./.github/workflows/sub_buildWindowsConda.yml
- # with:
- # artifactBasename: Windows_Conda-${{ github.run_id }}
-
Lint:
needs: [Prepare]
uses: ./.github/workflows/sub_lint.yml
@@ -94,12 +69,9 @@ jobs:
WrapUp:
needs: [
Prepare,
- MacOS_13_Conda_Apple,
- # MacOS_13_Conda_Intel,
+ Pixi,
Ubuntu_20-04,
- Ubuntu_22-04_Conda,
Windows,
- # Windows_Conda,
Lint
]
if: always()
diff --git a/.github/workflows/sub_buildMacOSCondaApple.yml b/.github/workflows/sub_buildMacOSCondaApple.yml
deleted file mode 100644
index 59fc1666f2..0000000000
--- a/.github/workflows/sub_buildMacOSCondaApple.yml
+++ /dev/null
@@ -1,171 +0,0 @@
-# SPDX-License-Identifier: LGPL-2.1-or-later
-# ***************************************************************************
-# * *
-# * Copyright (c) 2023 0penBrain. *
-# * *
-# * This file is part of FreeCAD. *
-# * *
-# * FreeCAD is free software: you can redistribute it and/or modify it *
-# * under the terms of the GNU Lesser General Public License as *
-# * published by the Free Software Foundation, either version 2.1 of the *
-# * License, or (at your option) any later version. *
-# * *
-# * FreeCAD is distributed in the hope that it will be useful, but *
-# * WITHOUT ANY WARRANTY; without even the implied warranty of *
-# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
-# * Lesser General Public License for more details. *
-# * *
-# * You should have received a copy of the GNU Lesser General Public *
-# * License along with FreeCAD. If not, see *
-# * . *
-# * *
-# ***************************************************************************
-
-# This is a build and test workflow for CI of FreeCAD.
-# This workflow aims at building and testing FreeCAD on a Conda environment on macOS.
-
-name: Build macOS 13 (Apple Silicon)
-on:
- workflow_call:
- inputs:
- artifactBasename:
- type: string
- required: true
- testOnBuildDir:
- default: false
- type: boolean
- required: false
- allowedToFail:
- default: false
- type: boolean
- required: false
- outputs:
- reportFile:
- value: ${{ jobs.Build.outputs.reportFile }}
-
-jobs:
- Build:
- runs-on: macos-14
- continue-on-error: ${{ inputs.allowedToFail }}
- env:
- CCACHE_DIR: ${{ github.workspace }}/ccache
- CCACHE_CONFIGPATH: ${{ github.workspace }}/ccache/config
- CCACHE_MAXSIZE: 1G
- CCACHE_COMPILERCHECK: "%compiler% -dumpfullversion -dumpversion" # default:mtime
- CCACHE_COMPRESS: true
- CCACHE_COMPRESSLEVEL: 1
- CC: arm64-apple-darwin20.0.0-clang
- CXX: arm64-apple-darwin20.0.0-clang++
- builddir: ${{ github.workspace }}/build/release/
- logdir: /tmp/logs/
- reportdir: /tmp/report/
- reportfilename: ${{ inputs.artifactBasename }}-report.md
- defaults:
- run:
- shell: bash -l {0}
- outputs:
- reportFile: ${{ steps.Init.outputs.reportFile }}
-
- steps:
- - name: Checking out source code
- uses: actions/checkout@v4
- with:
- submodules: true
- - name: Setup Miniconda
- env:
- CONDA_VERBOSITY: 2
- uses: conda-incubator/setup-miniconda@v3
- with:
- activate-environment: .conda/freecad
- environment-file: conda/conda-env.yaml
- channels: conda-forge
- channel-priority: true
- miniforge-version: latest
- - name: Install FreeCAD dependencies
- env:
- CONDA_VERBOSITY: 2
- run: |
- ./conda/setup-environment.sh
- - name: Set Environment Variables
- run: |
- echo "CC=$CC" >> "$GITHUB_ENV"
- echo "CXX=$CXX" >> "$GITHUB_ENV"
- - name: Make needed directories, files and initializations
- id: Init
- run: |
- mkdir -p ${{ env.CCACHE_DIR }}
- mkdir -p ${{ env.CCACHE_CONFIGPATH }}
- mkdir -p ${{ env.builddir }}
- mkdir -p ${{ env.logdir }}
- mkdir -p ${{ env.reportdir }}
- echo "reportFile=${{ env.reportfilename }}" >> $GITHUB_OUTPUT
- - name: Generate cache key
- id: genCacheKey
- uses: ./.github/workflows/actions/macos/generateCacheKey
- with:
- compiler: ${{ env.CXX }}
- - name: Restore Compiler Cache
- uses: actions/cache@v4
- with:
- save-always: true
- path: ${{ env.CCACHE_DIR }}
- key: FC-${{ steps.genCacheKey.outputs.cacheKey }}-${{ github.ref }}-${{ github.run_id }}
- restore-keys: |
- FC-${{ steps.genCacheKey.outputs.cacheKey }}-${{ github.ref }}-
- FC-${{ steps.genCacheKey.outputs.cacheKey }}-
- - name: Print CCache statistics before build, reset stats and print config
- run: |
- ccache -s
- ccache -z
- ccache -p
- - name: CMake Configure
- run: |
- mamba run --live-stream -p .conda/freecad cmake --preset conda-macos-release -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/.conda/freecad/opt/freecad
- - name: CMake Build
- run: |
- mamba run --live-stream -p .conda/freecad cmake --build build/release
- - name: Print ccache statistics after Build
- run: |
- ccache -s
- - name: FreeCAD CLI tests on build dir
- if: inputs.testOnBuildDir
- timeout-minutes: 10
- uses: ./.github/workflows/actions/runPythonTests
- with:
- testDescription: "CLI tests on build dir"
- testCommand: ${{ env.builddir }}/bin/FreeCADCmd -t 0
- logFile: ${{ env.logdir }}TestCLIBuild.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: C++ tests
- timeout-minutes: 1
- uses: ./.github/workflows/actions/runCPPTests/runAllTests
- with:
- reportdir: ${{ env.reportdir }}
- builddir: ${{ env.builddir }}
- reportFile: ${{ env.reportdir }}${{ env.reportfilename }}
- - name: CMake Install
- run: |
- mamba run --live-stream -p .conda/freecad cmake --install build/release
- - name: FreeCAD CLI tests on install
- timeout-minutes: 10
- uses: ./.github/workflows/actions/runPythonTests
- with:
- testDescription: "CLI tests on install"
- testCommand: ${{ github.workspace }}/.conda/freecad/opt/freecad/bin/FreeCADCmd -t 0
- logFile: ${{ env.logdir }}TestCLIInstall.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: Upload logs
- if: always()
- uses: actions/upload-artifact@v4
- with:
- name: ${{ inputs.artifactBasename }}-Logs
- path: |
- ${{ env.logdir }}
- /var/crash/*FreeCAD*
- - name: Upload report
- if: always()
- uses: actions/upload-artifact@v4
- with:
- name: ${{ env.reportfilename }}
- path: |
- ${{env.reportdir}}${{ env.reportfilename }}
diff --git a/.github/workflows/sub_buildMacOSCondaIntel.yml b/.github/workflows/sub_buildMacOSCondaIntel.yml
deleted file mode 100644
index b4d4e80b32..0000000000
--- a/.github/workflows/sub_buildMacOSCondaIntel.yml
+++ /dev/null
@@ -1,171 +0,0 @@
-# SPDX-License-Identifier: LGPL-2.1-or-later
-# ***************************************************************************
-# * *
-# * Copyright (c) 2023 0penBrain. *
-# * *
-# * This file is part of FreeCAD. *
-# * *
-# * FreeCAD is free software: you can redistribute it and/or modify it *
-# * under the terms of the GNU Lesser General Public License as *
-# * published by the Free Software Foundation, either version 2.1 of the *
-# * License, or (at your option) any later version. *
-# * *
-# * FreeCAD is distributed in the hope that it will be useful, but *
-# * WITHOUT ANY WARRANTY; without even the implied warranty of *
-# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
-# * Lesser General Public License for more details. *
-# * *
-# * You should have received a copy of the GNU Lesser General Public *
-# * License along with FreeCAD. If not, see *
-# * . *
-# * *
-# ***************************************************************************
-
-# This is a build and test workflow for CI of FreeCAD.
-# This workflow aims at building and testing FreeCAD on a Conda environment on macOS.
-
-name: Build macOS 13 (Intel)
-on:
- workflow_call:
- inputs:
- artifactBasename:
- type: string
- required: true
- testOnBuildDir:
- default: false
- type: boolean
- required: false
- allowedToFail:
- default: false
- type: boolean
- required: false
- outputs:
- reportFile:
- value: ${{ jobs.Build.outputs.reportFile }}
-
-jobs:
- Build:
- runs-on: macos-13
- continue-on-error: ${{ inputs.allowedToFail }}
- env:
- CCACHE_DIR: ${{ github.workspace }}/ccache
- CCACHE_CONFIGPATH: ${{ github.workspace }}/ccache/config
- CCACHE_MAXSIZE: 1G
- CCACHE_COMPILERCHECK: "%compiler% -dumpfullversion -dumpversion" # default:mtime
- CCACHE_COMPRESS: true
- CCACHE_COMPRESSLEVEL: 1
- CC: x86_64-apple-darwin13.4.0-clang
- CXX: x86_64-apple-darwin13.4.0-clang++
- builddir: ${{ github.workspace }}/build/release/
- logdir: /tmp/logs/
- reportdir: /tmp/report/
- reportfilename: ${{ inputs.artifactBasename }}-report.md
- defaults:
- run:
- shell: bash -l {0}
- outputs:
- reportFile: ${{ steps.Init.outputs.reportFile }}
-
- steps:
- - name: Checking out source code
- uses: actions/checkout@v4
- with:
- submodules: true
- - name: Setup Miniconda
- env:
- CONDA_VERBOSITY: 2
- uses: conda-incubator/setup-miniconda@v3
- with:
- activate-environment: .conda/freecad
- environment-file: conda/conda-env.yaml
- channels: conda-forge
- channel-priority: true
- miniforge-version: latest
- - name: Install FreeCAD dependencies
- env:
- CONDA_VERBOSITY: 2
- run: |
- ./conda/setup-environment.sh
- - name: Set Environment Variables
- run: |
- echo "CC=$CC" >> "$GITHUB_ENV"
- echo "CXX=$CXX" >> "$GITHUB_ENV"
- - name: Make needed directories, files and initializations
- id: Init
- run: |
- mkdir -p ${{ env.CCACHE_DIR }}
- mkdir -p ${{ env.CCACHE_CONFIGPATH }}
- mkdir -p ${{ env.builddir }}
- mkdir -p ${{ env.logdir }}
- mkdir -p ${{ env.reportdir }}
- echo "reportFile=${{ env.reportfilename }}" >> $GITHUB_OUTPUT
- - name: Generate cache key
- id: genCacheKey
- uses: ./.github/workflows/actions/macos/generateCacheKey
- with:
- compiler: ${{ env.CXX }}
- - name: Restore Compiler Cache
- uses: actions/cache@v4
- with:
- save-always: true
- path: ${{ env.CCACHE_DIR }}
- key: FC-${{ steps.genCacheKey.outputs.cacheKey }}-${{ github.ref }}-${{ github.run_id }}
- restore-keys: |
- FC-${{ steps.genCacheKey.outputs.cacheKey }}-${{ github.ref }}-
- FC-${{ steps.genCacheKey.outputs.cacheKey }}-
- - name: Print CCache statistics before build, reset stats and print config
- run: |
- ccache -s
- ccache -z
- ccache -p
- - name: CMake Configure
- run: |
- mamba run --live-stream -p .conda/freecad cmake --preset conda-macos-release -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/.conda/freecad/opt/freecad
- - name: CMake Build
- run: |
- mamba run --live-stream -p .conda/freecad cmake --build build/release
- - name: Print ccache statistics after Build
- run: |
- ccache -s
- - name: FreeCAD CLI tests on build dir
- if: inputs.testOnBuildDir
- timeout-minutes: 10
- uses: ./.github/workflows/actions/runPythonTests
- with:
- testDescription: "CLI tests on build dir"
- testCommand: ${{ env.builddir }}/bin/FreeCADCmd -t 0
- logFile: ${{ env.logdir }}TestCLIBuild.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: C++ tests
- timeout-minutes: 1
- uses: ./.github/workflows/actions/runCPPTests/runAllTests
- with:
- reportdir: ${{ env.reportdir }}
- builddir: ${{ env.builddir }}
- reportFile: ${{ env.reportdir }}${{ env.reportfilename }}
- - name: CMake Install
- run: |
- mamba run --live-stream -p .conda/freecad cmake --install build/release
- - name: FreeCAD CLI tests on install
- timeout-minutes: 10
- uses: ./.github/workflows/actions/runPythonTests
- with:
- testDescription: "CLI tests on install"
- testCommand: ${{ github.workspace }}/.conda/freecad/opt/freecad/bin/FreeCADCmd -t 0
- logFile: ${{ env.logdir }}TestCLIInstall.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: Upload logs
- if: always()
- uses: actions/upload-artifact@v4
- with:
- name: ${{ inputs.artifactBasename }}-Logs
- path: |
- ${{ env.logdir }}
- /var/crash/*FreeCAD*
- - name: Upload report
- if: always()
- uses: actions/upload-artifact@v4
- with:
- name: ${{ env.reportfilename }}
- path: |
- ${{env.reportdir}}${{ env.reportfilename }}
diff --git a/.github/workflows/sub_buildPixi.yml b/.github/workflows/sub_buildPixi.yml
new file mode 100644
index 0000000000..0889c24216
--- /dev/null
+++ b/.github/workflows/sub_buildPixi.yml
@@ -0,0 +1,203 @@
+# SPDX-License-Identifier: LGPL-2.1-or-later
+# ***************************************************************************
+# * *
+# * Copyright (c) 2024 0penBrain, Lorenz Lechner and Jacob Oursland. *
+# * *
+# * This file is part of FreeCAD. *
+# * *
+# * FreeCAD is free software: you can redistribute it and/or modify it *
+# * under the terms of the GNU Lesser General Public License as *
+# * published by the Free Software Foundation, either version 2.1 of the *
+# * License, or (at your option) any later version. *
+# * *
+# * FreeCAD is distributed in the hope that it will be useful, but *
+# * WITHOUT ANY WARRANTY; without even the implied warranty of *
+# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
+# * Lesser General Public License for more details. *
+# * *
+# * You should have received a copy of the GNU Lesser General Public *
+# * License along with FreeCAD. If not, see *
+# * . *
+# * *
+# ***************************************************************************
+
+# This is a build and test workflow for CI of FreeCAD.
+# This workflow aims at building and testing FreeCAD on a Conda environment on macOS.
+
+name: Pixi Builds
+
+on:
+ workflow_call:
+ inputs:
+ artifactBasename:
+ type: string
+ required: true
+ testOnBuildDir:
+ default: false
+ type: boolean
+ required: false
+ allowedToFail:
+ default: false
+ type: boolean
+ required: false
+ outputs:
+ reportFile:
+ value: ${{ jobs.Build.outputs.reportFile }}
+
+jobs:
+ build_with_pixi:
+ runs-on: ${{ matrix.os }}
+ continue-on-error: ${{ inputs.allowedToFail }}
+ env:
+ CCACHE_DIR: ${{ github.workspace }}/ccache
+ CCACHE_CONFIGPATH: ${{ github.workspace }}/ccache/config
+ CCACHE_MAXSIZE: 1G
+ CCACHE_COMPRESS: true
+ CCACHE_COMPRESSLEVEL: 5
+ builddir: ${{ github.workspace }}/build/
+ cacheKey: pixi-${{ matrix.os }}
+ logdir: ${{ github.workspace }}/logs/
+ reportdir: ${{ github.workspace }}/report/
+ reportfilename: ${{ inputs.artifactBasename }}-${{ matrix.os }}-report.md
+ outputs:
+ reportFile: ${{ steps.Init.outputs.reportFile }}
+
+ strategy:
+ max-parallel: 6
+ fail-fast: false
+ matrix:
+ os: [windows-latest, ubuntu-latest, macos-latest]
+
+ steps:
+ - name: Set Platform Environment Variables
+ shell: bash -l {0}
+ env:
+ OPERATING_SYSTEM: ${{ runner.os }}
+ run: |
+ if [[ $OPERATING_SYSTEM == 'Windows' ]]; then
+ echo 'CCACHE_COMPILERCHECK=%compiler%' >> "$GITHUB_ENV"
+ else
+ echo 'CCACHE_COMPILERCHECK=%compiler% -dumpfullversion -dumpversion' >> "$GITHUB_ENV"
+ fi
+
+ - name: Checkout
+ uses: actions/checkout@v2
+
+ - name: Make needed directories, files and initializations
+ id: Init
+ run: |
+ mkdir -p ${{ env.builddir }}
+ mkdir -p ${{ env.logdir }}
+ mkdir -p ${{ env.reportdir }}
+ echo "reportFile=${{ env.reportfilename }}" >> $GITHUB_OUTPUT
+
+ - uses: prefix-dev/setup-pixi@v0.8.1
+ with:
+ pixi-version: v0.34.0
+ cache: false
+
+ - name: Restore Compiler Cache
+ uses: actions/cache/restore@v4
+ with:
+ path: ${{ env.CCACHE_DIR }}
+ key: FC-${{ env.cacheKey }}-${{ github.ref }}-${{ github.run_id }}
+ restore-keys: |
+ FC-${{ env.cacheKey }}-${{ github.ref }}-
+ FC-${{ env.cacheKey }}-
+
+ - name: Print CCache statistics before build, reset stats and print config
+ run: |
+ pixi run ccache -s
+ pixi run ccache -z
+ pixi run ccache -p
+
+ - name: CMake Configure
+ run: |
+ pixi run configure-release
+
+ - name: CMake Build
+ run: |
+ pixi run build
+
+ - name: Print ccache statistics after Build
+ run: |
+ pixi run ccache -s
+
+ - name: FreeCAD CLI tests on build dir
+ if: inputs.testOnBuildDir
+ timeout-minutes: 10
+ uses: ./.github/workflows/actions/runPythonTests
+ with:
+ testDescription: "CLI tests on build dir"
+ testCommand: pixi run ${{ env.builddir }}/bin/FreeCADCmd -t 0
+ logFile: ${{ env.logdir }}TestCLIBuild.log
+ reportFile: ${{env.reportdir}}${{ env.reportfilename }}
+
+ - name: FreeCAD GUI tests on build dir
+ if: runner.os == 'Linux' && inputs.testOnBuildDir
+ timeout-minutes: 15
+ uses: ./.github/workflows/actions/runPythonTests
+ with:
+ testDescription: "GUI tests on build dir"
+ testCommand: pixi run xvfb-run ${{ env.builddir }}/bin/FreeCAD -t 0
+ logFile: ${{ env.logdir }}TestGUIBuild.log
+ reportFile: ${{env.reportdir}}${{ env.reportfilename }}
+
+ - name: C++ tests
+ timeout-minutes: 10
+ if: runner.os != 'Windows'
+ uses: ./.github/workflows/actions/runCPPTests/runAllTests
+ with:
+ reportdir: ${{ env.reportdir }}
+ builddir: ${{ env.builddir }}
+ reportFile: ${{ env.reportdir }}${{ env.reportfilename }}
+
+ - name: CMake Install
+ run: |
+ pixi run install
+
+ - name: FreeCAD CLI tests on install
+ if: runner.os != 'Windows'
+ timeout-minutes: 10
+ uses: ./.github/workflows/actions/runPythonTests
+ with:
+ testDescription: "CLI tests on install"
+ testCommand: pixi run FreeCADCmd -t 0
+ logFile: ${{ env.logdir }}TestCLIInstall.log
+ reportFile: ${{env.reportdir}}${{ env.reportfilename }}
+
+ - name: FreeCAD GUI tests on install
+ # if: runner.os == 'Linux'
+ # currently broken on Qt6 builds
+ if: false
+ timeout-minutes: 15
+ uses: ./.github/workflows/actions/runPythonTests
+ with:
+ testDescription: "GUI tests on install"
+ testCommand: pixi run xvfb-run FreeCAD -t 0
+ logFile: ${{ env.logdir }}TestGUIInstall.log
+ reportFile: ${{env.reportdir}}${{ env.reportfilename }}
+
+ - name: Save Compiler Cache
+ if: always()
+ uses: actions/cache/save@v4
+ with:
+ path: ${{ env.CCACHE_DIR }}
+ key: FC-${{ env.cacheKey }}-${{ github.ref }}-${{ github.run_id }}
+
+ - name: Upload logs
+ if: always()
+ uses: actions/upload-artifact@v4
+ with:
+ name: ${{ inputs.artifactBasename }}-${{ matrix.os }}-Logs
+ path: |
+ ${{ env.logdir }}
+ /var/crash/*FreeCAD*
+
+ - name: Upload report
+ if: always()
+ uses: actions/upload-artifact@v4
+ with:
+ name: ${{ env.reportfilename }}
+ path: |
+ ${{env.reportdir}}${{ env.reportfilename }}
diff --git a/.github/workflows/sub_buildUbuntu2204Conda.yml b/.github/workflows/sub_buildUbuntu2204Conda.yml
deleted file mode 100644
index 43d31ec714..0000000000
--- a/.github/workflows/sub_buildUbuntu2204Conda.yml
+++ /dev/null
@@ -1,200 +0,0 @@
-# SPDX-License-Identifier: LGPL-2.1-or-later
-# ***************************************************************************
-# * *
-# * Copyright (c) 2023 0penBrain. *
-# * *
-# * This file is part of FreeCAD. *
-# * *
-# * FreeCAD is free software: you can redistribute it and/or modify it *
-# * under the terms of the GNU Lesser General Public License as *
-# * published by the Free Software Foundation, either version 2.1 of the *
-# * License, or (at your option) any later version. *
-# * *
-# * FreeCAD is distributed in the hope that it will be useful, but *
-# * WITHOUT ANY WARRANTY; without even the implied warranty of *
-# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
-# * Lesser General Public License for more details. *
-# * *
-# * You should have received a copy of the GNU Lesser General Public *
-# * License along with FreeCAD. If not, see *
-# * . *
-# * *
-# ***************************************************************************
-
-# This is a build and test workflow for CI of FreeCAD.
-# This workflow aims at building and testing FreeCAD on a Conda environment on Linux.
-
-name: Build Ubuntu 22.04 (Conda)
-on:
- workflow_call:
- inputs:
- artifactBasename:
- type: string
- required: true
- testOnBuildDir:
- default: false
- type: boolean
- required: false
- allowedToFail:
- default: false
- type: boolean
- required: false
- outputs:
- reportFile:
- value: ${{ jobs.Build.outputs.reportFile }}
-
-jobs:
- Build:
- runs-on: ubuntu-22.04
- continue-on-error: ${{ inputs.allowedToFail }}
- env:
- CCACHE_DIR: ${{ github.workspace }}/ccache
- CCACHE_CONFIGPATH: ${{ github.workspace }}/ccache/config
- CCACHE_MAXSIZE: 1G
- CCACHE_COMPILERCHECK: "%compiler% -dumpfullversion -dumpversion" # default:mtime
- CCACHE_COMPRESS: true
- CCACHE_COMPRESSLEVEL: 1
- builddir: ${{ github.workspace }}/build/release/
- logdir: /tmp/logs/
- reportdir: /tmp/report/
- reportfilename: ${{ inputs.artifactBasename }}-report.md
- defaults:
- run:
- shell: bash -l {0}
- outputs:
- reportFile: ${{ steps.Init.outputs.reportFile }}
-
- steps:
- - name: Checking out source code
- uses: actions/checkout@v4
- with:
- submodules: true
- - name: Setup Miniconda
- env:
- CONDA_VERBOSITY: 2
- uses: conda-incubator/setup-miniconda@v3
- with:
- activate-environment: .conda/freecad
- environment-file: conda/conda-env.yaml
- channels: conda-forge
- channel-priority: true
- miniforge-version: latest
- - name: Install FreeCAD dependencies
- env:
- CONDA_VERBOSITY: 2
- run: |
- ./conda/setup-environment.sh
- - name: Set Environment Variables
- run: |
- echo "CC=$CC" >> "$GITHUB_ENV"
- echo "CXX=$CXX" >> "$GITHUB_ENV"
- - name: Make needed directories, files and initializations
- id: Init
- run: |
- mkdir -p ${{ env.CCACHE_DIR }}
- mkdir -p ${{ env.CCACHE_CONFIGPATH }}
- mkdir -p ${{ env.builddir }}
- mkdir -p ${{ env.logdir }}
- mkdir -p ${{ env.reportdir }}
- echo "reportFile=${{ env.reportfilename }}" >> $GITHUB_OUTPUT
- - name: Generate cache key
- id: genCacheKey
- uses: ./.github/workflows/actions/linux/generateCacheKey
- with:
- compiler: ${{ env.CXX }}
- qt_major_version: 5
- - name: Restore Compiler Cache
- uses: actions/cache@v4
- with:
- save-always: true
- path: ${{ env.CCACHE_DIR }}
- key: FC-${{ steps.genCacheKey.outputs.cacheKey }}-${{ github.ref }}-${{ github.run_id }}
- restore-keys: |
- FC-${{ steps.genCacheKey.outputs.cacheKey }}-${{ github.ref }}-
- FC-${{ steps.genCacheKey.outputs.cacheKey }}-
- - name: Print CCache statistics before build, reset stats and print config
- run: |
- ccache -s
- ccache -z
- ccache -p
- - name: CMake Configure
- uses: ./.github/workflows/actions/linux/configure
- with:
- extraParameters: --preset conda-linux-release -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/.conda/freecad/opt/freecad
- builddir: ${{ env.builddir }}
- logFile: ${{ env.logdir }}Cmake.log
- errorFile: ${{ env.logdir }}CmakeErrors.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: CMake Build
- uses: ./.github/workflows/actions/linux/build
- with:
- builddir: ${{ env.builddir }}
- logFile: ${{ env.logdir }}Build.log
- errorFile: ${{ env.logdir }}BuildErrors.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: Print ccache statistics after Build
- run: |
- ccache -s
- - name: FreeCAD CLI tests on build dir
- if: inputs.testOnBuildDir
- timeout-minutes: 10
- uses: ./.github/workflows/actions/runPythonTests
- with:
- testDescription: "CLI tests on build dir"
- testCommand: ${{ env.builddir }}/bin/FreeCADCmd -t 0
- logFile: ${{ env.logdir }}TestCLIBuild.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: FreeCAD GUI tests on build dir
- if: inputs.testOnBuildDir
- timeout-minutes: 15
- uses: ./.github/workflows/actions/runPythonTests
- with:
- testDescription: "GUI tests on build dir"
- testCommand: xvfb-run ${{ env.builddir }}/bin/FreeCAD -t 0
- logFile: ${{ env.logdir }}TestGUIBuild.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: C++ tests
- timeout-minutes: 1
- uses: ./.github/workflows/actions/runCPPTests/runAllTests
- with:
- reportdir: ${{ env.reportdir }}
- builddir: ${{ env.builddir }}
- reportFile: ${{ env.reportdir }}${{ env.reportfilename }}
- - name: CMake Install
- uses: ./.github/workflows/actions/linux/install
- with:
- builddir: ${{ env.builddir }}
- logFile: ${{ env.logdir }}Install.log
- errorFile: ${{ env.logdir }}InstallErrors.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: FreeCAD CLI tests on install
- timeout-minutes: 10
- uses: ./.github/workflows/actions/runPythonTests
- with:
- testDescription: "CLI tests on install"
- testCommand: ${{ github.workspace }}/.conda/freecad/opt/freecad/bin/FreeCADCmd -t 0
- logFile: ${{ env.logdir }}TestCLIInstall.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: FreeCAD GUI tests on install
- timeout-minutes: 15
- uses: ./.github/workflows/actions/runPythonTests
- with:
- testDescription: "GUI tests on install"
- testCommand: xvfb-run ${{ github.workspace }}/.conda/freecad/opt/freecad/bin/FreeCAD -t 0
- logFile: ${{ env.logdir }}TestGUIInstall.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: Upload logs
- if: always()
- uses: actions/upload-artifact@v4
- with:
- name: ${{ inputs.artifactBasename }}-Logs
- path: |
- ${{ env.logdir }}
- /var/crash/*FreeCAD*
- - name: Upload report
- if: always()
- uses: actions/upload-artifact@v4
- with:
- name: ${{ env.reportfilename }}
- path: |
- ${{env.reportdir}}${{ env.reportfilename }}
diff --git a/.github/workflows/sub_buildUbuntu2204CondaQt6.yml b/.github/workflows/sub_buildUbuntu2204CondaQt6.yml
deleted file mode 100644
index 59fca06b8d..0000000000
--- a/.github/workflows/sub_buildUbuntu2204CondaQt6.yml
+++ /dev/null
@@ -1,211 +0,0 @@
-# SPDX-License-Identifier: LGPL-2.1-or-later
-# ***************************************************************************
-# * *
-# * Copyright (c) 2023 0penBrain. *
-# * *
-# * This file is part of FreeCAD. *
-# * *
-# * FreeCAD is free software: you can redistribute it and/or modify it *
-# * under the terms of the GNU Lesser General Public License as *
-# * published by the Free Software Foundation, either version 2.1 of the *
-# * License, or (at your option) any later version. *
-# * *
-# * FreeCAD is distributed in the hope that it will be useful, but *
-# * WITHOUT ANY WARRANTY; without even the implied warranty of *
-# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
-# * Lesser General Public License for more details. *
-# * *
-# * You should have received a copy of the GNU Lesser General Public *
-# * License along with FreeCAD. If not, see *
-# * . *
-# * *
-# ***************************************************************************
-
-# This is a build and test workflow for CI of FreeCAD.
-# This workflow aims at building and testing FreeCAD on a Conda environment on Linux.
-
-name: Build Ubuntu 22.04 (Conda)
-on:
- workflow_call:
- inputs:
- artifactBasename:
- type: string
- required: true
- testOnBuildDir:
- default: false
- type: boolean
- required: false
- allowedToFail:
- default: false
- type: boolean
- required: false
- outputs:
- reportFile:
- value: ${{ jobs.Build.outputs.reportFile }}
-
-jobs:
- Build:
- runs-on: ubuntu-22.04
- continue-on-error: ${{ inputs.allowedToFail }}
- env:
- CCACHE_DIR: ${{ github.workspace }}/ccache
- CCACHE_CONFIGPATH: ${{ github.workspace }}/ccache/config
- CCACHE_MAXSIZE: 1G
- CCACHE_COMPILERCHECK: "%compiler% -dumpfullversion -dumpversion" # default:mtime
- CCACHE_COMPRESS: true
- CCACHE_COMPRESSLEVEL: 1
- builddir: ${{ github.workspace }}/build/release/
- logdir: /tmp/logs/
- reportdir: /tmp/report/
- reportfilename: ${{ inputs.artifactBasename }}-report.md
- defaults:
- run:
- shell: bash -l {0}
- outputs:
- reportFile: ${{ steps.Init.outputs.reportFile }}
-
- steps:
- - name: Checking out source code
- uses: actions/checkout@v4
- with:
- submodules: true
- - name: Setup Miniconda
- env:
- CONDA_VERBOSITY: 2
- uses: conda-incubator/setup-miniconda@v3
- with:
- activate-environment: .conda/freecad
- environment-file: conda/conda-env-qt6.yaml
- channels: conda-forge
- channel-priority: true
- miniforge-version: latest
- - name: Install FreeCAD dependencies
- env:
- CONDA_VERBOSITY: 2
- run: |
- sudo apt-get update -qq
- sudo apt-get install -y --no-install-recommends \
- libegl1 \
- libgl1 \
- libglx0 \
- libopengl0
- ./conda/setup-environment-qt6.sh
- - name: Set Environment Variables
- run: |
- echo "CC=$CC" >> "$GITHUB_ENV"
- echo "CXX=$CXX" >> "$GITHUB_ENV"
- - name: Make needed directories, files and initializations
- id: Init
- run: |
- mkdir -p ${{ env.CCACHE_DIR }}
- mkdir -p ${{ env.CCACHE_CONFIGPATH }}
- mkdir -p ${{ env.builddir }}
- mkdir -p ${{ env.logdir }}
- mkdir -p ${{ env.reportdir }}
- echo "reportFile=${{ env.reportfilename }}" >> $GITHUB_OUTPUT
- - name: Generate cache key
- id: genCacheKey
- uses: ./.github/workflows/actions/linux/generateCacheKey
- with:
- compiler: ${{ env.CXX }}
- qt_major_version: 6
- - name: Restore Compiler Cache
- uses: actions/cache@v4
- with:
- save-always: true
- path: ${{ env.CCACHE_DIR }}
- key: FC-${{ steps.genCacheKey.outputs.cacheKey }}-${{ github.ref }}-${{ github.run_id }}
- restore-keys: |
- FC-${{ steps.genCacheKey.outputs.cacheKey }}-${{ github.ref }}-
- FC-${{ steps.genCacheKey.outputs.cacheKey }}-
- - name: Print CCache statistics before build, reset stats and print config
- run: |
- ccache -s
- ccache -z
- ccache -p
- - name: CMake Configure
- uses: ./.github/workflows/actions/linux/configure
- with:
- extraParameters: >
- --preset conda-linux-release
- -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/.conda/freecad/opt/freecad
- -DQT_HOST_PATH=${{ github.workspace }}/.conda/freecad/
- -DFREECAD_QT_VERSION=6
- -DBUILD_REVERSEENGINEERING=OFF
- builddir: ${{ env.builddir }}
- logFile: ${{ env.logdir }}Cmake.log
- errorFile: ${{ env.logdir }}CmakeErrors.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: CMake Build
- uses: ./.github/workflows/actions/linux/build
- with:
- builddir: ${{ env.builddir }}
- logFile: ${{ env.logdir }}Build.log
- errorFile: ${{ env.logdir }}BuildErrors.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: Print ccache statistics after Build
- run: |
- ccache -s
- - name: FreeCAD CLI tests on build dir
- if: inputs.testOnBuildDir
- timeout-minutes: 10
- uses: ./.github/workflows/actions/runPythonTests
- with:
- testDescription: "CLI tests on build dir"
- testCommand: ${{ env.builddir }}/bin/FreeCADCmd -t 0
- logFile: ${{ env.logdir }}TestCLIBuild.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: FreeCAD GUI tests on build dir
- if: inputs.testOnBuildDir
- timeout-minutes: 15
- uses: ./.github/workflows/actions/runPythonTests
- with:
- testDescription: "GUI tests on build dir"
- testCommand: xvfb-run ${{ env.builddir }}/bin/FreeCAD -t 0
- logFile: ${{ env.logdir }}TestGUIBuild.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: C++ tests
- timeout-minutes: 1
- uses: ./.github/workflows/actions/runCPPTests/runAllTests
- with:
- reportdir: ${{ env.reportdir }}
- builddir: ${{ env.builddir }}
- reportFile: ${{ env.reportdir }}${{ env.reportfilename }}
- - name: CMake Install
- uses: ./.github/workflows/actions/linux/install
- with:
- builddir: ${{ env.builddir }}
- logFile: ${{ env.logdir }}Install.log
- errorFile: ${{ env.logdir }}InstallErrors.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: FreeCAD CLI tests on install
- timeout-minutes: 10
- uses: ./.github/workflows/actions/runPythonTests
- with:
- testDescription: "CLI tests on install"
- testCommand: ${{ github.workspace }}/.conda/freecad/opt/freecad/bin/FreeCADCmd -t 0
- logFile: ${{ env.logdir }}TestCLIInstall.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: FreeCAD GUI tests on install
- timeout-minutes: 15
- uses: ./.github/workflows/actions/runPythonTests
- with:
- testDescription: "GUI tests on install"
- testCommand: xvfb-run ${{ github.workspace }}/.conda/freecad/opt/freecad/bin/FreeCAD -t 0
- logFile: ${{ env.logdir }}TestGUIInstall.log
- reportFile: ${{env.reportdir}}${{ env.reportfilename }}
- - name: Upload logs
- if: always()
- uses: actions/upload-artifact@v4
- with:
- name: ${{ inputs.artifactBasename }}-Logs
- path: |
- ${{ env.logdir }}
- /var/crash/*FreeCAD*
- - name: Upload report
- if: always()
- uses: actions/upload-artifact@v4
- with:
- name: ${{ env.reportfilename }}
- path: |
- ${{env.reportdir}}${{ env.reportfilename }}
diff --git a/.github/workflows/sub_buildWindowsConda.yml b/.github/workflows/sub_buildWindowsConda.yml
deleted file mode 100644
index e51d5cc35a..0000000000
--- a/.github/workflows/sub_buildWindowsConda.yml
+++ /dev/null
@@ -1,133 +0,0 @@
-# ***************************************************************************
-# * Copyright (c) 2023 0penBrain *
-# * *
-# * This program is free software; you can redistribute it and/or modify *
-# * it under the terms of the GNU Lesser General Public License (LGPL) *
-# * as published by the Free Software Foundation; either version 2 of *
-# * the License, or (at your option) any later version. *
-# * for detail see the LICENCE text file. *
-# * *
-# * This program is distributed in the hope that it will be useful, *
-# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
-# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
-# * GNU Library General Public License for more details. *
-# * *
-# * You should have received a copy of the GNU Library General Public *
-# * License along with this program; if not, write to the Free Software *
-# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
-# * USA *
-# * *
-# ***************************************************************************
-
-# This is a build and test workflow for CI of FreeCAD.
-# This workflow aims at building and testing FreeCAD using a Conda environment on Windows with MSVC.
-
-name: Build Windows (Conda)
-on:
- workflow_call:
- inputs:
- artifactBasename:
- type: string
- required: true
- allowedToFail:
- default: false
- type: boolean
- required: false
- outputs:
- reportFile:
- value: ${{ jobs.Build.outputs.reportFile }}
-
-jobs:
- Build:
- runs-on: windows-latest
- continue-on-error: ${{ inputs.allowedToFail }}
- env:
- CCACHE_DIR: C:/FC/cache/
- CCACHE_COMPILERCHECK: "%compiler%" # default:mtime
- CCACHE_MAXSIZE: 1G
- CCACHE_COMPRESS: true
- CCACHE_COMPRESSLEVEL: 1
- CCACHE_NOHASHDIR: true
- CCACHE_DIRECT: true
- #CCACHE_SLOPPINESS: "pch_defines,time_macros" # Can't get PCH to work on Windows
- CCACHE_LOGFILE: C:/logs/ccache.log
- ## Have to use C:\ because not enough space on workspace drive
- builddir: C:/FC/build/
- logdir: C:/logs/
- reportdir: C:/report/
- reportfilename: ${{ inputs.artifactBasename }}-report.md
- outputs:
- reportFile: ${{ steps.Init.outputs.reportFile }}
-
- steps:
- - name: Checking out source code
- uses: actions/checkout@v4
- with:
- submodules: true
- - name: Setup Miniconda
- env:
- CONDA_VERBOSITY: 2
- uses: conda-incubator/setup-miniconda@v3
- with:
- activate-environment: .conda/freecad
- environment-file: conda/conda-env.yaml
- channels: conda-forge
- channel-priority: true
- miniforge-version: latest
- - name: Install FreeCAD dependencies
- env:
- CONDA_VERBOSITY: 2
- run: |
- conda config --add envs_dirs $PWD/.conda
- mamba-devenv --no-prune -f conda/environment.devenv.yml
- - name: Make needed directories, files and initializations
- id: Init
- run: |
- mkdir ${{ env.CCACHE_DIR }}
- mkdir ${{ env.builddir }}
- mkdir ${{ env.logdir }}
- mkdir ${{ env.reportdir }}
- echo "reportFile=${{ env.reportfilename }}" >> $GITHUB_OUTPUT
- - name: Restore compiler cache
- uses: actions/cache@v4
- with:
- save-always: true
- path: ${{ env.CCACHE_DIR }}
- key: FC-Windows-Conda-${{ github.ref }}-${{ github.run_id }}
- restore-keys: |
- FC-Windows-Conda-${{ github.ref }}-
- FC-Windows-Conda-
- - name: Print Ccache statistics before build, reset stats and print config
- run: |
- ccache -s
- ccache -z
- ccache -p
- - name: Configuring CMake
- shell: cmd /C CALL {0}
- run: >
- conda\cmake.cmd --preset conda-windows-release -DFREECAD_USE_PCH:BOOL=OFF -DFREECAD_RELEASE_PDB:BOOL=OFF -DFREECAD_USE_CCACHE:BOOL=ON
- - name: Compiling sources
- shell: cmd /C CALL {0}
- run: >
- conda\cmake.cmd --build build\release
- - name: Print Ccache statistics after build
- run: |
- ccache -s
- - name: CMake Install
- shell: cmd /C CALL {0}
- run: |
- conda\cmake.cmd --install build\release
- - name: C++ unit tests
- timeout-minutes: 1
- run: |
- . build\release\tests\Tests_run --gtest_output=json:${{ env.reportdir }}gtest_results.json # 2>&1 | tee -filepath ${{ env.logdir }}/unitTests.log
- - name: FreeCAD CLI tests
- run: |
- . build\release\bin\FreeCADCmd -t 0 # 2>&1 | tee -filepath ${{ env.logdir }}/integrationTests.log
- - name: Upload logs
- if: always()
- uses: actions/upload-artifact@v4
- with:
- name: ${{ inputs.artifactBasename }}-Logs
- path: |
- ${{ env.logdir }}
diff --git a/.gitignore b/.gitignore
index 3c66f5686d..c2c18fbc6a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -61,3 +61,6 @@ src/Tools/freecad.zip
tsupdate_stderr.log
tsupdate_stdout.log
files_to_translate.txt
+# pixi environments
+.pixi
+*.egg-info
diff --git a/CMakePresets.json b/CMakePresets.json
index 4dc3309a1c..f5eadf1063 100644
--- a/CMakePresets.json
+++ b/CMakePresets.json
@@ -51,14 +51,6 @@
"hidden": true,
"generator": "Ninja",
"cacheVariables": {
- "Boost_NO_BOOST_CMAKE": {
- "type": "BOOL",
- "value": "ON"
- },
- "BUILD_DYNAMIC_LINK_PYTHON": {
- "type": "BOOL",
- "value": "ON"
- },
"BUILD_FEM_NETGEN": {
"type": "BOOL",
"value": "ON"
@@ -99,9 +91,9 @@
"type": "BOOL",
"value": "ON"
},
- "USE_BOOST_PYTHON": {
- "type": "BOOL",
- "value": "OFF"
+ "QT_HOST_PATH": {
+ "type": "PATH",
+ "value": "$env{CONDA_PREFIX}"
}
}
},
@@ -117,27 +109,27 @@
"cacheVariables": {
"CMAKE_INCLUDE_PATH": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/include"
+ "value": "$env{CONDA_PREFIX}/include"
},
"CMAKE_INSTALL_LIBDIR": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/lib"
+ "value": "$env{CONDA_PREFIX}/lib"
},
"CMAKE_INSTALL_PREFIX": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad"
+ "value": "$env{CONDA_PREFIX}"
},
"CMAKE_LIBRARY_PATH":{
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/lib"
+ "value": "$env{CONDA_PREFIX}/lib"
},
"CMAKE_PREFIX_PATH": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad"
+ "value": "$env{CONDA_PREFIX}"
},
"OCC_INCLUDE_DIR": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/include/opencascade"
+ "value": "$env{CONDA_PREFIX}/include/opencascade"
}
}
},
@@ -157,27 +149,27 @@
},
"CMAKE_INCLUDE_PATH": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/include"
+ "value": "$env{CONDA_PREFIX}/include"
},
"CMAKE_INSTALL_LIBDIR": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/lib"
+ "value": "$env{CONDA_PREFIX}/lib"
},
"CMAKE_INSTALL_PREFIX": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad"
+ "value": "$env{CONDA_PREFIX}"
},
"CMAKE_LIBRARY_PATH":{
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/lib"
+ "value": "$env{CONDA_PREFIX}/lib"
},
"CMAKE_PREFIX_PATH": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad"
+ "value": "$env{CONDA_PREFIX}"
},
"OCC_INCLUDE_DIR": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/include/opencascade"
+ "value": "$env{CONDA_PREFIX}/include/opencascade"
}
}
},
@@ -193,27 +185,27 @@
"cacheVariables": {
"CMAKE_INCLUDE_PATH": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/Library/include"
+ "value": "$env{CONDA_PREFIX}/Library/include"
},
"CMAKE_INSTALL_LIBDIR": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/Library/lib"
+ "value": "$env{CONDA_PREFIX}/Library/lib"
},
"CMAKE_INSTALL_PREFIX": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/Library"
+ "value": "$env{CONDA_PREFIX}/Library"
},
"CMAKE_LIBRARY_PATH":{
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/Library/lib"
+ "value": "$env{CONDA_PREFIX}/Library/lib"
},
"CMAKE_PREFIX_PATH": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/Library"
+ "value": "$env{CONDA_PREFIX}/Library"
},
"OCC_INCLUDE_DIR": {
"type": "FILEPATH",
- "value": "${sourceDir}/.conda/freecad/Library/include/opencascade"
+ "value": "$env{CONDA_PREFIX}/Library/include/opencascade"
}
}
},
@@ -295,7 +287,13 @@
"inherits": [
"conda-release",
"conda-windows"
- ]
+ ],
+ "cacheVariables": {
+ "FREECAD_RELEASE_PDB": {
+ "type": "BOOL",
+ "value": "OFF"
+ }
+ }
}
]
- }
+}
diff --git a/pixi.lock b/pixi.lock
new file mode 100644
index 0000000000..23a117b09f
--- /dev/null
+++ b/pixi.lock
@@ -0,0 +1,25692 @@
+version: 5
+environments:
+ default:
+ channels:
+ - url: https://conda.anaconda.org/conda-forge/label/pivy_rc/
+ - url: https://conda.anaconda.org/conda-forge/
+ packages:
+ linux-64:
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.9-py312h178313f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.13-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.43-h4852527_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.43-h4bf12b8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.43-h4852527_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.3-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.8.0-h2b85faf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.8.30-hbcca054_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-hebfffa5_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ccache-4.10.1-h065aff2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.8.30-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.28.3-hcfe8598_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/coin3d-4.0.3-hd74d64a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.8.0-ha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/conda-24.11.0-py312h7900ff3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-devenv-3.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.11.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.4.0-pyh7900ff3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.11.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.1-py312h68727a3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cpp-expected-1.1.0-hf52228f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.8.0-h1a2810e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cyrus-sasl-2.1.27-h54b06d7_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.9-py312h2ec8cdc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.9-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.3.0-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/doxygen-1.11.0-h9d7c8fd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.4-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.1.2-gpl_hdfc89ed_706.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/flann-1.9.2-h3ef53d8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fmt-11.0.2-h434a139_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.55.0-py312h178313f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.8.0-h36df796_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h3a85593_22.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.6-py312h66e93f0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.5.0-py312h66e93f0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc-13.3.0-h9576a4e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-13.3.0-hfea6d02_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-13.3.0-hc28eda2_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.12-hb9ae30d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran-13.3.0-h9576a4e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-13.3.0-h10434e7_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-13.3.0-hb919d3a_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/git-2.47.1-pl5321h59d505e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/graphviz-12.0.0-hba01fac_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gtk2-2.24.33-h6470451_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx-13.3.0-h9576a4e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-13.3.0-hdbfa832_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-13.3.0-h6834431_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-9.0.0-hda332d3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.4-nompi_h2d575fe_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.12-h7955e40_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.6-h84d6215_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py312h7900ff3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_17.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.7-py312h68727a3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.7-hadbb8c3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.3-h1dc1e6a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-25_linux64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-1.86.0-hb8260a3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-devel-1.86.0-h1a2810e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.86.0-ha770c72_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-25_linux64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp19.1-19.1.4-default_hb5137d0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-19.1.4-default_h9c6a7e4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h4637d8d_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.22-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.123-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libdrm-cos6-x86_64-2.4.65-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-13.3.0-h84ea5a7_101.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-hd3e95f3_10.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.2.0-h69a702a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.82.2-h2ff4ddf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.3-h03adeef_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libhiredis-1.0.2-h2cc385e_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-25_linux64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm19-19.1.4-ha7bfdaf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libmamba-2.0.4-hf72d635_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-2.0.4-py312hf3f0a4e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h2564987_115.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libntlm-1.4-h7f98852_1002.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.5-h4ab18f5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.28-pthreads_h94d23a6_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.4.0-hac27bb2_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.4.0-h4d9b6c2_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.4.0-h4d9b6c2_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.4.0-h3f63f65_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.4.0-hac27bb2_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.4.0-hac27bb2_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.4.0-hac27bb2_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.4.0-h3f63f65_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.4.0-h5c8f2c3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.4.0-h5c8f2c3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.4.0-h5888daf_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.4.0-h6481b9d_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.4.0-h5888daf_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpq-17.2-h04577a9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libraw-0.21.3-hca62329_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.58.4-hc0ffecb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-13.3.0-heb74ff8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libselinux-cos6-x86_64-2.0.94-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libsepol-cos6-x86_64-2.0.41-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.30-h3509ff9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libspnav-1.1-h4ab18f5_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.0-hadc24fc_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-hc0a3c3a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-13.3.0-h84ea5a7_101.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-he137b08_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.49.2-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libva-2.22.0-h8a09558_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libx11-common-cos6-x86_64-1.6.4-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libx11-cos6-x86_64-1.6.4-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxau-cos6-x86_64-1.0.6-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxcb-cos6-x86_64-1.12-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxdamage-cos6-x86_64-1.1.3-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxext-cos6-x86_64-1.3.3-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxfixes-cos6-x86_64-5.0.3-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxi-cos6-x86_64-1.7.8-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxi-devel-cos6-x86_64-1.7.8-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.7.0-h2c5496b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.5-hb346dea_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxxf86vm-cos6-x86_64-1.1.3-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/loguru-0.7.2-py312h7900ff3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-3.9.3-py312h7900ff3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.9.3-py312hd3ec401_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.2.0-py312h7900ff3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-dri-drivers-cos6-x86_64-11.0.7-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-dri1-drivers-cos6-x86_64-7.11-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libegl-cos6-x86_64-11.0.7-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libegl-devel-cos6-x86_64-11.0.7-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libgl-cos6-x86_64-11.0.7-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libgl-devel-cos6-x86_64-11.0.7-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.0-py312h68727a3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-9.0.1-h266115a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-9.0.1-he0572af_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.12.1-h297d8ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.11.3-he02047a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.1.3-py312h58c1407_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/occt-7.8.1-all_h4c4714a_203.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.2-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/opencl-headers-2024.10.24-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openexr-3.3.2-hccdc605_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.4.1-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openldap-2.6.9-he970967_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pango-1.54.0-h4c5309f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pcl-1.14.1-hd932182_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-hba22ea6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/perl-5.32.1-7_hd590300_perl5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.0.0-py312h7b63e92_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/label/pivy_rc/linux-64/pivy-0.6.9.a0-py312hc9ec64c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pixman-cos6-x86_64-0.32.8-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.0.1-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/proj-9.5.1-h0054346_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.2.0-py312h66e93f0_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-2.13.6-pyh1ec8472_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-global-2.13.6-pyh415d2e4_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py312h66e93f0_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyside6-6.7.3-py312h91f0f75_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.0-hab00c5b_0_cpython.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-5_cp312.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py312h66e93f0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/qt6-main-6.7.3-h6e8976b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0.post20240409-hac33072_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/reproc-14.2.5.post0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/reproc-cpp-14.2.5.post0-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.5-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py312h66e93f0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py312h66e93f0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py312h62794b6_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sed-4.8-he412f7d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.6.0-pyhff2d567_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/simdjson-3.10.1-h84d6215_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/smesh-9.9.0.0-h0d71592_13.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/soqt6-1.6.3-h23d7b0e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.14.1-hed91bc2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.47.0-h9eae976_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.3.0-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/swig-4.3.0-heed6a68_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_17.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-2022.0.0-hceb3a55_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-devel-2022.0.0-h1f99690_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py312h68727a3_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-15.1.0-py312h66e93f0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-4.0.6-h005c6e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.28.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-9.3.1-qt_py312he5e186c_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-base-9.3.1-qt_py312hc73667e_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/vtk-io-ffmpeg-9.3.1-qt_py312hc8241c7_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.1-h3e06ad9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wayland-protocols-1.37-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.2.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.1-hb711507_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.3.0-h988505b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.43-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-he73a12e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.10-h4f16b4b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-6.0.1-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.11-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.1-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxxf86vm-1.1.5-hb9d3cd8_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/xorg-x11-server-common-cos6-x86_64-1.17.4-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/xorg-x11-server-xvfb-cos6-x86_64-1.17.4-h9b0a68f_1105.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xorgproto-2024.1-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.8.0-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.18.0-py312h66e93f0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py312hef9b889_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda
+ linux-aarch64:
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.9-py312hcc812fe_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/alsa-lib-1.2.13-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aom-3.9.1-hcccb83c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/atk-1.0-2.38.0-hedc4a1f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils-2.43-hf1166c9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.43-h4c662bb_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_linux-aarch64-2.43-hf1166c9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/blosc-1.21.6-hd2997c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-1.1.0-h86ecc28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-bin-1.1.0-h86ecc28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-python-1.1.0-py312h6f74592_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.34.3-h86ecc28_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/c-compiler-1.8.0-h6561dab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2024.8.30-hcefe29a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cairo-1.18.0-hdb1a16f_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ccache-4.10.1-ha3bccff_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.8.30-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.17.1-py312hac81daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cmake-3.28.3-hef020d8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/coin3d-4.0.3-h411181d_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/compilers-1.8.0-h8af1aa0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/conda-24.11.0-py312h996f985_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-devenv-3.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.11.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.4.0-pyh7900ff3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.11.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/contourpy-1.3.1-py312h451a7dd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cpp-expected-1.1.0-h4c384f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cxx-compiler-1.8.0-heb6c788_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cyrus-sasl-2.1.27-hf6b2984_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/dav1d-1.2.1-h31becfc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/dbus-1.13.6-h12b9eeb_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/debugpy-1.8.9-py312h6f74592_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.9-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/double-conversion-3.3.0-h2f0025b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/doxygen-1.10.0-h7b6a552_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/eigen-3.4.0-h2a328a1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/expat-2.6.4-h5ad3122_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ffmpeg-6.1.2-gpl_hd3257db_706.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/flann-1.9.2-h7e74b68_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fmt-11.0.2-h70be974_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fontconfig-2.15.0-h8dda3cd_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fonttools-4.55.0-py312hcc812fe_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fortran-compiler-1.8.0-h25a59a9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/freeimage-3.18.0-h6cb32c8_22.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.12.1-hf0a5ef3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/fribidi-1.0.10-hb9de7d4_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/frozendict-2.4.6-py312hb2c0f52_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/frozenlist-1.5.0-py312hb2c0f52_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc-13.3.0-h8a56e6e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-13.3.0-hcdea9b6_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_linux-aarch64-13.3.0-h1cd514b_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gdk-pixbuf-2.42.12-ha61d561_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gfortran-13.3.0-h8a56e6e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gfortran_impl_linux-aarch64-13.3.0-h174a3c4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gfortran_linux-aarch64-13.3.0-h2809cf8_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/git-2.47.1-pl5321h0e2bd52_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gl2ps-1.4.2-hedfd65a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glew-2.1.0-h01db608_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gmp-6.3.0-h0a1ffab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/graphite2-1.3.13-h2f0025b_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/graphviz-12.0.0-h2a7c30b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gtk2-2.24.33-h4cb56f0_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gts-0.7.6-he293c15_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx-13.3.0-h8a56e6e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_impl_linux-aarch64-13.3.0-h1211b58_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_linux-aarch64-13.3.0-h2864abd_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/harfbuzz-9.0.0-hbf49d6b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf4-4.2.15-hb6ba311_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf5-1.14.4-nompi_h6ed7ac7_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/imath-3.1.12-hf428078_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/jsoncpp-1.9.6-h17cf362_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/jsonpointer-3.0.0-py312h996f985_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/jxrlib-1.1-h31becfc_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_18.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/kiwisolver-1.4.7-py312h88dc405_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lame-3.100-h4e544f5_1003.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.16-h922389a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libaec-1.1.3-h2f0025b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarchive-3.7.7-h2f0f0fe_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libass-0.17.3-hcc173ff_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-25_linuxaarch64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libboost-1.86.0-hcc9b45e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libboost-devel-1.86.0-h37bb5a9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libboost-headers-1.86.0-h8af1aa0_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h86ecc28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-25_linuxaarch64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-cpp19.1-19.1.4-default_he324ac1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang13-19.1.4-default_h4390ef5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcups-2.3.3-h405e4a8_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.10.1-h3ec0cbf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.22-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdrm-2.4.123-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libdrm-cos7-aarch64-2.4.97-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libegl-1.7.0-hd24410f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.6.4-h5ad3122_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.2-h3557bc0_5.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-14.2.0-he277a41_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-aarch64-13.3.0-h0c07274_101.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-14.2.0-he9431aa_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgd-2.3.3-h6818b27_10.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-14.2.0-he9431aa_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgl-1.7.0-hd24410f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglib-2.82.2-hc486b8e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglu-9.0.3-hc7f7585_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglvnd-1.7.0-hd24410f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libglvnd-cos7-aarch64-1.0.1-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libglvnd-glx-cos7-aarch64-1.0.1-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglx-1.7.0-hd24410f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libhiredis-1.0.2-h05efe27_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libhwloc-2.11.2-default_h2c612a5_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-25_linuxaarch64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm19-19.1.4-h2edbd07_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libmamba-2.0.4-h489cd8b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libmambapy-2.0.4-py312h33c3f33_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnetcdf-4.9.2-nompi_h4c91916_115.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libntlm-1.4-hf897c2e_1002.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libogg-1.3.5-h0b9eccb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.28-pthreads_h9d3fd7e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopengl-1.7.0-hd24410f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-2024.4.0-hd7d4d4f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-arm-cpu-plugin-2024.4.0-hd7d4d4f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-auto-batch-plugin-2024.4.0-hf15766e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-auto-plugin-2024.4.0-hf15766e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-hetero-plugin-2024.4.0-h6ef32b0_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-ir-frontend-2024.4.0-h6ef32b0_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-onnx-frontend-2024.4.0-haa99d6a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-paddle-frontend-2024.4.0-haa99d6a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-pytorch-frontend-2024.4.0-h5ad3122_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-tensorflow-frontend-2024.4.0-he24a241_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-tensorflow-lite-frontend-2024.4.0-h5ad3122_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopus-1.3.1-hf897c2e_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpciaccess-0.18-h31becfc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.44-hc4a20ef_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpq-17.2-h081282e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libraw-0.21.3-hf20323b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/librsvg-2.58.4-h00090f3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsanitizer-13.3.0-ha58e236_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libselinux-cos7-aarch64-2.5-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libsepol-cos7-aarch64-2.5-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsolv-0.7.30-h62756fc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libspnav-1.1-h68df207_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.47.0-hc4a20ef_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.1-ha41c0db_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-14.2.0-h3f4de04_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-aarch64-13.3.0-h0c07274_101.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-14.2.0-hf1166c9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libtheora-1.1.1-h68df207_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libtiff-4.7.0-hec21d91_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.49.2-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libvorbis-1.3.7-h01db608_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libvpx-1.14.1-h0a1ffab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.4.0-h31becfc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libx11-common-cos7-aarch64-1.6.7-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libx11-cos7-aarch64-1.6.7-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxau-cos7-aarch64-1.0.8-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxcb-cos7-aarch64-1.13-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxdamage-cos7-aarch64-1.1.4-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxext-cos7-aarch64-1.3.3-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxfixes-cos7-aarch64-5.0.3-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxi-cos7-aarch64-1.7.9-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxi-devel-cos7-aarch64-1.7.9-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxkbcommon-1.7.0-h46f2afe_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.13.5-hf4efe5d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxslt-1.1.39-h1cc9640_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libxxf86vm-cos7-aarch64-1.1.4-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzip-1.11.2-h3e8f909_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/loguru-0.7.2-py312h8025657_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lzo-2.10-h31becfc_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-3.9.3-py312h8025657_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-base-3.9.3-py312h965bf68_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/menuinst-2.2.0-py312h996f985_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-dri-drivers-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-khr-devel-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libegl-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libegl-devel-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libgbm-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libgl-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libgl-devel-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mesa-libglapi-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/msgpack-python-1.1.0-py312h451a7dd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mysql-common-9.0.1-h3f5c77f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mysql-libs-9.0.1-h11569fd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-hcccb83c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ninja-1.12.1-h70be974_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/nlohmann_json-3.11.3-h0a1ffab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-2.1.3-py312h2eb110b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/occt-7.8.1-all_h78e3548_203.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openexr-3.3.2-haace395_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openh264-2.4.1-h2f0025b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.2-h0d9d63b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openldap-2.6.9-h30c48ee_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pango-1.54.0-h7579590_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pcl-1.14.1-h777c531_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pcre2-10.44-h070dd5b_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/perl-5.32.1-7_h31becfc_perl5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.0.0-py312h5ab5af3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/label/pivy_rc/linux-aarch64/pivy-0.6.9.a0-py312h615b049_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pixman-0.43.4-h2f0025b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pixman-cos7-aarch64-0.34.0-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.0.1-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/proj-9.5.1-h9655f4d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/propcache-0.2.0-py312hb2c0f52_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pugixml-1.14-h2f0025b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-2.13.6-pyh1ec8472_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-global-2.13.6-pyh415d2e4_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pycosat-0.6.6-py312hb2c0f52_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyside6-6.7.3-py312hdd999d0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.12.0-h43d1f9e_0_cpython.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python_abi-3.12-5_cp312.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyyaml-6.0.2-py312hb2c0f52_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/qhull-2020.2-h70be974_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/qt6-main-6.7.3-h666f7c6_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rapidjson-1.1.0.post20240409-h0a1ffab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/reproc-14.2.4.post0-h31becfc_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/reproc-cpp-14.2.4.post0-h2f0025b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rhash-1.4.5-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ruamel.yaml-0.18.6-py312hb2c0f52_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ruamel.yaml.clib-0.2.8-py312hb2c0f52_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.14.1-py312hcbff3fa_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/sed-4.8-ha0d5d3d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.6.0-pyhff2d567_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/simdjson-3.10.1-h17cf362_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/smesh-9.9.0.0-h212b014_13.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-h1088aeb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/soqt6-1.6.3-h808f404_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/spdlog-1.14.1-h9d9cc24_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/sqlite-3.47.0-h578a6b9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/svt-av1-2.3.0-h5ad3122_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/swig-4.3.0-h2f4baa9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-aarch64-2.17-h5b4a56d_18.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tbb-2022.0.0-h243be18_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tbb-devel-2022.0.0-h9a8439e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.4.2-py312h52516f5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ukkonen-1.0.1-py312h451a7dd_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/unicodedata2-15.1.0-py312hb2c0f52_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/utfcpp-4.0.6-h01cc221_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.28.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/vtk-9.3.1-qt_py312hbfbf3b8_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/vtk-base-9.3.1-qt_py312hc7336a2_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/vtk-io-ffmpeg-9.3.1-qt_py312hf51569e_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/wayland-1.23.1-h698ed42_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.2.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/x264-1!164.3095-h4e544f5_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/x265-3.5-hdd96247_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-0.4.1-h5c728e9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-cursor-0.1.5-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-image-0.4.0-h5c728e9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-keysyms-0.4.1-h5c728e9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-renderutil-0.3.10-h5c728e9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-wm-0.4.2-h5c728e9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xerces-c-3.3.0-h595f43b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xkeyboard-config-2.43-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libice-1.1.1-h57736b2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libsm-1.2.4-hbac51e1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libx11-1.8.9-he755bbd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxau-1.0.11-h86ecc28_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxcomposite-0.4.6-h86ecc28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxcursor-1.2.3-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdamage-1.1.6-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.5-h57736b2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxext-1.3.6-h57736b2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxfixes-6.0.1-h57736b2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxi-1.8.2-h57736b2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrandr-1.5.4-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrender-0.9.11-h57736b2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxt-1.3.1-h57736b2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxtst-1.2.5-h57736b2_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxxf86vm-1.1.5-h57736b2_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/xorg-x11-server-common-cos7-aarch64-1.20.4-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/xorg-x11-server-xvfb-cos7-aarch64-1.20.4-ha675448_1106.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-xorgproto-2024.1-h86ecc28_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-cpp-0.8.0-h2f0025b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.18.0-py312hb2c0f52_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-1.3.1-h86ecc28_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstandard-0.23.0-py312hb698573_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda
+ osx-64:
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aiohttp-3.11.9-py312h3520af0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aom-3.9.1-hf036a51_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/atk-1.0-2.38.0-h4bec284_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.1.0-h00291cd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.1.0-h00291cd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312h5861a67_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.3-hf13058a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.8.0-hfc4bf79_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.8.30-h8857fd0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h37bd5c4_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ccache-4.10.1-hee5fd93_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1010.6-h5b2de21_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1010.6-hea4301f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.8.30-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.17.1-py312hf857d28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-17-17.0.6-default_hb173f14_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-17.0.6-default_he371ed4_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-17.0.6-h1af8efd_23.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-17.0.6-h7e5c614_23.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-17.0.6-default_he371ed4_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-17.0.6-hc3430b7_23.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-17.0.6-h7e5c614_23.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cmake-3.28.3-h7c85d92_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/coin3d-4.0.3-h9b6ce5f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-17.0.6-h1020d70_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-17.0.6-hf2b8a54_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/compilers-1.8.0-h694c41f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/conda-24.11.0-py312hb401068_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-devenv-3.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.11.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.4.0-pyh7900ff3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.11.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.3.1-py312hc47a885_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cpp-expected-1.1.0-hb8565cd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.8.0-h385f146_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cyrus-sasl-2.1.27-hf9bab2b_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/dav1d-1.2.1-h0dc2134_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.9-py312haafddd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.9-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/double-conversion-3.3.0-he965462_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/doxygen-1.11.0-hdfe23c8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/eigen-3.4.0-h1c7c39f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/expat-2.6.4-h240833e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-6.1.2-gpl_h9c046ae_106.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/flann-1.9.2-h66ee4ad_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/fmt-11.0.2-h3c5361c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.15.0-h37eeddb_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.55.0-py312h3520af0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.8.0-h33d1f46_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/freeimage-3.18.0-h7cd8ba8_22.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.6-py312h3d0f464_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/frozenlist-1.5.0-py312h3d0f464_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gdk-pixbuf-2.42.12-ha587570_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gettext-0.22.5-hdfe23c8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gettext-tools-0.22.5-hdfe23c8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gfortran-13.2.0-h2c809b3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gfortran_impl_osx-64-13.2.0-h2bc304d_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gfortran_osx-64-13.2.0-h18f7dce_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/git-2.47.1-pl5321h0e333bc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gl2ps-1.4.2-hd82a5f3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/glew-2.1.0-h046ec9c_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h73e2aa4_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/graphviz-12.0.0-he14ced1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gtk2-2.24.33-h2c15c3c_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gts-0.7.6-h53e17e3_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-9.0.0-h098a298_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.4-nompi_h1607680_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/imath-3.1.12-h2016aa1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/isl-0.26-imath32_h2e86a7b_101.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/jsoncpp-1.9.6-h37c8870_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py312hb401068_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/jxrlib-1.1-h10d778d_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.7-py312hc5c4d5f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.16-ha2f27b4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-951.9-h0a3eb4e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-951.9-h5ffbe8e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240722.0-cxx17_hac325c4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.7-h7988bea_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libasprintf-0.22.5-hdfe23c8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libasprintf-devel-0.22.5-hdfe23c8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.3-h5386a9e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-25_osx64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libboost-1.86.0-hbe88bda_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libboost-devel-1.86.0-h6a1c779_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libboost-headers-1.86.0-h694c41f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h00291cd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h00291cd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h00291cd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-25_osx64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp17-17.0.6-default_hb173f14_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-19.1.4-default_hf2b7afa_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.10.1-h58e7537_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-19.1.4-hf95d169_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-17.0.6-h8f8a49f_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.22-h00291cd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.4-h240833e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgd-2.3.3-h2e77e4f_10.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-0.22.5-hdfe23c8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-devel-0.22.5-hdfe23c8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-64-13.2.0-h80d4556_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.82.2-hb6ef654_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libhiredis-1.0.2-h2beb688_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.11.2-default_h4cdd727_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.22.5-hdfe23c8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libintl-devel-0.22.5-hdfe23c8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-25_osx64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm17-17.0.6-hbedff68_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm19-19.1.4-hc29ff6c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libmamba-2.0.4-hd41e4cc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-2.0.4-py312h0252a60_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-nompi_h976d569_115.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.64.0-hc7306c3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libntlm-1.4-h0d85af4_1002.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libogg-1.3.5-hfdf4475_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.28-openmp_hbf64a52_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-2024.4.0-h84cb933_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.4.0-h92dab7a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-plugin-2024.4.0-h92dab7a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-hetero-plugin-2024.4.0-h14156cc_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.4.0-h84cb933_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-ir-frontend-2024.4.0-h14156cc_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-onnx-frontend-2024.4.0-he28f95a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-paddle-frontend-2024.4.0-he28f95a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.4.0-hc3d39de_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.4.0-h488aad4_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.4.0-hc3d39de_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.44-h4b8f8c9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libpq-17.2-hfbed10f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-5.28.2-h8b30cf6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libraw-0.21.3-h8f7feda_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/librsvg-2.58.4-h2682814_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libsolv-0.7.30-h69d5d9b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.47.0-h2f8c449_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-h3dc7d44_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libtheora-1.1.1-hfdf4475_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.7.0-h583c2ba_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.49.2-hd79239c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libvorbis-1.3.7-h046ec9c_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.14.1-hf036a51_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.4.0-h10d778d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.17.0-hf1f96e2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.13.5-h495214b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.39-h03b04e6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.11.2-h31df5bb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-19.1.4-ha54dae1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-17.0.6-hbedff68_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/loguru-0.7.2-py312hb401068_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-3.0.2-py312hbe3f5e4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-3.9.3-py312hb401068_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.9.3-py312h535dea3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.2.0-py312hb401068_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.3.1-h9d8efa1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.1-haed47dc_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.1.0-py312hc5c4d5f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/multidict-6.1.0-py312h6f3313d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/mysql-common-9.0.1-h918ca22_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/mysql-libs-9.0.1-h502887b_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-hf036a51_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ninja-1.12.1-h3c5361c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/nlohmann_json-3.11.3-hf036a51_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.1.3-py312hfc93d17_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/occt-7.8.1-all_ha9a7d59_203.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/openexr-3.3.2-h0b01aae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/openh264-2.4.1-h73e2aa4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.2-h7310d3a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/openldap-2.6.9-hd8a590d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.0-hd471939_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pango-1.54.0-h115fe74_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pcl-1.14.1-hbaf7342_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.44-h7634a1b_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/perl-5.32.1-7_h10d778d_perl5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pillow-11.0.0-py312h66fe14f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/label/pivy_rc/osx-64/pivy-0.6.9.a0-py312h27fdfec_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.43.4-h73e2aa4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.0.1-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/proj-9.5.1-h5273da6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/propcache-0.2.0-py312hb553811_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-h00291cd_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pugixml-1.14-he965462_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-2.13.6-pyh1ec8472_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-global-2.13.6-pyh415d2e4_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py312h01d7ebd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyside6-6.7.3-py312hdb00d57_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.0-h30d4d87_0_cpython.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-5_cp312.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.2-py312hb553811_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/qhull-2020.2-h3c5361c_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/qt6-main-6.7.3-h8612794_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/rapidjson-1.1.0.post20240409-hf036a51_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/reproc-14.2.5.post0-h6e16a3a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/reproc-cpp-14.2.5.post0-h240833e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.5-ha44c9a9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py312h3d0f464_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py312h3d0f464_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.14.1-py312h888eae2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/sed-4.7-h3efe00b_1000.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.6.0-pyhff2d567_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/simdjson-3.10.1-h37c8870_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/smesh-9.9.0.0-ha774313_13.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/soqt6-1.6.3-h667e493_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/spdlog-1.14.1-h325aa07_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.47.0-h6285a30_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-2.3.0-h97d8b74_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/swig-4.3.0-h05d4bff_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1300.6.5-h390ca13_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/tbb-2022.0.0-h0ec6371_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/tbb-devel-2022.0.0-h80d89ef_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.4.2-py312h01d7ebd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py312hc5c4d5f_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/unicodedata2-15.1.0-py312h3d0f464_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/utfcpp-4.0.6-h93fb1c9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.28.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/vtk-9.3.1-qt_py312h8bbc2db_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/vtk-base-9.3.1-qt_py312hfd5146d_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/vtk-io-ffmpeg-9.3.1-qt_py312h98fac4b_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.2.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/x264-1!164.3095-h775f41a_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/x265-3.5-hbb4e6a2_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/xerces-c-3.3.0-hd0321b6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.11-h00291cd_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.5-h00291cd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-cpp-0.8.0-he965462_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/yarl-1.18.0-py312h01d7ebd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-hd23fc13_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py312h7122b0e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda
+ osx-arm64:
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.9-py312h998013c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.9.1-h7bae524_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/atk-1.0-2.38.0-hd03087b_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.6-h5499902_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.1.0-hd74edd7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.1.0-hd74edd7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312hde4cb15_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.3-h5505292_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.8.0-hf48404e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.8.30-hf0a4a13_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.0-hb4a6bf7_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ccache-4.10.1-hbe278c5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-1010.6-hf67d63f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1010.6-h623e0ac_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.8.30-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.17.1-py312h0fad829_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-17-17.0.6-default_h146c034_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-17.0.6-default_h360f5da_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-17.0.6-he47c785_23.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-17.0.6-h07b0088_23.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-17.0.6-default_h360f5da_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-17.0.6-h50f59cd_23.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-17.0.6-h07b0088_23.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-3.28.3-h50fd54c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/coin3d-4.0.3-h705ab75_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-17.0.6-h856b3c1_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-17.0.6-h832e737_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compilers-1.8.0-hce30654_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.11.0-py312h81bd7bf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-devenv-3.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.11.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.4.0-pyh7900ff3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.11.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.3.1-py312hb23fbb9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cpp-expected-1.1.0-hffc8910_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.8.0-h18dbf2f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cyrus-sasl-2.1.27-h60b93bd_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.9-py312hd8f9ff3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.9-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/double-conversion-3.3.0-h13dd4ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/doxygen-1.11.0-h8414b35_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/eigen-3.4.0-h1995070_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.6.4-h286801f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ffmpeg-7.1.0-gpl_h92f8dbd_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/flann-1.9.2-hedd063d_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-11.0.2-h420ef59_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.15.0-h1383a14_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.55.0-py312h998013c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fortran-compiler-1.8.0-hc3477c4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/freeimage-3.18.0-h2e169f6_22.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.6-py312h0bf5046_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.5.0-py312h0bf5046_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gdk-pixbuf-2.42.12-h7ddc832_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-tools-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran-13.2.0-h1ca8e4b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_impl_osx-arm64-13.2.0-h252ada1_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_osx-arm64-13.2.0-h57527a5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/git-2.47.1-pl5321hd71a902_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gl2ps-1.4.2-hc97c1ff_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glew-2.1.0-h9f76cd9_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-hebf3989_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/graphviz-12.0.0-hbf8cc41_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gtk2-2.24.33-h91d5085_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gts-0.7.6-he42f4ea_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-9.0.0-h997cde5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h2ee6834_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.4-nompi_ha698983_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/imath-3.1.12-h025cafa_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/isl-0.26-imath32_h347afa1_101.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsoncpp-1.9.6-h7b3277c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py312h81bd7bf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jxrlib-1.1-h93a5062_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.7-py312h6142ec9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.16-ha0e7c42_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-951.9-h39a299f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-951.9-h3f9b568_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.3-hebf3989_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarchive-3.7.7-h7c07d2a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-devel-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libass-0.17.3-hf20b609_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-25_osxarm64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libboost-1.86.0-h29978a0_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libboost-devel-1.86.0-hf450f58_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libboost-headers-1.86.0-hce30654_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-25_osxarm64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp17-17.0.6-default_h146c034_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-19.1.4-default_h81d93ff_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.10.1-h13a7ad3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.4-ha82da77_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-17.0.6-h86353a2_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.22-hd74edd7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgd-2.3.3-hac1b3a8_10.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-devel-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-arm64-13.2.0-h5d7a38c_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.82.2-h07bd6cf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libhiredis-1.0.2-hbec66e7_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libhwloc-2.11.2-default_hbce5d74_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-devel-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-25_osxarm64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm17-17.0.6-h5090b49_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm19-19.1.4-hc4b4ae8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmamba-2.0.4-h4621f14_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-2.0.4-py312hd07f1d4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.9.2-nompi_h853a48d_115.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libntlm-1.4-h3422bc3_1002.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libogg-1.3.5-h99b78c6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.28-openmp_hf332438_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-2024.4.0-hbfeda7a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-arm-cpu-plugin-2024.4.0-hbfeda7a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-auto-batch-plugin-2024.4.0-hf276634_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-auto-plugin-2024.4.0-hf276634_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-hetero-plugin-2024.4.0-h03892cd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-ir-frontend-2024.4.0-h03892cd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-onnx-frontend-2024.4.0-h7f5a098_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-paddle-frontend-2024.4.0-h7f5a098_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-pytorch-frontend-2024.4.0-h5833ebf_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-tensorflow-frontend-2024.4.0-h9d544f2_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-tensorflow-lite-frontend-2024.4.0-h5833ebf_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.44-hc14010f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpq-17.2-h9b1ab17_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libraw-0.21.3-hee66ff5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/librsvg-2.58.4-h40956f1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsolv-0.7.30-h6c9b7f8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.47.0-hbaaea75_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h9cc3647_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtheora-1.1.1-h99b78c6_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.0-hfce79cd_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.49.2-h7ab814d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libvorbis-1.3.7-h9f76cd9_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libvpx-1.14.1-h7bae524_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.4.0-h93a5062_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.5-hbbdcc80_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxslt-1.1.39-h223e5b9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.11.2-h1336266_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.4-hdb05f8b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-17.0.6-h5090b49_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/loguru-0.7.2-py312h81bd7bf_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h93a5062_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-3.9.3-py312h1f38498_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.9.3-py312hdbc7e53_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.2.0-py312h81bd7bf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.3.1-h8f1351a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.2.1-hb693164_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.1.0-py312h6142ec9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mysql-common-9.0.1-h0887d5e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mysql-libs-9.0.1-he9bc4e1_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ninja-1.12.1-h420ef59_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/nlohmann_json-3.11.3-h00cdb27_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-2.1.3-py312h94ee1e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/occt-7.8.1-all_h869bdd7_203.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openexr-3.3.2-h04410fd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openh264-2.5.0-h774163f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.2-h9f1df11_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openldap-2.6.9-hbe55e7a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.54.0-h9ee27a3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcl-1.14.1-h4a636e1_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.44-h297a79d_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/perl-5.32.1-7_h4614cfb_perl5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.0.0-py312haf37ca6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/label/pivy_rc/osx-arm64/pivy-0.6.9.a0-py312h1dac651_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.43.4-hebf3989_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.0.1-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.5.1-h1318a7e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/propcache-0.2.0-py312h024a12e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pugixml-1.14-h13dd4ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-2.13.6-pyh1ec8472_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-global-2.13.6-pyh415d2e4_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py312hea69d52_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyside6-6.7.3-py312h943ac22_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.0-h47c9636_0_cpython.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.12-5_cp312.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.2-py312h024a12e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/qhull-2020.2-h420ef59_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/qt6-main-6.7.3-h2fbab7f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rapidjson-1.1.0.post20240409-h00cdb27_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-14.2.5.post0-h5505292_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-cpp-14.2.5.post0-h286801f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.5-h7ab814d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py312h0bf5046_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312h0bf5046_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.14.1-py312h20deb59_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sed-4.8-hc6a1b29_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.6.0-pyhff2d567_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/simdjson-3.10.1-h7b3277c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/smesh-9.9.0.0-hf192bc0_13.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-hd02b534_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/soqt6-1.6.3-hd20b56a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/spdlog-1.14.1-h6d8af72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.47.0-hcd14bea_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-2.3.0-hf24288c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/swig-4.3.0-h051d1ac_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1300.6.5-h03f4b80_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tbb-2022.0.0-h0cbf7ec_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tbb-devel-2022.0.0-h6e261d1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.2-py312hea69d52_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py312h6142ec9_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-15.1.0-py312h0bf5046_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/utfcpp-4.0.6-h54c0426_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.28.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/vtk-9.3.1-qt_py312h8d5bf7a_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/vtk-base-9.3.1-qt_py312h679c1d7_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/vtk-io-ffmpeg-9.3.1-qt_py312hf99a90b_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.2.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/x264-1!164.3095-h57fd34a_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/x265-3.5-hbc6ce65_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xerces-c-3.3.0-hd62221f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hd74edd7_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.5-hd74edd7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-cpp-0.8.0-h13dd4ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.18.0-py312hea69d52_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py312h15fbf35_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.6-hb46c0d2_0.conda
+ win-64:
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aiohttp-3.11.9-py312h31fea79_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aom-3.9.1-he0c23c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.6-h85f69ea_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/c-compiler-1.8.0-hcfcfb64_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.8.30-h56e8100_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.0-h32b962e_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ccache-4.10.1-h65df0e8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.8.30-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-1.17.1-py312h4389bb4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/clang-19-19.1.4-default_hec7ea82_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/clang-19.1.4-default_hec7ea82_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/cmake-3.28.3-hf0feee3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/coin3d-4.0.3-h192c3d0_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/compiler-rt-19.1.4-hc790b64_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_win-64-19.1.4-hc790b64_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/compilers-1.8.0-h57928b3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/conda-24.11.0-py312h2e8e312_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-devenv-3.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.11.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.4.0-pyh7900ff3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.11.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.3.1-py312hd5eb7cc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/cpp-expected-1.1.0-h91493d7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/cxx-compiler-1.8.0-h91493d7_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.9-py312h275cf98_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.9-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/double-conversion-3.3.0-h63175ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/doxygen-1.11.0-hbf3f430_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/eigen-3.4.0-h91493d7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/expat-2.6.4-he0c23c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ffmpeg-7.1.0-gpl_h2585aa8_705.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/flang-19.1.4-hbeecb71_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/flang_impl_win-64-19.1.4-h719f0c7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/flang_win-64-19.1.4-h719f0c7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/flann-1.9.2-h8958603_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/fmt-11.0.2-h7f575de_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.15.0-h765892d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.55.0-py312h31fea79_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/fortran-compiler-1.8.0-h95e3450_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/freeimage-3.18.0-h8310ca0_22.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.6-py312h4389bb4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/frozenlist-1.5.0-py312h4389bb4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/gdk-pixbuf-2.42.12-hed59a49_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/getopt-win32-0.1-hcfcfb64_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/git-2.47.1-h57928b3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/gl2ps-1.4.2-had7236b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/glew-2.1.0-h39d44d4_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.13-h63175ca_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/graphviz-12.0.0-hb01754f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/gts-0.7.6-h6b5321d_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/harfbuzz-9.0.0-h2bedf89_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/hdf4-4.2.15-h5557f11_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.4-nompi_hd5d9e70_105.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/icu-75.1-he0c23c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/imath-3.1.12-hbb528cf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/jsoncpp-1.9.6-hc790b64_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py312h2e8e312_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/jxrlib-1.1-hcfcfb64_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.7-py312hd5eb7cc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.16-h67d730c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.7-h88ece9c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-25_win64_mkl.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libboost-1.86.0-h444863b_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libboost-devel-1.86.0-h91493d7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libboost-headers-1.86.0-h57928b3_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-25_win64_mkl.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libclang13-19.1.4-default_ha5278ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.10.1-h1ee3ff0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.22-h2466b09_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libflang-19.1.4-he0c23c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libgd-2.3.3-h085315d_10.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libglib-2.82.2-h7025463_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libhiredis-1.0.2-h0e60522_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.2-default_hc8275d1_1000.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-25_win64_mkl.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libllvm19-19.1.4-h3089188_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libmamba-2.0.4-h81425b0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libmambapy-2.0.4-py312h643a1bd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.9.2-nompi_he239ae6_115.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libogg-1.3.5-h2466b09_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.44-h3ca93ac_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libraw-0.21.3-h0f5434b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/librsvg-2.58.4-h33bc1f6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libsolv-0.7.30-hbb528cf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.47.0-h2466b09_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libtheora-1.1.1-hc70643c_1006.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.0-hfc51747_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libuv-1.49.2-h2466b09_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.4.0-hcfcfb64_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.16-h013a479_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.13.5-h442d1da_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libxslt-1.1.39-h3df6e99_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libzip-1.11.2-h3135430_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/lld-19.1.4-hd91d51b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/llvm-tools-19.1.4-h2a44499_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/loguru-0.7.2-py312h2e8e312_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-hcfcfb64_1001.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.2-py312h31fea79_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/matplotlib-3.9.3-py312h2e8e312_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.9.3-py312h90004f6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.2.0-py312h275cf98_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.2.2-h66d3029_14.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.1.0-py312hd5eb7cc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/multidict-6.1.0-py312h31fea79_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ninja-1.12.1-hc790b64_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/nlohmann_json-3.11.3-he0c23c2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/numpy-2.1.3-py312h49bc9c5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/occt-7.8.1-all_hae6dad1_203.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/openexr-3.3.2-h974021d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/openh264-2.5.0-ha9db3cd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.2-h3d672ee_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.0-h2466b09_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pango-1.54.0-hbb871f6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pcl-1.14.1-h8d4a065_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.44-h3d7b363_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pillow-10.4.0-py312h381445a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/label/pivy_rc/win-64/pivy-0.6.9.a0-py312h6680977_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pixman-0.43.4-h63175ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.0.1-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/proj-9.5.1-h4f671f6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/propcache-0.2.0-py312h4389bb4_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-h2466b09_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pugixml-1.14-h63175ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-2.13.6-pyh1ec8472_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pybind11-global-2.13.6-pyhab904b8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py312h4389bb4_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pyside6-6.7.3-py312h2ee7485_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.12.0-h2628c8c_0_cpython.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-5_cp312.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.2-py312h4389bb4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/qhull-2020.2-hc790b64_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/qt6-main-6.7.3-hfb098fa_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/rapidjson-1.1.0.post20240409-he0c23c2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-14.2.5.post0-h2466b09_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/reproc-cpp-14.2.5.post0-he0c23c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py312h4389bb4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312h4389bb4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py312h337df96_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.6.0-pyhff2d567_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/simdjson-3.10.1-hc790b64_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/smesh-9.9.0.0-hdbf5530_13.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/snappy-1.2.1-h23299a8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/soqt6-1.6.3-h796eb14_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/spdlog-1.14.1-h9f2357e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/sqlite-3.47.0-h2466b09_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/svt-av1-2.3.0-he0c23c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/swig-4.3.0-h51fbe9b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-devel-2021.13.0-h47441b3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/tornado-6.4.2-py312h4389bb4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/truststore-0.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.0.1-py312hd5eb7cc_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/unicodedata2-15.1.0-py312h4389bb4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/utfcpp-4.0.6-hc1507ef_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-ha32ba9b_23.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34433-he29a5d6_23.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.28.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34433-hdffcdeb_23.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vs2019_win-64-19.29.30139-he1865b1_23.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vswhere-3.1.7-h57928b3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vtk-9.3.1-qt_py312h88e836f_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vtk-base-9.3.1-qt_py312h44e7938_209.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/win32_setctime-1.1.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wslink-2.2.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/x264-1!164.3095-h8ffe710_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/x265-3.5-h2d74725_3.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xerces-c-3.3.0-he0c23c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-kbproto-1.0.7-hcd874cb_1002.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libice-1.1.1-hcd874cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libsm-1.2.4-hcd874cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libx11-1.8.9-h0076a8d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxpm-3.5.17-hcd874cb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxt-1.3.0-hcd874cb_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-xproto-7.0.31-hcd874cb_1007.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-cpp-0.8.0-h63175ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/yarl-1.18.0-py312h4389bb4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/zlib-1.3.1-h2466b09_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py312h7606c53_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda
+packages:
+- kind: conda
+ name: _libgcc_mutex
+ version: '0.1'
+ build: conda_forge
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
+ sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
+ md5: d7c89558ba9fa0495403155b64376d81
+ license: None
+ size: 2562
+ timestamp: 1578324546067
+- kind: conda
+ name: _openmp_mutex
+ version: '4.5'
+ build: 2_gnu
+ build_number: 16
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
+ md5: 73aaf86a425cc6e73fcf236a5a46396d
+ depends:
+ - _libgcc_mutex 0.1 conda_forge
+ - libgomp >=7.5.0
+ constrains:
+ - openmp_impl 9999
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 23621
+ timestamp: 1650670423406
+- kind: conda
+ name: _openmp_mutex
+ version: '4.5'
+ build: 2_gnu
+ build_number: 16
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2
+ sha256: 3702bef2f0a4d38bd8288bbe54aace623602a1343c2cfbefd3fa188e015bebf0
+ md5: 6168d71addc746e8f2b8d57dfd2edcea
+ depends:
+ - libgomp >=7.5.0
+ constrains:
+ - openmp_impl 9999
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 23712
+ timestamp: 1650670790230
+- kind: conda
+ name: aiohappyeyeballs
+ version: 2.4.4
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_0.conda
+ sha256: 4282838f468f75f0c1746cbc6cdd3365b9f6d449bf5af8a74b234e396d847bf0
+ md5: 8d6f8a679aa0272ba8d6092ce4824870
+ depends:
+ - python >=3.9
+ license: PSF-2.0
+ license_family: PSF
+ size: 19310
+ timestamp: 1733135584059
+- kind: conda
+ name: aiohttp
+ version: 3.11.9
+ build: py312h178313f_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.9-py312h178313f_0.conda
+ sha256: 875a8ad0da035b33ba8037c40a2ffc0412b9545bc3d15455a8a75db22a3ee471
+ md5: eeaf9831f262132fb12ce3921de09651
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aiohappyeyeballs >=2.3.0
+ - aiosignal >=1.1.2
+ - attrs >=17.3.0
+ - frozenlist >=1.1.1
+ - libgcc >=13
+ - multidict >=4.5,<7.0
+ - propcache >=0.2.0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - yarl >=1.17.0,<2.0
+ license: MIT AND Apache-2.0
+ license_family: Apache
+ size: 912186
+ timestamp: 1733125914520
+- kind: conda
+ name: aiohttp
+ version: 3.11.9
+ build: py312h31fea79_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/aiohttp-3.11.9-py312h31fea79_0.conda
+ sha256: a7c09f5233d961b210810b2ed415d988db7880382437de3cb7f5aa56af732863
+ md5: 481265463476863dd5b532e48ab8bb99
+ depends:
+ - aiohappyeyeballs >=2.3.0
+ - aiosignal >=1.1.2
+ - attrs >=17.3.0
+ - frozenlist >=1.1.1
+ - multidict >=4.5,<7.0
+ - propcache >=0.2.0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - yarl >=1.17.0,<2.0
+ license: MIT AND Apache-2.0
+ license_family: Apache
+ size: 857956
+ timestamp: 1733125237215
+- kind: conda
+ name: aiohttp
+ version: 3.11.9
+ build: py312h3520af0_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/aiohttp-3.11.9-py312h3520af0_0.conda
+ sha256: a51129609bd7baecdf6e9b48e9078c9a2ffd7411ca1fc815ad46c1c00d0b523b
+ md5: ea412f0f0280322bdc76a6d763d42993
+ depends:
+ - __osx >=10.13
+ - aiohappyeyeballs >=2.3.0
+ - aiosignal >=1.1.2
+ - attrs >=17.3.0
+ - frozenlist >=1.1.1
+ - multidict >=4.5,<7.0
+ - propcache >=0.2.0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - yarl >=1.17.0,<2.0
+ license: MIT AND Apache-2.0
+ license_family: Apache
+ size: 872532
+ timestamp: 1733125008215
+- kind: conda
+ name: aiohttp
+ version: 3.11.9
+ build: py312h998013c_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.9-py312h998013c_0.conda
+ sha256: 521b7c97a1122c0a6740a3200163e29bc8aa1d7efa273deb6e4c58a47779114b
+ md5: 0bb2657d1215a89fb586d387ce9c4daa
+ depends:
+ - __osx >=11.0
+ - aiohappyeyeballs >=2.3.0
+ - aiosignal >=1.1.2
+ - attrs >=17.3.0
+ - frozenlist >=1.1.1
+ - multidict >=4.5,<7.0
+ - propcache >=0.2.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - yarl >=1.17.0,<2.0
+ license: MIT AND Apache-2.0
+ license_family: Apache
+ size: 873089
+ timestamp: 1733125044394
+- kind: conda
+ name: aiohttp
+ version: 3.11.9
+ build: py312hcc812fe_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.9-py312hcc812fe_0.conda
+ sha256: e358d2c03b4eceb7ad3d8636705e60aa15bdec81305d9f9e1624fb5a03901147
+ md5: 06400e4f6428e6c2ea2b59df702b5b39
+ depends:
+ - aiohappyeyeballs >=2.3.0
+ - aiosignal >=1.1.2
+ - attrs >=17.3.0
+ - frozenlist >=1.1.1
+ - libgcc >=13
+ - multidict >=4.5,<7.0
+ - propcache >=0.2.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - yarl >=1.17.0,<2.0
+ license: MIT AND Apache-2.0
+ license_family: Apache
+ size: 900828
+ timestamp: 1733124971238
+- kind: conda
+ name: aiosignal
+ version: 1.3.1
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2
+ sha256: 575c742e14c86575986dc867463582a970463da50b77264cdf54df74f5563783
+ md5: d1e1eb7e21a9e2c74279d87dafb68156
+ depends:
+ - frozenlist >=1.1.0
+ - python >=3.7
+ license: Apache-2.0
+ license_family: APACHE
+ size: 12730
+ timestamp: 1667935912504
+- kind: conda
+ name: alsa-lib
+ version: 1.2.13
+ build: h86ecc28_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/alsa-lib-1.2.13-h86ecc28_0.conda
+ sha256: 4141180b0304559fefa8ca66f1cc217a1d957b03aa959f955daf33718162042f
+ md5: f643bb02c4bbcfe7de161a8ca5df530b
+ depends:
+ - libgcc >=13
+ license: LGPL-2.1-or-later
+ license_family: GPL
+ size: 591318
+ timestamp: 1731489774660
+- kind: conda
+ name: alsa-lib
+ version: 1.2.13
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.13-hb9d3cd8_0.conda
+ sha256: f507b58f77eabc0cc133723cb7fc45c053d551f234df85e70fb3ede082b0cd53
+ md5: ae1370588aa6a5157c34c73e9bbb36a0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: LGPL-2.1-or-later
+ license_family: GPL
+ size: 560238
+ timestamp: 1731489643707
+- kind: conda
+ name: aom
+ version: 3.9.1
+ build: h7bae524_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.9.1-h7bae524_0.conda
+ sha256: ec238f18ce8140485645252351a0eca9ef4f7a1c568a420f240a585229bc12ef
+ md5: 7adba36492a1bb22d98ffffe4f6fc6de
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 2235747
+ timestamp: 1718551382432
+- kind: conda
+ name: aom
+ version: 3.9.1
+ build: hac33072_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda
+ sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855
+ md5: 346722a0be40f6edc53f12640d301338
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 2706396
+ timestamp: 1718551242397
+- kind: conda
+ name: aom
+ version: 3.9.1
+ build: hcccb83c_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/aom-3.9.1-hcccb83c_0.conda
+ sha256: ac438ce5d3d3673a9188b535fc7cda413b479f0d52536aeeac1bd82faa656ea0
+ md5: cc744ac4efe5bcaa8cca51ff5b850df0
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 3250813
+ timestamp: 1718551360260
+- kind: conda
+ name: aom
+ version: 3.9.1
+ build: he0c23c2_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/aom-3.9.1-he0c23c2_0.conda
+ sha256: 0524d0c0b61dacd0c22ac7a8067f977b1d52380210933b04141f5099c5b6fec7
+ md5: 3d7c14285d3eb3239a76ff79063f27a5
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 1958151
+ timestamp: 1718551737234
+- kind: conda
+ name: aom
+ version: 3.9.1
+ build: hf036a51_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.9.1-hf036a51_0.conda
+ sha256: 3032f2f55d6eceb10d53217c2a7f43e1eac83603d91e21ce502e8179e63a75f5
+ md5: 3f17bc32cb7fcb2b4bf3d8d37f656eb8
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 2749186
+ timestamp: 1718551450314
+- kind: conda
+ name: archspec
+ version: 0.2.3
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.3-pyhd8ed1ab_0.conda
+ sha256: cef4062ea91f07a961a808801d6b34a163632150037f4bd28232310ff0301cd7
+ md5: 192278292e20704f663b9c766909d67b
+ depends:
+ - python >=3.6
+ license: MIT OR Apache-2.0
+ size: 48780
+ timestamp: 1708969700251
+- kind: conda
+ name: atk-1.0
+ version: 2.38.0
+ build: h04ea711_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda
+ sha256: df682395d05050cd1222740a42a551281210726a67447e5258968dd55854302e
+ md5: f730d54ba9cd543666d7220c9f7ed563
+ depends:
+ - libgcc-ng >=12
+ - libglib >=2.80.0,<3.0a0
+ - libstdcxx-ng >=12
+ constrains:
+ - atk-1.0 2.38.0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 355900
+ timestamp: 1713896169874
+- kind: conda
+ name: atk-1.0
+ version: 2.38.0
+ build: h4bec284_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/atk-1.0-2.38.0-h4bec284_2.conda
+ sha256: a5972a943764e46478c966b26be61de70dcd7d0cfda4bd0b0c46916ae32e0492
+ md5: d9684247c943d492d9aac8687bc5db77
+ depends:
+ - __osx >=10.9
+ - libcxx >=16
+ - libglib >=2.80.0,<3.0a0
+ - libintl >=0.22.5,<1.0a0
+ constrains:
+ - atk-1.0 2.38.0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 349989
+ timestamp: 1713896423623
+- kind: conda
+ name: atk-1.0
+ version: 2.38.0
+ build: hd03087b_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/atk-1.0-2.38.0-hd03087b_2.conda
+ sha256: b0747f9b1bc03d1932b4d8c586f39a35ac97e7e72fe6e63f2b2a2472d466f3c1
+ md5: 57301986d02d30d6805fdce6c99074ee
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ - libglib >=2.80.0,<3.0a0
+ - libintl >=0.22.5,<1.0a0
+ constrains:
+ - atk-1.0 2.38.0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 347530
+ timestamp: 1713896411580
+- kind: conda
+ name: atk-1.0
+ version: 2.38.0
+ build: hedc4a1f_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/atk-1.0-2.38.0-hedc4a1f_2.conda
+ sha256: 69f70048a1a915be7b8ad5d2cbb7bf020baa989b5506e45a676ef4ef5106c4f0
+ md5: 9308557e2328f944bd5809c5630761af
+ depends:
+ - libgcc-ng >=12
+ - libglib >=2.80.0,<3.0a0
+ - libstdcxx-ng >=12
+ constrains:
+ - atk-1.0 2.38.0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 358327
+ timestamp: 1713898303194
+- kind: conda
+ name: attrs
+ version: 24.2.0
+ build: pyh71513ae_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda
+ sha256: 28dba85a7e0f7fb57d7315e13f603d1e41b83c5b88aa2a602596b52c833a2ff8
+ md5: 6732fa52eb8e66e5afeb32db8701a791
+ depends:
+ - python >=3.7
+ license: MIT
+ license_family: MIT
+ size: 56048
+ timestamp: 1722977241383
+- kind: conda
+ name: binutils
+ version: '2.43'
+ build: h4852527_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.43-h4852527_2.conda
+ sha256: 92be0f8ccd501ceeb3c782e2182e6ea04dca46799038176de40a57bca45512c5
+ md5: 348619f90eee04901f4a70615efff35b
+ depends:
+ - binutils_impl_linux-64 >=2.43,<2.44.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 33876
+ timestamp: 1729655402186
+- kind: conda
+ name: binutils
+ version: '2.43'
+ build: hf1166c9_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils-2.43-hf1166c9_2.conda
+ sha256: 50962dd8b4de41c9dcd2d19f37683aff1a7c3fc01e6b1617dd250940f2b83055
+ md5: 4afcab775fe2288fce420514cd92ae37
+ depends:
+ - binutils_impl_linux-aarch64 >=2.43,<2.44.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 33870
+ timestamp: 1729655405026
+- kind: conda
+ name: binutils_impl_linux-64
+ version: '2.43'
+ build: h4bf12b8_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.43-h4bf12b8_2.conda
+ sha256: 267e78990247369b13234bda270f31beb56a600b4851a8244e31dd9ad85b3b17
+ md5: cf0c5521ac2a20dfa6c662a4009eeef6
+ depends:
+ - ld_impl_linux-64 2.43 h712a8e2_2
+ - sysroot_linux-64
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 5682777
+ timestamp: 1729655371045
+- kind: conda
+ name: binutils_impl_linux-aarch64
+ version: '2.43'
+ build: h4c662bb_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.43-h4c662bb_2.conda
+ sha256: 0bb8058bdb662e085f844f803a98e89314268c3e7aa79d495529992a8f41ecf1
+ md5: 2eb09e329ee7030a4cab0269eeea97d4
+ depends:
+ - ld_impl_linux-aarch64 2.43 h80caac9_2
+ - sysroot_linux-aarch64
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 6722685
+ timestamp: 1729655379343
+- kind: conda
+ name: binutils_linux-64
+ version: '2.43'
+ build: h4852527_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.43-h4852527_2.conda
+ sha256: df52bd8b8b2a20a0c529d9ad08aaf66093ac318aa8a33d270f18274341a77062
+ md5: 18aba879ddf1f8f28145ca6fcb873d8c
+ depends:
+ - binutils_impl_linux-64 2.43 h4bf12b8_2
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 34945
+ timestamp: 1729655404893
+- kind: conda
+ name: binutils_linux-aarch64
+ version: '2.43'
+ build: hf1166c9_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/binutils_linux-aarch64-2.43-hf1166c9_2.conda
+ sha256: 97fe7c2023fdbef453a2a05d53d81037a7e18c4b3946dd68a7ea122747e7d1fa
+ md5: 5c308468fe391f32dc3bb57a4b4622aa
+ depends:
+ - binutils_impl_linux-aarch64 2.43 h4c662bb_2
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 34879
+ timestamp: 1729655407691
+- kind: conda
+ name: blosc
+ version: 1.21.6
+ build: h5499902_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.6-h5499902_0.conda
+ sha256: 5a1e635a371449a750b776cab64ad83f5218b58b3f137ebd33ad3ec17f1ce92e
+ md5: e94ca7aec8544f700d45b24aff2dd4d7
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.9.3,<1.10.0a0
+ - snappy >=1.2.0,<1.3.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 33201
+ timestamp: 1719266149627
+- kind: conda
+ name: blosc
+ version: 1.21.6
+ build: h7d75f6d_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda
+ sha256: 65e5f5dd3d68ed0d9d35e79d64f8141283cad2b55dcd9a04480ceea0e436aca8
+ md5: 3e5669e51737d04f4806dd3e8c424663
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.9.3,<1.10.0a0
+ - snappy >=1.2.0,<1.3.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 47051
+ timestamp: 1719266142315
+- kind: conda
+ name: blosc
+ version: 1.21.6
+ build: h85f69ea_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.6-h85f69ea_0.conda
+ sha256: 1289853b41df5355f45664f1cb015c868df1f570cf743e9e4a5bda8efe8c42fa
+ md5: 2390269374fded230fcbca8332a4adc0
+ depends:
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.9.3,<1.10.0a0
+ - snappy >=1.2.0,<1.3.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 50135
+ timestamp: 1719266616208
+- kind: conda
+ name: blosc
+ version: 1.21.6
+ build: hd2997c2_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/blosc-1.21.6-hd2997c2_0.conda
+ sha256: 4349c7227053c2042b0c31daf6782cbb29ed09557d2f08d7d710ef5288040e73
+ md5: 7e34841d8b76a87cb9ed5b2028f0f37f
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.9.3,<1.10.0a0
+ - snappy >=1.2.0,<1.3.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 35975
+ timestamp: 1719266339092
+- kind: conda
+ name: blosc
+ version: 1.21.6
+ build: hef167b5_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda
+ sha256: 6cc260f9c6d32c5e728a2099a52fdd7ee69a782fff7b400d0606fcd32e0f5fd1
+ md5: 54fe76ab3d0189acaef95156874db7f9
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.9.3,<1.10.0a0
+ - snappy >=1.2.0,<1.3.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 48842
+ timestamp: 1719266029046
+- kind: conda
+ name: boltons
+ version: 24.0.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/boltons-24.0.0-pyhd8ed1ab_0.conda
+ sha256: e44d07932306392372411ab1261670a552f96077f925af00c1559a18a73a1bdc
+ md5: 61de176bd62041f9cd5bd4fcd09eb0ff
+ depends:
+ - python ==2.7.*|>=3.7
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 297896
+ timestamp: 1711936529147
+- kind: conda
+ name: brotli
+ version: 1.1.0
+ build: h00291cd_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.1.0-h00291cd_2.conda
+ sha256: 624954bc08b3d7885a58c7d547282cfb9a201ce79b748b358f801de53e20f523
+ md5: 2db0c38a7f2321c5bdaf32b181e832c7
+ depends:
+ - __osx >=10.13
+ - brotli-bin 1.1.0 h00291cd_2
+ - libbrotlidec 1.1.0 h00291cd_2
+ - libbrotlienc 1.1.0 h00291cd_2
+ license: MIT
+ license_family: MIT
+ size: 19450
+ timestamp: 1725267851605
+- kind: conda
+ name: brotli
+ version: 1.1.0
+ build: h2466b09_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda
+ sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252
+ md5: 378f1c9421775dfe644731cb121c8979
+ depends:
+ - brotli-bin 1.1.0 h2466b09_2
+ - libbrotlidec 1.1.0 h2466b09_2
+ - libbrotlienc 1.1.0 h2466b09_2
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 19697
+ timestamp: 1725268293988
+- kind: conda
+ name: brotli
+ version: 1.1.0
+ build: h86ecc28_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-1.1.0-h86ecc28_2.conda
+ sha256: 260a981a68b63585384ab55a8fac954e8d14bdb4226b3d534333021f711495fe
+ md5: 5094acc34eb173f74205c0b55f0dd4a4
+ depends:
+ - brotli-bin 1.1.0 h86ecc28_2
+ - libbrotlidec 1.1.0 h86ecc28_2
+ - libbrotlienc 1.1.0 h86ecc28_2
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 19434
+ timestamp: 1725267810677
+- kind: conda
+ name: brotli
+ version: 1.1.0
+ build: hb9d3cd8_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda
+ sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b
+ md5: 98514fe74548d768907ce7a13f680e8f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - brotli-bin 1.1.0 hb9d3cd8_2
+ - libbrotlidec 1.1.0 hb9d3cd8_2
+ - libbrotlienc 1.1.0 hb9d3cd8_2
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 19264
+ timestamp: 1725267697072
+- kind: conda
+ name: brotli
+ version: 1.1.0
+ build: hd74edd7_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.1.0-hd74edd7_2.conda
+ sha256: a086f36ff68d6e30da625e910547f6211385246fb2474b144ac8c47c32254576
+ md5: 215e3dc8f2f837906d066e7f01aa77c0
+ depends:
+ - __osx >=11.0
+ - brotli-bin 1.1.0 hd74edd7_2
+ - libbrotlidec 1.1.0 hd74edd7_2
+ - libbrotlienc 1.1.0 hd74edd7_2
+ license: MIT
+ license_family: MIT
+ size: 19588
+ timestamp: 1725268044856
+- kind: conda
+ name: brotli-bin
+ version: 1.1.0
+ build: h00291cd_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.1.0-h00291cd_2.conda
+ sha256: 642a8492491109fd8270c1e2c33b18126712df0cedb94aaa2b1c6b02505a4bfa
+ md5: 049933ecbf552479a12c7917f0a4ce59
+ depends:
+ - __osx >=10.13
+ - libbrotlidec 1.1.0 h00291cd_2
+ - libbrotlienc 1.1.0 h00291cd_2
+ license: MIT
+ license_family: MIT
+ size: 16643
+ timestamp: 1725267837325
+- kind: conda
+ name: brotli-bin
+ version: 1.1.0
+ build: h2466b09_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda
+ sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2
+ md5: d22534a9be5771fc58eb7564947f669d
+ depends:
+ - libbrotlidec 1.1.0 h2466b09_2
+ - libbrotlienc 1.1.0 h2466b09_2
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 20837
+ timestamp: 1725268270219
+- kind: conda
+ name: brotli-bin
+ version: 1.1.0
+ build: h86ecc28_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-bin-1.1.0-h86ecc28_2.conda
+ sha256: 4231e3d00081d842870a6b8ba0ccf55ae0ccbc074dddbc0c115433bc32b1343d
+ md5: 7d48b185fe1f722f8cda4539bb931f85
+ depends:
+ - libbrotlidec 1.1.0 h86ecc28_2
+ - libbrotlienc 1.1.0 h86ecc28_2
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 18937
+ timestamp: 1725267802117
+- kind: conda
+ name: brotli-bin
+ version: 1.1.0
+ build: hb9d3cd8_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda
+ sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65
+ md5: c63b5e52939e795ba8d26e35d767a843
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlidec 1.1.0 hb9d3cd8_2
+ - libbrotlienc 1.1.0 hb9d3cd8_2
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 18881
+ timestamp: 1725267688731
+- kind: conda
+ name: brotli-bin
+ version: 1.1.0
+ build: hd74edd7_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.1.0-hd74edd7_2.conda
+ sha256: 28f1af63b49fddf58084fb94e5512ad46e9c453eb4be1d97449c67059e5b0680
+ md5: b8512db2145dc3ae8d86cdc21a8d421e
+ depends:
+ - __osx >=11.0
+ - libbrotlidec 1.1.0 hd74edd7_2
+ - libbrotlienc 1.1.0 hd74edd7_2
+ license: MIT
+ license_family: MIT
+ size: 16772
+ timestamp: 1725268026061
+- kind: conda
+ name: brotli-python
+ version: 1.1.0
+ build: py312h275cf98_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_2.conda
+ sha256: f83baa6f6bcba7b73f6921d5c1aa95ffc5d8b246ade933ade79250de0a4c9c4c
+ md5: a99aec1ac46794a5fb1cd3cf5d2b6110
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - libbrotlicommon 1.1.0 h2466b09_2
+ license: MIT
+ license_family: MIT
+ size: 321874
+ timestamp: 1725268491976
+- kind: conda
+ name: brotli-python
+ version: 1.1.0
+ build: py312h2ec8cdc_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda
+ sha256: f2a59ccd20b4816dea9a2a5cb917eb69728271dbf1aeab4e1b7e609330a50b6f
+ md5: b0b867af6fc74b2a0aa206da29c0f3cf
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - libbrotlicommon 1.1.0 hb9d3cd8_2
+ license: MIT
+ license_family: MIT
+ size: 349867
+ timestamp: 1725267732089
+- kind: conda
+ name: brotli-python
+ version: 1.1.0
+ build: py312h5861a67_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py312h5861a67_2.conda
+ sha256: 265764ff4ad9e5cfefe7ea85c53d95157bf16ac2c0e5f190c528e4c9c0c1e2d0
+ md5: b95025822e43128835826ec0cc45a551
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - libbrotlicommon 1.1.0 h00291cd_2
+ license: MIT
+ license_family: MIT
+ size: 363178
+ timestamp: 1725267893889
+- kind: conda
+ name: brotli-python
+ version: 1.1.0
+ build: py312h6f74592_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-python-1.1.0-py312h6f74592_2.conda
+ sha256: 9736bf660a0e4260c68f81d2635b51067f817813e6490ac9e8abd9a835dcbf6d
+ md5: e1e9727063057168d95f27a032acd0a4
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - libbrotlicommon 1.1.0 h86ecc28_2
+ license: MIT
+ license_family: MIT
+ size: 356878
+ timestamp: 1725267878508
+- kind: conda
+ name: brotli-python
+ version: 1.1.0
+ build: py312hde4cb15_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312hde4cb15_2.conda
+ sha256: 254b411fa78ccc226f42daf606772972466f93e9bc6895eabb4cfda22f5178af
+ md5: a83c2ef76ccb11bc2349f4f17696b15d
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - libbrotlicommon 1.1.0 hd74edd7_2
+ license: MIT
+ license_family: MIT
+ size: 339360
+ timestamp: 1725268143995
+- kind: conda
+ name: bzip2
+ version: 1.0.8
+ build: h2466b09_7
+ build_number: 7
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda
+ sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b
+ md5: 276e7ffe9ffe39688abc665ef0f45596
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: bzip2-1.0.6
+ license_family: BSD
+ size: 54927
+ timestamp: 1720974860185
+- kind: conda
+ name: bzip2
+ version: 1.0.8
+ build: h4bc722e_7
+ build_number: 7
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
+ sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d
+ md5: 62ee74e96c5ebb0af99386de58cf9553
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ license: bzip2-1.0.6
+ license_family: BSD
+ size: 252783
+ timestamp: 1720974456583
+- kind: conda
+ name: bzip2
+ version: 1.0.8
+ build: h68df207_7
+ build_number: 7
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda
+ sha256: 2258b0b33e1cb3a9852d47557984abb6e7ea58e3d7f92706ec1f8e879290c4cb
+ md5: 56398c28220513b9ea13d7b450acfb20
+ depends:
+ - libgcc-ng >=12
+ license: bzip2-1.0.6
+ license_family: BSD
+ size: 189884
+ timestamp: 1720974504976
+- kind: conda
+ name: bzip2
+ version: 1.0.8
+ build: h99b78c6_7
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda
+ sha256: adfa71f158cbd872a36394c56c3568e6034aa55c623634b37a4836bd036e6b91
+ md5: fc6948412dbbbe9a4c9ddbbcfe0a79ab
+ depends:
+ - __osx >=11.0
+ license: bzip2-1.0.6
+ license_family: BSD
+ size: 122909
+ timestamp: 1720974522888
+- kind: conda
+ name: bzip2
+ version: 1.0.8
+ build: hfdf4475_7
+ build_number: 7
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda
+ sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5
+ md5: 7ed4301d437b59045be7e051a0308211
+ depends:
+ - __osx >=10.13
+ license: bzip2-1.0.6
+ license_family: BSD
+ size: 134188
+ timestamp: 1720974491916
+- kind: conda
+ name: c-ares
+ version: 1.34.3
+ build: h5505292_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.3-h5505292_1.conda
+ sha256: 6dfa83cbd9acc8671d439fe9c745a5716faf6cbadf2f1e18c841bcf86cbba5f2
+ md5: fb72102e8a8f9bcd38e40af09ff41c42
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 179318
+ timestamp: 1732447193278
+- kind: conda
+ name: c-ares
+ version: 1.34.3
+ build: h86ecc28_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.34.3-h86ecc28_1.conda
+ sha256: 1181db17781d9d66c1478e7fbc3e82dd273e9cb43ed910e1d0f8b3c96b16e290
+ md5: 0cd9ebf65479cdceb6a4888b764dafcd
+ depends:
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 214791
+ timestamp: 1732447020593
+- kind: conda
+ name: c-ares
+ version: 1.34.3
+ build: hb9d3cd8_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.3-hb9d3cd8_1.conda
+ sha256: 732571ba6286dbccbf4c6450078a581b7a5620204faf876ff0ef282d77a6bfa8
+ md5: ee228789a85f961d14567252a03e725f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 204857
+ timestamp: 1732447031823
+- kind: conda
+ name: c-ares
+ version: 1.34.3
+ build: hf13058a_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.3-hf13058a_1.conda
+ sha256: 37c031f91bb4c7ebec248e283c453b24840764fb53b640768780dcd904093f17
+ md5: 7d8083876d71fe1316fc18369ee0dc58
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 184403
+ timestamp: 1732447223773
+- kind: conda
+ name: c-compiler
+ version: 1.8.0
+ build: h2b85faf_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.8.0-h2b85faf_1.conda
+ sha256: 009fced27be14e5ac750a04111a07eda79d73f80009300c1538cb83d5da71879
+ md5: fa7b3bf2965b9d74a81a0702d9bb49ee
+ depends:
+ - binutils
+ - gcc
+ - gcc_linux-64 13.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6085
+ timestamp: 1728985300402
+- kind: conda
+ name: c-compiler
+ version: 1.8.0
+ build: h6561dab_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/c-compiler-1.8.0-h6561dab_1.conda
+ sha256: f1b894a87a9bd8446de2ebd1820cc965e1fe2d5462e8c7df43a0b108732597a2
+ md5: 715a2eea9897fb01de5dd6ba82728935
+ depends:
+ - binutils
+ - gcc
+ - gcc_linux-aarch64 13.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6190
+ timestamp: 1728985292548
+- kind: conda
+ name: c-compiler
+ version: 1.8.0
+ build: hcfcfb64_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/c-compiler-1.8.0-hcfcfb64_1.conda
+ sha256: 3fc7b2ceb03cc024e5f91f70fb576da71ff9cec787f3c481f3372d311ecc04f3
+ md5: 33c106164044a19c4e8d13277ae97c3f
+ depends:
+ - vs2019_win-64
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6513
+ timestamp: 1728985389589
+- kind: conda
+ name: c-compiler
+ version: 1.8.0
+ build: hf48404e_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.8.0-hf48404e_1.conda
+ sha256: 64245f90755c314f61d48b38fc7b82270b709f88204789895f7c4b2b84204992
+ md5: 429476dcb80c4f9087cd8ac1fa2183d1
+ depends:
+ - cctools >=949.0.1
+ - clang_osx-arm64 17.*
+ - ld64 >=530
+ - llvm-openmp
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6220
+ timestamp: 1728985386241
+- kind: conda
+ name: c-compiler
+ version: 1.8.0
+ build: hfc4bf79_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.8.0-hfc4bf79_1.conda
+ sha256: b5bff50c0792933c19bdf4c18b77c5aedabce4b01f86d3b68815534f3e9e3640
+ md5: d6e3cf55128335736c8d4bb86e73c191
+ depends:
+ - cctools >=949.0.1
+ - clang_osx-64 17.*
+ - ld64 >=530
+ - llvm-openmp
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6210
+ timestamp: 1728985474611
+- kind: conda
+ name: ca-certificates
+ version: 2024.8.30
+ build: h56e8100_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.8.30-h56e8100_0.conda
+ sha256: 0fcac3a7ffcc556649e034a1802aedf795e64227eaa7194d207b01eaf26454c4
+ md5: 4c4fd67c18619be5aa65dc5b6c72e490
+ license: ISC
+ size: 158773
+ timestamp: 1725019107649
+- kind: conda
+ name: ca-certificates
+ version: 2024.8.30
+ build: h8857fd0_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.8.30-h8857fd0_0.conda
+ sha256: 593f302d0f44c2c771e1614ee6d56fffdc7d616e6f187669c8b0e34ffce3e1ae
+ md5: b7e5424e7f06547a903d28e4651dbb21
+ license: ISC
+ size: 158665
+ timestamp: 1725019059295
+- kind: conda
+ name: ca-certificates
+ version: 2024.8.30
+ build: hbcca054_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.8.30-hbcca054_0.conda
+ sha256: afee721baa6d988e27fef1832f68d6f32ac8cc99cdf6015732224c2841a09cea
+ md5: c27d1c142233b5bc9ca570c6e2e0c244
+ license: ISC
+ size: 159003
+ timestamp: 1725018903918
+- kind: conda
+ name: ca-certificates
+ version: 2024.8.30
+ build: hcefe29a_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2024.8.30-hcefe29a_0.conda
+ sha256: 2a2d827bee3775a85f0f1b2f2089291475c4416336d1b3a8cbce2964db547af8
+ md5: 70e57e8f59d2c98f86b49c69e5074be5
+ license: ISC
+ size: 159106
+ timestamp: 1725020043153
+- kind: conda
+ name: ca-certificates
+ version: 2024.8.30
+ build: hf0a4a13_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.8.30-hf0a4a13_0.conda
+ sha256: 2db1733f4b644575dbbdd7994a8f338e6ef937f5ebdb74acd557e9dda0211709
+ md5: 40dec13fd8348dbe303e57be74bd3d35
+ license: ISC
+ size: 158482
+ timestamp: 1725019034582
+- kind: conda
+ name: cairo
+ version: 1.18.0
+ build: h32b962e_3
+ build_number: 3
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.0-h32b962e_3.conda
+ sha256: 127101c9c2d1a56f8791c19141ceff13fd1d1a1da28cfaca549dc99d210cec6a
+ md5: 8f43723a4925c51e55c2d81725a97db4
+ depends:
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libglib >=2.80.3,<3.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pixman >=0.43.4,<1.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zlib
+ license: LGPL-2.1-only or MPL-1.1
+ size: 1516680
+ timestamp: 1721139332360
+- kind: conda
+ name: cairo
+ version: 1.18.0
+ build: h37bd5c4_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h37bd5c4_3.conda
+ sha256: 8d70fbca4887b9b580de0f3715026e05f9e74fad8a652364aa0bccd795b1fa87
+ md5: 448aad56614db52338dc4fd4c758cfb6
+ depends:
+ - __osx >=10.13
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libcxx >=16
+ - libglib >=2.80.3,<3.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pixman >=0.43.4,<1.0a0
+ - zlib
+ license: LGPL-2.1-only or MPL-1.1
+ size: 892544
+ timestamp: 1721139116538
+- kind: conda
+ name: cairo
+ version: 1.18.0
+ build: hb4a6bf7_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.0-hb4a6bf7_3.conda
+ sha256: f7603b7f6ee7c6e07c23d77302420194f4ec1b8e8facfff2b6aab17c7988a102
+ md5: 08bd0752f3de8a2d8a35fd012f09531f
+ depends:
+ - __osx >=11.0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libcxx >=16
+ - libglib >=2.80.3,<3.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pixman >=0.43.4,<1.0a0
+ - zlib
+ license: LGPL-2.1-only or MPL-1.1
+ size: 899126
+ timestamp: 1721139203735
+- kind: conda
+ name: cairo
+ version: 1.18.0
+ build: hdb1a16f_3
+ build_number: 3
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/cairo-1.18.0-hdb1a16f_3.conda
+ sha256: 8a747ad6ce32228a85c80bef8ec7387d71f8d2b0bf637edb56ff33e09794c616
+ md5: 080659f02bf2202c57f1cda4f9e51f21
+ depends:
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libgcc-ng >=12
+ - libglib >=2.80.3,<3.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libstdcxx-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pixman >=0.43.4,<1.0a0
+ - xorg-libice >=1.1.1,<2.0a0
+ - xorg-libsm >=1.2.4,<2.0a0
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.4,<2.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ - zlib
+ license: LGPL-2.1-only or MPL-1.1
+ size: 966709
+ timestamp: 1721138947987
+- kind: conda
+ name: cairo
+ version: 1.18.0
+ build: hebfffa5_3
+ build_number: 3
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-hebfffa5_3.conda
+ sha256: aee5b9e6ef71cdfb2aee9beae3ea91910ca761c01c0ef32052e3f94a252fa173
+ md5: fceaedf1cdbcb02df9699a0d9b005292
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libgcc-ng >=12
+ - libglib >=2.80.3,<3.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libstdcxx-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pixman >=0.43.2,<1.0a0
+ - xorg-libice >=1.1.1,<2.0a0
+ - xorg-libsm >=1.2.4,<2.0a0
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.4,<2.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ - zlib
+ license: LGPL-2.1-only or MPL-1.1
+ size: 983604
+ timestamp: 1721138900054
+- kind: conda
+ name: ccache
+ version: 4.10.1
+ build: h065aff2_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/ccache-4.10.1-h065aff2_0.conda
+ sha256: 8ca3531bde782746a388f2e6193c090fa6e4afcdf2054f595e33937148560d85
+ md5: d6b48c138e0c8170a6fe9c136e063540
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libhiredis >=1.0.2,<1.1.0a0
+ - libstdcxx-ng >=12
+ - zstd >=1.5.6,<1.6.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 627561
+ timestamp: 1719847277140
+- kind: conda
+ name: ccache
+ version: 4.10.1
+ build: h65df0e8_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/ccache-4.10.1-h65df0e8_0.conda
+ sha256: 4a9d911ee678166f9d695c29eb05b4d43d56a771dc67a8572defa412a8cc5f24
+ md5: 0a7754851d9dfceee6ac7144498ee61d
+ depends:
+ - libhiredis >=1.0.2,<1.1.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zstd >=1.5.6,<1.6.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 602295
+ timestamp: 1719848559509
+- kind: conda
+ name: ccache
+ version: 4.10.1
+ build: ha3bccff_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/ccache-4.10.1-ha3bccff_0.conda
+ sha256: caf797949c8f3f324f44add164d1835719ed925650324632eaa485fa9b36b9d4
+ md5: 7cd24a038d2727b5e6377975237a6cfa
+ depends:
+ - libgcc-ng >=12
+ - libhiredis >=1.0.2,<1.1.0a0
+ - libstdcxx-ng >=12
+ - zstd >=1.5.6,<1.6.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 638386
+ timestamp: 1719847291504
+- kind: conda
+ name: ccache
+ version: 4.10.1
+ build: hbe278c5_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ccache-4.10.1-hbe278c5_0.conda
+ sha256: e5448366918dba17580f6efffa93b73224b8d9defe4e2daa5997a34d44fa6688
+ md5: 16e26332b855b11749dd75e64566d26e
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ - libhiredis >=1.0.2,<1.1.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 512822
+ timestamp: 1719847491041
+- kind: conda
+ name: ccache
+ version: 4.10.1
+ build: hee5fd93_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/ccache-4.10.1-hee5fd93_0.conda
+ sha256: 7927d791d370384e9e359a6a02988e79e134b95d893cb302c9f51a673f6efdc5
+ md5: 09898bb80e196695cea9e07402cff215
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ - libhiredis >=1.0.2,<1.1.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 566861
+ timestamp: 1719847544674
+- kind: conda
+ name: cctools
+ version: '1010.6'
+ build: h5b2de21_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/cctools-1010.6-h5b2de21_2.conda
+ sha256: d34964e81d7f5c94279999a7af2a83677327418543848cd7e80d86f6a6e7cf14
+ md5: 97f24eeeb3509883a6988894fd7c9bbf
+ depends:
+ - cctools_osx-64 1010.6 hea4301f_2
+ - ld64 951.9 h0a3eb4e_2
+ - libllvm17 >=17.0.6,<17.1.0a0
+ license: APSL-2.0
+ license_family: Other
+ size: 21119
+ timestamp: 1732552446390
+- kind: conda
+ name: cctools
+ version: '1010.6'
+ build: hf67d63f_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-1010.6-hf67d63f_2.conda
+ sha256: 5cd748e93968df7a3575f5cd051fb387ca0b1753537374e8c9270d44315186d2
+ md5: 409225e7241a0099a81ce5fc0f3576d8
+ depends:
+ - cctools_osx-arm64 1010.6 h623e0ac_2
+ - ld64 951.9 h39a299f_2
+ - libllvm17 >=17.0.6,<17.1.0a0
+ license: APSL-2.0
+ license_family: Other
+ size: 21118
+ timestamp: 1732552617055
+- kind: conda
+ name: cctools_osx-64
+ version: '1010.6'
+ build: hea4301f_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1010.6-hea4301f_2.conda
+ sha256: ea6aa87dc44fbee374625e56224b2ebb350e29d68e06ff38642243eb7a5d40cd
+ md5: 70260b63386f080de1aa175dea5d57ac
+ depends:
+ - __osx >=10.13
+ - ld64_osx-64 >=951.9,<951.10.0a0
+ - libcxx
+ - libllvm17 >=17.0.6,<17.1.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - llvm-tools 17.0.*
+ - sigtool
+ constrains:
+ - clang 17.0.*
+ - cctools 1010.6.*
+ - ld64 951.9.*
+ license: APSL-2.0
+ license_family: Other
+ size: 1120562
+ timestamp: 1732552416131
+- kind: conda
+ name: cctools_osx-arm64
+ version: '1010.6'
+ build: h623e0ac_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1010.6-h623e0ac_2.conda
+ sha256: 1293ba9599964813cd5b7de3ef5b2a34f8c728f04f030add1d2daaa770563651
+ md5: c667893c4bda0bd15dea9ae36e943c94
+ depends:
+ - __osx >=11.0
+ - ld64_osx-arm64 >=951.9,<951.10.0a0
+ - libcxx
+ - libllvm17 >=17.0.6,<17.1.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - llvm-tools 17.0.*
+ - sigtool
+ constrains:
+ - cctools 1010.6.*
+ - ld64 951.9.*
+ - clang 17.0.*
+ license: APSL-2.0
+ license_family: Other
+ size: 1101877
+ timestamp: 1732552573870
+- kind: conda
+ name: certifi
+ version: 2024.8.30
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.8.30-pyhd8ed1ab_0.conda
+ sha256: 7020770df338c45ac6b560185956c32f0a5abf4b76179c037f115fc7d687819f
+ md5: 12f7d00853807b0531775e9be891cb11
+ depends:
+ - python >=3.7
+ license: ISC
+ size: 163752
+ timestamp: 1725278204397
+- kind: conda
+ name: cffi
+ version: 1.17.1
+ build: py312h06ac9bb_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda
+ sha256: cba6ea83c4b0b4f5b5dc59cb19830519b28f95d7ebef7c9c5cf1c14843621457
+ md5: a861504bbea4161a9170b85d4d2be840
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libffi >=3.4,<4.0a0
+ - libgcc >=13
+ - pycparser
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 294403
+ timestamp: 1725560714366
+- kind: conda
+ name: cffi
+ version: 1.17.1
+ build: py312h0fad829_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.17.1-py312h0fad829_0.conda
+ sha256: 8d91a0d01358b5c3f20297c6c536c5d24ccd3e0c2ddd37f9d0593d0f0070226f
+ md5: 19a5456f72f505881ba493979777b24e
+ depends:
+ - __osx >=11.0
+ - libffi >=3.4,<4.0a0
+ - pycparser
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 281206
+ timestamp: 1725560813378
+- kind: conda
+ name: cffi
+ version: 1.17.1
+ build: py312h4389bb4_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.17.1-py312h4389bb4_0.conda
+ sha256: ac007bf5fd56d13e16d95eea036433012f2e079dc015505c8a79efebbad1fcbc
+ md5: 08310c1a22ef957d537e547f8d484f92
+ depends:
+ - pycparser
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 288142
+ timestamp: 1725560896359
+- kind: conda
+ name: cffi
+ version: 1.17.1
+ build: py312hac81daf_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.17.1-py312hac81daf_0.conda
+ sha256: 1162e3ca039e7ca7c0e78f0a020ed1bde968096841b663e3f393c966eb82f0f0
+ md5: 1a256e5581b1099e9295cb84d53db3ea
+ depends:
+ - libffi >=3.4,<4.0a0
+ - libgcc >=13
+ - pycparser
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 312892
+ timestamp: 1725561779888
+- kind: conda
+ name: cffi
+ version: 1.17.1
+ build: py312hf857d28_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.17.1-py312hf857d28_0.conda
+ sha256: 94fe49aed25d84997e2630d6e776a75ee2a85bd64f258702c57faa4fe2986902
+ md5: 5bbc69b8194fedc2792e451026cac34f
+ depends:
+ - __osx >=10.13
+ - libffi >=3.4,<4.0a0
+ - pycparser
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 282425
+ timestamp: 1725560725144
+- kind: conda
+ name: cfgv
+ version: 3.3.1
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2
+ sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c
+ md5: ebb5f5f7dc4f1a3780ef7ea7738db08c
+ depends:
+ - python >=3.6.1
+ license: MIT
+ license_family: MIT
+ size: 10788
+ timestamp: 1629909423398
+- kind: conda
+ name: charset-normalizer
+ version: 3.4.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda
+ sha256: 1873ac45ea61f95750cb0b4e5e675d1c5b3def937e80c7eebb19297f76810be8
+ md5: a374efa97290b8799046df7c5ca17164
+ depends:
+ - python >=3.7
+ license: MIT
+ license_family: MIT
+ size: 47314
+ timestamp: 1728479405343
+- kind: conda
+ name: clang
+ version: 17.0.6
+ build: default_h360f5da_7
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/clang-17.0.6-default_h360f5da_7.conda
+ sha256: 3caeb933e74561c834074ef1617aa721c10e6b08c1fed9d5180c82a9ba18b5f2
+ md5: c98bdbd4985530fac68ea4831d053ba1
+ depends:
+ - clang-17 17.0.6 default_h146c034_7
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 24105
+ timestamp: 1725505775351
+- kind: conda
+ name: clang
+ version: 17.0.6
+ build: default_he371ed4_7
+ build_number: 7
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/clang-17.0.6-default_he371ed4_7.conda
+ sha256: 0bcc3fa29482ac32847bd5baac89563e285978fdc3f9d0c5d0844d647ecba821
+ md5: fd6888f26c44ddb10c9954a2df5765c7
+ depends:
+ - clang-17 17.0.6 default_hb173f14_7
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 23890
+ timestamp: 1725506037908
+- kind: conda
+ name: clang
+ version: 19.1.4
+ build: default_hec7ea82_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/clang-19.1.4-default_hec7ea82_0.conda
+ sha256: d3684ca2c6f51b32c1f036f51f7da93730950b4a6fe5006958a85c7fd1d6c98f
+ md5: 5b988384261af7152a7f3199994d2bb5
+ depends:
+ - clang-19 19.1.4 default_hec7ea82_0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zstd >=1.5.6,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 102379258
+ timestamp: 1732093042609
+- kind: conda
+ name: clang-17
+ version: 17.0.6
+ build: default_h146c034_7
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/clang-17-17.0.6-default_h146c034_7.conda
+ sha256: f9e40e5402ab78543553e7bc0437dfeed42d43f486395b66dd55ea0fd819b789
+ md5: 585064b6856cb3e719343e3362ea828b
+ depends:
+ - __osx >=11.0
+ - libclang-cpp17 17.0.6 default_h146c034_7
+ - libcxx >=17.0.6
+ - libllvm17 >=17.0.6,<17.1.0a0
+ constrains:
+ - clangxx 17.0.6
+ - clang-tools 17.0.6
+ - clangdev 17.0.6
+ - llvm-tools 17.0.6
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 715930
+ timestamp: 1725505694198
+- kind: conda
+ name: clang-17
+ version: 17.0.6
+ build: default_hb173f14_7
+ build_number: 7
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/clang-17-17.0.6-default_hb173f14_7.conda
+ sha256: 95cb7cc541e45757b2cc586b1db6fb2f27796316723fe07c8c225f7ea12f6c9b
+ md5: 809e36447b1bfb87ed1b7fb46339561a
+ depends:
+ - __osx >=10.13
+ - libclang-cpp17 17.0.6 default_hb173f14_7
+ - libcxx >=17.0.6
+ - libllvm17 >=17.0.6,<17.1.0a0
+ constrains:
+ - llvm-tools 17.0.6
+ - clangxx 17.0.6
+ - clang-tools 17.0.6
+ - clangdev 17.0.6
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 719083
+ timestamp: 1725505951220
+- kind: conda
+ name: clang-19
+ version: 19.1.4
+ build: default_hec7ea82_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/clang-19-19.1.4-default_hec7ea82_0.conda
+ sha256: 6a6f9fc5fdc900135e1344d0054b14d546d9c3a8a7f041023bd5280383161c8a
+ md5: 3d1ccddd2a29ca7ba4e8c51a30641763
+ depends:
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zstd >=1.5.6,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 34859714
+ timestamp: 1732092903320
+- kind: conda
+ name: clang_impl_osx-64
+ version: 17.0.6
+ build: h1af8efd_23
+ build_number: 23
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-17.0.6-h1af8efd_23.conda
+ sha256: 2b8df6446dc59a8f6be800891f29fe3b5ec404a98dcd47b6a78e3f379b9079f7
+ md5: 90132dd643d402883e4fbd8f0527e152
+ depends:
+ - cctools_osx-64
+ - clang 17.0.6.*
+ - compiler-rt 17.0.6.*
+ - ld64_osx-64
+ - llvm-tools 17.0.6.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17880
+ timestamp: 1731984936767
+- kind: conda
+ name: clang_impl_osx-arm64
+ version: 17.0.6
+ build: he47c785_23
+ build_number: 23
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-17.0.6-he47c785_23.conda
+ sha256: 7a5999645f66f12f8ff9f07ead73d3552f79fff09675487ec1f4f087569587e1
+ md5: 519e4d9eb59dd0a1484e509dcc789217
+ depends:
+ - cctools_osx-arm64
+ - clang 17.0.6.*
+ - compiler-rt 17.0.6.*
+ - ld64_osx-arm64
+ - llvm-tools 17.0.6.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17965
+ timestamp: 1731984992637
+- kind: conda
+ name: clang_osx-64
+ version: 17.0.6
+ build: h7e5c614_23
+ build_number: 23
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-17.0.6-h7e5c614_23.conda
+ sha256: 3d17b28357a97780ed6bb32caac7fb2df170540e07e1a233f0f8b18b7c1fc641
+ md5: 615b86de1eb0162b7fa77bb8cbf57f1d
+ depends:
+ - clang_impl_osx-64 17.0.6 h1af8efd_23
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 21169
+ timestamp: 1731984940250
+- kind: conda
+ name: clang_osx-arm64
+ version: 17.0.6
+ build: h07b0088_23
+ build_number: 23
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-17.0.6-h07b0088_23.conda
+ sha256: ccafb62b45d71f646f0ca925fc7342d093fe5ea17ceeb15b84f1c277fc716295
+ md5: cf5bbfc8b558c41d2a4ba17f5cabb48c
+ depends:
+ - clang_impl_osx-arm64 17.0.6 he47c785_23
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 21177
+ timestamp: 1731984996665
+- kind: conda
+ name: clangxx
+ version: 17.0.6
+ build: default_h360f5da_7
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-17.0.6-default_h360f5da_7.conda
+ sha256: 73a87fe4a31494cdc5d74aacf9d08f560e4468795547f06290ee6a7bb128f61c
+ md5: 0bb5cea65ab3457812707537603a3619
+ depends:
+ - clang 17.0.6 default_h360f5da_7
+ - libcxx-devel 17.0.6.*
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 24168
+ timestamp: 1725505786435
+- kind: conda
+ name: clangxx
+ version: 17.0.6
+ build: default_he371ed4_7
+ build_number: 7
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/clangxx-17.0.6-default_he371ed4_7.conda
+ sha256: 8f7e1d2759b5bd33577054cd72631dc7a4154e7a2b92880040b37c5be0a38255
+ md5: 4f110486af1272f0d4dee6adc5041fbf
+ depends:
+ - clang 17.0.6 default_he371ed4_7
+ - libcxx-devel 17.0.6.*
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 23975
+ timestamp: 1725506051851
+- kind: conda
+ name: clangxx_impl_osx-64
+ version: 17.0.6
+ build: hc3430b7_23
+ build_number: 23
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-17.0.6-hc3430b7_23.conda
+ sha256: 32d450b4aa7c74758b6a0f51f7e7037638e8b5b871f85879f1a74227564ddf69
+ md5: b724718bfe53f93e782fe944ec58029e
+ depends:
+ - clang_osx-64 17.0.6 h7e5c614_23
+ - clangxx 17.0.6.*
+ - libcxx >=17
+ - libllvm17 >=17.0.6,<17.1.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17925
+ timestamp: 1731984956864
+- kind: conda
+ name: clangxx_impl_osx-arm64
+ version: 17.0.6
+ build: h50f59cd_23
+ build_number: 23
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-17.0.6-h50f59cd_23.conda
+ sha256: 7b975e2a1e141769ba4bc45792d145c68a72923465355d3f83ad60450529e01f
+ md5: d086b99e198e21b3b29d2847cade1fce
+ depends:
+ - clang_osx-arm64 17.0.6 h07b0088_23
+ - clangxx 17.0.6.*
+ - libcxx >=17
+ - libllvm17 >=17.0.6,<17.1.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18005
+ timestamp: 1731985015782
+- kind: conda
+ name: clangxx_osx-64
+ version: 17.0.6
+ build: h7e5c614_23
+ build_number: 23
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-17.0.6-h7e5c614_23.conda
+ sha256: 08e758458bc99394b108ed051636149f9bc8fafcf059758ac3d406194273d1c0
+ md5: 78039b25bfcffb920407522839555289
+ depends:
+ - clang_osx-64 17.0.6 h7e5c614_23
+ - clangxx_impl_osx-64 17.0.6 hc3430b7_23
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 19559
+ timestamp: 1731984961996
+- kind: conda
+ name: clangxx_osx-arm64
+ version: 17.0.6
+ build: h07b0088_23
+ build_number: 23
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-17.0.6-h07b0088_23.conda
+ sha256: 58c65adb2e03209ec1dcd926c3256a3a188d6cfa23a89b7fcaa6c9ff56a0f364
+ md5: 743758f55670a6a9a0c93010cd497801
+ depends:
+ - clang_osx-arm64 17.0.6 h07b0088_23
+ - clangxx_impl_osx-arm64 17.0.6 h50f59cd_23
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 19581
+ timestamp: 1731985020343
+- kind: conda
+ name: cmake
+ version: 3.28.3
+ build: h50fd54c_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-3.28.3-h50fd54c_0.conda
+ sha256: 699d87d3d5e9d9a9b7d13775cee9e7eeaa1f234ac9609de2b35b3f5dd88ecb16
+ md5: 2a4cfda87ed222d1b2c243100b76d37f
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libcurl >=8.5.0,<9.0a0
+ - libcxx >=16
+ - libexpat >=2.5.0,<3.0a0
+ - libuv >=1.46.0,<2.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - ncurses >=6.4,<7.0a0
+ - rhash >=1.4.4,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.5,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15470657
+ timestamp: 1707205774880
+- kind: conda
+ name: cmake
+ version: 3.28.3
+ build: h7c85d92_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/cmake-3.28.3-h7c85d92_0.conda
+ sha256: d612a80d8bb8e624f645399f69793905c9817e9812111699d8dbec3757d50d71
+ md5: 265ed3e8dc130e1b51ef660caeef4366
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libcurl >=8.5.0,<9.0a0
+ - libcxx >=16
+ - libexpat >=2.5.0,<3.0a0
+ - libuv >=1.46.0,<2.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - ncurses >=6.4,<7.0a0
+ - rhash >=1.4.4,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.5,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 16566933
+ timestamp: 1707205565592
+- kind: conda
+ name: cmake
+ version: 3.28.3
+ build: hcfe8598_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.28.3-hcfe8598_0.conda
+ sha256: e6a629de33e49f2bbf624f26b3925ffd87aba6f4dda7ea70cfe05c11b846fb17
+ md5: d41e72d041b9b12a3596cd08099f127c
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libcurl >=8.5.0,<9.0a0
+ - libexpat >=2.5.0,<3.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libuv >=1.46.0,<2.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - ncurses >=6.4,<7.0a0
+ - rhash >=1.4.4,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.5,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18756618
+ timestamp: 1707204079226
+- kind: conda
+ name: cmake
+ version: 3.28.3
+ build: hef020d8_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/cmake-3.28.3-hef020d8_0.conda
+ sha256: ce446c32f44b8207ccf12b83b42ad4a18423faa5cf02acab801eafc7b4c7e2c7
+ md5: ac4288215254f814d2d4007447618953
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libcurl >=8.5.0,<9.0a0
+ - libexpat >=2.5.0,<3.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libuv >=1.46.0,<2.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - ncurses >=6.4,<7.0a0
+ - rhash >=1.4.4,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.5,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18034534
+ timestamp: 1707204079631
+- kind: conda
+ name: cmake
+ version: 3.28.3
+ build: hf0feee3_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/cmake-3.28.3-hf0feee3_0.conda
+ sha256: c4a48803d3621339a91eb86bfd28667afb59403aa96aa705b8b158cd0211ebfd
+ md5: 8ac20a98e2d1d3afa798b985278d18d7
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libcurl >=8.5.0,<9.0a0
+ - libexpat >=2.5.0,<3.0a0
+ - libuv >=1.44.2,<2.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - ucrt >=10.0.20348.0
+ - vc14_runtime >=14.29.30139
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.5,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 13826709
+ timestamp: 1707205267813
+- kind: conda
+ name: coin3d
+ version: 4.0.3
+ build: h192c3d0_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/coin3d-4.0.3-h192c3d0_2.conda
+ sha256: 87c3d3eee8c6323a7d0a972110b2439836ce1d6605ea5717d70a53f1ef0a245c
+ md5: 4e5d643a1995b3ab856503e6c653e95c
+ depends:
+ - expat
+ - libexpat >=2.6.3,<3.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3012993
+ timestamp: 1728504053172
+- kind: conda
+ name: coin3d
+ version: 4.0.3
+ build: h411181d_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/coin3d-4.0.3-h411181d_2.conda
+ sha256: 3e4d579ffc07c0f1d8efa3de0f785e31c1a411691f63fe9fba7c43fb7de4a893
+ md5: 22b408993640d52937a14c554ea3e588
+ depends:
+ - expat
+ - libexpat >=2.6.3,<3.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglu
+ - libstdcxx >=13
+ - xorg-libxi >=1.8.2,<2.0a0
+ - xorg-libxt >=1.3.0,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3070895
+ timestamp: 1728503092503
+- kind: conda
+ name: coin3d
+ version: 4.0.3
+ build: h705ab75_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/coin3d-4.0.3-h705ab75_2.conda
+ sha256: 6b54ae5e50dd2bc11a1a745af2c13903edccc6adbda84ce4c1854ca5c26c6e62
+ md5: f8fcb03c7b397831923ea47ca27e3e0e
+ depends:
+ - __osx >=11.0
+ - expat
+ - libcxx >=17
+ - libexpat >=2.6.3,<3.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2266738
+ timestamp: 1728503278809
+- kind: conda
+ name: coin3d
+ version: 4.0.3
+ build: h9b6ce5f_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/coin3d-4.0.3-h9b6ce5f_2.conda
+ sha256: 0b2ab0b12925ffdbe20659817173d19373cf152890be56e8c1f0e8cdc2d89b5d
+ md5: 025850bb0c18049d92f20e2c2b31a403
+ depends:
+ - __osx >=10.13
+ - expat
+ - libcxx >=17
+ - libexpat >=2.6.3,<3.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2405105
+ timestamp: 1728503297185
+- kind: conda
+ name: coin3d
+ version: 4.0.3
+ build: hd74d64a_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/coin3d-4.0.3-hd74d64a_2.conda
+ sha256: 953d004ee7a2be78c717cecaf5bb959fea1faefb86106322c19c06dafa3c0e12
+ md5: b3addb85bc05327f73bf69a9ed73b890
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - expat
+ - libexpat >=2.6.3,<3.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglu
+ - libstdcxx >=13
+ - xorg-libxi >=1.8.2,<2.0a0
+ - xorg-libxt >=1.3.0,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3247920
+ timestamp: 1728502926513
+- kind: conda
+ name: colorama
+ version: 0.4.6
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
+ sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698
+ md5: 3faab06a954c2a04039983f2c4a50d99
+ depends:
+ - python >=3.7
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 25170
+ timestamp: 1666700778190
+- kind: conda
+ name: compiler-rt
+ version: 17.0.6
+ build: h1020d70_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-17.0.6-h1020d70_2.conda
+ sha256: 463107bc5ac7ebe925cded4412fb7158bd2c1a2b062a4a2e691aab8b1ff6ccf3
+ md5: be4cb4531d4cee9df94bf752455d68de
+ depends:
+ - __osx >=10.13
+ - clang 17.0.6.*
+ - clangxx 17.0.6.*
+ - compiler-rt_osx-64 17.0.6.*
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 94907
+ timestamp: 1725251294237
+- kind: conda
+ name: compiler-rt
+ version: 17.0.6
+ build: h856b3c1_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-17.0.6-h856b3c1_2.conda
+ sha256: 91f4a6b80b7802432146a399944c20410e058dfb57ca6d738c0affb79cbdebbb
+ md5: 2d00ff8e98c163de45a7c85774094012
+ depends:
+ - __osx >=11.0
+ - clang 17.0.6.*
+ - clangxx 17.0.6.*
+ - compiler-rt_osx-arm64 17.0.6.*
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 94878
+ timestamp: 1725251190741
+- kind: conda
+ name: compiler-rt
+ version: 19.1.4
+ build: hc790b64_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/compiler-rt-19.1.4-hc790b64_0.conda
+ sha256: 1b55232b68f020bb132be00d3e58acd963b22b22ce01f483eb76a41813b1a3c5
+ md5: d2acd758807721294f394cdf351ba8e1
+ depends:
+ - clang 19.1.4.*
+ - compiler-rt_win-64 19.1.4.*
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 5165186
+ timestamp: 1732097803277
+- kind: conda
+ name: compiler-rt_osx-64
+ version: 17.0.6
+ build: hf2b8a54_2
+ build_number: 2
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-17.0.6-hf2b8a54_2.conda
+ sha256: bab564aff76e0c55a681f687dffb64282d643aa501c6848789071b1e29fdbce1
+ md5: 98e6d83e484e42f6beebba4276e38145
+ depends:
+ - clang 17.0.6.*
+ - clangxx 17.0.6.*
+ constrains:
+ - compiler-rt 17.0.6
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 10450866
+ timestamp: 1725251223089
+- kind: conda
+ name: compiler-rt_osx-arm64
+ version: 17.0.6
+ build: h832e737_2
+ build_number: 2
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-17.0.6-h832e737_2.conda
+ sha256: 74d63f7f91a9482262d80490fafd39275121f4cb273f293e7d9fe91934837666
+ md5: 58fd1fa30d8b0795f33a7e79893b11cc
+ depends:
+ - clang 17.0.6.*
+ - clangxx 17.0.6.*
+ constrains:
+ - compiler-rt 17.0.6
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 10369238
+ timestamp: 1725251155195
+- kind: conda
+ name: compiler-rt_win-64
+ version: 19.1.4
+ build: hc790b64_0
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_win-64-19.1.4-hc790b64_0.conda
+ sha256: 1fc64b173a209b352d5f757c2947101b18d13170ab1f63c818e80a0b78a1f12d
+ md5: a9b1994c2bc3a1bb6a7e61b48ea5489d
+ depends:
+ - clang 19.1.4.*
+ constrains:
+ - compiler-rt 19.1.4
+ - clangxx 19.1.4
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 4726302
+ timestamp: 1732097766626
+- kind: conda
+ name: compilers
+ version: 1.8.0
+ build: h57928b3_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/compilers-1.8.0-h57928b3_1.conda
+ sha256: db941a5b798ffa6cfbe4fbead9c0ef9726bca24139a23cb1a936d598a35e5eb1
+ md5: d4ab110d3d6d840cbddc2b9b89aaafe6
+ depends:
+ - c-compiler 1.8.0 hcfcfb64_1
+ - cxx-compiler 1.8.0 h91493d7_1
+ - fortran-compiler 1.8.0 h95e3450_1
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 7502
+ timestamp: 1728985392716
+- kind: conda
+ name: compilers
+ version: 1.8.0
+ build: h694c41f_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/compilers-1.8.0-h694c41f_1.conda
+ sha256: 6ba15570dde2258ae2682a1ca2124c9797f668ea227fa5a3433e09d9621f7535
+ md5: d9d0a18b6b3e96409c4a5cf76d513a05
+ depends:
+ - c-compiler 1.8.0 hfc4bf79_1
+ - cxx-compiler 1.8.0 h385f146_1
+ - fortran-compiler 1.8.0 h33d1f46_1
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 7040
+ timestamp: 1728985481409
+- kind: conda
+ name: compilers
+ version: 1.8.0
+ build: h8af1aa0_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/compilers-1.8.0-h8af1aa0_1.conda
+ sha256: 164cbfcb9d15a566540ab7d198a2ddfe194a3c1c9c459b7659593128059183a6
+ md5: 78f10b0d30c7ccd5a18a09a542373ab7
+ depends:
+ - c-compiler 1.8.0 h6561dab_1
+ - cxx-compiler 1.8.0 heb6c788_1
+ - fortran-compiler 1.8.0 h25a59a9_1
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6996
+ timestamp: 1728985293799
+- kind: conda
+ name: compilers
+ version: 1.8.0
+ build: ha770c72_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.8.0-ha770c72_1.conda
+ sha256: d2fa2f8cb3df79f543758c8e288f1a74a2acca57245f1e03919bffa3e40aad2d
+ md5: 061e111d02f33a99548f0de07169d9fb
+ depends:
+ - c-compiler 1.8.0 h2b85faf_1
+ - cxx-compiler 1.8.0 h1a2810e_1
+ - fortran-compiler 1.8.0 h36df796_1
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6932
+ timestamp: 1728985303287
+- kind: conda
+ name: compilers
+ version: 1.8.0
+ build: hce30654_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/compilers-1.8.0-hce30654_1.conda
+ sha256: ca2a8763312bfa2871dc168bab39887c053b11fd82914b23ccc21753dc786b2e
+ md5: 2bd6c281de595804d359d21e0aa869eb
+ depends:
+ - c-compiler 1.8.0 hf48404e_1
+ - cxx-compiler 1.8.0 h18dbf2f_1
+ - fortran-compiler 1.8.0 hc3477c4_1
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 7041
+ timestamp: 1728985419063
+- kind: conda
+ name: conda
+ version: 24.11.0
+ build: py312h2e8e312_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/conda-24.11.0-py312h2e8e312_0.conda
+ sha256: bbb4792ab7a67d33ac3001754de1c9a9e9b1a8b4e212764b3e547af7c7cbc26c
+ md5: b9181ccbab5b594123c480a8454f467e
+ depends:
+ - archspec >=0.2.3
+ - boltons >=23.0.0
+ - charset-normalizer
+ - conda-libmamba-solver >=23.11.0
+ - conda-package-handling >=2.2.0
+ - distro >=1.5.0
+ - frozendict >=2.4.2
+ - jsonpatch >=1.32
+ - menuinst >=2
+ - packaging >=23.0
+ - platformdirs >=3.10.0
+ - pluggy >=1.0.0
+ - pycosat >=0.6.3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - requests >=2.28.0,<3
+ - ruamel.yaml >=0.11.14,<0.19
+ - setuptools >=60.0.0
+ - tqdm >=4
+ - truststore >=0.8.0
+ - zstandard >=0.19.0
+ constrains:
+ - conda-env >=2.6
+ - conda-content-trust >=0.1.1
+ - conda-build >=24.3
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1175669
+ timestamp: 1732552908447
+- kind: conda
+ name: conda
+ version: 24.11.0
+ build: py312h7900ff3_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/conda-24.11.0-py312h7900ff3_0.conda
+ sha256: 7e0403f51c2f18dd03f7369301fbc99ca918ad78c5b166a5fe80159bd2318c68
+ md5: 94274d4c4733bb708fa2b4e257620d40
+ depends:
+ - archspec >=0.2.3
+ - boltons >=23.0.0
+ - charset-normalizer
+ - conda-libmamba-solver >=23.11.0
+ - conda-package-handling >=2.2.0
+ - distro >=1.5.0
+ - frozendict >=2.4.2
+ - jsonpatch >=1.32
+ - menuinst >=2
+ - packaging >=23.0
+ - platformdirs >=3.10.0
+ - pluggy >=1.0.0
+ - pycosat >=0.6.3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - requests >=2.28.0,<3
+ - ruamel.yaml >=0.11.14,<0.19
+ - setuptools >=60.0.0
+ - tqdm >=4
+ - truststore >=0.8.0
+ - zstandard >=0.19.0
+ constrains:
+ - conda-build >=24.3
+ - conda-content-trust >=0.1.1
+ - conda-env >=2.6
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1171248
+ timestamp: 1732552698240
+- kind: conda
+ name: conda
+ version: 24.11.0
+ build: py312h81bd7bf_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/conda-24.11.0-py312h81bd7bf_0.conda
+ sha256: 15d613bcb532e9ba4247b299531637a3cbd4fd4cea565be2859c924d758db714
+ md5: fc731f726c139dbe79a54da4334b2180
+ depends:
+ - archspec >=0.2.3
+ - boltons >=23.0.0
+ - charset-normalizer
+ - conda-libmamba-solver >=23.11.0
+ - conda-package-handling >=2.2.0
+ - distro >=1.5.0
+ - frozendict >=2.4.2
+ - jsonpatch >=1.32
+ - menuinst >=2
+ - packaging >=23.0
+ - platformdirs >=3.10.0
+ - pluggy >=1.0.0
+ - pycosat >=0.6.3
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - requests >=2.28.0,<3
+ - ruamel.yaml >=0.11.14,<0.19
+ - setuptools >=60.0.0
+ - tqdm >=4
+ - truststore >=0.8.0
+ - zstandard >=0.19.0
+ constrains:
+ - conda-env >=2.6
+ - conda-build >=24.3
+ - conda-content-trust >=0.1.1
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1173448
+ timestamp: 1732552796088
+- kind: conda
+ name: conda
+ version: 24.11.0
+ build: py312h996f985_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/conda-24.11.0-py312h996f985_0.conda
+ sha256: ccd615e26c5fbca7363f10be86579599da35cf170ba5abb1265247d69b62f2a6
+ md5: a8e0f4213d8fe4ca981954153dd4acd6
+ depends:
+ - archspec >=0.2.3
+ - boltons >=23.0.0
+ - charset-normalizer
+ - conda-libmamba-solver >=23.11.0
+ - conda-package-handling >=2.2.0
+ - distro >=1.5.0
+ - frozendict >=2.4.2
+ - jsonpatch >=1.32
+ - menuinst >=2
+ - packaging >=23.0
+ - platformdirs >=3.10.0
+ - pluggy >=1.0.0
+ - pycosat >=0.6.3
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - requests >=2.28.0,<3
+ - ruamel.yaml >=0.11.14,<0.19
+ - setuptools >=60.0.0
+ - tqdm >=4
+ - truststore >=0.8.0
+ - zstandard >=0.19.0
+ constrains:
+ - conda-build >=24.3
+ - conda-env >=2.6
+ - conda-content-trust >=0.1.1
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1171762
+ timestamp: 1732552839523
+- kind: conda
+ name: conda
+ version: 24.11.0
+ build: py312hb401068_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/conda-24.11.0-py312hb401068_0.conda
+ sha256: f644442d2be09101db7172d9116198709f1b40f4e1ccbfd713e43c73cb11ace9
+ md5: 59375bbe358ad0b651275ee1f9c2fff2
+ depends:
+ - archspec >=0.2.3
+ - boltons >=23.0.0
+ - charset-normalizer
+ - conda-libmamba-solver >=23.11.0
+ - conda-package-handling >=2.2.0
+ - distro >=1.5.0
+ - frozendict >=2.4.2
+ - jsonpatch >=1.32
+ - menuinst >=2
+ - packaging >=23.0
+ - platformdirs >=3.10.0
+ - pluggy >=1.0.0
+ - pycosat >=0.6.3
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - requests >=2.28.0,<3
+ - ruamel.yaml >=0.11.14,<0.19
+ - setuptools >=60.0.0
+ - tqdm >=4
+ - truststore >=0.8.0
+ - zstandard >=0.19.0
+ constrains:
+ - conda-env >=2.6
+ - conda-content-trust >=0.1.1
+ - conda-build >=24.3
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1173181
+ timestamp: 1732643902656
+- kind: conda
+ name: conda-devenv
+ version: 3.4.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/conda-devenv-3.4.0-pyhd8ed1ab_0.conda
+ sha256: d04bf1b985fa533a9dbcf147c00cfde676b7211ca66f1407a695eea12446e9ec
+ md5: 9c47ded5fe42d6edf315ed409256e215
+ depends:
+ - colorama
+ - conda >=4.3
+ - jinja2
+ - packaging
+ - python >=3.10
+ - pyyaml
+ - typing_extensions
+ license: MIT
+ license_family: MIT
+ size: 34429
+ timestamp: 1721671857601
+- kind: conda
+ name: conda-libmamba-solver
+ version: 24.11.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-24.11.0-pyhd8ed1ab_0.conda
+ sha256: d0a9884a12a9a451831ea56c5fc98e40f502f320b86e8a62b12dc446d08ab867
+ md5: 505cb57bc3ae15870dd016764ac6230e
+ depends:
+ - boltons >=23.0.0
+ - conda >=23.7.4
+ - libmambapy >=2.0.0
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 40864
+ timestamp: 1733141460696
+- kind: conda
+ name: conda-package-handling
+ version: 2.4.0
+ build: pyh7900ff3_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.4.0-pyh7900ff3_0.conda
+ sha256: b3a315523703abd198e1c2ff1ea84b30b270a301f8071d4381b1f575e790d049
+ md5: 686fb26b6fd490b533ec580da90b2af8
+ depends:
+ - conda-package-streaming >=0.9.0
+ - python >=3.8
+ - zstandard >=0.15
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 257763
+ timestamp: 1729007114391
+- kind: conda
+ name: conda-package-streaming
+ version: 0.11.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.11.0-pyhd8ed1ab_0.conda
+ sha256: 685b06951e563514a9b158e82d3d44faf102f0770af42e4d08347a6eec3d48ea
+ md5: bc9533d8616a97551ed144789bf9c1cd
+ depends:
+ - python >=3.7
+ - zstandard >=0.15
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 20582
+ timestamp: 1729004160440
+- kind: conda
+ name: contourpy
+ version: 1.3.1
+ build: py312h451a7dd_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/contourpy-1.3.1-py312h451a7dd_0.conda
+ sha256: 051b2116358499376244bfebd0f5e234644261988744b3e79dd4822ce0116aad
+ md5: ba590e4630833739c3eb5fcd5f046d0e
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.23
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 286018
+ timestamp: 1731428571868
+- kind: conda
+ name: contourpy
+ version: 1.3.1
+ build: py312h68727a3_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.1-py312h68727a3_0.conda
+ sha256: e977af50b844b5b8cfec358131a4e923f0aa718e8334321cf8d84f5093576259
+ md5: f5fbba0394ee45e9a64a73c2a994126a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.23
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 276332
+ timestamp: 1731428454756
+- kind: conda
+ name: contourpy
+ version: 1.3.1
+ build: py312hb23fbb9_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/contourpy-1.3.1-py312hb23fbb9_0.conda
+ sha256: fa1f8505f45eac22f25c48cd46809da0d26bcb028c37517b3474bacddd029b0a
+ md5: f4408290387836e05ac267cd7ec80c5c
+ depends:
+ - __osx >=11.0
+ - libcxx >=18
+ - numpy >=1.23
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 245638
+ timestamp: 1731428781337
+- kind: conda
+ name: contourpy
+ version: 1.3.1
+ build: py312hc47a885_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/contourpy-1.3.1-py312hc47a885_0.conda
+ sha256: e05d4c6b4284684a020c386861342fa22706ff747f1f8909b14dbc0fe489dcb2
+ md5: 94715deb514df3f341f62bc2ffea5637
+ depends:
+ - __osx >=10.13
+ - libcxx >=18
+ - numpy >=1.23
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 254416
+ timestamp: 1731428639848
+- kind: conda
+ name: contourpy
+ version: 1.3.1
+ build: py312hd5eb7cc_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.3.1-py312hd5eb7cc_0.conda
+ sha256: b5643ea0dd0bf57e1847679f5985feb649289de872b85c3db900f4110ac83cdd
+ md5: 83f7a2ec652abd37a178e35493dfd029
+ depends:
+ - numpy >=1.23
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 216484
+ timestamp: 1731428831843
+- kind: conda
+ name: cpp-expected
+ version: 1.1.0
+ build: h4c384f3_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/cpp-expected-1.1.0-h4c384f3_0.conda
+ sha256: d863c8a8b48b59cded55222cdee0e2aabb065f99997b7559a3376eb2d11e3eb6
+ md5: 3a068bc813d0c862f7f1c7bf2554c24e
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: CC0-1.0
+ size: 23660
+ timestamp: 1678888055069
+- kind: conda
+ name: cpp-expected
+ version: 1.1.0
+ build: h91493d7_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/cpp-expected-1.1.0-h91493d7_0.conda
+ sha256: a02e2e6a844bd4afe13f39275d0d9e884870da61ee6329b3dae51fb251bc108a
+ md5: 0b8cf67931527709c28c8d97eeee745b
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vs2015_runtime >=14.29.30139
+ license: CC0-1.0
+ size: 23910
+ timestamp: 1678888226379
+- kind: conda
+ name: cpp-expected
+ version: 1.1.0
+ build: hb8565cd_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/cpp-expected-1.1.0-hb8565cd_0.conda
+ sha256: 80c0551e5d297c59991c09f6611331f3d56517894b63c8f6a85d51e601b8ea69
+ md5: 53c16c2f79183b459ef6acb6c93f3550
+ depends:
+ - libcxx >=14.0.6
+ license: CC0-1.0
+ size: 23677
+ timestamp: 1678888206460
+- kind: conda
+ name: cpp-expected
+ version: 1.1.0
+ build: hf52228f_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/cpp-expected-1.1.0-hf52228f_0.conda
+ sha256: fc809e6894537a77c6cd1e65f593ae1bfbf60f494bce55295212d1a9bacd7fa7
+ md5: a7f1500bf47196443b67355d67afec6d
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: CC0-1.0
+ size: 23621
+ timestamp: 1678887949634
+- kind: conda
+ name: cpp-expected
+ version: 1.1.0
+ build: hffc8910_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/cpp-expected-1.1.0-hffc8910_0.conda
+ sha256: 9af3323963a059681eb848218c11ba2208f12bc5416ee357b0d4f9f8bef5ebca
+ md5: d58ea142acc3d93f6f0176e31e4493ad
+ depends:
+ - libcxx >=14.0.6
+ license: CC0-1.0
+ size: 23544
+ timestamp: 1678888466303
+- kind: conda
+ name: cxx-compiler
+ version: 1.8.0
+ build: h18dbf2f_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.8.0-h18dbf2f_1.conda
+ sha256: bcadda695b13087920650adf43a599b66745dfb4bfc3b425169547d76082dcf2
+ md5: a1bc5417ab20b451ee141ca3290df479
+ depends:
+ - c-compiler 1.8.0 hf48404e_1
+ - clangxx_osx-arm64 17.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6261
+ timestamp: 1728985417226
+- kind: conda
+ name: cxx-compiler
+ version: 1.8.0
+ build: h1a2810e_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.8.0-h1a2810e_1.conda
+ sha256: cca0450bbc0d19044107d0f90fa36126a11b007fbfb62bd2a1949b2bb59a21a4
+ md5: 3bb4907086d7187bf01c8bec397ffa5e
+ depends:
+ - c-compiler 1.8.0 h2b85faf_1
+ - gxx
+ - gxx_linux-64 13.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6059
+ timestamp: 1728985302835
+- kind: conda
+ name: cxx-compiler
+ version: 1.8.0
+ build: h385f146_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.8.0-h385f146_1.conda
+ sha256: bbb8097e20601a1c78b3ad4aba165dbfe9a61f27e0b42475ba6177222825adad
+ md5: b72f72f89de328cc907bcdf88b85447d
+ depends:
+ - c-compiler 1.8.0 hfc4bf79_1
+ - clangxx_osx-64 17.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6235
+ timestamp: 1728985479382
+- kind: conda
+ name: cxx-compiler
+ version: 1.8.0
+ build: h91493d7_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/cxx-compiler-1.8.0-h91493d7_1.conda
+ sha256: c6065df2e055a0392207f512bfa12d7a0e849f5e1a5435a3db9c60ae20bded9b
+ md5: 54d722a127a10b59596b5640d58f7ae6
+ depends:
+ - vs2019_win-64
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6549
+ timestamp: 1728985390855
+- kind: conda
+ name: cxx-compiler
+ version: 1.8.0
+ build: heb6c788_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/cxx-compiler-1.8.0-heb6c788_1.conda
+ sha256: 92cd5ba51d0d450cd69ae934107932d2b28cfbb652b1d5f5c0b8e2773ae90491
+ md5: d655e8bc7e615b6965afe20522e4ed1a
+ depends:
+ - c-compiler 1.8.0 h6561dab_1
+ - gxx
+ - gxx_linux-aarch64 13.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6154
+ timestamp: 1728985293216
+- kind: conda
+ name: cycler
+ version: 0.12.1
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_0.conda
+ sha256: f221233f21b1d06971792d491445fd548224641af9443739b4b7b6d5d72954a8
+ md5: 5cd86562580f274031ede6aa6aa24441
+ depends:
+ - python >=3.8
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 13458
+ timestamp: 1696677888423
+- kind: conda
+ name: cyrus-sasl
+ version: 2.1.27
+ build: h54b06d7_7
+ build_number: 7
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/cyrus-sasl-2.1.27-h54b06d7_7.conda
+ sha256: d2ea5e52da745c4249e1a818095a28f9c57bd4df22cbfc645352defa468e86c2
+ md5: dce22f70b4e5a407ce88f2be046f4ceb
+ depends:
+ - krb5 >=1.21.1,<1.22.0a0
+ - libgcc-ng >=12
+ - libntlm
+ - libstdcxx-ng >=12
+ - openssl >=3.1.1,<4.0a0
+ license: BSD-3-Clause-Attribution
+ license_family: BSD
+ size: 219527
+ timestamp: 1690061203707
+- kind: conda
+ name: cyrus-sasl
+ version: 2.1.27
+ build: h60b93bd_7
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/cyrus-sasl-2.1.27-h60b93bd_7.conda
+ sha256: befd4d6e8b542d0c30aff47b098d43bbbe1bbf743ba6cd87a100d8a8731a6e03
+ md5: 80a3b015d05a7d235db1bf09911fe08e
+ depends:
+ - krb5 >=1.21.1,<1.22.0a0
+ - libcxx >=15.0.7
+ - libntlm
+ - openssl >=3.1.1,<4.0a0
+ license: BSD-3-Clause-Attribution
+ license_family: BSD
+ size: 210957
+ timestamp: 1690061457834
+- kind: conda
+ name: cyrus-sasl
+ version: 2.1.27
+ build: hf6b2984_7
+ build_number: 7
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/cyrus-sasl-2.1.27-hf6b2984_7.conda
+ sha256: bee91ceb748b91b3fefcfe161608c9658b62e4d938aa87050ad1a49f04715552
+ md5: 7a85d417c8acd7a5215c082c5b9219e5
+ depends:
+ - krb5 >=1.21.1,<1.22.0a0
+ - libgcc-ng >=12
+ - libntlm
+ - libstdcxx-ng >=12
+ - openssl >=3.1.1,<4.0a0
+ license: BSD-3-Clause-Attribution
+ license_family: BSD
+ size: 235884
+ timestamp: 1690062556588
+- kind: conda
+ name: cyrus-sasl
+ version: 2.1.27
+ build: hf9bab2b_7
+ build_number: 7
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/cyrus-sasl-2.1.27-hf9bab2b_7.conda
+ sha256: d4be27d58beb762f9392a35053404d5129e1ec41d24a9a7b465b4d84de2e5819
+ md5: b3a8aa48d3d5e1bfb31ee3bde1f2c544
+ depends:
+ - krb5 >=1.21.1,<1.22.0a0
+ - libcxx >=15.0.7
+ - libntlm
+ - openssl >=3.1.1,<4.0a0
+ license: BSD-3-Clause-Attribution
+ license_family: BSD
+ size: 209174
+ timestamp: 1690061476074
+- kind: conda
+ name: dav1d
+ version: 1.2.1
+ build: h0dc2134_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/dav1d-1.2.1-h0dc2134_0.conda
+ sha256: ec71a835866b42e946cd2039a5f7a6458851a21890d315476f5e66790ac11c96
+ md5: 9d88733c715300a39f8ca2e936b7808d
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 668439
+ timestamp: 1685696184631
+- kind: conda
+ name: dav1d
+ version: 1.2.1
+ build: h31becfc_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/dav1d-1.2.1-h31becfc_0.conda
+ sha256: 33fe66d025cf5bac7745196d1a3dd7a437abcf2dbce66043e9745218169f7e17
+ md5: 6e5a87182d66b2d1328a96b61ca43a62
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 347363
+ timestamp: 1685696690003
+- kind: conda
+ name: dav1d
+ version: 1.2.1
+ build: hb547adb_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda
+ sha256: 93e077b880a85baec8227e8c72199220c7f87849ad32d02c14fb3807368260b8
+ md5: 5a74cdee497e6b65173e10d94582fae6
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 316394
+ timestamp: 1685695959391
+- kind: conda
+ name: dav1d
+ version: 1.2.1
+ build: hcfcfb64_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda
+ sha256: 2aa2083c9c186da7d6f975ccfbef654ed54fff27f4bc321dbcd12cee932ec2c4
+ md5: ed2c27bda330e3f0ab41577cf8b9b585
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 618643
+ timestamp: 1685696352968
+- kind: conda
+ name: dav1d
+ version: 1.2.1
+ build: hd590300_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda
+ sha256: 22053a5842ca8ee1cf8e1a817138cdb5e647eb2c46979f84153f6ad7bde73020
+ md5: 418c6ca5929a611cbd69204907a83995
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 760229
+ timestamp: 1685695754230
+- kind: conda
+ name: dbus
+ version: 1.13.6
+ build: h12b9eeb_3
+ build_number: 3
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/dbus-1.13.6-h12b9eeb_3.tar.bz2
+ sha256: 5fe76bdf27a142cfb9da0fb3197c562e528d2622b573765bee5c9904cf5e6b6b
+ md5: f3d63805602166bac09386741e00935e
+ depends:
+ - expat >=2.4.2,<3.0a0
+ - libgcc-ng >=9.4.0
+ - libglib >=2.70.2,<3.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 672759
+ timestamp: 1640113663539
+- kind: conda
+ name: dbus
+ version: 1.13.6
+ build: h5008d03_3
+ build_number: 3
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2
+ sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5
+ md5: ecfff944ba3960ecb334b9a2663d708d
+ depends:
+ - expat >=2.4.2,<3.0a0
+ - libgcc-ng >=9.4.0
+ - libglib >=2.70.2,<3.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 618596
+ timestamp: 1640112124844
+- kind: conda
+ name: debugpy
+ version: 1.8.9
+ build: py312h275cf98_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.9-py312h275cf98_0.conda
+ sha256: 5a6b8e7d6cef17eb0e39c3a4261eeba293901445f4d5ddf8eae09ca775058acb
+ md5: 1300cbe0243cd21d23212fb654c4d434
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 3518631
+ timestamp: 1732237024268
+- kind: conda
+ name: debugpy
+ version: 1.8.9
+ build: py312h2ec8cdc_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.9-py312h2ec8cdc_0.conda
+ sha256: cf79cac70773567382910fcaf7b10bb0f5242d159f8dd93296d8451cd542af9a
+ md5: c522fd70ca7a0c2fe1a861dd13987a57
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 2605093
+ timestamp: 1732236790708
+- kind: conda
+ name: debugpy
+ version: 1.8.9
+ build: py312h6f74592_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/debugpy-1.8.9-py312h6f74592_0.conda
+ sha256: 651761a1bba2af89aeb391ab61391cfb4db67d9031f3bf429720782642873115
+ md5: d0238a3a2f6127b05c5144aa383d7081
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 2596779
+ timestamp: 1732236921259
+- kind: conda
+ name: debugpy
+ version: 1.8.9
+ build: py312haafddd8_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.9-py312haafddd8_0.conda
+ sha256: 95b43839332c9bcd7da3f98ad322f371d8a3a40283945fadfecf8043d0a0cf38
+ md5: 9e50ff5d80cdebeda0fe7eabba6d55e0
+ depends:
+ - __osx >=10.13
+ - libcxx >=18
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 2581941
+ timestamp: 1732236893783
+- kind: conda
+ name: debugpy
+ version: 1.8.9
+ build: py312hd8f9ff3_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.9-py312hd8f9ff3_0.conda
+ sha256: d588943ac0392300f31115d9852a2ff4213ec22856c382ef56f5650576523ec6
+ md5: 51085e5bb7f21019186cc88fd9a03164
+ depends:
+ - __osx >=11.0
+ - libcxx >=18
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 2512030
+ timestamp: 1732236996277
+- kind: conda
+ name: distlib
+ version: 0.3.9
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.9-pyhd8ed1ab_0.conda
+ sha256: 300b2e714f59403df0560174f5ef6c19db8b4a3b74a7244862cf771f07dee8fb
+ md5: fe521c1608280cc2803ebd26dc252212
+ depends:
+ - python 2.7|>=3.6
+ license: Apache-2.0
+ license_family: APACHE
+ size: 276214
+ timestamp: 1728557312342
+- kind: conda
+ name: distro
+ version: 1.9.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_0.conda
+ sha256: ae1c13d709c8001331b5b9345e4bcd77e9ae712d25f7958b2ebcbe0b068731b7
+ md5: bbdb409974cd6cb30071b1d978302726
+ depends:
+ - python >=3.6
+ license: Apache-2.0
+ license_family: APACHE
+ size: 42039
+ timestamp: 1704321683916
+- kind: conda
+ name: double-conversion
+ version: 3.3.0
+ build: h13dd4ca_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/double-conversion-3.3.0-h13dd4ca_0.conda
+ sha256: 74c6b4bf0d6be2493e689ef2cddffac25e8776e5457bc45476d66048c964fa66
+ md5: cd9bfaefd28a1178587ca85b97b14244
+ depends:
+ - libcxx >=15.0.7
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 63147
+ timestamp: 1686490362323
+- kind: conda
+ name: double-conversion
+ version: 3.3.0
+ build: h2f0025b_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/double-conversion-3.3.0-h2f0025b_0.conda
+ sha256: a60f4223b0c090873ab029bf350e54da590d855cefe4ae15f727f3db93d24ac0
+ md5: 3b34b29f68d60abc1ce132b87f5a213c
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 78230
+ timestamp: 1686485872718
+- kind: conda
+ name: double-conversion
+ version: 3.3.0
+ build: h59595ed_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.3.0-h59595ed_0.conda
+ sha256: 9eee491a73b67fd64379cf715f85f8681568ebc1f02f9e11b4c50d46a3323544
+ md5: c2f83a5ddadadcdb08fe05863295ee97
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 78645
+ timestamp: 1686489937183
+- kind: conda
+ name: double-conversion
+ version: 3.3.0
+ build: h63175ca_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/double-conversion-3.3.0-h63175ca_0.conda
+ sha256: 735d40b44a0f39386d1e2988384b6d78a98efd4fa1818e7f2f6fb01f91e16b64
+ md5: 1a8bc18b24014167b2184c5afbe6037e
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 70425
+ timestamp: 1686490368655
+- kind: conda
+ name: double-conversion
+ version: 3.3.0
+ build: he965462_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/double-conversion-3.3.0-he965462_0.conda
+ sha256: 74b7e151887e2c79de5dfc2079bc4621a1bd85b8bed4595be3e0b7313808a498
+ md5: a3de9d9550078b51db74fde63b1ccae6
+ depends:
+ - libcxx >=15.0.7
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 67397
+ timestamp: 1686490152080
+- kind: conda
+ name: doxygen
+ version: 1.10.0
+ build: h7b6a552_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/doxygen-1.10.0-h7b6a552_0.conda
+ sha256: 1f90043e0c9954656126df88231a803b91b7b4b41c971f6e0a727ede4f6a8045
+ md5: e8f76606800cdded5a2fbc7c75176ee3
+ depends:
+ - libgcc-ng >=12
+ - libiconv >=1.17,<2.0a0
+ - libstdcxx-ng >=12
+ license: GPL-2.0-only
+ license_family: GPL
+ size: 12467704
+ timestamp: 1703609318336
+- kind: conda
+ name: doxygen
+ version: 1.11.0
+ build: h8414b35_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/doxygen-1.11.0-h8414b35_0.conda
+ sha256: aeb3d2e33e2c4bc13027e8609156c8fbd457b8f6c3415ebd8835b6952bd4afb2
+ md5: b13ecf43938d4ff4d32d412ef02bc497
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ - libiconv >=1.17,<2.0a0
+ license: GPL-2.0-only
+ license_family: GPL
+ size: 10831269
+ timestamp: 1729784992859
+- kind: conda
+ name: doxygen
+ version: 1.11.0
+ build: h9d7c8fd_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/doxygen-1.11.0-h9d7c8fd_0.conda
+ sha256: 705266e52623e7a27f4d6e6a81350d3928dbf9d8a641b14b97b71f74142692c5
+ md5: 1d2667ce171f3ccc6155d009bafcae24
+ depends:
+ - libgcc >=12
+ - libiconv >=1.17,<2.0a0
+ - libstdcxx >=12
+ license: GPL-2.0-only
+ license_family: GPL
+ size: 12393498
+ timestamp: 1729784747771
+- kind: conda
+ name: doxygen
+ version: 1.11.0
+ build: hbf3f430_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/doxygen-1.11.0-hbf3f430_0.conda
+ sha256: 9389492681b425cc6165ff44b96c88cb9b68102db472eb63e3c5b2f150e9884f
+ md5: b64aacfa4d47397b3158ce52a35290df
+ depends:
+ - libiconv >=1.17,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: GPL-2.0-only
+ license_family: GPL
+ size: 9996876
+ timestamp: 1729785878406
+- kind: conda
+ name: doxygen
+ version: 1.11.0
+ build: hdfe23c8_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/doxygen-1.11.0-hdfe23c8_0.conda
+ sha256: b311ee38ea5b878fdfe4a08b1fc338ac946a6e55fd034ef91e351eb92396606a
+ md5: b89a82a6284cfb8f05448d0678dc4262
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ - libiconv >=1.17,<2.0a0
+ license: GPL-2.0-only
+ license_family: GPL
+ size: 11756367
+ timestamp: 1729784580455
+- kind: conda
+ name: eigen
+ version: 3.4.0
+ build: h00ab1b0_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda
+ sha256: 53b15a98aadbe0704479bacaf7a5618fcb32d1577be320630674574241639b34
+ md5: b1b879d6d093f55dd40d58b5eb2f0699
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MPL-2.0
+ license_family: MOZILLA
+ size: 1088433
+ timestamp: 1690272126173
+- kind: conda
+ name: eigen
+ version: 3.4.0
+ build: h1995070_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/eigen-3.4.0-h1995070_0.conda
+ sha256: c20b3677b16d8907343fce68e7c437184fef7f5ed0a765c104b775f8a485c5c9
+ md5: 3691ea3ff568ba38826389bafc717909
+ depends:
+ - libcxx >=15.0.7
+ license: MPL-2.0
+ license_family: MOZILLA
+ size: 1087751
+ timestamp: 1690275869049
+- kind: conda
+ name: eigen
+ version: 3.4.0
+ build: h1c7c39f_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/eigen-3.4.0-h1c7c39f_0.conda
+ sha256: 187c0677e0cdcdc39aed716687a6290dd5b7f52b49eedaef2ed76be6cd0a5a3d
+ md5: 5b2cfc277e3d42d84a2a648825761156
+ depends:
+ - libcxx >=15.0.7
+ license: MPL-2.0
+ license_family: MOZILLA
+ size: 1090184
+ timestamp: 1690272503232
+- kind: conda
+ name: eigen
+ version: 3.4.0
+ build: h2a328a1_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/eigen-3.4.0-h2a328a1_0.conda
+ sha256: f9c763805938ebaa43183b07caadce8eb3e1af8c21df8792f2793c3dd5210b4e
+ md5: 0057b28f7ed26d80bd2277a128f324b2
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MPL-2.0
+ license_family: MOZILLA
+ size: 1090421
+ timestamp: 1690273745233
+- kind: conda
+ name: eigen
+ version: 3.4.0
+ build: h91493d7_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/eigen-3.4.0-h91493d7_0.conda
+ sha256: 633a6a8db1f9a010cb0619f3446fb61f62dea348b09615ffae9744ab1001c24c
+ md5: 305b3ca7023ac046b9a42a48661f6512
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MPL-2.0
+ license_family: MOZILLA
+ size: 1089706
+ timestamp: 1690273089254
+- kind: conda
+ name: expat
+ version: 2.6.4
+ build: h240833e_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/expat-2.6.4-h240833e_0.conda
+ sha256: 9d16411c009b2d5d3f4037685592d1f49bfc66991729093777b0fc6d48f45a2e
+ md5: 81ca1acbdfb112e1c8270d613c92bce4
+ depends:
+ - __osx >=10.13
+ - libexpat 2.6.4 h240833e_0
+ license: MIT
+ license_family: MIT
+ size: 128768
+ timestamp: 1730967223370
+- kind: conda
+ name: expat
+ version: 2.6.4
+ build: h286801f_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.6.4-h286801f_0.conda
+ sha256: e621a088b762a8aa99bd8f3ef10e2efe923713bc476babb90e7919f6c13a358b
+ md5: a37ffeecc1b8a62205bdd8319652758b
+ depends:
+ - __osx >=11.0
+ - libexpat 2.6.4 h286801f_0
+ license: MIT
+ license_family: MIT
+ size: 124765
+ timestamp: 1730967188116
+- kind: conda
+ name: expat
+ version: 2.6.4
+ build: h5888daf_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.4-h5888daf_0.conda
+ sha256: 1848c7db9e264e3b8036ee133d570dd880422983cd20dd9585a505289606d276
+ md5: 1d6afef758879ef5ee78127eb4cd2c4a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libexpat 2.6.4 h5888daf_0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 138145
+ timestamp: 1730967050578
+- kind: conda
+ name: expat
+ version: 2.6.4
+ build: h5ad3122_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/expat-2.6.4-h5ad3122_0.conda
+ sha256: 13905ad49c2f43776bac0e464ffd3c9ec10ef35cc7dd7e187af6f66f843fa29a
+ md5: e8f1d587055376ea2419cc78696abd0b
+ depends:
+ - libexpat 2.6.4 h5ad3122_0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 130354
+ timestamp: 1730967212801
+- kind: conda
+ name: expat
+ version: 2.6.4
+ build: he0c23c2_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/expat-2.6.4-he0c23c2_0.conda
+ sha256: b4f8c3d94f6f592e9ec85c71ef329028fe24cd55db1711a4ad4e2e564c8b28a7
+ md5: 1acbf46a31d414144777e85efebd3640
+ depends:
+ - libexpat 2.6.4 he0c23c2_0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 230629
+ timestamp: 1730967460961
+- kind: conda
+ name: ffmpeg
+ version: 6.1.2
+ build: gpl_h9c046ae_106
+ build_number: 106
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-6.1.2-gpl_h9c046ae_106.conda
+ sha256: eed5ae33b950a9a4940c31ba9d93235bc802eb9112eb976bb2bf7454d65d4bde
+ md5: 600dd2e1eae7646feffd1ce541a804e6
+ depends:
+ - __osx >=10.13
+ - aom >=3.9.1,<3.10.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - gmp >=6.3.0,<7.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - lame >=3.100,<3.101.0a0
+ - libass >=0.17.3,<0.17.4.0a0
+ - libcxx >=18
+ - libexpat >=2.6.3,<3.0a0
+ - libiconv >=1.17,<2.0a0
+ - libopenvino >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-auto-batch-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-auto-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-hetero-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-intel-cpu-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-ir-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-onnx-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-paddle-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-pytorch-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-tensorflow-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-tensorflow-lite-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopus >=1.3.1,<2.0a0
+ - libvpx >=1.14.1,<1.15.0a0
+ - libxml2 >=2.13.4,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openh264 >=2.4.1,<2.4.2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - svt-av1 >=2.3.0,<2.3.1.0a0
+ - x264 >=1!164.3095,<1!165
+ - x265 >=3.5,<3.6.0a0
+ - xz >=5.2.6,<6.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 9666358
+ timestamp: 1730672534073
+- kind: conda
+ name: ffmpeg
+ version: 6.1.2
+ build: gpl_hd3257db_706
+ build_number: 706
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/ffmpeg-6.1.2-gpl_hd3257db_706.conda
+ sha256: ec1389e2c043574ec28725c3e7d307bc70d63caf41d2f19849f88968095f2c99
+ md5: 15352e0ac074ea858c878f684849bc9d
+ depends:
+ - aom >=3.9.1,<3.10.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - gmp >=6.3.0,<7.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - lame >=3.100,<3.101.0a0
+ - libass >=0.17.3,<0.17.4.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libgcc >=13
+ - libiconv >=1.17,<2.0a0
+ - libopenvino >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-arm-cpu-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-auto-batch-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-auto-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-hetero-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-ir-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-onnx-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-paddle-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-pytorch-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-tensorflow-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-tensorflow-lite-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopus >=1.3.1,<2.0a0
+ - libstdcxx >=13
+ - libvpx >=1.14.1,<1.15.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxml2 >=2.13.4,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openh264 >=2.4.1,<2.4.2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - svt-av1 >=2.3.0,<2.3.1.0a0
+ - x264 >=1!164.3095,<1!165
+ - x265 >=3.5,<3.6.0a0
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ constrains:
+ - __cuda >=12.4
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 9487314
+ timestamp: 1730671984709
+- kind: conda
+ name: ffmpeg
+ version: 6.1.2
+ build: gpl_hdfc89ed_706
+ build_number: 706
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.1.2-gpl_hdfc89ed_706.conda
+ sha256: e9c701a241c037103ad00a65defdf41f991755c14f352bf4905b1cd792eeace8
+ md5: 196d43749bd6adac662856d836b2b2eb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aom >=3.9.1,<3.10.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - gmp >=6.3.0,<7.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - lame >=3.100,<3.101.0a0
+ - libass >=0.17.3,<0.17.4.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libgcc >=13
+ - libiconv >=1.17,<2.0a0
+ - libopenvino >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-auto-batch-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-auto-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-hetero-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-intel-cpu-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-intel-gpu-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-intel-npu-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-ir-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-onnx-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-paddle-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-pytorch-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-tensorflow-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-tensorflow-lite-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopus >=1.3.1,<2.0a0
+ - libstdcxx >=13
+ - libva >=2.22.0,<3.0a0
+ - libvpx >=1.14.1,<1.15.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxml2 >=2.13.4,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openh264 >=2.4.1,<2.4.2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - svt-av1 >=2.3.0,<2.3.1.0a0
+ - x264 >=1!164.3095,<1!165
+ - x265 >=3.5,<3.6.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ constrains:
+ - __cuda >=12.4
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 9910102
+ timestamp: 1730672142678
+- kind: conda
+ name: ffmpeg
+ version: 7.1.0
+ build: gpl_h2585aa8_705
+ build_number: 705
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/ffmpeg-7.1.0-gpl_h2585aa8_705.conda
+ sha256: ce9eb3445ed6233579de45e68f8137d139806c9ab1d7284e009fe987ccde14b2
+ md5: 34902bb3c1609c9cb05930190b6fc4e3
+ depends:
+ - aom >=3.9.1,<3.10.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libiconv >=1.17,<2.0a0
+ - libopus >=1.3.1,<2.0a0
+ - librsvg >=2.58.4,<3.0a0
+ - libxml2 >=2.13.5,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openh264 >=2.5.0,<2.5.1.0a0
+ - openssl >=3.4.0,<4.0a0
+ - svt-av1 >=2.3.0,<2.3.1.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - x264 >=1!164.3095,<1!165
+ - x265 >=3.5,<3.6.0a0
+ - xz >=5.2.6,<6.0a0
+ constrains:
+ - __cuda >=12.4
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 9996782
+ timestamp: 1732157241971
+- kind: conda
+ name: ffmpeg
+ version: 7.1.0
+ build: gpl_h92f8dbd_105
+ build_number: 105
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ffmpeg-7.1.0-gpl_h92f8dbd_105.conda
+ sha256: 844616f3550b173b051ac7106dc44555bc4714fb32c722b9fe3791c9f7f6f418
+ md5: 558e6ac918e60a9cd40a37ef96c78432
+ depends:
+ - __osx >=11.0
+ - aom >=3.9.1,<3.10.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - dav1d >=1.2.1,<1.2.2.0a0
+ - fontconfig >=2.15.0,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - gmp >=6.3.0,<7.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - lame >=3.100,<3.101.0a0
+ - libass >=0.17.3,<0.17.4.0a0
+ - libcxx >=18
+ - libexpat >=2.6.4,<3.0a0
+ - libiconv >=1.17,<2.0a0
+ - libopenvino >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-arm-cpu-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-auto-batch-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-auto-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-hetero-plugin >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-ir-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-onnx-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-paddle-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-pytorch-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-tensorflow-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopenvino-tensorflow-lite-frontend >=2024.4.0,<2024.4.1.0a0
+ - libopus >=1.3.1,<2.0a0
+ - librsvg >=2.58.4,<3.0a0
+ - libvpx >=1.14.1,<1.15.0a0
+ - libxml2 >=2.13.5,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openh264 >=2.5.0,<2.5.1.0a0
+ - openssl >=3.4.0,<4.0a0
+ - svt-av1 >=2.3.0,<2.3.1.0a0
+ - x264 >=1!164.3095,<1!165
+ - x265 >=3.5,<3.6.0a0
+ - xz >=5.2.6,<6.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 9119164
+ timestamp: 1732156311763
+- kind: conda
+ name: filelock
+ version: 3.16.1
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda
+ sha256: 1da766da9dba05091af87977922fe60dc7464091a9ccffb3765d403189d39be4
+ md5: 916f8ec5dd4128cd5f207a3c4c07b2c6
+ depends:
+ - python >=3.7
+ license: Unlicense
+ size: 17357
+ timestamp: 1726613593584
+- kind: conda
+ name: flang
+ version: 19.1.4
+ build: hbeecb71_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/flang-19.1.4-hbeecb71_0.conda
+ sha256: c4a1afa5d08d302f15e1c6562065d31721b86b13dd99bfb3b1adaa1ff889ff3e
+ md5: 3d355e72896523c25d4186840dad6fee
+ depends:
+ - clang 19.1.4
+ - compiler-rt 19.1.4
+ - libflang 19.1.4 he0c23c2_0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zstd >=1.5.6,<1.6.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 104467519
+ timestamp: 1732123920670
+- kind: conda
+ name: flang_impl_win-64
+ version: 19.1.4
+ build: h719f0c7_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/flang_impl_win-64-19.1.4-h719f0c7_0.conda
+ sha256: 89f71027df68dafc654a0f1f1b6042a4631092f389cceaec58e6e04e74c4b424
+ md5: 387d14ee336d8d55de89ace9e2003684
+ depends:
+ - compiler-rt_win-64 19.1.4.*
+ - flang 19.1.4.*
+ - libflang >=19.1.4
+ - lld
+ - llvm-tools
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 8801
+ timestamp: 1732144947574
+- kind: conda
+ name: flang_win-64
+ version: 19.1.4
+ build: h719f0c7_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/flang_win-64-19.1.4-h719f0c7_0.conda
+ sha256: 94f54b35725d4fbec41a6aad4ed3e7eb1b65aa626948e7a63b1d9c3637e0d05f
+ md5: 25cf59b4c04b7d66821975cfbb62148a
+ depends:
+ - flang_impl_win-64 19.1.4 h719f0c7_0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 9640
+ timestamp: 1732144954798
+- kind: conda
+ name: flann
+ version: 1.9.2
+ build: h3ef53d8_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/flann-1.9.2-h3ef53d8_2.conda
+ sha256: 3a223373e848d0ea14971f7698e51ef2a7497504c10306492c066165d0a0bb06
+ md5: a0f60c2f07bf0c101da8c3e632a4beb7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - lz4-c >=1.9.3,<1.10.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1569288
+ timestamp: 1728027997028
+- kind: conda
+ name: flann
+ version: 1.9.2
+ build: h66ee4ad_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/flann-1.9.2-h66ee4ad_2.conda
+ sha256: 12fb482e711d3d67b69cb1debf217b6c043b0b1859d725000c2ea348580b9f9b
+ md5: 09d44dcaecda15fddefa9830ae81bdb4
+ depends:
+ - __osx >=10.13
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - libcxx >=17
+ - llvm-openmp >=17.0.6
+ - lz4-c >=1.9.3,<1.10.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1368658
+ timestamp: 1728028119019
+- kind: conda
+ name: flann
+ version: 1.9.2
+ build: h7e74b68_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/flann-1.9.2-h7e74b68_2.conda
+ sha256: 6e58d82896893d72bfbe563b4ba712bb4e41705d2c00a44db87b9412cc4a8008
+ md5: 4abc7d16d4acd76357c7b44bcca7de62
+ depends:
+ - _openmp_mutex >=4.5
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - lz4-c >=1.9.3,<1.10.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1788051
+ timestamp: 1728028128815
+- kind: conda
+ name: flann
+ version: 1.9.2
+ build: h8958603_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/flann-1.9.2-h8958603_2.conda
+ sha256: 8306e932c7060caea1fe2d0089a70f8cbccde75fdb8b0abf87acdd252cee1e09
+ md5: f43541fd0ebf62584cb598891a5d90b5
+ depends:
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - lz4-c >=1.9.3,<1.10.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 4333500
+ timestamp: 1728028612163
+- kind: conda
+ name: flann
+ version: 1.9.2
+ build: hedd063d_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/flann-1.9.2-hedd063d_2.conda
+ sha256: 710e5e5a514de1e1cb9327b2288d6c4510da08ac65ef903436e70f66943e26bc
+ md5: 4c11efbe0211f2e3df6a13389973c8b7
+ depends:
+ - __osx >=11.0
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - libcxx >=17
+ - llvm-openmp >=17.0.6
+ - lz4-c >=1.9.3,<1.10.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1492417
+ timestamp: 1728028133716
+- kind: conda
+ name: fmt
+ version: 11.0.2
+ build: h3c5361c_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/fmt-11.0.2-h3c5361c_0.conda
+ sha256: 4502053d2556431caa3a606b527eb1e45967109d6c6ffe094f18c3134cf77db1
+ md5: e8070546e8739040383f6774e0cd4033
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ license: MIT
+ license_family: MIT
+ size: 184400
+ timestamp: 1723046749457
+- kind: conda
+ name: fmt
+ version: 11.0.2
+ build: h420ef59_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/fmt-11.0.2-h420ef59_0.conda
+ sha256: 62e6508d5bbde4aa36f7b7658ce2d8fdd0e509c0d1661735c1bd1bed00e070c4
+ md5: 0e44849fd4764e9f85ed8caa9f24c118
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ license: MIT
+ license_family: MIT
+ size: 179582
+ timestamp: 1723046771323
+- kind: conda
+ name: fmt
+ version: 11.0.2
+ build: h434a139_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/fmt-11.0.2-h434a139_0.conda
+ sha256: c620e2ab084948985ae9b8848d841f603e8055655513340e04b6cf129099b5ca
+ md5: 995f7e13598497691c1dc476d889bc04
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 198533
+ timestamp: 1723046725112
+- kind: conda
+ name: fmt
+ version: 11.0.2
+ build: h70be974_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/fmt-11.0.2-h70be974_0.conda
+ sha256: dd47f343981c8e3e0b033ba2511f20400e9cc7ee1206ea1bed01f73798a0c03c
+ md5: 32feda3daf08ff832cf9d55bab2432d6
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 193909
+ timestamp: 1723046774820
+- kind: conda
+ name: fmt
+ version: 11.0.2
+ build: h7f575de_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/fmt-11.0.2-h7f575de_0.conda
+ sha256: 951c6c8676611e7a9f9b868d008e8fce55e9097996ecef66a09bd2eedfe7fe5a
+ md5: 4bd427b6423eead4edea9533dc5381ba
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 188872
+ timestamp: 1723047364214
+- kind: conda
+ name: font-ttf-dejavu-sans-mono
+ version: '2.37'
+ build: hab24e00_0
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
+ sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b
+ md5: 0c96522c6bdaed4b1566d11387caaf45
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 397370
+ timestamp: 1566932522327
+- kind: conda
+ name: font-ttf-inconsolata
+ version: '3.000'
+ build: h77eed37_0
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
+ sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c
+ md5: 34893075a5c9e55cdafac56607368fc6
+ license: OFL-1.1
+ license_family: Other
+ size: 96530
+ timestamp: 1620479909603
+- kind: conda
+ name: font-ttf-source-code-pro
+ version: '2.038'
+ build: h77eed37_0
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
+ sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139
+ md5: 4d59c254e01d9cde7957100457e2d5fb
+ license: OFL-1.1
+ license_family: Other
+ size: 700814
+ timestamp: 1620479612257
+- kind: conda
+ name: font-ttf-ubuntu
+ version: '0.83'
+ build: h77eed37_3
+ build_number: 3
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
+ sha256: 2821ec1dc454bd8b9a31d0ed22a7ce22422c0aef163c59f49dfdf915d0f0ca14
+ md5: 49023d73832ef61042f6a237cb2687e7
+ license: LicenseRef-Ubuntu-Font-Licence-Version-1.0
+ license_family: Other
+ size: 1620504
+ timestamp: 1727511233259
+- kind: conda
+ name: fontconfig
+ version: 2.15.0
+ build: h1383a14_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.15.0-h1383a14_1.conda
+ sha256: f79d3d816fafbd6a2b0f75ebc3251a30d3294b08af9bb747194121f5efa364bc
+ md5: 7b29f48742cea5d1ccb5edd839cb5621
+ depends:
+ - __osx >=11.0
+ - freetype >=2.12.1,<3.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 234227
+ timestamp: 1730284037572
+- kind: conda
+ name: fontconfig
+ version: 2.15.0
+ build: h37eeddb_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.15.0-h37eeddb_1.conda
+ sha256: 61a9aa1d2dd115ffc1ab372966dc8b1ac7b69870e6b1744641da276b31ea5c0b
+ md5: 84ccec5ee37eb03dd352db0a3f89ada3
+ depends:
+ - __osx >=10.13
+ - freetype >=2.12.1,<3.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 232313
+ timestamp: 1730283983397
+- kind: conda
+ name: fontconfig
+ version: 2.15.0
+ build: h765892d_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.15.0-h765892d_1.conda
+ sha256: ed122fc858fb95768ca9ca77e73c8d9ddc21d4b2e13aaab5281e27593e840691
+ md5: 9bb0026a2131b09404c59c4290c697cd
+ depends:
+ - freetype >=2.12.1,<3.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 192355
+ timestamp: 1730284147944
+- kind: conda
+ name: fontconfig
+ version: 2.15.0
+ build: h7e30c49_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda
+ sha256: 7093aa19d6df5ccb6ca50329ef8510c6acb6b0d8001191909397368b65b02113
+ md5: 8f5b0b297b59e1ac160ad4beec99dbee
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - freetype >=2.12.1,<3.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libgcc >=13
+ - libuuid >=2.38.1,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 265599
+ timestamp: 1730283881107
+- kind: conda
+ name: fontconfig
+ version: 2.15.0
+ build: h8dda3cd_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/fontconfig-2.15.0-h8dda3cd_1.conda
+ sha256: fe023bb8917c8a3138af86ef537b70c8c5d60c44f93946a87d1e8bb1a6634b55
+ md5: 112b71b6af28b47c624bcbeefeea685b
+ depends:
+ - freetype >=2.12.1,<3.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libgcc >=13
+ - libuuid >=2.38.1,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 277832
+ timestamp: 1730284967179
+- kind: conda
+ name: fonts-conda-ecosystem
+ version: '1'
+ build: '0'
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
+ sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61
+ md5: fee5683a3f04bd15cbd8318b096a27ab
+ depends:
+ - fonts-conda-forge
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3667
+ timestamp: 1566974674465
+- kind: conda
+ name: fonts-conda-forge
+ version: '1'
+ build: '0'
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
+ sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38
+ md5: f766549260d6815b0c52253f1fb1bb29
+ depends:
+ - font-ttf-dejavu-sans-mono
+ - font-ttf-inconsolata
+ - font-ttf-source-code-pro
+ - font-ttf-ubuntu
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 4102
+ timestamp: 1566932280397
+- kind: conda
+ name: fonttools
+ version: 4.55.0
+ build: py312h178313f_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.55.0-py312h178313f_0.conda
+ sha256: 2a8d4fe8968828584057f8b07f3e102e326d8ec08d0e30e4ecc21f35031239a0
+ md5: f404f4fb99ccaea68b00c1cc64fc1e68
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - brotli
+ - libgcc >=13
+ - munkres
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - unicodedata2 >=15.1.0
+ license: MIT
+ license_family: MIT
+ size: 2843090
+ timestamp: 1731643626471
+- kind: conda
+ name: fonttools
+ version: 4.55.0
+ build: py312h31fea79_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.55.0-py312h31fea79_0.conda
+ sha256: 1507c8c47bcc7358d13d24e032ffccabec07df1f7abd6a46ab712679808dc148
+ md5: 6051feed0d3ed5900dd5d9355d9b4a1b
+ depends:
+ - brotli
+ - munkres
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - unicodedata2 >=15.1.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 2423864
+ timestamp: 1731643701666
+- kind: conda
+ name: fonttools
+ version: 4.55.0
+ build: py312h3520af0_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/fonttools-4.55.0-py312h3520af0_0.conda
+ sha256: 30f6c8d85c2470b6f01c9e673a0f4f5662a58f75d9bef17a038d01071802246b
+ md5: 804285e14c733803a8301139185d02ad
+ depends:
+ - __osx >=10.13
+ - brotli
+ - munkres
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - unicodedata2 >=15.1.0
+ license: MIT
+ license_family: MIT
+ size: 2744633
+ timestamp: 1731643699104
+- kind: conda
+ name: fonttools
+ version: 4.55.0
+ build: py312h998013c_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/fonttools-4.55.0-py312h998013c_0.conda
+ sha256: 427d75267cfeee820498efeea59477790f7e28cdbe0f18a8484f23dae9a85cce
+ md5: b009bb8037e769ff4fd6439642268ecb
+ depends:
+ - __osx >=11.0
+ - brotli
+ - munkres
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - unicodedata2 >=15.1.0
+ license: MIT
+ license_family: MIT
+ size: 2752240
+ timestamp: 1731643678207
+- kind: conda
+ name: fonttools
+ version: 4.55.0
+ build: py312hcc812fe_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/fonttools-4.55.0-py312hcc812fe_0.conda
+ sha256: 35f25a174a7f1eb38a3e1e2fe1172f1d4e62947b79e004515f348933889b62a5
+ md5: 5e10aa11562e6391873368bc4f350bdb
+ depends:
+ - brotli
+ - libgcc >=13
+ - munkres
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - unicodedata2 >=15.1.0
+ license: MIT
+ license_family: MIT
+ size: 2821981
+ timestamp: 1731643640082
+- kind: conda
+ name: fortran-compiler
+ version: 1.8.0
+ build: h25a59a9_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/fortran-compiler-1.8.0-h25a59a9_1.conda
+ sha256: 4c29f8729e3f7fc6c5347c56fbf1f7a5ea22fbaaf685d187848cf4ee68086cd8
+ md5: 332c43b3c9e5ea6e8aa20cec132e6534
+ depends:
+ - binutils
+ - c-compiler 1.8.0 h6561dab_1
+ - gfortran
+ - gfortran_linux-aarch64 13.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6175
+ timestamp: 1728985293546
+- kind: conda
+ name: fortran-compiler
+ version: 1.8.0
+ build: h33d1f46_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.8.0-h33d1f46_1.conda
+ sha256: 51ae46b447091afc2137e9c789c0cfce54c00cbfa1bcfb0968b6a3e13d23abd9
+ md5: f3f15da7cbc7be80ea112ecd5dd73b22
+ depends:
+ - cctools >=949.0.1
+ - gfortran
+ - gfortran_osx-64 13.*
+ - ld64 >=530
+ - llvm-openmp
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6265
+ timestamp: 1728985477352
+- kind: conda
+ name: fortran-compiler
+ version: 1.8.0
+ build: h36df796_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.8.0-h36df796_1.conda
+ sha256: a713ede383b34fb46e73e00fc6b556a7446eae43f9d312c104678658ea463ea4
+ md5: 6b57750841d53ade8d3b47eafe53dd9f
+ depends:
+ - binutils
+ - c-compiler 1.8.0 h2b85faf_1
+ - gfortran
+ - gfortran_linux-64 13.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6095
+ timestamp: 1728985303064
+- kind: conda
+ name: fortran-compiler
+ version: 1.8.0
+ build: h95e3450_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/fortran-compiler-1.8.0-h95e3450_1.conda
+ sha256: 6154c279a8eee8174530505fba2041d68ecd37023922e9802b8536c5970b142b
+ md5: ceb44d8ea43398f5c0b8b47b3e9700b8
+ depends:
+ - flang_win-64 19.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6575
+ timestamp: 1728985391778
+- kind: conda
+ name: fortran-compiler
+ version: 1.8.0
+ build: hc3477c4_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/fortran-compiler-1.8.0-hc3477c4_1.conda
+ sha256: 42c19f382855e406d017cc8dac2fc3a957a44c7700906de3fbb2a5c23730296e
+ md5: 467c9db2314e049c2ca4d34f9aa87dca
+ depends:
+ - cctools >=949.0.1
+ - gfortran
+ - gfortran_osx-arm64 13.*
+ - ld64 >=530
+ - llvm-openmp
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6288
+ timestamp: 1728985414156
+- kind: conda
+ name: freeimage
+ version: 3.18.0
+ build: h2e169f6_22
+ build_number: 22
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/freeimage-3.18.0-h2e169f6_22.conda
+ sha256: 74dec75a67f9e95058f188eccfb8d82f59e9bbd1444a733cb08f4a0c3e8f7489
+ md5: 98187c5ae2ea4cd05afc2a8bf0fd3b1d
+ depends:
+ - __osx >=11.0
+ - imath >=3.1.12,<3.1.13.0a0
+ - jxrlib >=1.1,<1.2.0a0
+ - libcxx >=17
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libraw >=0.21.3,<0.22.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openexr >=3.3.1,<3.4.0a0
+ - openjpeg >=2.5.2,<3.0a0
+ license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage
+ size: 366466
+ timestamp: 1729024195241
+- kind: conda
+ name: freeimage
+ version: 3.18.0
+ build: h3a85593_22
+ build_number: 22
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h3a85593_22.conda
+ sha256: 03ccff5d255eab7a1736de9eeb539fbb1333036fa5e37ea7c8ec428270067c99
+ md5: bbdf3d43d752b793ac81f27b28c49e2d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - imath >=3.1.12,<3.1.13.0a0
+ - jxrlib >=1.1,<1.2.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libraw >=0.21.3,<0.22.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openexr >=3.3.1,<3.4.0a0
+ - openjpeg >=2.5.2,<3.0a0
+ license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage
+ size: 467860
+ timestamp: 1729024045245
+- kind: conda
+ name: freeimage
+ version: 3.18.0
+ build: h6cb32c8_22
+ build_number: 22
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/freeimage-3.18.0-h6cb32c8_22.conda
+ sha256: 0a0ed82992c87aa67604569d35b6180863ca21081e94739194e6adde3f92f84d
+ md5: f6891bd5c49b824889b065446edefe37
+ depends:
+ - imath >=3.1.12,<3.1.13.0a0
+ - jxrlib >=1.1,<1.2.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libraw >=0.21.3,<0.22.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openexr >=3.3.1,<3.4.0a0
+ - openjpeg >=2.5.2,<3.0a0
+ license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage
+ size: 453451
+ timestamp: 1729024016441
+- kind: conda
+ name: freeimage
+ version: 3.18.0
+ build: h7cd8ba8_22
+ build_number: 22
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/freeimage-3.18.0-h7cd8ba8_22.conda
+ sha256: 89553f22495b2e22b8f603126d6a580cc0cbc5517e9c0dff4be4a3e9055f8f56
+ md5: 4ea546f119eaf4a1457ded2054982d52
+ depends:
+ - __osx >=10.13
+ - imath >=3.1.12,<3.1.13.0a0
+ - jxrlib >=1.1,<1.2.0a0
+ - libcxx >=17
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libraw >=0.21.3,<0.22.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openexr >=3.3.1,<3.4.0a0
+ - openjpeg >=2.5.2,<3.0a0
+ license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage
+ size: 410944
+ timestamp: 1729024174328
+- kind: conda
+ name: freeimage
+ version: 3.18.0
+ build: h8310ca0_22
+ build_number: 22
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/freeimage-3.18.0-h8310ca0_22.conda
+ sha256: 89ff5bd00c94d201b76f90b939cbd9ec013171c45d9967f7dac71d330cd10343
+ md5: 5c8c15da921f6a9388d37c4fc81dad4a
+ depends:
+ - imath >=3.1.12,<3.1.13.0a0
+ - jxrlib >=1.1,<1.2.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libraw >=0.21.3,<0.22.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openexr >=3.3.1,<3.4.0a0
+ - openjpeg >=2.5.2,<3.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage
+ size: 465887
+ timestamp: 1729024520954
+- kind: conda
+ name: freetype
+ version: 2.12.1
+ build: h267a509_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda
+ sha256: b2e3c449ec9d907dd4656cb0dc93e140f447175b125a3824b31368b06c666bb6
+ md5: 9ae35c3d96db2c94ce0cef86efdfa2cb
+ depends:
+ - libgcc-ng >=12
+ - libpng >=1.6.39,<1.7.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ license: GPL-2.0-only OR FTL
+ size: 634972
+ timestamp: 1694615932610
+- kind: conda
+ name: freetype
+ version: 2.12.1
+ build: h60636b9_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda
+ sha256: b292cf5a25f094eeb4b66e37d99a97894aafd04a5683980852a8cbddccdc8e4e
+ md5: 25152fce119320c980e5470e64834b50
+ depends:
+ - libpng >=1.6.39,<1.7.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ license: GPL-2.0-only OR FTL
+ size: 599300
+ timestamp: 1694616137838
+- kind: conda
+ name: freetype
+ version: 2.12.1
+ build: hadb7bae_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda
+ sha256: 791673127e037a2dc0eebe122dc4f904cb3f6e635bb888f42cbe1a76b48748d9
+ md5: e6085e516a3e304ce41a8ee08b9b89ad
+ depends:
+ - libpng >=1.6.39,<1.7.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ license: GPL-2.0-only OR FTL
+ size: 596430
+ timestamp: 1694616332835
+- kind: conda
+ name: freetype
+ version: 2.12.1
+ build: hdaf720e_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda
+ sha256: 2c53ee8879e05e149a9e525481d36adfd660a6abda26fd731376fa64ff03e728
+ md5: 3761b23693f768dc75a8fd0a73ca053f
+ depends:
+ - libpng >=1.6.39,<1.7.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: GPL-2.0-only OR FTL
+ size: 510306
+ timestamp: 1694616398888
+- kind: conda
+ name: freetype
+ version: 2.12.1
+ build: hf0a5ef3_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.12.1-hf0a5ef3_2.conda
+ sha256: 7af93030f4407f076dce181062360efac2cd54dce863b5d7765287a6f5382537
+ md5: a5ab74c5bd158c3d5532b66d8d83d907
+ depends:
+ - libgcc-ng >=12
+ - libpng >=1.6.39,<1.7.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ license: GPL-2.0-only OR FTL
+ size: 642092
+ timestamp: 1694617858496
+- kind: conda
+ name: fribidi
+ version: 1.0.10
+ build: h27ca646_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2
+ sha256: 4b37ea851a2cf85edf0a63d2a63266847ec3dcbba4a31156d430cdd6aa811303
+ md5: c64443234ff91d70cb9c7dc926c58834
+ license: LGPL-2.1
+ size: 60255
+ timestamp: 1604417405528
+- kind: conda
+ name: fribidi
+ version: 1.0.10
+ build: h36c2ea0_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2
+ sha256: 5d7b6c0ee7743ba41399e9e05a58ccc1cfc903942e49ff6f677f6e423ea7a627
+ md5: ac7bc6a654f8f41b352b38f4051135f8
+ depends:
+ - libgcc-ng >=7.5.0
+ license: LGPL-2.1
+ size: 114383
+ timestamp: 1604416621168
+- kind: conda
+ name: fribidi
+ version: 1.0.10
+ build: h8d14728_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2
+ sha256: e0323e6d7b6047042970812ee810c6b1e1a11a3af4025db26d0965ae5d206104
+ md5: 807e81d915f2bb2e49951648615241f6
+ depends:
+ - vc >=14.1,<15.0a0
+ - vs2015_runtime >=14.16.27012
+ license: LGPL-2.1
+ size: 64567
+ timestamp: 1604417122064
+- kind: conda
+ name: fribidi
+ version: 1.0.10
+ build: hb9de7d4_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/fribidi-1.0.10-hb9de7d4_0.tar.bz2
+ sha256: bcb5a40f1aaf4ea8cda2fc6b2b12aa336403772121350281ce31fd2d9d3e214e
+ md5: f6c91a43eace6fb926a8730b3b9a8a50
+ depends:
+ - libgcc-ng >=7.5.0
+ license: LGPL-2.1
+ size: 115689
+ timestamp: 1604417149643
+- kind: conda
+ name: fribidi
+ version: 1.0.10
+ build: hbcb3906_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2
+ sha256: 4f6db86ecc4984cd4ac88ca52030726c3cfd11a64dfb15c8602025ee3001a2b5
+ md5: f1c6b41e0f56998ecd9a3e210faa1dc0
+ license: LGPL-2.1
+ size: 65388
+ timestamp: 1604417213
+- kind: conda
+ name: frozendict
+ version: 2.4.6
+ build: py312h0bf5046_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/frozendict-2.4.6-py312h0bf5046_0.conda
+ sha256: 357cef10885bd2fb5d5d3197a8565d0c0b86fffd0dbaff58acee29f7d897a935
+ md5: 22df6d6ec0345fc46182ce47e7ee8e24
+ depends:
+ - __osx >=11.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 30959
+ timestamp: 1728841539128
+- kind: conda
+ name: frozendict
+ version: 2.4.6
+ build: py312h3d0f464_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/frozendict-2.4.6-py312h3d0f464_0.conda
+ sha256: ea617933e456f78905682cbed90692ba698524280955f6ff21be0905d8f0cd43
+ md5: 58a8d9e016adc22964bfb0b9a5272e16
+ depends:
+ - __osx >=10.13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 30751
+ timestamp: 1728841497755
+- kind: conda
+ name: frozendict
+ version: 2.4.6
+ build: py312h4389bb4_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/frozendict-2.4.6-py312h4389bb4_0.conda
+ sha256: 7148c848521bfb2a5d3a0bac9fafc006999bade8a1f872312429b5193e6aff39
+ md5: 1d16a74859f027c8654e30400780a033
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 31147
+ timestamp: 1728841600933
+- kind: conda
+ name: frozendict
+ version: 2.4.6
+ build: py312h66e93f0_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/frozendict-2.4.6-py312h66e93f0_0.conda
+ sha256: a251569d25e9658f87406efda6640e2816659c5d4dd244d1008bb789793cf32e
+ md5: 9fa8408745a0621314b7751d11fecc18
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 30486
+ timestamp: 1728841445822
+- kind: conda
+ name: frozendict
+ version: 2.4.6
+ build: py312hb2c0f52_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/frozendict-2.4.6-py312hb2c0f52_0.conda
+ sha256: a10626b8d1e732dba2404afd68b80c0008b5ff2062c05fe80c276d73cf00097f
+ md5: e50996bfdb4966e93dac45126b2df97e
+ depends:
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 30871
+ timestamp: 1728841579782
+- kind: conda
+ name: frozenlist
+ version: 1.5.0
+ build: py312h0bf5046_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.5.0-py312h0bf5046_0.conda
+ sha256: 44d6d6b332421e621c029fb149f12dba1ccb5ed6ac632e2e807a9d92d6cb2864
+ md5: 7960352935cc95ac23883c9b8c97f2ff
+ depends:
+ - __osx >=11.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ size: 53366
+ timestamp: 1729699762631
+- kind: conda
+ name: frozenlist
+ version: 1.5.0
+ build: py312h3d0f464_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/frozenlist-1.5.0-py312h3d0f464_0.conda
+ sha256: cb6dcdde2515f30328a223c51f6ff4b43acfc436e6425f5584921af631f66027
+ md5: 6c6d8d4893ce961b77f32d1f39d51185
+ depends:
+ - __osx >=10.13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ size: 52739
+ timestamp: 1729699732467
+- kind: conda
+ name: frozenlist
+ version: 1.5.0
+ build: py312h4389bb4_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/frozenlist-1.5.0-py312h4389bb4_0.conda
+ sha256: 5111b8ce57dc0a6552457141bbdfd8ccba72c9acee2c253cd44c69239919cb64
+ md5: 6cb7f9f613348759fbc968fe82197396
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: APACHE
+ size: 54352
+ timestamp: 1729699828195
+- kind: conda
+ name: frozenlist
+ version: 1.5.0
+ build: py312h66e93f0_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.5.0-py312h66e93f0_0.conda
+ sha256: 7e0c12983b20f2816b3712729b5a35ecb7ee152132ca7cf805427c62395ea823
+ md5: f98e36c96b2c66d9043187179ddb04f4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ size: 60968
+ timestamp: 1729699568442
+- kind: conda
+ name: frozenlist
+ version: 1.5.0
+ build: py312hb2c0f52_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/frozenlist-1.5.0-py312hb2c0f52_0.conda
+ sha256: b0a9ff3e71452eed70877b2f3175d41cd85070da6deac381c5f3f61e1f19bccb
+ md5: 62fc11b0738ca15e0dd19b60cf280d12
+ depends:
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ size: 59967
+ timestamp: 1729699642726
+- kind: conda
+ name: gcc
+ version: 13.3.0
+ build: h8a56e6e_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc-13.3.0-h8a56e6e_1.conda
+ sha256: a65247a97374d871f12490aed847d975e513b70a1ba056c0908e9909e9a1945f
+ md5: 9548c9d315f1894dc311d56433e05e28
+ depends:
+ - gcc_impl_linux-aarch64 13.3.0.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 54122
+ timestamp: 1724802233653
+- kind: conda
+ name: gcc
+ version: 13.3.0
+ build: h9576a4e_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gcc-13.3.0-h9576a4e_1.conda
+ sha256: d0161362430183cbdbc3db9cf95f9a1af1793027f3ab8755b3d3586deb28bf84
+ md5: 606924335b5bcdf90e9aed9a2f5d22ed
+ depends:
+ - gcc_impl_linux-64 13.3.0.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 53864
+ timestamp: 1724801360210
+- kind: conda
+ name: gcc_impl_linux-64
+ version: 13.3.0
+ build: hfea6d02_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-13.3.0-hfea6d02_1.conda
+ sha256: 998ade1d487e93fc8a7a16b90e2af69ebb227355bf4646488661f7ae5887873c
+ md5: 0d043dbc126b64f79d915a0e96d3a1d5
+ depends:
+ - binutils_impl_linux-64 >=2.40
+ - libgcc >=13.3.0
+ - libgcc-devel_linux-64 13.3.0 h84ea5a7_101
+ - libgomp >=13.3.0
+ - libsanitizer 13.3.0 heb74ff8_1
+ - libstdcxx >=13.3.0
+ - sysroot_linux-64
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 67464415
+ timestamp: 1724801227937
+- kind: conda
+ name: gcc_impl_linux-aarch64
+ version: 13.3.0
+ build: hcdea9b6_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-13.3.0-hcdea9b6_1.conda
+ sha256: cefdf28ab9639e0caa1ff50ec9c67911a5a22b216b685a56fcb82036b11f8758
+ md5: 05d767292bb95666ecfacea481f8ca64
+ depends:
+ - binutils_impl_linux-aarch64 >=2.40
+ - libgcc >=13.3.0
+ - libgcc-devel_linux-aarch64 13.3.0 h0c07274_101
+ - libgomp >=13.3.0
+ - libsanitizer 13.3.0 ha58e236_1
+ - libstdcxx >=13.3.0
+ - sysroot_linux-aarch64
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 62293677
+ timestamp: 1724802082737
+- kind: conda
+ name: gcc_linux-64
+ version: 13.3.0
+ build: hc28eda2_7
+ build_number: 7
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-13.3.0-hc28eda2_7.conda
+ sha256: 1e5ac50580a68fdc7d2f5722abcf1a87898c24b1ab6eb5ecd322634742d93645
+ md5: ac23afbf5805389eb771e2ad3b476f75
+ depends:
+ - binutils_linux-64
+ - gcc_impl_linux-64 13.3.0.*
+ - sysroot_linux-64
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 32005
+ timestamp: 1731939593317
+- kind: conda
+ name: gcc_linux-aarch64
+ version: 13.3.0
+ build: h1cd514b_7
+ build_number: 7
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gcc_linux-aarch64-13.3.0-h1cd514b_7.conda
+ sha256: 1515ce0e32aeaa35be46b8b663913c5c55ca070bafede52958b669da6d5298a0
+ md5: 5db44b39edd9182d90a418c0efec5f09
+ depends:
+ - binutils_linux-aarch64
+ - gcc_impl_linux-aarch64 13.3.0.*
+ - sysroot_linux-aarch64
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 32164
+ timestamp: 1731939505804
+- kind: conda
+ name: gdk-pixbuf
+ version: 2.42.12
+ build: h7ddc832_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/gdk-pixbuf-2.42.12-h7ddc832_0.conda
+ sha256: 72bcf0a4d3f9aa6d99d7d1d224d19f76ccdb3a4fa85e60f77d17e17985c81bd2
+ md5: 151309a7e1eb57a3c2ab8088a1d74f3e
+ depends:
+ - __osx >=11.0
+ - libglib >=2.80.2,<3.0a0
+ - libintl >=0.22.5,<1.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ size: 509570
+ timestamp: 1715783199780
+- kind: conda
+ name: gdk-pixbuf
+ version: 2.42.12
+ build: ha587570_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/gdk-pixbuf-2.42.12-ha587570_0.conda
+ sha256: 92cb602ef86feb35252ee909e19536fa043bd85b8507450ad8264cfa518a5881
+ md5: ee186d2e8db4605030753dc05025d4a0
+ depends:
+ - __osx >=10.13
+ - libglib >=2.80.2,<3.0a0
+ - libintl >=0.22.5,<1.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ size: 516815
+ timestamp: 1715783154558
+- kind: conda
+ name: gdk-pixbuf
+ version: 2.42.12
+ build: ha61d561_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gdk-pixbuf-2.42.12-ha61d561_0.conda
+ sha256: 608f64aa9cf3085e91da8d417aa7680715130b4da73d8aabc50b19e29de697d2
+ md5: 332ed304e6d1c1333ccbdc0fdd722fe9
+ depends:
+ - libgcc-ng >=12
+ - libglib >=2.80.2,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ size: 536613
+ timestamp: 1715784386033
+- kind: conda
+ name: gdk-pixbuf
+ version: 2.42.12
+ build: hb9ae30d_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gdk-pixbuf-2.42.12-hb9ae30d_0.conda
+ sha256: d5283b95a8d49dcd88d29b360d8b38694aaa905d968d156d72ab71d32b38facb
+ md5: 201db6c2d9a3c5e46573ac4cb2e92f4f
+ depends:
+ - libgcc-ng >=12
+ - libglib >=2.80.2,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ size: 528149
+ timestamp: 1715782983957
+- kind: conda
+ name: gdk-pixbuf
+ version: 2.42.12
+ build: hed59a49_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/gdk-pixbuf-2.42.12-hed59a49_0.conda
+ sha256: 7a7768a5e65092242071f99b4cafe3e59546f9260ae472d3aa10a9a9aa869c3c
+ md5: 350196a65e715882abefffd1a702172d
+ depends:
+ - libglib >=2.80.2,<3.0a0
+ - libintl >=0.22.5,<1.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ size: 523967
+ timestamp: 1715783547727
+- kind: conda
+ name: getopt-win32
+ version: '0.1'
+ build: hcfcfb64_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/getopt-win32-0.1-hcfcfb64_1.conda
+ sha256: f3b6e689724a62f36591f6f0e4657db5507feca78e7ef08690a6b2a384216a5c
+ md5: 714d0882dc5e692ca4683d8e520f73c6
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LGPL-3.0-only
+ license_family: GPL
+ size: 21903
+ timestamp: 1694400856979
+- kind: conda
+ name: gettext
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.22.5-h8414b35_3.conda
+ sha256: 634e11f6e6560568ede805f823a2be8634c6a0a2fa6743880ec403d925923138
+ md5: 89b31a91b3ac2b7b3b0e5bc4eb99c39d
+ depends:
+ - __osx >=11.0
+ - gettext-tools 0.22.5 h8414b35_3
+ - libasprintf 0.22.5 h8414b35_3
+ - libasprintf-devel 0.22.5 h8414b35_3
+ - libcxx >=16
+ - libgettextpo 0.22.5 h8414b35_3
+ - libgettextpo-devel 0.22.5 h8414b35_3
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 h8414b35_3
+ - libintl-devel 0.22.5 h8414b35_3
+ license: LGPL-2.1-or-later AND GPL-3.0-or-later
+ size: 483255
+ timestamp: 1723627203687
+- kind: conda
+ name: gettext
+ version: 0.22.5
+ build: hdfe23c8_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/gettext-0.22.5-hdfe23c8_3.conda
+ sha256: f68cd35c98394dc322f2695a720b31b77a9cdfe7d5c08ce53bc68c9e3fe4c6ec
+ md5: 4e53e0f241c09fcdf674e4a37c0c70e6
+ depends:
+ - __osx >=10.13
+ - gettext-tools 0.22.5 hdfe23c8_3
+ - libasprintf 0.22.5 hdfe23c8_3
+ - libasprintf-devel 0.22.5 hdfe23c8_3
+ - libcxx >=16
+ - libgettextpo 0.22.5 hdfe23c8_3
+ - libgettextpo-devel 0.22.5 hdfe23c8_3
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 hdfe23c8_3
+ - libintl-devel 0.22.5 hdfe23c8_3
+ license: LGPL-2.1-or-later AND GPL-3.0-or-later
+ size: 480155
+ timestamp: 1723627002489
+- kind: conda
+ name: gettext-tools
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-tools-0.22.5-h8414b35_3.conda
+ sha256: 50b530cf2326938b80330f78cf4056492fa8c6a5c7e313d92069ebbbb2f4d264
+ md5: 47071f4b2915032e1d47119f779f9d9c
+ depends:
+ - __osx >=11.0
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 h8414b35_3
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 2467439
+ timestamp: 1723627140130
+- kind: conda
+ name: gettext-tools
+ version: 0.22.5
+ build: hdfe23c8_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/gettext-tools-0.22.5-hdfe23c8_3.conda
+ sha256: 7fe97828eae5e067b68dd012811e614e057854ed51116bbd2fd2e8d05439ad63
+ md5: 70a5bb1505016ebdba1214ba10de0503
+ depends:
+ - __osx >=10.13
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 hdfe23c8_3
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 2513986
+ timestamp: 1723626957941
+- kind: conda
+ name: gfortran
+ version: 13.2.0
+ build: h1ca8e4b_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran-13.2.0-h1ca8e4b_1.conda
+ sha256: 1232495ccd08cec4c80d475d584d1fc84365a1ef1b70e45bb0d9c317e9ec270e
+ md5: 9eac94b5f64ba2d59ef2424cc44bebea
+ depends:
+ - cctools
+ - gfortran_osx-arm64 13.2.0
+ - ld64
+ license: GPL-3.0-or-later WITH GCC-exception-3.1
+ license_family: GPL
+ size: 31973
+ timestamp: 1694179448089
+- kind: conda
+ name: gfortran
+ version: 13.2.0
+ build: h2c809b3_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/gfortran-13.2.0-h2c809b3_1.conda
+ sha256: 5075f02a18644daeb16d0360ffad9ac8652e299ffb4a19ea776522a962592564
+ md5: b5ad3b799b9ae996fcc8aab3a60fb48e
+ depends:
+ - cctools
+ - gfortran_osx-64 13.2.0
+ - ld64
+ license: GPL-3.0-or-later WITH GCC-exception-3.1
+ license_family: GPL
+ size: 32023
+ timestamp: 1694179582309
+- kind: conda
+ name: gfortran
+ version: 13.3.0
+ build: h8a56e6e_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gfortran-13.3.0-h8a56e6e_1.conda
+ sha256: dae0851022941cc9137dad3d2ede52d7d7f760bc46f5b06252b657b2a4dbdcdf
+ md5: 9f5a15470233d9366daad8d17c0d2b1d
+ depends:
+ - gcc 13.3.0.*
+ - gcc_impl_linux-aarch64 13.3.0.*
+ - gfortran_impl_linux-aarch64 13.3.0.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 53556
+ timestamp: 1724802367553
+- kind: conda
+ name: gfortran
+ version: 13.3.0
+ build: h9576a4e_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gfortran-13.3.0-h9576a4e_1.conda
+ sha256: fc711e4a5803c4052b3b9d29788f5256f5565f4609f7688268e89cbdae969f9b
+ md5: 5e5e3b592d5174eb49607a973c77825b
+ depends:
+ - gcc 13.3.0.*
+ - gcc_impl_linux-64 13.3.0.*
+ - gfortran_impl_linux-64 13.3.0.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 53341
+ timestamp: 1724801488689
+- kind: conda
+ name: gfortran_impl_linux-64
+ version: 13.3.0
+ build: h10434e7_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-13.3.0-h10434e7_1.conda
+ sha256: 9439e1f01d328d4cbdfbb2c8579b83619a694ad114ddf671fb9971ebf088d267
+ md5: 6709e113709b6ba67cc0f4b0de58ef7f
+ depends:
+ - gcc_impl_linux-64 >=13.3.0
+ - libgcc >=13.3.0
+ - libgfortran5 >=13.3.0
+ - libstdcxx >=13.3.0
+ - sysroot_linux-64
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 15894110
+ timestamp: 1724801415339
+- kind: conda
+ name: gfortran_impl_linux-aarch64
+ version: 13.3.0
+ build: h174a3c4_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gfortran_impl_linux-aarch64-13.3.0-h174a3c4_1.conda
+ sha256: 5cafc6323e7a0fed15683237d7d5f533a91bde09ac239ae921ef22ff963d15bc
+ md5: d3822f0c83af67924a12f052b33aca0c
+ depends:
+ - gcc_impl_linux-aarch64 >=13.3.0
+ - libgcc >=13.3.0
+ - libgfortran5 >=13.3.0
+ - libstdcxx >=13.3.0
+ - sysroot_linux-aarch64
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 12917001
+ timestamp: 1724802292815
+- kind: conda
+ name: gfortran_impl_osx-64
+ version: 13.2.0
+ build: h2bc304d_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/gfortran_impl_osx-64-13.2.0-h2bc304d_3.conda
+ sha256: af284f1df515e4a8623f23cc43298aab962260e890c620d079300d7d6d7acf08
+ md5: 57aa4cb95277a27aa0a1834ed97be45b
+ depends:
+ - gmp >=6.3.0,<7.0a0
+ - isl 0.26.*
+ - libcxx >=16
+ - libgfortran-devel_osx-64 13.2.0.*
+ - libgfortran5 >=13.2.0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - mpc >=1.3.1,<2.0a0
+ - mpfr >=4.2.1,<5.0a0
+ - zlib
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 20378841
+ timestamp: 1707328905745
+- kind: conda
+ name: gfortran_impl_osx-arm64
+ version: 13.2.0
+ build: h252ada1_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_impl_osx-arm64-13.2.0-h252ada1_3.conda
+ sha256: 1ba0d59650e2d54ebcfdd6d6e7ce6823241764183c34f082bc1313ec43b01c7a
+ md5: 4a020e943a2888b242b312a8e953eb9a
+ depends:
+ - gmp >=6.3.0,<7.0a0
+ - isl 0.26.*
+ - libcxx >=16
+ - libgfortran-devel_osx-arm64 13.2.0.*
+ - libgfortran5 >=13.2.0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - mpc >=1.3.1,<2.0a0
+ - mpfr >=4.2.1,<5.0a0
+ - zlib
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 18431819
+ timestamp: 1707330710124
+- kind: conda
+ name: gfortran_linux-64
+ version: 13.3.0
+ build: hb919d3a_7
+ build_number: 7
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-13.3.0-hb919d3a_7.conda
+ sha256: 73ba4c14b6b372385b0cb8e06c45a7df5ffc0ca688bd10180c0a3459ab71390d
+ md5: 0b8e7413559c4c892a37c35de4559969
+ depends:
+ - binutils_linux-64
+ - gcc_linux-64 13.3.0 hc28eda2_7
+ - gfortran_impl_linux-64 13.3.0.*
+ - sysroot_linux-64
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 30355
+ timestamp: 1731939610282
+- kind: conda
+ name: gfortran_linux-aarch64
+ version: 13.3.0
+ build: h2809cf8_7
+ build_number: 7
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gfortran_linux-aarch64-13.3.0-h2809cf8_7.conda
+ sha256: 18b96cec71e0ccbbe6a0f374add98ea14cce0b95e37b8c94dfeacb0fb7f609be
+ md5: 694da47574296b67d58fb88d79ad241a
+ depends:
+ - binutils_linux-aarch64
+ - gcc_linux-aarch64 13.3.0 h1cd514b_7
+ - gfortran_impl_linux-aarch64 13.3.0.*
+ - sysroot_linux-aarch64
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 30553
+ timestamp: 1731939522932
+- kind: conda
+ name: gfortran_osx-64
+ version: 13.2.0
+ build: h18f7dce_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/gfortran_osx-64-13.2.0-h18f7dce_1.conda
+ sha256: 3ec61971be147b5f723293fc56e0d35a4730aa457b7c5e03aeb78b341f41ca2c
+ md5: 71d59c1ae3fea7a97154ff0e20b38df3
+ depends:
+ - cctools_osx-64
+ - clang
+ - clang_osx-64
+ - gfortran_impl_osx-64 13.2.0
+ - ld64_osx-64
+ - libgfortran 5.*
+ - libgfortran-devel_osx-64 13.2.0
+ - libgfortran5 >=13.2.0
+ license: GPL-3.0-or-later WITH GCC-exception-3.1
+ license_family: GPL
+ size: 34970
+ timestamp: 1694179553303
+- kind: conda
+ name: gfortran_osx-arm64
+ version: 13.2.0
+ build: h57527a5_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_osx-arm64-13.2.0-h57527a5_1.conda
+ sha256: 3b075f15aba705d43870fdfde5a8d3f1adc9a045d575b4665726afe244149a64
+ md5: 13ca786286ed5efc9dc75f64b5101210
+ depends:
+ - cctools_osx-arm64
+ - clang
+ - clang_osx-arm64
+ - gfortran_impl_osx-arm64 13.2.0
+ - ld64_osx-arm64
+ - libgfortran 5.*
+ - libgfortran-devel_osx-arm64 13.2.0
+ - libgfortran5 >=13.2.0
+ license: GPL-3.0-or-later WITH GCC-exception-3.1
+ license_family: GPL
+ size: 35260
+ timestamp: 1694179424284
+- kind: conda
+ name: git
+ version: 2.47.1
+ build: h57928b3_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/git-2.47.1-h57928b3_0.conda
+ sha256: e140c2348b2a967bb7259c22420201e9dcac5b75aca3881e30f2a3f6c88e44d0
+ md5: 84cd6e6a2d60974df8c954eafdf72f2b
+ license: GPL-2.0-or-later and LGPL-2.1-or-later
+ size: 122064793
+ timestamp: 1732612079527
+- kind: conda
+ name: git
+ version: 2.47.1
+ build: pl5321h0e2bd52_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/git-2.47.1-pl5321h0e2bd52_0.conda
+ sha256: 56d00c64aa5e46f44cab00495811ad64c74ca9296e67bf9b4d095d3ddd28b926
+ md5: e99063b75441e2d32220aaaffd8b1f29
+ depends:
+ - libcurl >=8.10.1,<9.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ - perl 5.*
+ license: GPL-2.0-or-later and LGPL-2.1-or-later
+ size: 13916343
+ timestamp: 1732614464785
+- kind: conda
+ name: git
+ version: 2.47.1
+ build: pl5321h0e333bc_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/git-2.47.1-pl5321h0e333bc_0.conda
+ sha256: a34a3a90d84854a826eca6d023e12e43cdf2931fb24d227627ad2e7133fed3a6
+ md5: 26b24805810e27fd0edbd2d1a104067f
+ depends:
+ - __osx >=10.10
+ - libcurl >=8.10.1,<9.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libiconv >=1.17,<2.0a0
+ - libintl >=0.22.5,<1.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ - perl 5.*
+ license: GPL-2.0-or-later and LGPL-2.1-or-later
+ size: 12034916
+ timestamp: 1732612287627
+- kind: conda
+ name: git
+ version: 2.47.1
+ build: pl5321h59d505e_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/git-2.47.1-pl5321h59d505e_0.conda
+ sha256: 548008002931bd7152a27f135ec58df7a9fdb3c97e955613af48c4f80310b4e2
+ md5: 3b7a5e35dd484e8de87522b63f7daf15
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libcurl >=8.10.1,<9.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libgcc >=13
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ - perl 5.*
+ license: GPL-2.0-or-later and LGPL-2.1-or-later
+ size: 10551592
+ timestamp: 1732611733959
+- kind: conda
+ name: git
+ version: 2.47.1
+ build: pl5321hd71a902_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/git-2.47.1-pl5321hd71a902_0.conda
+ sha256: 4f5675de685b77600f6bd06a608b66b4a26b9233bfff3046b3823b1fb81e1c2a
+ md5: b330d9ca951dec809764576b28dd2b7b
+ depends:
+ - __osx >=11.0
+ - libcurl >=8.10.1,<9.0a0
+ - libexpat >=2.6.4,<3.0a0
+ - libiconv >=1.17,<2.0a0
+ - libintl >=0.22.5,<1.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ - perl 5.*
+ license: GPL-2.0-or-later and LGPL-2.1-or-later
+ size: 10831502
+ timestamp: 1732612399972
+- kind: conda
+ name: gl2ps
+ version: 1.4.2
+ build: had7236b_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/gl2ps-1.4.2-had7236b_1.conda
+ sha256: 5a18f0aa963adb4402dbce93516f40756beaa206e82c56592aafb1eb88060ba5
+ md5: 033491c5cb1ce4e915238307f0136fa0
+ depends:
+ - libpng >=1.6.43,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 71943
+ timestamp: 1718543473790
+- kind: conda
+ name: gl2ps
+ version: 1.4.2
+ build: hae5d5c5_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda
+ sha256: 68f071ea25e79ee427c0d6c35ccc137d66f093a37660a4e41bafe0c49d64f2d6
+ md5: 00e642ec191a19bf806a3915800e9524
+ depends:
+ - libgcc-ng >=12
+ - libpng >=1.6.43,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 74102
+ timestamp: 1718542981099
+- kind: conda
+ name: gl2ps
+ version: 1.4.2
+ build: hc97c1ff_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/gl2ps-1.4.2-hc97c1ff_1.conda
+ sha256: b6088d2b1eccebc8adc1e6c36df0849b300d957cff3e6a33fc9081d2e9efaf22
+ md5: 8e790b98d38f4d56b64308c642dd5533
+ depends:
+ - __osx >=11.0
+ - libpng >=1.6.43,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 63049
+ timestamp: 1718543005831
+- kind: conda
+ name: gl2ps
+ version: 1.4.2
+ build: hd82a5f3_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/gl2ps-1.4.2-hd82a5f3_1.conda
+ sha256: 2da5a699a75a9366996d469e05bbf2014f62102b2da70607a2230f9031ca7f52
+ md5: 707318c6171d4d8b07b51e0de03c7595
+ depends:
+ - __osx >=10.13
+ - libpng >=1.6.43,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 67880
+ timestamp: 1718542959037
+- kind: conda
+ name: gl2ps
+ version: 1.4.2
+ build: hedfd65a_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gl2ps-1.4.2-hedfd65a_1.conda
+ sha256: e6500b15fd2dbd776df204556702bb2c90d037523c18cd0a111c7c0f0d314aa2
+ md5: 6a087dc84254035cbde984f2c010c9ef
+ depends:
+ - libgcc-ng >=12
+ - libpng >=1.6.43,<1.7.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 72023
+ timestamp: 1718542978037
+- kind: conda
+ name: glew
+ version: 2.1.0
+ build: h01db608_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/glew-2.1.0-h01db608_2.tar.bz2
+ sha256: f872cc93507b833ec5f2f08e479cc0074e5d73defe4f91d54f667a324d0b4f61
+ md5: 2a46529de1ff766f31333d3cdff2b734
+ depends:
+ - libgcc-ng >=9.3.0
+ - libglu
+ - libstdcxx-ng >=9.3.0
+ - xorg-libx11
+ - xorg-libxext
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 649830
+ timestamp: 1607113149975
+- kind: conda
+ name: glew
+ version: 2.1.0
+ build: h046ec9c_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/glew-2.1.0-h046ec9c_2.tar.bz2
+ sha256: 1d114d93fd4bf043aa6fccc550379c0ac0a48461633cd1e1e49abe55be8562df
+ md5: 6b753c8c7e4c46a8eb17b6f1781f958a
+ depends:
+ - libcxx >=11.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 708867
+ timestamp: 1607113212595
+- kind: conda
+ name: glew
+ version: 2.1.0
+ build: h39d44d4_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/glew-2.1.0-h39d44d4_2.tar.bz2
+ sha256: 6a780b5ca7253129ea5e63671f0aeafc8f119167e170a60ccbd8573669ef848d
+ md5: 840d21c1ee66b91af3d0211e7766393a
+ depends:
+ - vc >=14.1,<15.0a0
+ - vs2015_runtime >=14.16.27012
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 963275
+ timestamp: 1607113700054
+- kind: conda
+ name: glew
+ version: 2.1.0
+ build: h9c3ff4c_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2
+ sha256: 86f5484e38f4604f7694b14f64238e932e8fd8d7364e86557f4911eded2843ae
+ md5: fb05eb5c47590b247658243d27fc32f1
+ depends:
+ - libgcc-ng >=9.3.0
+ - libglu
+ - libstdcxx-ng >=9.3.0
+ - xorg-libx11
+ - xorg-libxext
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 662569
+ timestamp: 1607113198887
+- kind: conda
+ name: glew
+ version: 2.1.0
+ build: h9f76cd9_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/glew-2.1.0-h9f76cd9_2.tar.bz2
+ sha256: 582991e48b1000eea38a1df68309652a92c1af62fa96f78e6659c799d28d00cf
+ md5: ec67d4b810ad567618722a2772e9755c
+ depends:
+ - libcxx >=11.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 783742
+ timestamp: 1607113139225
+- kind: conda
+ name: gmp
+ version: 6.3.0
+ build: h0a1ffab_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gmp-6.3.0-h0a1ffab_2.conda
+ sha256: a5e341cbf797c65d2477b27d99091393edbaa5178c7d69b7463bb105b0488e69
+ md5: 7cbfb3a8bb1b78a7f5518654ac6725ad
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: GPL-2.0-or-later OR LGPL-3.0-or-later
+ size: 417323
+ timestamp: 1718980707330
+- kind: conda
+ name: gmp
+ version: 6.3.0
+ build: h7bae524_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda
+ sha256: 76e222e072d61c840f64a44e0580c2503562b009090f55aa45053bf1ccb385dd
+ md5: eed7278dfbab727b56f2c0b64330814b
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ license: GPL-2.0-or-later OR LGPL-3.0-or-later
+ size: 365188
+ timestamp: 1718981343258
+- kind: conda
+ name: gmp
+ version: 6.3.0
+ build: hac33072_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
+ sha256: 309cf4f04fec0c31b6771a5809a1909b4b3154a2208f52351e1ada006f4c750c
+ md5: c94a5994ef49749880a8139cf9afcbe1
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: GPL-2.0-or-later OR LGPL-3.0-or-later
+ size: 460055
+ timestamp: 1718980856608
+- kind: conda
+ name: gmp
+ version: 6.3.0
+ build: hf036a51_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda
+ sha256: 75aa5e7a875afdcf4903b7dc98577672a3dc17b528ac217b915f9528f93c85fc
+ md5: 427101d13f19c4974552a4e5b072eef1
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ license: GPL-2.0-or-later OR LGPL-3.0-or-later
+ size: 428919
+ timestamp: 1718981041839
+- kind: conda
+ name: graphite2
+ version: 1.3.13
+ build: h2f0025b_1003
+ build_number: 1003
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/graphite2-1.3.13-h2f0025b_1003.conda
+ sha256: c7585e1fb536120583790080f3b3875c04d5f2d64eafbc87e9aa39895e4118c0
+ md5: f33009add6a08358bc12d114ceec1304
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 99453
+ timestamp: 1711634223220
+- kind: conda
+ name: graphite2
+ version: 1.3.13
+ build: h59595ed_1003
+ build_number: 1003
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda
+ sha256: 0595b009f20f8f60f13a6398e7cdcbd2acea5f986633adcf85f5a2283c992add
+ md5: f87c7b7c2cb45f323ffbce941c78ab7c
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 96855
+ timestamp: 1711634169756
+- kind: conda
+ name: graphite2
+ version: 1.3.13
+ build: h63175ca_1003
+ build_number: 1003
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.13-h63175ca_1003.conda
+ sha256: 25040a4f371b9b51663f546bac620122c237fa1d5d32968e21b0751af9b7f56f
+ md5: 3194499ee7d1a67404a87d0eefdd92c6
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 95406
+ timestamp: 1711634622644
+- kind: conda
+ name: graphite2
+ version: 1.3.13
+ build: h73e2aa4_1003
+ build_number: 1003
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h73e2aa4_1003.conda
+ sha256: b71db966e47cd83b16bfcc2099b8fa87c07286f24a0742078fede4c84314f91a
+ md5: fc7124f86e1d359fc5d878accd9e814c
+ depends:
+ - libcxx >=16
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 84384
+ timestamp: 1711634311095
+- kind: conda
+ name: graphite2
+ version: 1.3.13
+ build: hebf3989_1003
+ build_number: 1003
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-hebf3989_1003.conda
+ sha256: 2eadafbfc52f5e7df3da3c3b7e5bbe34d970bea1d645ffe60b0b1c3a216657f5
+ md5: 339991336eeddb70076d8ca826dac625
+ depends:
+ - libcxx >=16
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 79774
+ timestamp: 1711634444608
+- kind: conda
+ name: graphviz
+ version: 12.0.0
+ build: h2a7c30b_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/graphviz-12.0.0-h2a7c30b_0.conda
+ sha256: d3e1884cc4eb2677941cacb718919df75a53c214a9230e2bb18faa96becb1dd4
+ md5: ce14a315beb92bfa8e544e912a17c7e7
+ depends:
+ - cairo >=1.18.0,<2.0a0
+ - fonts-conda-ecosystem
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - gtk2
+ - gts >=0.7.6,<0.8.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libgcc-ng >=12
+ - libgd >=2.3.3,<2.4.0a0
+ - libglib >=2.80.3,<3.0a0
+ - librsvg >=2.58.2,<3.0a0
+ - libstdcxx-ng >=12
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pango >=1.50.14,<2.0a0
+ license: EPL-1.0
+ license_family: Other
+ size: 2402404
+ timestamp: 1722673792633
+- kind: conda
+ name: graphviz
+ version: 12.0.0
+ build: hb01754f_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/graphviz-12.0.0-hb01754f_0.conda
+ sha256: 19c229d7ca0e866c70ffe79e1258aaab598e7caa7fa258ffe6cbff15b71c1ced
+ md5: 8074641ca215d6f30b6152d9d79f0b9e
+ depends:
+ - cairo >=1.18.0,<2.0a0
+ - getopt-win32 >=0.1,<0.2.0a0
+ - gts >=0.7.6,<0.8.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libgd >=2.3.3,<2.4.0a0
+ - libglib >=2.80.3,<3.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pango >=1.50.14,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: EPL-1.0
+ license_family: Other
+ size: 1157652
+ timestamp: 1722674488876
+- kind: conda
+ name: graphviz
+ version: 12.0.0
+ build: hba01fac_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/graphviz-12.0.0-hba01fac_0.conda
+ sha256: 2eb794ae1de42b688f89811113ae3dcb63698272ee8f87029abce5f77c742c2a
+ md5: 953e31ea00d46beb7e64a79fc291ec44
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.0,<2.0a0
+ - fonts-conda-ecosystem
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - gtk2
+ - gts >=0.7.6,<0.8.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libgcc-ng >=12
+ - libgd >=2.3.3,<2.4.0a0
+ - libglib >=2.80.3,<3.0a0
+ - librsvg >=2.58.2,<3.0a0
+ - libstdcxx-ng >=12
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pango >=1.50.14,<2.0a0
+ license: EPL-1.0
+ license_family: Other
+ size: 2303111
+ timestamp: 1722673717117
+- kind: conda
+ name: graphviz
+ version: 12.0.0
+ build: hbf8cc41_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/graphviz-12.0.0-hbf8cc41_0.conda
+ sha256: 33867d6ebc54f290dfb511fdca0297b30ca06985ac4443e1fc9d7fe03bfbad05
+ md5: 29c0dcbd4ec7135b7a55805aa3a5a331
+ depends:
+ - __osx >=11.0
+ - cairo >=1.18.0,<2.0a0
+ - fonts-conda-ecosystem
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - gtk2
+ - gts >=0.7.6,<0.8.0a0
+ - libcxx >=16
+ - libexpat >=2.6.2,<3.0a0
+ - libgd >=2.3.3,<2.4.0a0
+ - libglib >=2.80.3,<3.0a0
+ - librsvg >=2.58.2,<3.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pango >=1.50.14,<2.0a0
+ license: EPL-1.0
+ license_family: Other
+ size: 5082874
+ timestamp: 1722673934247
+- kind: conda
+ name: graphviz
+ version: 12.0.0
+ build: he14ced1_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/graphviz-12.0.0-he14ced1_0.conda
+ sha256: 91fbeecf3aaa4032c6f01c4242cfe2ee1bee21e70d085bafb3958ce7d6ab7c3c
+ md5: ef49aa1e3614bfc6fb5369675129c09b
+ depends:
+ - __osx >=10.13
+ - cairo >=1.18.0,<2.0a0
+ - fonts-conda-ecosystem
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - gtk2
+ - gts >=0.7.6,<0.8.0a0
+ - libcxx >=16
+ - libexpat >=2.6.2,<3.0a0
+ - libgd >=2.3.3,<2.4.0a0
+ - libglib >=2.80.3,<3.0a0
+ - librsvg >=2.58.2,<3.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pango >=1.50.14,<2.0a0
+ license: EPL-1.0
+ license_family: Other
+ size: 4984341
+ timestamp: 1722673941539
+- kind: conda
+ name: gtk2
+ version: 2.24.33
+ build: h2c15c3c_5
+ build_number: 5
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/gtk2-2.24.33-h2c15c3c_5.conda
+ sha256: 9d7a50dae4aef357473b16c5121c1803a0c9ee1b8f93c4d90dc0196ae5007208
+ md5: 308376a1154bc0ab3bbeeccf6ff986be
+ depends:
+ - __osx >=10.13
+ - atk-1.0 >=2.38.0
+ - cairo >=1.18.0,<2.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - libglib >=2.80.3,<3.0a0
+ - libintl >=0.22.5,<1.0a0
+ - pango >=1.54.0,<2.0a0
+ license: LGPL-2.1-or-later
+ size: 6162947
+ timestamp: 1721286459536
+- kind: conda
+ name: gtk2
+ version: 2.24.33
+ build: h4cb56f0_5
+ build_number: 5
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gtk2-2.24.33-h4cb56f0_5.conda
+ sha256: 21c06dce331299cabf1d5c8a1c68ab537811a6b979ee59cec0f8250009324aae
+ md5: 1e19ec7c57430dcd5e475e21209f3996
+ depends:
+ - atk-1.0 >=2.38.0
+ - cairo >=1.18.0,<2.0a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libgcc-ng >=12
+ - libglib >=2.80.3,<3.0a0
+ - pango >=1.54.0,<2.0a0
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.4,<2.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ license: LGPL-2.1-or-later
+ size: 6591811
+ timestamp: 1721293692701
+- kind: conda
+ name: gtk2
+ version: 2.24.33
+ build: h6470451_5
+ build_number: 5
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gtk2-2.24.33-h6470451_5.conda
+ sha256: 16644d036321b32635369c183502974c8b989fa516c313bd379f9aa4adcdf642
+ md5: 1483ba046164be27df7f6eddbcec3a12
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - atk-1.0 >=2.38.0
+ - cairo >=1.18.0,<2.0a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libgcc-ng >=12
+ - libglib >=2.80.3,<3.0a0
+ - pango >=1.54.0,<2.0a0
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.4,<2.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ license: LGPL-2.1-or-later
+ size: 6501561
+ timestamp: 1721285940408
+- kind: conda
+ name: gtk2
+ version: 2.24.33
+ build: h91d5085_5
+ build_number: 5
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/gtk2-2.24.33-h91d5085_5.conda
+ sha256: 26ca08e16bb530465370d94309bfb500438f6cff4d6cf85725db3b7afcd9eccd
+ md5: 23558d38b8e80959b74cfe83acad7c66
+ depends:
+ - __osx >=11.0
+ - atk-1.0 >=2.38.0
+ - cairo >=1.18.0,<2.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - libglib >=2.80.3,<3.0a0
+ - libintl >=0.22.5,<1.0a0
+ - pango >=1.54.0,<2.0a0
+ license: LGPL-2.1-or-later
+ size: 6152068
+ timestamp: 1721286930050
+- kind: conda
+ name: gts
+ version: 0.7.6
+ build: h53e17e3_4
+ build_number: 4
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/gts-0.7.6-h53e17e3_4.conda
+ sha256: d5b82a36f7e9d7636b854e56d1b4fe01c4d895128a7b73e2ec6945b691ff3314
+ md5: 848cc963fcfbd063c7a023024aa3bec0
+ depends:
+ - libcxx >=15.0.7
+ - libglib >=2.76.3,<3.0a0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 280972
+ timestamp: 1686545425074
+- kind: conda
+ name: gts
+ version: 0.7.6
+ build: h6b5321d_4
+ build_number: 4
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/gts-0.7.6-h6b5321d_4.conda
+ sha256: b79755d2f9fc2113b6949bfc170c067902bc776e2c20da26e746e780f4f5a2d4
+ md5: a41f14768d5e377426ad60c613f2923b
+ depends:
+ - libglib >=2.76.3,<3.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 188688
+ timestamp: 1686545648050
+- kind: conda
+ name: gts
+ version: 0.7.6
+ build: h977cf35_4
+ build_number: 4
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda
+ sha256: b5cd16262fefb836f69dc26d879b6508d29f8a5c5948a966c47fe99e2e19c99b
+ md5: 4d8df0b0db060d33c9a702ada998a8fe
+ depends:
+ - libgcc-ng >=12
+ - libglib >=2.76.3,<3.0a0
+ - libstdcxx-ng >=12
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 318312
+ timestamp: 1686545244763
+- kind: conda
+ name: gts
+ version: 0.7.6
+ build: he293c15_4
+ build_number: 4
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gts-0.7.6-he293c15_4.conda
+ sha256: 1e9cc30d1c746d5a3399a279f5f642a953f37d9f9c82fd4d55b301e9c2a23f7c
+ md5: 2aeaeddbd89e84b60165463225814cfc
+ depends:
+ - libgcc-ng >=12
+ - libglib >=2.76.3,<3.0a0
+ - libstdcxx-ng >=12
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 332673
+ timestamp: 1686545222091
+- kind: conda
+ name: gts
+ version: 0.7.6
+ build: he42f4ea_4
+ build_number: 4
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/gts-0.7.6-he42f4ea_4.conda
+ sha256: e0f8c7bc1b9ea62ded78ffa848e37771eeaaaf55b3146580513c7266862043ba
+ md5: 21b4dd3098f63a74cf2aa9159cbef57d
+ depends:
+ - libcxx >=15.0.7
+ - libglib >=2.76.3,<3.0a0
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 304331
+ timestamp: 1686545503242
+- kind: conda
+ name: gxx
+ version: 13.3.0
+ build: h8a56e6e_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx-13.3.0-h8a56e6e_1.conda
+ sha256: d94714da0135d592d2cd71998a19dc9f65e5a55857c11ec6aa357e5c23fb5a0d
+ md5: 838d6b64b84b1d17c564b146a839e988
+ depends:
+ - gcc 13.3.0.*
+ - gxx_impl_linux-aarch64 13.3.0.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 53580
+ timestamp: 1724802377970
+- kind: conda
+ name: gxx
+ version: 13.3.0
+ build: h9576a4e_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gxx-13.3.0-h9576a4e_1.conda
+ sha256: 5446f5d1d609d996579f706d2020e83ef48e086d943bfeef7ab807ea246888a0
+ md5: 209182ca6b20aeff62f442e843961d81
+ depends:
+ - gcc 13.3.0.*
+ - gxx_impl_linux-64 13.3.0.*
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 53338
+ timestamp: 1724801498389
+- kind: conda
+ name: gxx_impl_linux-64
+ version: 13.3.0
+ build: hdbfa832_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-13.3.0-hdbfa832_1.conda
+ sha256: 746dff24bb1efc89ab0ec108838d0711683054e3bbbcb94d042943410a98eca1
+ md5: 806367e23a0a6ad21e51875b34c57d7e
+ depends:
+ - gcc_impl_linux-64 13.3.0 hfea6d02_1
+ - libstdcxx-devel_linux-64 13.3.0 h84ea5a7_101
+ - sysroot_linux-64
+ - tzdata
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 13337720
+ timestamp: 1724801455825
+- kind: conda
+ name: gxx_impl_linux-aarch64
+ version: 13.3.0
+ build: h1211b58_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_impl_linux-aarch64-13.3.0-h1211b58_1.conda
+ sha256: 93eb04cf9ccf5860df113f299febfacad9c66728772d30aaf4bf33995083331a
+ md5: 3721f68549df06c2b0664f8933bbf17f
+ depends:
+ - gcc_impl_linux-aarch64 13.3.0 hcdea9b6_1
+ - libstdcxx-devel_linux-aarch64 13.3.0 h0c07274_101
+ - sysroot_linux-aarch64
+ - tzdata
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 12732645
+ timestamp: 1724802335796
+- kind: conda
+ name: gxx_linux-64
+ version: 13.3.0
+ build: h6834431_7
+ build_number: 7
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-13.3.0-h6834431_7.conda
+ sha256: a9b1ffea76f2cc5aedeead4793fcded7a687cce9d5e3f4fe93629f1b1d5043a6
+ md5: 7c82ca9bda609b6f72f670e4219d3787
+ depends:
+ - binutils_linux-64
+ - gcc_linux-64 13.3.0 hc28eda2_7
+ - gxx_impl_linux-64 13.3.0.*
+ - sysroot_linux-64
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 30356
+ timestamp: 1731939612705
+- kind: conda
+ name: gxx_linux-aarch64
+ version: 13.3.0
+ build: h2864abd_7
+ build_number: 7
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/gxx_linux-aarch64-13.3.0-h2864abd_7.conda
+ sha256: 62a167e54c5c21de36e4652bff096ed6789215e94ebfbbdf3a14fd3d24216479
+ md5: dff7396f87892ce8c07f6fd53d9d998d
+ depends:
+ - binutils_linux-aarch64
+ - gcc_linux-aarch64 13.3.0 h1cd514b_7
+ - gxx_impl_linux-aarch64 13.3.0.*
+ - sysroot_linux-aarch64
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 30532
+ timestamp: 1731939525391
+- kind: conda
+ name: h2
+ version: 4.1.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
+ sha256: bfc6a23849953647f4e255c782e74a0e18fe16f7e25c7bb0bc57b83bb6762c7a
+ md5: b748fbf7060927a6e82df7cb5ee8f097
+ depends:
+ - hpack >=4.0,<5
+ - hyperframe >=6.0,<7
+ - python >=3.6.1
+ license: MIT
+ license_family: MIT
+ size: 46754
+ timestamp: 1634280590080
+- kind: conda
+ name: harfbuzz
+ version: 9.0.0
+ build: h098a298_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-9.0.0-h098a298_1.conda
+ sha256: dbc7783ea89faaf3a810d0e55979be02031551be8edad00de915807b3b148ff1
+ md5: 8dd3c790d5ce9f3bc94c46e5b218e5f8
+ depends:
+ - __osx >=10.13
+ - cairo >=1.18.0,<2.0a0
+ - freetype >=2.12.1,<3.0a0
+ - graphite2
+ - icu >=75.1,<76.0a0
+ - libcxx >=16
+ - libglib >=2.80.3,<3.0a0
+ license: MIT
+ license_family: MIT
+ size: 1372588
+ timestamp: 1721186294497
+- kind: conda
+ name: harfbuzz
+ version: 9.0.0
+ build: h2bedf89_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/harfbuzz-9.0.0-h2bedf89_1.conda
+ sha256: 20f42ec76e075902c22c1f8ddc71fb88eff0b93e74f5705c1e72220030965810
+ md5: 254f119aaed2c0be271c1114ae18d09b
+ depends:
+ - cairo >=1.18.0,<2.0a0
+ - freetype >=2.12.1,<3.0a0
+ - graphite2
+ - icu >=75.1,<76.0a0
+ - libglib >=2.80.3,<3.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 1095620
+ timestamp: 1721187287831
+- kind: conda
+ name: harfbuzz
+ version: 9.0.0
+ build: h997cde5_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-9.0.0-h997cde5_1.conda
+ sha256: 5f78f5dcbbfef59b3549ecb6cc2fa9de7b22abda7c8afaf0fa787ceea37a914f
+ md5: 50f6825d3c4a6fca6fefdefa98081554
+ depends:
+ - __osx >=11.0
+ - cairo >=1.18.0,<2.0a0
+ - freetype >=2.12.1,<3.0a0
+ - graphite2
+ - icu >=75.1,<76.0a0
+ - libcxx >=16
+ - libglib >=2.80.3,<3.0a0
+ license: MIT
+ license_family: MIT
+ size: 1317509
+ timestamp: 1721186764931
+- kind: conda
+ name: harfbuzz
+ version: 9.0.0
+ build: hbf49d6b_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/harfbuzz-9.0.0-hbf49d6b_1.conda
+ sha256: 7496782c3bc0ebbb4de9bc92a3111f42b8a57417fa31ecb87058f250215fabc9
+ md5: ceb458f664cab8550fcd74fff26451db
+ depends:
+ - cairo >=1.18.0,<2.0a0
+ - freetype >=2.12.1,<3.0a0
+ - graphite2
+ - icu >=75.1,<76.0a0
+ - libgcc-ng >=12
+ - libglib >=2.80.3,<3.0a0
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 1614644
+ timestamp: 1721188789883
+- kind: conda
+ name: harfbuzz
+ version: 9.0.0
+ build: hda332d3_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-9.0.0-hda332d3_1.conda
+ sha256: 973afa37840b4e55e2540018902255cfb0d953aaed6353bb83a4d120f5256767
+ md5: 76b32dcf243444aea9c6b804bcfa40b8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.0,<2.0a0
+ - freetype >=2.12.1,<3.0a0
+ - graphite2
+ - icu >=75.1,<76.0a0
+ - libgcc-ng >=12
+ - libglib >=2.80.3,<3.0a0
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 1603653
+ timestamp: 1721186240105
+- kind: conda
+ name: hdf4
+ version: 4.2.15
+ build: h2a13503_7
+ build_number: 7
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda
+ sha256: 0d09b6dc1ce5c4005ae1c6a19dc10767932ef9a5e9c755cfdbb5189ac8fb0684
+ md5: bd77f8da987968ec3927990495dc22e4
+ depends:
+ - libgcc-ng >=12
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libstdcxx-ng >=12
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 756742
+ timestamp: 1695661547874
+- kind: conda
+ name: hdf4
+ version: 4.2.15
+ build: h2ee6834_7
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf4-4.2.15-h2ee6834_7.conda
+ sha256: c3b01e3c3fe4ca1c4d28c287eaa5168a4f2fd3ffd76690082ac919244c22fa90
+ md5: ff5d749fd711dc7759e127db38005924
+ depends:
+ - libcxx >=15.0.7
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 762257
+ timestamp: 1695661864625
+- kind: conda
+ name: hdf4
+ version: 4.2.15
+ build: h5557f11_7
+ build_number: 7
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/hdf4-4.2.15-h5557f11_7.conda
+ sha256: 52fa5dde69758c19c69ab68a3d7ebfb2c9042e3a55d405c29a59d3b0584fd790
+ md5: 84344a916a73727c1326841007b52ca8
+ depends:
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 779637
+ timestamp: 1695662145568
+- kind: conda
+ name: hdf4
+ version: 4.2.15
+ build: h8138101_7
+ build_number: 7
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda
+ sha256: 8c767cc71226e9eb62649c903c68ba73c5f5e7e3696ec0319d1f90586cebec7d
+ md5: 7ce543bf38dbfae0de9af112ee178af2
+ depends:
+ - libcxx >=15.0.7
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 724103
+ timestamp: 1695661907511
+- kind: conda
+ name: hdf4
+ version: 4.2.15
+ build: hb6ba311_7
+ build_number: 7
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf4-4.2.15-hb6ba311_7.conda
+ sha256: 70d1e2d3e0b9ae1b149a31a4270adfbb5a4ceb2f8c36d17feffcd7bcb6208022
+ md5: e1b6676b77b9690d07ea25de48aed97e
+ depends:
+ - libgcc-ng >=12
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libstdcxx-ng >=12
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 773862
+ timestamp: 1695661552544
+- kind: conda
+ name: hdf5
+ version: 1.14.4
+ build: nompi_h1607680_105
+ build_number: 105
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.4-nompi_h1607680_105.conda
+ sha256: 56500937894b1ca917e1ae1bea64b873a9eec57d581173579189d0b1f590db26
+ md5: 12ebafc40b10d4bf519e4c2074c52aef
+ depends:
+ - __osx >=10.13
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libcxx >=18
+ - libgfortran 5.*
+ - libgfortran5 >=13.2.0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3732340
+ timestamp: 1733003702265
+- kind: conda
+ name: hdf5
+ version: 1.14.4
+ build: nompi_h2d575fe_105
+ build_number: 105
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.4-nompi_h2d575fe_105.conda
+ sha256: 93d2bfc672f3ee0988d277ce463330a467f3686d3f7ee37812a3d8ca11776d77
+ md5: d76fff0092b6389a12134ddebc0929bd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libgfortran
+ - libgfortran5 >=13.3.0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3950601
+ timestamp: 1733003331788
+- kind: conda
+ name: hdf5
+ version: 1.14.4
+ build: nompi_h6ed7ac7_105
+ build_number: 105
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/hdf5-1.14.4-nompi_h6ed7ac7_105.conda
+ sha256: 57db9910da8bcc3b6456ab0e52a8e215b97f30941b416d2b052b3461097a8e09
+ md5: 337b0bbe9c3ee631ec0982c990d21fc2
+ depends:
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libgfortran
+ - libgfortran5 >=13.3.0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 4034228
+ timestamp: 1733010297124
+- kind: conda
+ name: hdf5
+ version: 1.14.4
+ build: nompi_ha698983_105
+ build_number: 105
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.4-nompi_ha698983_105.conda
+ sha256: 1746cd2465832bf23d1e91b680935655dea9053d51e526deea86b0afb0b9d6a3
+ md5: 7e85ea8b6a35b163a516e8c483960600
+ depends:
+ - __osx >=11.0
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libcxx >=18
+ - libgfortran 5.*
+ - libgfortran5 >=13.2.0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3485821
+ timestamp: 1733002735281
+- kind: conda
+ name: hdf5
+ version: 1.14.4
+ build: nompi_hd5d9e70_105
+ build_number: 105
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.4-nompi_hd5d9e70_105.conda
+ sha256: e8ced65c604a3b9e4803758a25149d71d8096f186fe876817a0d1d97190550c0
+ md5: 4381be33460283890c34341ecfa42d97
+ depends:
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2048450
+ timestamp: 1733003052575
+- kind: conda
+ name: hpack
+ version: 4.0.0
+ build: pyh9f0ad1d_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
+ sha256: 5dec948932c4f740674b1afb551223ada0c55103f4c7bf86a110454da3d27cb8
+ md5: 914d6646c4dbb1fd3ff539830a12fd71
+ depends:
+ - python
+ license: MIT
+ license_family: MIT
+ size: 25341
+ timestamp: 1598856368685
+- kind: conda
+ name: hyperframe
+ version: 6.0.1
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
+ sha256: e374a9d0f53149328134a8d86f5d72bca4c6dcebed3c0ecfa968c02996289330
+ md5: 9f765cbfab6870c8435b9eefecd7a1f4
+ depends:
+ - python >=3.6
+ license: MIT
+ license_family: MIT
+ size: 14646
+ timestamp: 1619110249723
+- kind: conda
+ name: icu
+ version: '75.1'
+ build: h120a0e1_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda
+ sha256: 2e64307532f482a0929412976c8450c719d558ba20c0962832132fd0d07ba7a7
+ md5: d68d48a3060eb5abdc1cdc8e2a3a5966
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 11761697
+ timestamp: 1720853679409
+- kind: conda
+ name: icu
+ version: '75.1'
+ build: he02047a_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
+ sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e
+ md5: 8b189310083baabfb622af68fd9d3ae3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 12129203
+ timestamp: 1720853576813
+- kind: conda
+ name: icu
+ version: '75.1'
+ build: he0c23c2_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/icu-75.1-he0c23c2_0.conda
+ sha256: 1d04369a1860a1e9e371b9fc82dd0092b616adcf057d6c88371856669280e920
+ md5: 8579b6bb8d18be7c0b27fb08adeeeb40
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 14544252
+ timestamp: 1720853966338
+- kind: conda
+ name: icu
+ version: '75.1'
+ build: hf9b3779_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda
+ sha256: 813298f2e54ef087dbfc9cc2e56e08ded41de65cff34c639cc8ba4e27e4540c9
+ md5: 268203e8b983fddb6412b36f2024e75c
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 12282786
+ timestamp: 1720853454991
+- kind: conda
+ name: icu
+ version: '75.1'
+ build: hfee45f7_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
+ sha256: 9ba12c93406f3df5ab0a43db8a4b4ef67a5871dfd401010fbe29b218b2cbe620
+ md5: 5eb22c1d7b3fc4abb50d92d621583137
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 11857802
+ timestamp: 1720853997952
+- kind: conda
+ name: identify
+ version: 2.6.3
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.3-pyhd8ed1ab_0.conda
+ sha256: 2350107285349caad1a5c5c5296a1335b8649d6b1b0e8f2bde18127c404471c5
+ md5: dd3acd023fc358afab730866a0e5e3f5
+ depends:
+ - python >=3.6
+ - ukkonen
+ license: MIT
+ license_family: MIT
+ size: 78352
+ timestamp: 1732589463054
+- kind: conda
+ name: idna
+ version: '3.10'
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_0.conda
+ sha256: 8c57fd68e6be5eecba4462e983aed7e85761a519aab80e834bbd7794d4b545b2
+ md5: 7ba2ede0e7c795ff95088daf0dc59753
+ depends:
+ - python >=3.6
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 49837
+ timestamp: 1726459583613
+- kind: conda
+ name: imath
+ version: 3.1.12
+ build: h025cafa_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/imath-3.1.12-h025cafa_0.conda
+ sha256: 8fcf6c3bf91993451412c0003b92044c9fc7980fe3f178ab3260f90ac4099072
+ md5: b7e259bd81b5a7432ca045083959b83a
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 153017
+ timestamp: 1725971790238
+- kind: conda
+ name: imath
+ version: 3.1.12
+ build: h2016aa1_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/imath-3.1.12-h2016aa1_0.conda
+ sha256: 5bf9c041b97b1af21808938fcaa64acafe0d853de5478fa08005176664ee4552
+ md5: 326b3d68ab3f43396e7d7e0e9a496f73
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 155534
+ timestamp: 1725971674035
+- kind: conda
+ name: imath
+ version: 3.1.12
+ build: h7955e40_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.12-h7955e40_0.conda
+ sha256: 4d8d07a4d5079d198168b44556fb86d094e6a716e8979b25a9f6c9c610e9fe56
+ md5: 37f5e1ab0db3691929f37dee78335d1b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 159630
+ timestamp: 1725971591485
+- kind: conda
+ name: imath
+ version: 3.1.12
+ build: hbb528cf_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/imath-3.1.12-hbb528cf_0.conda
+ sha256: 184c796615cebaa73246f351144f164ee7b61ea809e4ba3c5d98fa9ca333e058
+ md5: c25af729c8c1c41f96202f8a96652bbe
+ depends:
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 160408
+ timestamp: 1725972042635
+- kind: conda
+ name: imath
+ version: 3.1.12
+ build: hf428078_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/imath-3.1.12-hf428078_0.conda
+ sha256: ad8f18472425da83ba0e9324ab715f5d232cece8b0efaf218bd2ea9e1b6adb6d
+ md5: ae8535ff689663fe430bec00be24a854
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 153368
+ timestamp: 1725971683794
+- kind: conda
+ name: intel-openmp
+ version: 2024.2.1
+ build: h57928b3_1083
+ build_number: 1083
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda
+ sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209
+ md5: 2d89243bfb53652c182a7c73182cce4f
+ license: LicenseRef-IntelSimplifiedSoftwareOct2022
+ license_family: Proprietary
+ size: 1852356
+ timestamp: 1723739573141
+- kind: conda
+ name: isl
+ version: '0.26'
+ build: imath32_h2e86a7b_101
+ build_number: 101
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/isl-0.26-imath32_h2e86a7b_101.conda
+ sha256: d39bf147cb9958f197dafa0b8ad8c039b7374778edac05b5c78b712786e305c7
+ md5: d06222822a9144918333346f145b68c6
+ depends:
+ - libcxx >=14.0.6
+ track_features:
+ - isl_imath-32
+ license: MIT
+ license_family: MIT
+ size: 894410
+ timestamp: 1680649639107
+- kind: conda
+ name: isl
+ version: '0.26'
+ build: imath32_h347afa1_101
+ build_number: 101
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/isl-0.26-imath32_h347afa1_101.conda
+ sha256: fc9272371750c56908b8e535755b1e23cf7803a2cc4a7d9ae539347baa14f740
+ md5: e80e44a3f4862b1da870dc0557f8cf3b
+ depends:
+ - libcxx >=14.0.6
+ track_features:
+ - isl_imath-32
+ license: MIT
+ license_family: MIT
+ size: 819937
+ timestamp: 1680649567633
+- kind: conda
+ name: jinja2
+ version: 3.1.4
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
+ sha256: 27380d870d42d00350d2d52598cddaf02f9505fb24be09488da0c9b8d1428f2d
+ md5: 7b86ecb7d3557821c649b3c31e3eb9f2
+ depends:
+ - markupsafe >=2.0
+ - python >=3.7
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 111565
+ timestamp: 1715127275924
+- kind: conda
+ name: jsoncpp
+ version: 1.9.6
+ build: h17cf362_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/jsoncpp-1.9.6-h17cf362_0.conda
+ sha256: 3ab5e49aa0c9462a5b9e654ffd0875751a0405c058975e784e1a16255faaf7e6
+ md5: dce0667ed69ef3a2201761c1024d0f55
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ license: LicenseRef-Public-Domain OR MIT
+ size: 161293
+ timestamp: 1726144461286
+- kind: conda
+ name: jsoncpp
+ version: 1.9.6
+ build: h37c8870_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/jsoncpp-1.9.6-h37c8870_0.conda
+ sha256: dba3f4f761bf0e1f030db5c3fb2a7d25fc76e6902a918f117d283c6842604574
+ md5: b691fe7e2cd9d34065bd90fd2e7cacbf
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ license: LicenseRef-Public-Domain OR MIT
+ size: 144033
+ timestamp: 1726144616066
+- kind: conda
+ name: jsoncpp
+ version: 1.9.6
+ build: h7b3277c_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/jsoncpp-1.9.6-h7b3277c_0.conda
+ sha256: 520c9da4aae502817c3671a4474e3063fff84cb227f44d946f3072850d6fb277
+ md5: 3c4ad023fdff68dc33e0dc2823c542cf
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ license: LicenseRef-Public-Domain OR MIT
+ size: 145524
+ timestamp: 1726144564127
+- kind: conda
+ name: jsoncpp
+ version: 1.9.6
+ build: h84d6215_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.6-h84d6215_0.conda
+ sha256: 438031a4d5ebbfe92fde5cc103961c6befa5323d0ac7e9029c5bf6e302ebbf39
+ md5: 1190da4988807db89b31e2173128892f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: LicenseRef-Public-Domain OR MIT
+ size: 168993
+ timestamp: 1726144493081
+- kind: conda
+ name: jsoncpp
+ version: 1.9.6
+ build: hc790b64_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/jsoncpp-1.9.6-hc790b64_0.conda
+ sha256: 4bf42a919f2aa8a101b31508a571f9ef5eea3f5a316a0bc219d587bb857100d4
+ md5: 150168d6884b7d15ec4160cbcf80e557
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LicenseRef-Public-Domain OR MIT
+ size: 343785
+ timestamp: 1726144857909
+- kind: conda
+ name: jsonpatch
+ version: '1.33'
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.33-pyhd8ed1ab_0.conda
+ sha256: fbb17e33ace3225c6416d1604637c1058906b8223da968cc015128985336b2b4
+ md5: bfdb7c5c6ad1077c82a69a8642c87aff
+ depends:
+ - jsonpointer >=1.9
+ - python >=3.8
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17366
+ timestamp: 1695536420928
+- kind: conda
+ name: jsonpointer
+ version: 3.0.0
+ build: py312h2e8e312_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py312h2e8e312_1.conda
+ sha256: 6865b97780e795337f65592582aee6f25e5b96214c64ffd3f8cdf580fd64ba22
+ md5: e3ceda014d8461a11ca8552830a978f9
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 42235
+ timestamp: 1725303419414
+- kind: conda
+ name: jsonpointer
+ version: 3.0.0
+ build: py312h7900ff3_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py312h7900ff3_1.conda
+ sha256: 76ccb7bffc7761d1d3133ffbe1f7f1710a0f0d9aaa9f7ea522652e799f3601f4
+ md5: 6b51f7459ea4073eeb5057207e2e1e3d
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17277
+ timestamp: 1725303032027
+- kind: conda
+ name: jsonpointer
+ version: 3.0.0
+ build: py312h81bd7bf_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py312h81bd7bf_1.conda
+ sha256: f6fb3734e967d1cd0cde32844ee952809f6c0a49895da7ec1c8cfdf97739b947
+ md5: 80f403c03290e1662be03e026fb5f8ab
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17865
+ timestamp: 1725303130815
+- kind: conda
+ name: jsonpointer
+ version: 3.0.0
+ build: py312h996f985_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/jsonpointer-3.0.0-py312h996f985_1.conda
+ sha256: 908448e2946c8fd8e28f5c7de4ed52548d227fae2994febf1050179b2590dbdc
+ md5: 2257c5f33024274faadf6a88a7d62807
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17821
+ timestamp: 1725303138276
+- kind: conda
+ name: jsonpointer
+ version: 3.0.0
+ build: py312hb401068_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py312hb401068_1.conda
+ sha256: 52fcb1db44a935bba26988cc17247a0f71a8ad2fbc2b717274a8c8940856ee0d
+ md5: 5dcf96bca4649d496d818a0f5cfb962e
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17560
+ timestamp: 1725303027769
+- kind: conda
+ name: jxrlib
+ version: '1.1'
+ build: h10d778d_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/jxrlib-1.1-h10d778d_3.conda
+ sha256: a548a4be14a4c76d6d992a5c1feffcbb08062f5c57abc6e4278d40c2c9a7185b
+ md5: cfaf81d843a80812fe16a68bdae60562
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 220376
+ timestamp: 1703334073774
+- kind: conda
+ name: jxrlib
+ version: '1.1'
+ build: h31becfc_3
+ build_number: 3
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/jxrlib-1.1-h31becfc_3.conda
+ sha256: 157e151068d44042c56d6dd6f634d0b2c1fe084114ae56125299f518dd8b1500
+ md5: 720f7b9ccdf426ac73dafcf92f7d7bf4
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 238091
+ timestamp: 1703333994798
+- kind: conda
+ name: jxrlib
+ version: '1.1'
+ build: h93a5062_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/jxrlib-1.1-h93a5062_3.conda
+ sha256: c9e0d3cf9255d4585fa9b3d07ace3bd934fdc6a67ef4532e5507282eff2364ab
+ md5: 879997fd868f8e9e4c2a12aec8583799
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 197843
+ timestamp: 1703334079437
+- kind: conda
+ name: jxrlib
+ version: '1.1'
+ build: hcfcfb64_3
+ build_number: 3
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/jxrlib-1.1-hcfcfb64_3.conda
+ sha256: a9ac265bcf65fce57cfb6512a1b072d5489445d14aa1b60c9bdf73370cf261b2
+ md5: a9dff8432c11dfa980346e934c29ca3f
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 355340
+ timestamp: 1703334132631
+- kind: conda
+ name: jxrlib
+ version: '1.1'
+ build: hd590300_3
+ build_number: 3
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda
+ sha256: 2057ca87b313bde5b74b93b0e696f8faab69acd4cb0edebb78469f3f388040c0
+ md5: 5aeabe88534ea4169d4c49998f293d6c
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 239104
+ timestamp: 1703333860145
+- kind: conda
+ name: kernel-headers_linux-64
+ version: 2.6.32
+ build: he073ed8_17
+ build_number: 17
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_17.conda
+ sha256: fb39d64b48f3d9d1acc3df208911a41f25b6a00bd54935d5973b4739a9edd5b6
+ md5: d731b543793afc0433c4fd593e693fce
+ constrains:
+ - sysroot_linux-64 ==2.12
+ license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0
+ license_family: GPL
+ size: 710627
+ timestamp: 1708000830116
+- kind: conda
+ name: kernel-headers_linux-aarch64
+ version: 4.18.0
+ build: h05a177a_18
+ build_number: 18
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_18.conda
+ sha256: 99731884b26d5801c931f6ed4e1d40f0d1b2efc60ab2d1d49e9b3a6508a390df
+ md5: 40ebaa9844bc99af99fc1beaed90b379
+ constrains:
+ - sysroot_linux-aarch64 ==2.17
+ license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0
+ license_family: GPL
+ size: 1113306
+ timestamp: 1729794501866
+- kind: conda
+ name: keyutils
+ version: 1.6.1
+ build: h166bdaf_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
+ sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb
+ md5: 30186d27e2c9fa62b45fb1476b7200e3
+ depends:
+ - libgcc-ng >=10.3.0
+ license: LGPL-2.1-or-later
+ size: 117831
+ timestamp: 1646151697040
+- kind: conda
+ name: keyutils
+ version: 1.6.1
+ build: h4e544f5_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2
+ sha256: 6d4233d97a9b38acbb26e1268bcf8c10a8e79c2aed7e5a385ec3769967e3e65b
+ md5: 1f24853e59c68892452ef94ddd8afd4b
+ depends:
+ - libgcc-ng >=10.3.0
+ license: LGPL-2.1-or-later
+ size: 112327
+ timestamp: 1646166857935
+- kind: conda
+ name: kiwisolver
+ version: 1.4.7
+ build: py312h6142ec9_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/kiwisolver-1.4.7-py312h6142ec9_0.conda
+ sha256: 056a2cc3b6c07c79719cb8f2eda09408fca137b49fe46f919ef14247caa6f0e9
+ md5: ea8a65d24baad7ed822ab7f07f19e105
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 60966
+ timestamp: 1725459569843
+- kind: conda
+ name: kiwisolver
+ version: 1.4.7
+ build: py312h68727a3_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.7-py312h68727a3_0.conda
+ sha256: d752c53071ee5d712baa9742dd1629e60388c5ce4ab11d4e73a1690443e41769
+ md5: 444266743652a4f1538145e9362f6d3b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 70922
+ timestamp: 1725459412788
+- kind: conda
+ name: kiwisolver
+ version: 1.4.7
+ build: py312h88dc405_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/kiwisolver-1.4.7-py312h88dc405_0.conda
+ sha256: 2fc0723e658bbe261443b5f856d6d94e4eb4ba788efbadbce08f2de25bbbcca2
+ md5: 896042bf19518b511dbb460cde81f2e2
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 70144
+ timestamp: 1725461150212
+- kind: conda
+ name: kiwisolver
+ version: 1.4.7
+ build: py312hc5c4d5f_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/kiwisolver-1.4.7-py312hc5c4d5f_0.conda
+ sha256: 87470d7eed470c01efa19dd0d5a2eca9149afa1176d1efc50c475b3b81df62c1
+ md5: 7b72389a8a3ba350285f86933ab85da0
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 62176
+ timestamp: 1725459509941
+- kind: conda
+ name: kiwisolver
+ version: 1.4.7
+ build: py312hd5eb7cc_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.7-py312hd5eb7cc_0.conda
+ sha256: b5b3ed78e4c44483afb68f53427db3d232ddf7930ca180bb00fa86ceca7cf7e4
+ md5: 1eddb74a9fbb1d4d6fde9aef272ad1d0
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 55405
+ timestamp: 1725459633511
+- kind: conda
+ name: krb5
+ version: 1.21.3
+ build: h237132a_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
+ sha256: 4442f957c3c77d69d9da3521268cad5d54c9033f1a73f99cde0a3658937b159b
+ md5: c6dc8a0fdec13a0565936655c33069a1
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - openssl >=3.3.1,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 1155530
+ timestamp: 1719463474401
+- kind: conda
+ name: krb5
+ version: 1.21.3
+ build: h37d8d59_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda
+ sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c
+ md5: d4765c524b1d91567886bde656fb514b
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - openssl >=3.3.1,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 1185323
+ timestamp: 1719463492984
+- kind: conda
+ name: krb5
+ version: 1.21.3
+ build: h50a48e9_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda
+ sha256: 0ec272afcf7ea7fbf007e07a3b4678384b7da4047348107b2ae02630a570a815
+ md5: 29c10432a2ca1472b53f299ffb2ffa37
+ depends:
+ - keyutils >=1.6.1,<2.0a0
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - openssl >=3.3.1,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 1474620
+ timestamp: 1719463205834
+- kind: conda
+ name: krb5
+ version: 1.21.3
+ build: h659f571_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238
+ md5: 3f43953b7d3fb3aaa1d0d0723d91e368
+ depends:
+ - keyutils >=1.6.1,<2.0a0
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - openssl >=3.3.1,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 1370023
+ timestamp: 1719463201255
+- kind: conda
+ name: krb5
+ version: 1.21.3
+ build: hdf4eb48_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda
+ sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81
+ md5: 31aec030344e962fbd7dbbbbd68e60a9
+ depends:
+ - openssl >=3.3.1,<4.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 712034
+ timestamp: 1719463874284
+- kind: conda
+ name: lame
+ version: '3.100'
+ build: h166bdaf_1003
+ build_number: 1003
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2
+ sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab
+ md5: a8832b479f93521a9e7b5b743803be51
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.0-only
+ license_family: LGPL
+ size: 508258
+ timestamp: 1664996250081
+- kind: conda
+ name: lame
+ version: '3.100'
+ build: h1a8c8d9_1003
+ build_number: 1003
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2
+ sha256: f40ce7324b2cf5338b766d4cdb8e0453e4156a4f83c2f31bbfff750785de304c
+ md5: bff0e851d66725f78dc2fd8b032ddb7e
+ license: LGPL-2.0-only
+ license_family: LGPL
+ size: 528805
+ timestamp: 1664996399305
+- kind: conda
+ name: lame
+ version: '3.100'
+ build: h4e544f5_1003
+ build_number: 1003
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/lame-3.100-h4e544f5_1003.tar.bz2
+ sha256: 2502904a42df6d94bd743f7b73915415391dd6d31d5f50cb57c0a54a108e7b0a
+ md5: ab05bcf82d8509b4243f07e93bada144
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.0-only
+ license_family: LGPL
+ size: 604863
+ timestamp: 1664997611416
+- kind: conda
+ name: lame
+ version: '3.100'
+ build: hb7f2c08_1003
+ build_number: 1003
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2
+ sha256: 0f943b08abb4c748d73207594321b53bad47eea3e7d06b6078e0f6c59ce6771e
+ md5: 3342b33c9a0921b22b767ed68ee25861
+ license: LGPL-2.0-only
+ license_family: LGPL
+ size: 542681
+ timestamp: 1664996421531
+- kind: conda
+ name: lcms2
+ version: '2.16'
+ build: h67d730c_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.16-h67d730c_0.conda
+ sha256: f9fd9e80e46358a57d9bb97b1e37a03da4022143b019aa3c4476d8a7795de290
+ md5: d3592435917b62a8becff3a60db674f6
+ depends:
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 507632
+ timestamp: 1701648249706
+- kind: conda
+ name: lcms2
+ version: '2.16'
+ build: h922389a_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.16-h922389a_0.conda
+ sha256: be4847b1014d3cbbc524a53bdbf66182f86125775020563e11d914c8468dd97d
+ md5: ffdd8267a04c515e7ce69c727b051414
+ depends:
+ - libgcc-ng >=12
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ license: MIT
+ license_family: MIT
+ size: 296219
+ timestamp: 1701647961116
+- kind: conda
+ name: lcms2
+ version: '2.16'
+ build: ha0e7c42_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.16-ha0e7c42_0.conda
+ sha256: 151e0c84feb7e0747fabcc85006b8973b22f5abbc3af76a9add0b0ef0320ebe4
+ md5: 66f6c134e76fe13cce8a9ea5814b5dd5
+ depends:
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ license: MIT
+ license_family: MIT
+ size: 211959
+ timestamp: 1701647962657
+- kind: conda
+ name: lcms2
+ version: '2.16'
+ build: ha2f27b4_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.16-ha2f27b4_0.conda
+ sha256: 222ebc0a55544b9922f61e75015d02861e65b48f12113af41d48ba0814e14e4e
+ md5: 1442db8f03517834843666c422238c9b
+ depends:
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ license: MIT
+ license_family: MIT
+ size: 224432
+ timestamp: 1701648089496
+- kind: conda
+ name: lcms2
+ version: '2.16'
+ build: hb7c19ff_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda
+ sha256: 5c878d104b461b7ef922abe6320711c0d01772f4cd55de18b674f88547870041
+ md5: 51bb7010fc86f70eee639b4bb7a894f5
+ depends:
+ - libgcc-ng >=12
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ license: MIT
+ license_family: MIT
+ size: 245247
+ timestamp: 1701647787198
+- kind: conda
+ name: ld64
+ version: '951.9'
+ build: h0a3eb4e_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/ld64-951.9-h0a3eb4e_2.conda
+ sha256: f9bc3ce2e24e3b0907436e151f5df34e407e626c7693586af5b2f39aaacd40f5
+ md5: c198062cf84f2e797996ac156daffa9e
+ depends:
+ - ld64_osx-64 951.9 h5ffbe8e_2
+ - libllvm17 >=17.0.6,<17.1.0a0
+ constrains:
+ - cctools 1010.6.*
+ - cctools_osx-64 1010.6.*
+ license: APSL-2.0
+ license_family: Other
+ size: 18434
+ timestamp: 1732552435078
+- kind: conda
+ name: ld64
+ version: '951.9'
+ build: h39a299f_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-951.9-h39a299f_2.conda
+ sha256: 041d712eadca1911fac7112171db5c5c2e478c75b65ae4663005c49b77c65a45
+ md5: caf11d8b84c7dd198309056dbd457b86
+ depends:
+ - ld64_osx-arm64 951.9 h3f9b568_2
+ - libllvm17 >=17.0.6,<17.1.0a0
+ constrains:
+ - cctools 1010.6.*
+ - cctools_osx-arm64 1010.6.*
+ license: APSL-2.0
+ license_family: Other
+ size: 18503
+ timestamp: 1732552594547
+- kind: conda
+ name: ld64_osx-64
+ version: '951.9'
+ build: h5ffbe8e_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-951.9-h5ffbe8e_2.conda
+ sha256: c523bf1f99b4056aa819e7c83acec58ac7d4a053924541309ece83ca2a37db3f
+ md5: 8cd0234328c8e9dcc2db757ff8a2ad22
+ depends:
+ - __osx >=10.13
+ - libcxx
+ - libllvm17 >=17.0.6,<17.1.0a0
+ - sigtool
+ - tapi >=1300.6.5,<1301.0a0
+ constrains:
+ - cctools 1010.6.*
+ - ld 951.9.*
+ - cctools_osx-64 1010.6.*
+ - clang >=17.0.6,<18.0a0
+ license: APSL-2.0
+ license_family: Other
+ size: 1099649
+ timestamp: 1732552367675
+- kind: conda
+ name: ld64_osx-arm64
+ version: '951.9'
+ build: h3f9b568_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-951.9-h3f9b568_2.conda
+ sha256: c67453a58870ce19b6acaa1d0db2c49848b7584c062d969f5d06c82ebd1454ef
+ md5: 68841f5b5956607ea9760cafa14271c5
+ depends:
+ - __osx >=11.0
+ - libcxx
+ - libllvm17 >=17.0.6,<17.1.0a0
+ - sigtool
+ - tapi >=1300.6.5,<1301.0a0
+ constrains:
+ - cctools 1010.6.*
+ - cctools_osx-arm64 1010.6.*
+ - clang >=17.0.6,<18.0a0
+ - ld 951.9.*
+ license: APSL-2.0
+ license_family: Other
+ size: 1017788
+ timestamp: 1732552505749
+- kind: conda
+ name: ld_impl_linux-64
+ version: '2.43'
+ build: h712a8e2_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
+ sha256: 7c91cea91b13f4314d125d1bedb9d03a29ebbd5080ccdea70260363424646dbe
+ md5: 048b02e3962f066da18efe3a21b77672
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ constrains:
+ - binutils_impl_linux-64 2.43
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 669211
+ timestamp: 1729655358674
+- kind: conda
+ name: ld_impl_linux-aarch64
+ version: '2.43'
+ build: h80caac9_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_2.conda
+ sha256: 80ec7e8f006196808fac5bd4b3773a652847f97bbf08044cd87731424ac64f8b
+ md5: fcbde5ea19d55468953bf588770c0501
+ constrains:
+ - binutils_impl_linux-aarch64 2.43
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 698245
+ timestamp: 1729655345825
+- kind: conda
+ name: lerc
+ version: 4.0.0
+ build: h27087fc_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2
+ sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12
+ md5: 76bbff344f0134279f225174e9064c8f
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: Apache-2.0
+ license_family: Apache
+ size: 281798
+ timestamp: 1657977462600
+- kind: conda
+ name: lerc
+ version: 4.0.0
+ build: h4de3ea5_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2
+ sha256: 2d09ef9b7796d83364957e420b41c32d94e628c3f0520b61c332518a7b5cd586
+ md5: 1a0ffc65e03ce81559dbcb0695ad1476
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: Apache-2.0
+ license_family: Apache
+ size: 262096
+ timestamp: 1657978241894
+- kind: conda
+ name: lerc
+ version: 4.0.0
+ build: h63175ca_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2
+ sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488
+ md5: 1900cb3cab5055833cfddb0ba233b074
+ depends:
+ - vc >=14.2,<15
+ - vs2015_runtime >=14.29.30037
+ license: Apache-2.0
+ license_family: Apache
+ size: 194365
+ timestamp: 1657977692274
+- kind: conda
+ name: lerc
+ version: 4.0.0
+ build: h9a09cb3_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2
+ sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958
+ md5: de462d5aacda3b30721b512c5da4e742
+ depends:
+ - libcxx >=13.0.1
+ license: Apache-2.0
+ license_family: Apache
+ size: 215721
+ timestamp: 1657977558796
+- kind: conda
+ name: lerc
+ version: 4.0.0
+ build: hb486fe8_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2
+ sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497
+ md5: f9d6a4c82889d5ecedec1d90eb673c55
+ depends:
+ - libcxx >=13.0.1
+ license: Apache-2.0
+ license_family: Apache
+ size: 290319
+ timestamp: 1657977526749
+- kind: conda
+ name: libabseil
+ version: '20240722.0'
+ build: cxx17_h5888daf_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
+ sha256: 8f91429091183c26950f1e7ffa730e8632f0627ba35d2fccd71df31628c9b4e5
+ md5: e1f604644fe8d78e22660e2fec6756bc
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ constrains:
+ - libabseil-static =20240722.0=cxx17*
+ - abseil-cpp =20240722.0
+ license: Apache-2.0
+ license_family: Apache
+ size: 1310521
+ timestamp: 1727295454064
+- kind: conda
+ name: libabseil
+ version: '20240722.0'
+ build: cxx17_h5ad3122_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda
+ sha256: 590e47dce38031a8893e70491f3b71e214de7781cab53b6f017aa6f6841cb076
+ md5: 6fe6b3694c4792a8e26755d3b06f0b80
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ constrains:
+ - abseil-cpp =20240722.0
+ - libabseil-static =20240722.0=cxx17*
+ license: Apache-2.0
+ license_family: Apache
+ size: 1328502
+ timestamp: 1727295490806
+- kind: conda
+ name: libabseil
+ version: '20240722.0'
+ build: cxx17_hac325c4_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240722.0-cxx17_hac325c4_1.conda
+ sha256: b548e80280242ad1d93d8d7fb48a30af7e4124959ba2031c65c9675b98163652
+ md5: 40373920232a6ac0404eee9cf39a9f09
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ constrains:
+ - abseil-cpp =20240722.0
+ - libabseil-static =20240722.0=cxx17*
+ license: Apache-2.0
+ license_family: Apache
+ size: 1170354
+ timestamp: 1727295597292
+- kind: conda
+ name: libabseil
+ version: '20240722.0'
+ build: cxx17_hf9b8971_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda
+ sha256: 90bf08a75506dfcf28a70977da8ab050bcf594cd02abd3a9d84a22c9e8161724
+ md5: 706da5e791c569a7b9814877098a6a0a
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ constrains:
+ - libabseil-static =20240722.0=cxx17*
+ - abseil-cpp =20240722.0
+ license: Apache-2.0
+ license_family: Apache
+ size: 1179072
+ timestamp: 1727295571173
+- kind: conda
+ name: libaec
+ version: 1.1.3
+ build: h2f0025b_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libaec-1.1.3-h2f0025b_0.conda
+ sha256: 9c366233b4f4bf11e64ce886055aaac34445205a178061923300872e0564a4f2
+ md5: e52c4a30901a90354855e40992af907d
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 35339
+ timestamp: 1711021162162
+- kind: conda
+ name: libaec
+ version: 1.1.3
+ build: h59595ed_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda
+ sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017
+ md5: 5e97e271911b8b2001a8b71860c32faa
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 35446
+ timestamp: 1711021212685
+- kind: conda
+ name: libaec
+ version: 1.1.3
+ build: h63175ca_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda
+ sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf
+ md5: 8723000f6ffdbdaef16025f0a01b64c5
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 32567
+ timestamp: 1711021603471
+- kind: conda
+ name: libaec
+ version: 1.1.3
+ build: h73e2aa4_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda
+ sha256: dae5921339c5d89f4bf58a95fd4e9c76270dbf7f6a94f3c5081b574905fcccf8
+ md5: 66d3c1f6dd4636216b4fca7a748d50eb
+ depends:
+ - libcxx >=16
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 28602
+ timestamp: 1711021419744
+- kind: conda
+ name: libaec
+ version: 1.1.3
+ build: hebf3989_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.1.3-hebf3989_0.conda
+ sha256: 896189b7b48a194c46a3556ea04943ef81cbe0498521231f8eb25816a68bc8ed
+ md5: 6f0b8e56d2e7bae12a18fc5b2cd9f310
+ depends:
+ - libcxx >=16
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 28451
+ timestamp: 1711021498493
+- kind: conda
+ name: libarchive
+ version: 3.7.7
+ build: h2f0f0fe_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarchive-3.7.7-h2f0f0fe_0.conda
+ sha256: a73b1d236076a7383c984bda85050418f9c344815e703d4f51c1298ee947d7f1
+ md5: 942ca5a80056d240b85e08a62b806429
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc >=13
+ - libxml2 >=2.13.5,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.9.3,<1.10.0a0
+ - lzo >=2.10,<3.0a0
+ - openssl >=3.4.0,<4.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 979526
+ timestamp: 1732614274388
+- kind: conda
+ name: libarchive
+ version: 3.7.7
+ build: h7988bea_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.7-h7988bea_0.conda
+ sha256: 50a5ffeeef306c9f29e2872aa011c28f546a364a8e50350bd05ff0055ad8c599
+ md5: 5af9f38826ccc57545a5c55c54cbfd92
+ depends:
+ - __osx >=10.13
+ - bzip2 >=1.0.8,<2.0a0
+ - libiconv >=1.17,<2.0a0
+ - libxml2 >=2.13.5,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.9.3,<1.10.0a0
+ - lzo >=2.10,<3.0a0
+ - openssl >=3.4.0,<4.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 752482
+ timestamp: 1732614525711
+- kind: conda
+ name: libarchive
+ version: 3.7.7
+ build: h7c07d2a_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarchive-3.7.7-h7c07d2a_0.conda
+ sha256: 10d5c755761c6823d20c6ddbd42292ef91f34e271b6ba3e78d0c5fa81c22b3ed
+ md5: 49b28e291693b70cf8a7e70f290834d8
+ depends:
+ - __osx >=11.0
+ - bzip2 >=1.0.8,<2.0a0
+ - libiconv >=1.17,<2.0a0
+ - libxml2 >=2.13.5,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.9.3,<1.10.0a0
+ - lzo >=2.10,<3.0a0
+ - openssl >=3.4.0,<4.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 777074
+ timestamp: 1732614642044
+- kind: conda
+ name: libarchive
+ version: 3.7.7
+ build: h88ece9c_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libarchive-3.7.7-h88ece9c_0.conda
+ sha256: afc496c826ec21cb898018695a7785baced3ebb66a90e39a1c2604dfaa1546be
+ md5: 37c6e11d9f2e69789198ef2bfc661392
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libxml2 >=2.13.5,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.9.3,<1.10.0a0
+ - lzo >=2.10,<3.0a0
+ - openssl >=3.4.0,<4.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 977329
+ timestamp: 1732614920501
+- kind: conda
+ name: libarchive
+ version: 3.7.7
+ build: hadbb8c3_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.7-hadbb8c3_0.conda
+ sha256: 68afcb4519d08cebf71845aff6038e7273f021efc04ef48246f8d41e4e462a61
+ md5: 4a099677417658748239616b6ca96bb6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc >=13
+ - libxml2 >=2.13.5,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.9.3,<1.10.0a0
+ - lzo >=2.10,<3.0a0
+ - openssl >=3.4.0,<4.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 874221
+ timestamp: 1732614239458
+- kind: conda
+ name: libasprintf
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-0.22.5-h8414b35_3.conda
+ sha256: 819bf95543470658f48db53a267a3fabe1616797c4031cf88e63f451c5029e6f
+ md5: 472b673c083175195965a48f2f4808f8
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ license: LGPL-2.1-or-later
+ size: 40657
+ timestamp: 1723626937704
+- kind: conda
+ name: libasprintf
+ version: 0.22.5
+ build: hdfe23c8_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libasprintf-0.22.5-hdfe23c8_3.conda
+ sha256: 9c6f3e2558e098dbbc63c9884b4af368ea6cc4185ea027563ac4f5ee8571b143
+ md5: 55363e1d53635b3497cdf753ab0690c1
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ license: LGPL-2.1-or-later
+ size: 40442
+ timestamp: 1723626787726
+- kind: conda
+ name: libasprintf-devel
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-devel-0.22.5-h8414b35_3.conda
+ sha256: ca7322f7c3f1a68cb36630eaa88a44c774261150d42d70a4be3d77bc9ed28d5d
+ md5: a03ca97f9fabf5626660697c2e0b8850
+ depends:
+ - __osx >=11.0
+ - libasprintf 0.22.5 h8414b35_3
+ license: LGPL-2.1-or-later
+ size: 34648
+ timestamp: 1723626983419
+- kind: conda
+ name: libasprintf-devel
+ version: 0.22.5
+ build: hdfe23c8_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libasprintf-devel-0.22.5-hdfe23c8_3.conda
+ sha256: 408e59cc215b654b292f503d37552d319e71180d33798867975377c28fd3c6b3
+ md5: e2ae0568825e62d439a921fdc7f6db64
+ depends:
+ - __osx >=10.13
+ - libasprintf 0.22.5 hdfe23c8_3
+ license: LGPL-2.1-or-later
+ size: 34522
+ timestamp: 1723626838677
+- kind: conda
+ name: libass
+ version: 0.17.3
+ build: h1dc1e6a_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.3-h1dc1e6a_0.conda
+ sha256: 52afd5e79681185ea33da0e7548aa3721be7e9a153a90f004c5adc33d61f7a14
+ md5: 2a66267ba586dadd110cc991063cfff7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - fribidi >=1.0.10,<2.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libgcc-ng >=12
+ - libzlib >=1.3.1,<2.0a0
+ license: ISC
+ license_family: OTHER
+ size: 133110
+ timestamp: 1719985879751
+- kind: conda
+ name: libass
+ version: 0.17.3
+ build: h5386a9e_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.3-h5386a9e_0.conda
+ sha256: 2a19c0230f0d6d707a2f0d3fdfe50fb41fbf05e88fb4a79e8e2b5a29f66c4c55
+ md5: b6b8a0a32d77060c4431933a0ba11d3b
+ depends:
+ - __osx >=10.13
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - fribidi >=1.0.10,<2.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: ISC
+ license_family: OTHER
+ size: 133998
+ timestamp: 1719986071273
+- kind: conda
+ name: libass
+ version: 0.17.3
+ build: hcc173ff_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libass-0.17.3-hcc173ff_0.conda
+ sha256: 93d84d22f9fa360c175ce6b0bdd4ec33c0f6399eb6e6a17fcbf8b34375343528
+ md5: 7a3fcba797d23512f55ef23e68ae4ec9
+ depends:
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - fribidi >=1.0.10,<2.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libgcc-ng >=12
+ - libzlib >=1.3.1,<2.0a0
+ license: ISC
+ license_family: OTHER
+ size: 145939
+ timestamp: 1719986023948
+- kind: conda
+ name: libass
+ version: 0.17.3
+ build: hf20b609_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libass-0.17.3-hf20b609_0.conda
+ sha256: 2c03d080b48e65e4c488b4824b817fbdce5b79e18f49fc4e823819268b74bb7d
+ md5: 50f6b3ead2c75c7c4009a8ed477d8142
+ depends:
+ - __osx >=11.0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - fribidi >=1.0.10,<2.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: ISC
+ license_family: OTHER
+ size: 116755
+ timestamp: 1719986027249
+- kind: conda
+ name: libblas
+ version: 3.9.0
+ build: 25_linux64_openblas
+ build_number: 25
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-25_linux64_openblas.conda
+ sha256: d6d12dc437d060f838820e9e61bf73baab651f91935ac594cf10beb9ef1b4450
+ md5: 8ea26d42ca88ec5258802715fe1ee10b
+ depends:
+ - libopenblas >=0.3.28,<0.3.29.0a0
+ - libopenblas >=0.3.28,<1.0a0
+ constrains:
+ - liblapack 3.9.0 25_linux64_openblas
+ - libcblas 3.9.0 25_linux64_openblas
+ - blas * openblas
+ - liblapacke 3.9.0 25_linux64_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15677
+ timestamp: 1729642900350
+- kind: conda
+ name: libblas
+ version: 3.9.0
+ build: 25_linuxaarch64_openblas
+ build_number: 25
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-25_linuxaarch64_openblas.conda
+ sha256: 5c08f78312874bb61307f5ea737377df2d0f6e7f7833ded21ca58d8820c794ca
+ md5: f9b8a4a955ed2d0b68b1f453abcc1c9e
+ depends:
+ - libopenblas >=0.3.28,<0.3.29.0a0
+ - libopenblas >=0.3.28,<1.0a0
+ constrains:
+ - blas * openblas
+ - liblapacke 3.9.0 25_linuxaarch64_openblas
+ - liblapack 3.9.0 25_linuxaarch64_openblas
+ - libcblas 3.9.0 25_linuxaarch64_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15808
+ timestamp: 1729643002627
+- kind: conda
+ name: libblas
+ version: 3.9.0
+ build: 25_osx64_openblas
+ build_number: 25
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-25_osx64_openblas.conda
+ sha256: 1b22b5322a311a775bca637b26317645cf07e35f125cede9278c6c45db6e7105
+ md5: da0a6f87958893e1d2e2bbc7e7a6541f
+ depends:
+ - libopenblas >=0.3.28,<0.3.29.0a0
+ - libopenblas >=0.3.28,<1.0a0
+ constrains:
+ - liblapack 3.9.0 25_osx64_openblas
+ - liblapacke 3.9.0 25_osx64_openblas
+ - blas * openblas
+ - libcblas 3.9.0 25_osx64_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15952
+ timestamp: 1729643159199
+- kind: conda
+ name: libblas
+ version: 3.9.0
+ build: 25_osxarm64_openblas
+ build_number: 25
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-25_osxarm64_openblas.conda
+ sha256: f1fb9a11af0b2878bd8804b4c77d3733c40076218bcbdb35f575b1c0c9fddf11
+ md5: f8cf4d920ff36ce471619010eff59cac
+ depends:
+ - libopenblas >=0.3.28,<0.3.29.0a0
+ - libopenblas >=0.3.28,<1.0a0
+ constrains:
+ - blas * openblas
+ - liblapack 3.9.0 25_osxarm64_openblas
+ - liblapacke 3.9.0 25_osxarm64_openblas
+ - libcblas 3.9.0 25_osxarm64_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15913
+ timestamp: 1729643265495
+- kind: conda
+ name: libblas
+ version: 3.9.0
+ build: 25_win64_mkl
+ build_number: 25
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-25_win64_mkl.conda
+ sha256: 5468bb91c44b41ce060bbd997c797b2f91e2b7ce91a7cbf4ddf7e7b734a8dc98
+ md5: 499208e81242efb6e5abc7366c91c816
+ depends:
+ - mkl 2024.2.2 h66d3029_14
+ constrains:
+ - blas * mkl
+ - libcblas 3.9.0 25_win64_mkl
+ - liblapack 3.9.0 25_win64_mkl
+ - liblapacke 3.9.0 25_win64_mkl
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3736641
+ timestamp: 1729643534444
+- kind: conda
+ name: libboost
+ version: 1.86.0
+ build: h29978a0_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libboost-1.86.0-h29978a0_2.conda
+ sha256: d9e080b69dc963cab704d33439a7ed6d76b6c9eb644b63163eda2a32e3a1a799
+ md5: 3f5b15eed5e82e7ea8358a161e974ced
+ depends:
+ - __osx >=11.0
+ - bzip2 >=1.0.8,<2.0a0
+ - icu >=75.1,<76.0a0
+ - libcxx >=17
+ - libzlib >=1.3.1,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 2004506
+ timestamp: 1725334277168
+- kind: conda
+ name: libboost
+ version: 1.86.0
+ build: h444863b_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libboost-1.86.0-h444863b_2.conda
+ sha256: a444cc7877f061b7f7c6195c806db183806f1f3a3b6ae26b1c9a89c89a049632
+ md5: 3208cfab6cdb23e6b49805a3771361f2
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 2384613
+ timestamp: 1725335041520
+- kind: conda
+ name: libboost
+ version: 1.86.0
+ build: hb8260a3_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libboost-1.86.0-hb8260a3_2.conda
+ sha256: d2b5959c9d73486fba422b1f4f844447df110924860df5583847b7ca62e98a6e
+ md5: 5e0ef327c03bb0092046cc9e964b3ceb
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - icu >=75.1,<76.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 3075722
+ timestamp: 1725333797199
+- kind: conda
+ name: libboost
+ version: 1.86.0
+ build: hbe88bda_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libboost-1.86.0-hbe88bda_2.conda
+ sha256: 92184cfa6b59e3176d9dcdd0662f55d72850bd429771e2ec19e1bd8b4af17cb4
+ md5: 639e62feb43b9d312657ca595410fdfb
+ depends:
+ - __osx >=10.13
+ - bzip2 >=1.0.8,<2.0a0
+ - icu >=75.1,<76.0a0
+ - libcxx >=17
+ - libzlib >=1.3.1,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 2138336
+ timestamp: 1725333992879
+- kind: conda
+ name: libboost
+ version: 1.86.0
+ build: hcc9b45e_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libboost-1.86.0-hcc9b45e_2.conda
+ sha256: 4b8fc3d46b64ba4e690a3d6eb9a1a7c38ac2e6c20f54c2621d796f1749c7015b
+ md5: 9098a06de7a66110540ca2974f69a6b4
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - icu >=75.1,<76.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 3105189
+ timestamp: 1725333795866
+- kind: conda
+ name: libboost-devel
+ version: 1.86.0
+ build: h1a2810e_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libboost-devel-1.86.0-h1a2810e_2.conda
+ sha256: d004282d1fd1c16ada4813bdc1230c2722aec04bb078e64f63f32d3811088380
+ md5: 6858333ddbd5e682876bff881852bd23
+ depends:
+ - libboost 1.86.0 hb8260a3_2
+ - libboost-headers 1.86.0 ha770c72_2
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 37814
+ timestamp: 1725333927243
+- kind: conda
+ name: libboost-devel
+ version: 1.86.0
+ build: h37bb5a9_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libboost-devel-1.86.0-h37bb5a9_2.conda
+ sha256: e95618baa33f0164a893fe61a71eada2686f67cc39cde7ee8667d35748a380dd
+ md5: 6bf2de99161b9f3e2b2d6fa26ea10529
+ depends:
+ - libboost 1.86.0 hcc9b45e_2
+ - libboost-headers 1.86.0 h8af1aa0_2
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 36491
+ timestamp: 1725333909922
+- kind: conda
+ name: libboost-devel
+ version: 1.86.0
+ build: h6a1c779_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libboost-devel-1.86.0-h6a1c779_2.conda
+ sha256: a9eea12dcbc3d1e271c287d4e8718c352899ea6307653589c6eda95d28ea23d7
+ md5: 13121a7610e42d6814c45e79951c3de4
+ depends:
+ - libboost 1.86.0 hbe88bda_2
+ - libboost-headers 1.86.0 h694c41f_2
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 38927
+ timestamp: 1725334132558
+- kind: conda
+ name: libboost-devel
+ version: 1.86.0
+ build: h91493d7_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libboost-devel-1.86.0-h91493d7_2.conda
+ sha256: 6d56eac5b59856f4429d9a235847e8e2cb917b4c1ccdb8276276f78ca1fa5741
+ md5: 4495cc037a565efc0b49d4d9bcde82a6
+ depends:
+ - libboost 1.86.0 h444863b_2
+ - libboost-headers 1.86.0 h57928b3_2
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 40501
+ timestamp: 1725335336309
+- kind: conda
+ name: libboost-devel
+ version: 1.86.0
+ build: hf450f58_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libboost-devel-1.86.0-hf450f58_2.conda
+ sha256: b5385e4c94381dbf330dd696320226d8335750be6e9382b5e1a7da3d62df8b43
+ md5: 23df6adf52072da7ef228c6bba5460dd
+ depends:
+ - libboost 1.86.0 h29978a0_2
+ - libboost-headers 1.86.0 hce30654_2
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 37745
+ timestamp: 1725334421198
+- kind: conda
+ name: libboost-headers
+ version: 1.86.0
+ build: h57928b3_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libboost-headers-1.86.0-h57928b3_2.conda
+ sha256: 46c16663537bc826bf588ef9e969d9640f30112fa5f1594e81e887b76191bbc1
+ md5: 7eb947a8d9ecad0ab0657bb1b664171f
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 14161145
+ timestamp: 1725335148281
+- kind: conda
+ name: libboost-headers
+ version: 1.86.0
+ build: h694c41f_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libboost-headers-1.86.0-h694c41f_2.conda
+ sha256: fae959f16d85e416a0bc0b6f733a59eb8acac896eaafcbfe5498afdffd0363ba
+ md5: 84de15e8645369a5bb4e6327ddf1ded2
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 14115597
+ timestamp: 1725334016415
+- kind: conda
+ name: libboost-headers
+ version: 1.86.0
+ build: h8af1aa0_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libboost-headers-1.86.0-h8af1aa0_2.conda
+ sha256: 9e6e0a45945311f70b4791fda7c24c226e6ce26678cfd4d3d8ee47d9c9c6a409
+ md5: dafa4e322422014641b36218da5c438e
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 14027520
+ timestamp: 1725333814862
+- kind: conda
+ name: libboost-headers
+ version: 1.86.0
+ build: ha770c72_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.86.0-ha770c72_2.conda
+ sha256: 3d35c77a0f61b0574c21e7f6c21fb2b4418207209ec0aca482150306462fa997
+ md5: 71c65a3b7692ad969ef238cb8dd1bfb0
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 14067511
+ timestamp: 1725333818163
+- kind: conda
+ name: libboost-headers
+ version: 1.86.0
+ build: hce30654_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libboost-headers-1.86.0-hce30654_2.conda
+ sha256: bd72291aa2b404805ff047fd3f65c57103f37897e6466cdf617c284211f78ab6
+ md5: 9193ab8d8f8b5518ebeef4a3eab39498
+ constrains:
+ - boost-cpp <0.0a0
+ license: BSL-1.0
+ size: 14098728
+ timestamp: 1725334304659
+- kind: conda
+ name: libbrotlicommon
+ version: 1.1.0
+ build: h00291cd_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h00291cd_2.conda
+ sha256: b377056470a9fb4a100aa3c51b3581aab6496ba84d21cd99bcc1d5ef0359b1b6
+ md5: 58f2c4bdd56c46cc7451596e4ae68e0b
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 67267
+ timestamp: 1725267768667
+- kind: conda
+ name: libbrotlicommon
+ version: 1.1.0
+ build: h2466b09_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda
+ sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c
+ md5: f7dc9a8f21d74eab46456df301da2972
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 70526
+ timestamp: 1725268159739
+- kind: conda
+ name: libbrotlicommon
+ version: 1.1.0
+ build: h86ecc28_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_2.conda
+ sha256: 64112af913974b309d67fd342e065fd184347043a6387933b3db796778a28019
+ md5: 3ee026955c688f551a9999840cff4c67
+ depends:
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 68982
+ timestamp: 1725267774142
+- kind: conda
+ name: libbrotlicommon
+ version: 1.1.0
+ build: hb9d3cd8_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda
+ sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3
+ md5: 41b599ed2b02abcfdd84302bff174b23
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 68851
+ timestamp: 1725267660471
+- kind: conda
+ name: libbrotlicommon
+ version: 1.1.0
+ build: hd74edd7_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda
+ sha256: 839dacb741bdbb25e58f42088a2001b649f4f12195aeb700b5ddfca3267749e5
+ md5: d0bf1dff146b799b319ea0434b93f779
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 68426
+ timestamp: 1725267943211
+- kind: conda
+ name: libbrotlidec
+ version: 1.1.0
+ build: h00291cd_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h00291cd_2.conda
+ sha256: 4d49ea72e2f44d2d7a8be5472e4bd0bc2c6b89c55569de2c43576363a0685c0c
+ md5: 34709a1f5df44e054c4a12ab536c5459
+ depends:
+ - __osx >=10.13
+ - libbrotlicommon 1.1.0 h00291cd_2
+ license: MIT
+ license_family: MIT
+ size: 29872
+ timestamp: 1725267807289
+- kind: conda
+ name: libbrotlidec
+ version: 1.1.0
+ build: h2466b09_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda
+ sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f
+ md5: 9bae75ce723fa34e98e239d21d752a7e
+ depends:
+ - libbrotlicommon 1.1.0 h2466b09_2
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 32685
+ timestamp: 1725268208844
+- kind: conda
+ name: libbrotlidec
+ version: 1.1.0
+ build: h86ecc28_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda
+ sha256: 94c808d9ca3eb6ef30976a9843e27f027cf3a1e84e8c6835cbb696b7bdb35c4c
+ md5: e64d0f3b59c7c4047446b97a8624a72d
+ depends:
+ - libbrotlicommon 1.1.0 h86ecc28_2
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 31708
+ timestamp: 1725267783442
+- kind: conda
+ name: libbrotlidec
+ version: 1.1.0
+ build: hb9d3cd8_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda
+ sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf
+ md5: 9566f0bd264fbd463002e759b8a82401
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlicommon 1.1.0 hb9d3cd8_2
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 32696
+ timestamp: 1725267669305
+- kind: conda
+ name: libbrotlidec
+ version: 1.1.0
+ build: hd74edd7_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda
+ sha256: 6c6862eb274f21a7c0b60e5345467a12e6dda8b9af4438c66d496a2c1a538264
+ md5: 55e66e68ce55523a6811633dd1ac74e2
+ depends:
+ - __osx >=11.0
+ - libbrotlicommon 1.1.0 hd74edd7_2
+ license: MIT
+ license_family: MIT
+ size: 28378
+ timestamp: 1725267980316
+- kind: conda
+ name: libbrotlienc
+ version: 1.1.0
+ build: h00291cd_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h00291cd_2.conda
+ sha256: 477d236d389473413a1ccd2bec1b66b2f1d2d7d1b4a57bb56421b7b611a56cd1
+ md5: 691f0dcb36f1ae67f5c489f20ae987ea
+ depends:
+ - __osx >=10.13
+ - libbrotlicommon 1.1.0 h00291cd_2
+ license: MIT
+ license_family: MIT
+ size: 296353
+ timestamp: 1725267822076
+- kind: conda
+ name: libbrotlienc
+ version: 1.1.0
+ build: h2466b09_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda
+ sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1
+ md5: 85741a24d97954a991e55e34bc55990b
+ depends:
+ - libbrotlicommon 1.1.0 h2466b09_2
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 245929
+ timestamp: 1725268238259
+- kind: conda
+ name: libbrotlienc
+ version: 1.1.0
+ build: h86ecc28_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h86ecc28_2.conda
+ sha256: 41385e17bc73834b235c5aff12d6d82eccb534acb3c30986996f9dad92a0d54c
+ md5: 0e9bd365480c72b25c71a448257b537d
+ depends:
+ - libbrotlicommon 1.1.0 h86ecc28_2
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 290230
+ timestamp: 1725267792697
+- kind: conda
+ name: libbrotlienc
+ version: 1.1.0
+ build: hb9d3cd8_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda
+ sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29
+ md5: 06f70867945ea6a84d35836af780f1de
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlicommon 1.1.0 hb9d3cd8_2
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 281750
+ timestamp: 1725267679782
+- kind: conda
+ name: libbrotlienc
+ version: 1.1.0
+ build: hd74edd7_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda
+ sha256: eeb1eb0d58b9d02bc1b98dc0a058f104ab168eb2f7d1c7bfa0570a12cfcdb7b7
+ md5: 4f3a434504c67b2c42565c0b85c1885c
+ depends:
+ - __osx >=11.0
+ - libbrotlicommon 1.1.0 hd74edd7_2
+ license: MIT
+ license_family: MIT
+ size: 279644
+ timestamp: 1725268003553
+- kind: conda
+ name: libcblas
+ version: 3.9.0
+ build: 25_linux64_openblas
+ build_number: 25
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-25_linux64_openblas.conda
+ sha256: ab87b0477078837c91d9cda62a9faca18fba7c57cc77aa779ae24b3ac783b5dd
+ md5: 5dbd1b0fc0d01ec5e0e1fbe667281a11
+ depends:
+ - libblas 3.9.0 25_linux64_openblas
+ constrains:
+ - liblapack 3.9.0 25_linux64_openblas
+ - blas * openblas
+ - liblapacke 3.9.0 25_linux64_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15613
+ timestamp: 1729642905619
+- kind: conda
+ name: libcblas
+ version: 3.9.0
+ build: 25_linuxaarch64_openblas
+ build_number: 25
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-25_linuxaarch64_openblas.conda
+ sha256: fde797e5528040fed0e9228dd75331be0cf5cbb0bc63641f53c3cca9eb86ec16
+ md5: db6af51123c67814572a8c25542cb368
+ depends:
+ - libblas 3.9.0 25_linuxaarch64_openblas
+ constrains:
+ - blas * openblas
+ - liblapacke 3.9.0 25_linuxaarch64_openblas
+ - liblapack 3.9.0 25_linuxaarch64_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15700
+ timestamp: 1729643006729
+- kind: conda
+ name: libcblas
+ version: 3.9.0
+ build: 25_osx64_openblas
+ build_number: 25
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-25_osx64_openblas.conda
+ sha256: b04ae297aa5396df3135514866db72845b111c92524570f923625473f11cfbe2
+ md5: ab304b75ea67f850cf7adf9156e3f62f
+ depends:
+ - libblas 3.9.0 25_osx64_openblas
+ constrains:
+ - liblapack 3.9.0 25_osx64_openblas
+ - liblapacke 3.9.0 25_osx64_openblas
+ - blas * openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15842
+ timestamp: 1729643166929
+- kind: conda
+ name: libcblas
+ version: 3.9.0
+ build: 25_osxarm64_openblas
+ build_number: 25
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-25_osxarm64_openblas.conda
+ sha256: d9fa5b6b11252132a3383bbf87bd2f1b9d6248bef1b7e113c2a8ae41b0376218
+ md5: 4df0fae81f0b5bf47d48c882b086da11
+ depends:
+ - libblas 3.9.0 25_osxarm64_openblas
+ constrains:
+ - blas * openblas
+ - liblapack 3.9.0 25_osxarm64_openblas
+ - liblapacke 3.9.0 25_osxarm64_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15837
+ timestamp: 1729643270793
+- kind: conda
+ name: libcblas
+ version: 3.9.0
+ build: 25_win64_mkl
+ build_number: 25
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-25_win64_mkl.conda
+ sha256: 21528cdfe67dafdb2d21925515a167f13963e002c2b6d06d68984767f731850c
+ md5: 3ed189ba03a9888a8013aaee0d67c49d
+ depends:
+ - libblas 3.9.0 25_win64_mkl
+ constrains:
+ - blas * mkl
+ - liblapack 3.9.0 25_win64_mkl
+ - liblapacke 3.9.0 25_win64_mkl
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3732258
+ timestamp: 1729643561581
+- kind: conda
+ name: libclang-cpp17
+ version: 17.0.6
+ build: default_h146c034_7
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp17-17.0.6-default_h146c034_7.conda
+ sha256: 2e338629ae19faae0d1a85543b8c84441ead61957cf69a65c0031d5b18ebac08
+ md5: bc6797a6a66ec6f919cc8d4d9285b11c
+ depends:
+ - __osx >=11.0
+ - libcxx >=17.0.6
+ - libllvm17 >=17.0.6,<17.1.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 12408943
+ timestamp: 1725505311206
+- kind: conda
+ name: libclang-cpp17
+ version: 17.0.6
+ build: default_hb173f14_7
+ build_number: 7
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp17-17.0.6-default_hb173f14_7.conda
+ sha256: 59759d25952ac0fd0b07b56af9ab615e379ca4499c9d5277b0bd19a20afb33c9
+ md5: 9fb4dfe8b2c3ba1b68b79fcd9a71cb76
+ depends:
+ - __osx >=10.13
+ - libcxx >=17.0.6
+ - libllvm17 >=17.0.6,<17.1.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 13187621
+ timestamp: 1725505540477
+- kind: conda
+ name: libclang-cpp19.1
+ version: 19.1.4
+ build: default_hb5137d0_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp19.1-19.1.4-default_hb5137d0_0.conda
+ sha256: 66817b7e03486b3564de0bb7e3c27ccf4ecff2e31bcb10d3aa3e9b846ff483d7
+ md5: e7e4a0ebe1f6eedf483f6f5d4f7d2bdd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libllvm19 >=19.1.4,<19.2.0a0
+ - libstdcxx >=13
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 20526176
+ timestamp: 1732088410415
+- kind: conda
+ name: libclang-cpp19.1
+ version: 19.1.4
+ build: default_he324ac1_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang-cpp19.1-19.1.4-default_he324ac1_0.conda
+ sha256: 72d096e6b77bc77a2fb184e1c7dc6e756b07575b00faed9ce7fd9a527369c96e
+ md5: d27a942c1106233db06764714df8dea6
+ depends:
+ - libgcc >=13
+ - libllvm19 >=19.1.4,<19.2.0a0
+ - libstdcxx >=13
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 20109482
+ timestamp: 1732091945036
+- kind: conda
+ name: libclang13
+ version: 19.1.4
+ build: default_h4390ef5_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libclang13-19.1.4-default_h4390ef5_0.conda
+ sha256: 0fa9002c69a84fcb4fd99795afe8ba8a8520ce8cd63b5cbd7c69dd5885dd05bf
+ md5: d3855a39eb67f4758cfb3b66728f7007
+ depends:
+ - libgcc >=13
+ - libllvm19 >=19.1.4,<19.2.0a0
+ - libstdcxx >=13
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 11611676
+ timestamp: 1732092200361
+- kind: conda
+ name: libclang13
+ version: 19.1.4
+ build: default_h81d93ff_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-19.1.4-default_h81d93ff_0.conda
+ sha256: 569ca21884f42254d92c48a606015cee8a63f67fc0adec5256e20307e4d3eafd
+ md5: 53801ed8433292054d0c0de929ad957a
+ depends:
+ - __osx >=11.0
+ - libcxx >=19.1.4
+ - libllvm19 >=19.1.4,<19.2.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 8457293
+ timestamp: 1732089456862
+- kind: conda
+ name: libclang13
+ version: 19.1.4
+ build: default_h9c6a7e4_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libclang13-19.1.4-default_h9c6a7e4_0.conda
+ sha256: 954e2c4cf8bd715246e79ad262261a5b33b2e67485dc5156520c2c5d9203f65b
+ md5: 6c450adae455c7d648856e8b0cfcebd6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libllvm19 >=19.1.4,<19.2.0a0
+ - libstdcxx >=13
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 11823523
+ timestamp: 1732088587561
+- kind: conda
+ name: libclang13
+ version: 19.1.4
+ build: default_ha5278ca_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libclang13-19.1.4-default_ha5278ca_0.conda
+ sha256: bca9feec153788a5ddca9f9580818c08d62032fd782d1f434d2c7d6ed337cc7e
+ md5: 6acaf8464e71abf0713a030e0eba8317
+ depends:
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zstd >=1.5.6,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 26752671
+ timestamp: 1732093480622
+- kind: conda
+ name: libclang13
+ version: 19.1.4
+ build: default_hf2b7afa_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libclang13-19.1.4-default_hf2b7afa_0.conda
+ sha256: ef12ca23cf5953cc1eee5dc0bb4243a329a751b77563ba62bdb07fa0dc3f1e26
+ md5: 5dc6186bd5d5f07e09eef6533d740aea
+ depends:
+ - __osx >=10.13
+ - libcxx >=19.1.4
+ - libllvm19 >=19.1.4,<19.2.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 8729041
+ timestamp: 1732088898100
+- kind: conda
+ name: libcups
+ version: 2.3.3
+ build: h405e4a8_4
+ build_number: 4
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcups-2.3.3-h405e4a8_4.conda
+ sha256: f9007d5ca44741de72f9d7be03e74c911b61af062ed7a3761594675f30f5890c
+ md5: d42c670b0c96c1795fd859d5e0275a55
+ depends:
+ - krb5 >=1.21.1,<1.22.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libzlib >=1.2.13,<2.0.0a0
+ license: Apache-2.0
+ license_family: Apache
+ size: 4551247
+ timestamp: 1689195336749
+- kind: conda
+ name: libcups
+ version: 2.3.3
+ build: h4637d8d_4
+ build_number: 4
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h4637d8d_4.conda
+ sha256: bc67b9b21078c99c6bd8595fe7e1ed6da1f721007726e717f0449de7032798c4
+ md5: d4529f4dff3057982a7617c7ac58fde3
+ depends:
+ - krb5 >=1.21.1,<1.22.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libzlib >=1.2.13,<2.0.0a0
+ license: Apache-2.0
+ license_family: Apache
+ size: 4519402
+ timestamp: 1689195353551
+- kind: conda
+ name: libcurl
+ version: 8.10.1
+ build: h13a7ad3_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.10.1-h13a7ad3_0.conda
+ sha256: 983a977c5627f975a930542c8aabb46089ec6ea72f28d9c4d3ee8eafaf2fc25a
+ md5: d84030d0863ffe7dea00b9a807fee961
+ depends:
+ - __osx >=11.0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libnghttp2 >=1.58.0,<2.0a0
+ - libssh2 >=1.11.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: curl
+ license_family: MIT
+ size: 379948
+ timestamp: 1726660033582
+- kind: conda
+ name: libcurl
+ version: 8.10.1
+ build: h1ee3ff0_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.10.1-h1ee3ff0_0.conda
+ sha256: dfbac497c4fee74f67391f9c4a40cab559468b7d04ff9fad4b404a26b5e1d5b8
+ md5: 7ead800e22ff7b4bccb73e42a8f7a0f4
+ depends:
+ - krb5 >=1.21.3,<1.22.0a0
+ - libssh2 >=1.11.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: curl
+ license_family: MIT
+ size: 342388
+ timestamp: 1726660508261
+- kind: conda
+ name: libcurl
+ version: 8.10.1
+ build: h3ec0cbf_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.10.1-h3ec0cbf_0.conda
+ sha256: 7c4983001c727f713b4448280ed4803d301087c184cd2819ba0b788ca62b73d1
+ md5: f43539295c4e0cd15202d41bc72b8a26
+ depends:
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libnghttp2 >=1.58.0,<2.0a0
+ - libssh2 >=1.11.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: curl
+ license_family: MIT
+ size: 439171
+ timestamp: 1726659843118
+- kind: conda
+ name: libcurl
+ version: 8.10.1
+ build: h58e7537_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.10.1-h58e7537_0.conda
+ sha256: 662fe145459ed58dee882e525588d1da4dcc4cbd10cfca0725d1fc3840461798
+ md5: 6c8669d8228a2bbd0283911cc6d6726e
+ depends:
+ - __osx >=10.13
+ - krb5 >=1.21.3,<1.22.0a0
+ - libnghttp2 >=1.58.0,<2.0a0
+ - libssh2 >=1.11.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: curl
+ license_family: MIT
+ size: 402588
+ timestamp: 1726660264675
+- kind: conda
+ name: libcurl
+ version: 8.10.1
+ build: hbbe4b11_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda
+ sha256: 54e6114dfce566c3a22ad3b7b309657e3600cdb668398e95f1301360d5d52c99
+ md5: 6e801c50a40301f6978c53976917b277
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libnghttp2 >=1.58.0,<2.0a0
+ - libssh2 >=1.11.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: curl
+ license_family: MIT
+ size: 424900
+ timestamp: 1726659794676
+- kind: conda
+ name: libcxx
+ version: 19.1.4
+ build: ha82da77_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.4-ha82da77_0.conda
+ sha256: 342896ebc1d6acbf022ca6df006a936b9a472579e91e3c502cb1f52f218b78e9
+ md5: a2d3d484d95889fccdd09498d8f6bf9a
+ depends:
+ - __osx >=11.0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 520678
+ timestamp: 1732060258949
+- kind: conda
+ name: libcxx
+ version: 19.1.4
+ build: hf95d169_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-19.1.4-hf95d169_0.conda
+ sha256: 48c6d0ab9dd0c66693f79f4a032cd9ebb64fb88329dfa747aeac5299f9b3f33b
+ md5: 5f23923c08151687ff2fc3002b0a7234
+ depends:
+ - __osx >=10.13
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 529010
+ timestamp: 1732060320836
+- kind: conda
+ name: libcxx-devel
+ version: 17.0.6
+ build: h86353a2_6
+ build_number: 6
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-17.0.6-h86353a2_6.conda
+ sha256: 914cc589f356dfc64ddc4f0dc305fce401356b688730b62e24b4f52358595a58
+ md5: 555639d6c7a4c6838cec6e50453fea43
+ depends:
+ - libcxx >=17.0.6
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 820887
+ timestamp: 1725403726157
+- kind: conda
+ name: libcxx-devel
+ version: 17.0.6
+ build: h8f8a49f_6
+ build_number: 6
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-17.0.6-h8f8a49f_6.conda
+ sha256: 3b23efafbf36b8d30bbd2f421e189ef4eb805ac29e65249c174391c23afd665b
+ md5: faa013d493ffd2d5f2d2fc6df5f98f2e
+ depends:
+ - libcxx >=17.0.6
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 822480
+ timestamp: 1725403649896
+- kind: conda
+ name: libdeflate
+ version: '1.22'
+ build: h00291cd_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.22-h00291cd_0.conda
+ sha256: 681035346974c3315685dc40898e26f65f1c00cbb0b5fd80cc2599e207a34b31
+ md5: a15785ccc62ae2a8febd299424081efb
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 70407
+ timestamp: 1728177128525
+- kind: conda
+ name: libdeflate
+ version: '1.22'
+ build: h2466b09_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.22-h2466b09_0.conda
+ sha256: 579c634b7de8869cb1d76eccd4c032dc275d5a017212128502ea4dc828a5b361
+ md5: a3439ce12d4e3cd887270d9436f9a4c8
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 155506
+ timestamp: 1728177485361
+- kind: conda
+ name: libdeflate
+ version: '1.22'
+ build: h86ecc28_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.22-h86ecc28_0.conda
+ sha256: 986207f130703897300ddc3637c52e86a5b21c735fe384bf48554d9a6d91c56d
+ md5: ff6a44e8b1707d02be2fe9a36ea88d4a
+ depends:
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 69601
+ timestamp: 1728177137503
+- kind: conda
+ name: libdeflate
+ version: '1.22'
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.22-hb9d3cd8_0.conda
+ sha256: 780f0530a3adfc1497ba49d626931c6afc978c540e1abfde6ccd57128ded6ad6
+ md5: b422943d5d772b7cc858b36ad2a92db5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 72242
+ timestamp: 1728177071251
+- kind: conda
+ name: libdeflate
+ version: '1.22'
+ build: hd74edd7_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.22-hd74edd7_0.conda
+ sha256: 3552894ca62bebc33d05982937cda25a4fa19e56a82af2ff20944ff4c2532fda
+ md5: 2d3e3f3d8ab315748420ef58d5a3ae0f
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 54089
+ timestamp: 1728177149927
+- kind: conda
+ name: libdrm
+ version: 2.4.123
+ build: h86ecc28_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libdrm-2.4.123-h86ecc28_0.conda
+ sha256: 9a5dc3585a6468b266fc80e21fd2b6f3d8236818ee3fa853b6972ab0a44d7804
+ md5: 4e3c67f6999ea7ccac41611f930d19d4
+ depends:
+ - libgcc-ng >=13
+ - libpciaccess >=0.18,<0.19.0a0
+ license: MIT
+ license_family: MIT
+ size: 273843
+ timestamp: 1724719291504
+- kind: conda
+ name: libdrm
+ version: 2.4.123
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.123-hb9d3cd8_0.conda
+ sha256: 5f274243fc7480b721a4ed6623c72d07b86a508a1363a85f0f16451ab655ace8
+ md5: ee605e794bdc14e2b7f84c4faa0d8c2c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=13
+ - libpciaccess >=0.18,<0.19.0a0
+ license: MIT
+ license_family: MIT
+ size: 303108
+ timestamp: 1724719521496
+- kind: conda
+ name: libdrm-cos6-x86_64
+ version: 2.4.65
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libdrm-cos6-x86_64-2.4.65-h9b0a68f_1105.tar.bz2
+ sha256: cb560fe03609a58a04157ba6eee7cb26c1e34a955de5a1c2e54b037be3a48450
+ md5: f00f5e13f771e4e973b60860e6650186
+ depends:
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 135872
+ timestamp: 1627477794457
+- kind: conda
+ name: libdrm-cos7-aarch64
+ version: 2.4.97
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libdrm-cos7-aarch64-2.4.97-ha675448_1106.tar.bz2
+ sha256: 43ed4e6542b0f512464664ed39adcb56c31ca0eac06aa92cfb3040b29f590dc3
+ md5: 5adf3f3e00b981ec5259836b3f5db422
+ depends:
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 110468
+ timestamp: 1726571625258
+- kind: conda
+ name: libedit
+ version: 3.1.20191231
+ build: h0678c8f_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2
+ sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095
+ md5: 6016a8a1d0e63cac3de2c352cd40208b
+ depends:
+ - ncurses >=6.2,<7.0.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 105382
+ timestamp: 1597616576726
+- kind: conda
+ name: libedit
+ version: 3.1.20191231
+ build: hc8eb9b7_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
+ sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca
+ md5: 30e4362988a2623e9eb34337b83e01f9
+ depends:
+ - ncurses >=6.2,<7.0.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 96607
+ timestamp: 1597616630749
+- kind: conda
+ name: libedit
+ version: 3.1.20191231
+ build: he28a2e2_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
+ sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf
+ md5: 4d331e44109e3f0e19b4cb8f9b82f3e1
+ depends:
+ - libgcc-ng >=7.5.0
+ - ncurses >=6.2,<7.0.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 123878
+ timestamp: 1597616541093
+- kind: conda
+ name: libedit
+ version: 3.1.20191231
+ build: he28a2e2_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
+ sha256: debc31fb2f07ba2b0363f90e455873670734082822926ba4a9556431ec0bf36d
+ md5: 29371161d77933a54fccf1bb66b96529
+ depends:
+ - libgcc-ng >=7.5.0
+ - ncurses >=6.2,<7.0.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 134104
+ timestamp: 1597617110769
+- kind: conda
+ name: libegl
+ version: 1.7.0
+ build: ha4b6fd6_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda
+ sha256: 7fd5408d359d05a969133e47af580183fbf38e2235b562193d427bb9dad79723
+ md5: c151d5eb730e9b7480e6d48c0fc44048
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ license: LicenseRef-libglvnd
+ size: 44840
+ timestamp: 1731330973553
+- kind: conda
+ name: libegl
+ version: 1.7.0
+ build: hd24410f_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libegl-1.7.0-hd24410f_2.conda
+ sha256: 8962abf38a58c235611ce356b9899f6caeb0352a8bce631b0bcc59352fda455e
+ md5: cf105bce884e4ef8c8ccdca9fe6695e7
+ depends:
+ - libglvnd 1.7.0 hd24410f_2
+ license: LicenseRef-libglvnd
+ size: 53551
+ timestamp: 1731330990477
+- kind: conda
+ name: libev
+ version: '4.33'
+ build: h10d778d_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda
+ sha256: 0d238488564a7992942aa165ff994eca540f687753b4f0998b29b4e4d030ff43
+ md5: 899db79329439820b7e8f8de41bca902
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 106663
+ timestamp: 1702146352558
+- kind: conda
+ name: libev
+ version: '4.33'
+ build: h31becfc_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda
+ sha256: 973af77e297f1955dd1f69c2cbdc5ab9dfc88388a5576cd152cda178af0fd006
+ md5: a9a13cb143bbaa477b1ebaefbe47a302
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 115123
+ timestamp: 1702146237623
+- kind: conda
+ name: libev
+ version: '4.33'
+ build: h93a5062_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
+ sha256: 95cecb3902fbe0399c3a7e67a5bed1db813e5ab0e22f4023a5e0f722f2cc214f
+ md5: 36d33e440c31857372a72137f78bacf5
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 107458
+ timestamp: 1702146414478
+- kind: conda
+ name: libev
+ version: '4.33'
+ build: hd590300_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4
+ md5: 172bf1cd1ff8629f2b1179945ed45055
+ depends:
+ - libgcc-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 112766
+ timestamp: 1702146165126
+- kind: conda
+ name: libexpat
+ version: 2.6.4
+ build: h240833e_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.4-h240833e_0.conda
+ sha256: d10f43d0c5df6c8cf55259bce0fe14d2377eed625956cddce06f58827d288c59
+ md5: 20307f4049a735a78a29073be1be2626
+ depends:
+ - __osx >=10.13
+ constrains:
+ - expat 2.6.4.*
+ license: MIT
+ license_family: MIT
+ size: 70758
+ timestamp: 1730967204736
+- kind: conda
+ name: libexpat
+ version: 2.6.4
+ build: h286801f_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda
+ sha256: e42ab5ace927ee7c84e3f0f7d813671e1cf3529f5f06ee5899606630498c2745
+ md5: 38d2656dd914feb0cab8c629370768bf
+ depends:
+ - __osx >=11.0
+ constrains:
+ - expat 2.6.4.*
+ license: MIT
+ license_family: MIT
+ size: 64693
+ timestamp: 1730967175868
+- kind: conda
+ name: libexpat
+ version: 2.6.4
+ build: h5888daf_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
+ sha256: 56541b98447b58e52d824bd59d6382d609e11de1f8adf20b23143e353d2b8d26
+ md5: db833e03127376d461e1e13e76f09b6c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - expat 2.6.4.*
+ license: MIT
+ license_family: MIT
+ size: 73304
+ timestamp: 1730967041968
+- kind: conda
+ name: libexpat
+ version: 2.6.4
+ build: h5ad3122_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.6.4-h5ad3122_0.conda
+ sha256: f42e758009ba9db90d1fe7992bc3e60d0c52f71fb20923375d2c44ae69a5a2b3
+ md5: f1b3fab36861b3ce945a13f0dfdfc688
+ depends:
+ - libgcc >=13
+ constrains:
+ - expat 2.6.4.*
+ license: MIT
+ license_family: MIT
+ size: 72345
+ timestamp: 1730967203789
+- kind: conda
+ name: libexpat
+ version: 2.6.4
+ build: he0c23c2_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda
+ sha256: 0c0447bf20d1013d5603499de93a16b6faa92d7ead870d96305c0f065b6a5a12
+ md5: eb383771c680aa792feb529eaf9df82f
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - expat 2.6.4.*
+ license: MIT
+ license_family: MIT
+ size: 139068
+ timestamp: 1730967442102
+- kind: conda
+ name: libffi
+ version: 3.4.2
+ build: h0d85af4_5
+ build_number: 5
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2
+ sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f
+ md5: ccb34fb14960ad8b125962d3d79b31a9
+ license: MIT
+ license_family: MIT
+ size: 51348
+ timestamp: 1636488394370
+- kind: conda
+ name: libffi
+ version: 3.4.2
+ build: h3422bc3_5
+ build_number: 5
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2
+ sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca
+ md5: 086914b672be056eb70fd4285b6783b6
+ license: MIT
+ license_family: MIT
+ size: 39020
+ timestamp: 1636488587153
+- kind: conda
+ name: libffi
+ version: 3.4.2
+ build: h3557bc0_5
+ build_number: 5
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libffi-3.4.2-h3557bc0_5.tar.bz2
+ sha256: 7e9258a102480757fe3faeb225a3ca04dffd10fecd2a958c65cdb4cdf75f2c3c
+ md5: dddd85f4d52121fab0a8b099c5e06501
+ depends:
+ - libgcc-ng >=9.4.0
+ license: MIT
+ license_family: MIT
+ size: 59450
+ timestamp: 1636488255090
+- kind: conda
+ name: libffi
+ version: 3.4.2
+ build: h7f98852_5
+ build_number: 5
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
+ sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
+ md5: d645c6d2ac96843a2bfaccd2d62b3ac3
+ depends:
+ - libgcc-ng >=9.4.0
+ license: MIT
+ license_family: MIT
+ size: 58292
+ timestamp: 1636488182923
+- kind: conda
+ name: libffi
+ version: 3.4.2
+ build: h8ffe710_5
+ build_number: 5
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2
+ sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5
+ md5: 2c96d1b6915b408893f9472569dee135
+ depends:
+ - vc >=14.1,<15.0a0
+ - vs2015_runtime >=14.16.27012
+ license: MIT
+ license_family: MIT
+ size: 42063
+ timestamp: 1636489106777
+- kind: conda
+ name: libflang
+ version: 19.1.4
+ build: he0c23c2_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libflang-19.1.4-he0c23c2_0.conda
+ sha256: 4db846feeba16968bbbf5a615f2536e8d2d2bd0b1c36b6a45b47a6a0d758170f
+ md5: 3ab7fed52b5a1935fa35add8c5a6406e
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: APACHE
+ size: 1164314
+ timestamp: 1732123778818
+- kind: conda
+ name: libgcc
+ version: 14.2.0
+ build: h77fa898_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda
+ sha256: 53eb8a79365e58849e7b1a068d31f4f9e718dc938d6f2c03e960345739a03569
+ md5: 3cb76c3f10d3bc7f1105b2fc9db984df
+ depends:
+ - _libgcc_mutex 0.1 conda_forge
+ - _openmp_mutex >=4.5
+ constrains:
+ - libgomp 14.2.0 h77fa898_1
+ - libgcc-ng ==14.2.0=*_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 848745
+ timestamp: 1729027721139
+- kind: conda
+ name: libgcc
+ version: 14.2.0
+ build: he277a41_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-14.2.0-he277a41_1.conda
+ sha256: 5d56757ccad208c79214395b00d006d8d18929a4ba49c47bd9460789a7620943
+ md5: 511b511c5445e324066c3377481bcab8
+ depends:
+ - _openmp_mutex >=4.5
+ constrains:
+ - libgcc-ng ==14.2.0=*_1
+ - libgomp 14.2.0 he277a41_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 535243
+ timestamp: 1729089435134
+- kind: conda
+ name: libgcc-devel_linux-64
+ version: 13.3.0
+ build: h84ea5a7_101
+ build_number: 101
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-13.3.0-h84ea5a7_101.conda
+ sha256: 027cfb011328a108bc44f512a2dec6d954db85709e0b79b748c3392f85de0c64
+ md5: 0ce69d40c142915ac9734bc6134e514a
+ depends:
+ - __unix
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 2598313
+ timestamp: 1724801050802
+- kind: conda
+ name: libgcc-devel_linux-aarch64
+ version: 13.3.0
+ build: h0c07274_101
+ build_number: 101
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-aarch64-13.3.0-h0c07274_101.conda
+ sha256: 2e4b691f811c1bddc72984e09d605c8b45532ec32307c3be007a84fac698bee2
+ md5: 4729642346d35283ed198d32ecc41206
+ depends:
+ - __unix
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 2063611
+ timestamp: 1724801861173
+- kind: conda
+ name: libgcc-ng
+ version: 14.2.0
+ build: h69a702a_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda
+ sha256: 3a76969c80e9af8b6e7a55090088bc41da4cffcde9e2c71b17f44d37b7cb87f7
+ md5: e39480b9ca41323497b05492a63bc35b
+ depends:
+ - libgcc 14.2.0 h77fa898_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 54142
+ timestamp: 1729027726517
+- kind: conda
+ name: libgcc-ng
+ version: 14.2.0
+ build: he9431aa_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgcc-ng-14.2.0-he9431aa_1.conda
+ sha256: 9b5cf168a6c7361cae869cb74b716766ee7c6d6b3f6172b32ba9bf91135efdc4
+ md5: 0694c249c61469f2c0f7e2990782af21
+ depends:
+ - libgcc 14.2.0 he277a41_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 54104
+ timestamp: 1729089444587
+- kind: conda
+ name: libgd
+ version: 2.3.3
+ build: h085315d_10
+ build_number: 10
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libgd-2.3.3-h085315d_10.conda
+ sha256: 301b6da73cef796766945299a3dea776728703298aac90827aa6bf15134bc03c
+ md5: ac0cda3730da6013715a0d9e8e677d83
+ depends:
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - xorg-libxpm >=3.5.17,<4.0a0
+ license: GD
+ license_family: BSD
+ size: 344264
+ timestamp: 1722928697150
+- kind: conda
+ name: libgd
+ version: 2.3.3
+ build: h2e77e4f_10
+ build_number: 10
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libgd-2.3.3-h2e77e4f_10.conda
+ sha256: b5ae19078f96912058d0f96120bf56dae11a417178cfcf220219486778ef868d
+ md5: a87f68ea91c66e1a9fb515f6aeba6ba2
+ depends:
+ - __osx >=10.13
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libiconv >=1.17,<2.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: GD
+ license_family: BSD
+ size: 200456
+ timestamp: 1722928713359
+- kind: conda
+ name: libgd
+ version: 2.3.3
+ build: h6818b27_10
+ build_number: 10
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgd-2.3.3-h6818b27_10.conda
+ sha256: 4c8e3609db541a4e7da428b32da27f395a2604e2feb43dfebc5ee0317d304e74
+ md5: 33725322288f22cd4e29db5356653d76
+ depends:
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libgcc-ng >=12
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: GD
+ license_family: BSD
+ size: 227975
+ timestamp: 1722928173564
+- kind: conda
+ name: libgd
+ version: 2.3.3
+ build: hac1b3a8_10
+ build_number: 10
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgd-2.3.3-hac1b3a8_10.conda
+ sha256: d15beaa2e862a09526e704f22f7d0b7fa73b114b868106dd686e167b9d65558e
+ md5: c9e450ce5ced76f107c494fbd37325f5
+ depends:
+ - __osx >=11.0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libiconv >=1.17,<2.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: GD
+ license_family: BSD
+ size: 200309
+ timestamp: 1722928354606
+- kind: conda
+ name: libgd
+ version: 2.3.3
+ build: hd3e95f3_10
+ build_number: 10
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgd-2.3.3-hd3e95f3_10.conda
+ sha256: b0fa27d4d09fb24750c04e89dbd0aee898dc028bde99e62621065a9bde43efe8
+ md5: 30ee3a29c84cf7b842a8c5828c4b7c13
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - icu >=75.1,<76.0a0
+ - libexpat >=2.6.2,<3.0a0
+ - libgcc-ng >=12
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: GD
+ license_family: BSD
+ size: 225113
+ timestamp: 1722928278395
+- kind: conda
+ name: libgettextpo
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-0.22.5-h8414b35_3.conda
+ sha256: bc446fad58155e96a01b28e99254415c2151bdddf57f9a2c00c44e6f0298bb62
+ md5: c8cd7295cfb7bda5cbabea4fef904349
+ depends:
+ - __osx >=11.0
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 h8414b35_3
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 159800
+ timestamp: 1723627007035
+- kind: conda
+ name: libgettextpo
+ version: 0.22.5
+ build: hdfe23c8_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-0.22.5-hdfe23c8_3.conda
+ sha256: 8f7631d03a093272a5a8423181ac2c66514503e082e5494a2e942737af8a34ad
+ md5: ba6eeccaee150e24a544be8ae71aeca1
+ depends:
+ - __osx >=10.13
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 hdfe23c8_3
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 172305
+ timestamp: 1723626852373
+- kind: conda
+ name: libgettextpo-devel
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-devel-0.22.5-h8414b35_3.conda
+ sha256: ea3ca757bf11ed25965b39466b50411c7c2a43f3b90ab4a36fc0ef43f7ab98ac
+ md5: 7074dc1c9aae1bb5d7bccb4ff03746ca
+ depends:
+ - __osx >=11.0
+ - libgettextpo 0.22.5 h8414b35_3
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 h8414b35_3
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 37153
+ timestamp: 1723627048279
+- kind: conda
+ name: libgettextpo-devel
+ version: 0.22.5
+ build: hdfe23c8_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-devel-0.22.5-hdfe23c8_3.conda
+ sha256: 8ea6bcba8c002f547edfd51e27e1e81465c8838033877c56439d20bcbc8f32a3
+ md5: efbba22e1657ef214c9ce9105b2ca562
+ depends:
+ - __osx >=10.13
+ - libgettextpo 0.22.5 hdfe23c8_3
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 hdfe23c8_3
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 36977
+ timestamp: 1723626874373
+- kind: conda
+ name: libgfortran
+ version: 5.0.0
+ build: 13_2_0_h97931a8_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda
+ sha256: 4874422e567b68334705c135c17e5acdca1404de8255673ce30ad3510e00be0d
+ md5: 0b6e23a012ee7a9a5f6b244f5a92c1d5
+ depends:
+ - libgfortran5 13.2.0 h2873a65_3
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 110106
+ timestamp: 1707328956438
+- kind: conda
+ name: libgfortran
+ version: 5.0.0
+ build: 13_2_0_hd922786_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda
+ sha256: 44e541b4821c96b28b27fef5630883a60ce4fee91fd9c79f25a199f8f73f337b
+ md5: 4a55d9e169114b2b90d3ec4604cd7bbf
+ depends:
+ - libgfortran5 13.2.0 hf226fd6_3
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 110233
+ timestamp: 1707330749033
+- kind: conda
+ name: libgfortran
+ version: 14.2.0
+ build: h69a702a_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda
+ sha256: fc9e7f22a17faf74da904ebfc4d88699013d2992e55505e4aa0eb01770290977
+ md5: f1fd30127802683586f768875127a987
+ depends:
+ - libgfortran5 14.2.0 hd5240d6_1
+ constrains:
+ - libgfortran-ng ==14.2.0=*_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 53997
+ timestamp: 1729027752995
+- kind: conda
+ name: libgfortran
+ version: 14.2.0
+ build: he9431aa_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_1.conda
+ sha256: cb66e411fa32a5c6040f4e5e2a63c00897aae4c3133a9c004c2e929ccf19575b
+ md5: 0294b92d2f47a240bebb1e3336b495f1
+ depends:
+ - libgfortran5 14.2.0 hb6113d0_1
+ constrains:
+ - libgfortran-ng ==14.2.0=*_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 54105
+ timestamp: 1729089471124
+- kind: conda
+ name: libgfortran-devel_osx-64
+ version: 13.2.0
+ build: h80d4556_3
+ build_number: 3
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-64-13.2.0-h80d4556_3.conda
+ sha256: 841525b5e40b6a0fc7deb325721313cb26b6b50c2dcc202a508b746a851d0c1b
+ md5: 3a689f0d733e67828ad00eac5f3cf26e
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 457364
+ timestamp: 1707328861468
+- kind: conda
+ name: libgfortran-devel_osx-arm64
+ version: 13.2.0
+ build: h5d7a38c_3
+ build_number: 3
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-arm64-13.2.0-h5d7a38c_3.conda
+ sha256: 932daa12d7af965db25cd08485031ca857a91886c80d56b02365d4636729362b
+ md5: 54386854330df39e779228c7922379a5
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 1964427
+ timestamp: 1707330674197
+- kind: conda
+ name: libgfortran-ng
+ version: 14.2.0
+ build: h69a702a_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.2.0-h69a702a_1.conda
+ sha256: 423f1e2403f0c665748e42d335e421e53fd03c08d457cfb6f360d329d9459851
+ md5: 0a7f4cd238267c88e5d69f7826a407eb
+ depends:
+ - libgfortran 14.2.0 h69a702a_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 54106
+ timestamp: 1729027945817
+- kind: conda
+ name: libgfortran-ng
+ version: 14.2.0
+ build: he9431aa_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-ng-14.2.0-he9431aa_1.conda
+ sha256: cdd5bae1e33d6bdafe837c2e6ea594faf5bb7f880272ac1984468c7967adff41
+ md5: 5e90005d310d69708ba0aa7f4fed1de6
+ depends:
+ - libgfortran 14.2.0 he9431aa_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 54111
+ timestamp: 1729089714658
+- kind: conda
+ name: libgfortran5
+ version: 13.2.0
+ build: h2873a65_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda
+ sha256: da3db4b947e30aec7596a3ef92200d17e774cccbbf7efc47802529a4ca5ca31b
+ md5: e4fb4d23ec2870ff3c40d10afe305aec
+ depends:
+ - llvm-openmp >=8.0.0
+ constrains:
+ - libgfortran 5.0.0 13_2_0_*_3
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 1571379
+ timestamp: 1707328880361
+- kind: conda
+ name: libgfortran5
+ version: 13.2.0
+ build: hf226fd6_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda
+ sha256: bafc679eedb468a86aa4636061c55966186399ee0a04b605920d208d97ac579a
+ md5: 66ac81d54e95c534ae488726c1f698ea
+ depends:
+ - llvm-openmp >=8.0.0
+ constrains:
+ - libgfortran 5.0.0 13_2_0_*_3
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 997381
+ timestamp: 1707330687590
+- kind: conda
+ name: libgfortran5
+ version: 14.2.0
+ build: hb6113d0_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_1.conda
+ sha256: a87ff46d19916403cbf68cf1d785bf56b4d1ab7b2552468d2ea775d70782493f
+ md5: fc068e11b10e18f184e027782baa12b6
+ depends:
+ - libgcc >=14.2.0
+ constrains:
+ - libgfortran 14.2.0
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 1102158
+ timestamp: 1729089452640
+- kind: conda
+ name: libgfortran5
+ version: 14.2.0
+ build: hd5240d6_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda
+ sha256: d149a37ca73611e425041f33b9d8dbed6e52ec506fe8cc1fc0ee054bddeb6d5d
+ md5: 9822b874ea29af082e5d36098d25427d
+ depends:
+ - libgcc >=14.2.0
+ constrains:
+ - libgfortran 14.2.0
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 1462645
+ timestamp: 1729027735353
+- kind: conda
+ name: libgl
+ version: 1.7.0
+ build: ha4b6fd6_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda
+ sha256: dc2752241fa3d9e40ce552c1942d0a4b5eeb93740c9723873f6fcf8d39ef8d2d
+ md5: 928b8be80851f5d8ffb016f9c81dae7a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ - libglx 1.7.0 ha4b6fd6_2
+ license: LicenseRef-libglvnd
+ size: 134712
+ timestamp: 1731330998354
+- kind: conda
+ name: libgl
+ version: 1.7.0
+ build: hd24410f_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgl-1.7.0-hd24410f_2.conda
+ sha256: 3e954380f16255d1c8ae5da3bd3044d3576a0e1ac2e3c3ff2fe8f2f1ad2e467a
+ md5: 0d00176464ebb25af83d40736a2cd3bb
+ depends:
+ - libglvnd 1.7.0 hd24410f_2
+ - libglx 1.7.0 hd24410f_2
+ license: LicenseRef-libglvnd
+ size: 145442
+ timestamp: 1731331005019
+- kind: conda
+ name: libglib
+ version: 2.82.2
+ build: h07bd6cf_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.82.2-h07bd6cf_0.conda
+ sha256: 101fb31c509d6a69ac5d612b51d4088ddbc675fca18cf0c3589cfee26cd01ca0
+ md5: 890783f64502fa6bfcdc723cfbf581b4
+ depends:
+ - __osx >=11.0
+ - libffi >=3.4,<4.0a0
+ - libiconv >=1.17,<2.0a0
+ - libintl >=0.22.5,<1.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ constrains:
+ - glib 2.82.2 *_0
+ license: LGPL-2.1-or-later
+ size: 3635416
+ timestamp: 1729191799117
+- kind: conda
+ name: libglib
+ version: 2.82.2
+ build: h2ff4ddf_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.82.2-h2ff4ddf_0.conda
+ sha256: 49ee9401d483a76423461c50dcd37f91d070efaec7e4dc2828d8cdd2ce694231
+ md5: 13e8e54035ddd2b91875ba399f0f7c04
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libffi >=3.4,<4.0a0
+ - libgcc >=13
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ constrains:
+ - glib 2.82.2 *_0
+ license: LGPL-2.1-or-later
+ size: 3931898
+ timestamp: 1729191404130
+- kind: conda
+ name: libglib
+ version: 2.82.2
+ build: h7025463_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libglib-2.82.2-h7025463_0.conda
+ sha256: 7dfbf492b736f8d379f8c3b32a823f0bf2167ff69963e4c940339b146a04c54a
+ md5: 3e379c1b908a7101ecbc503def24613f
+ depends:
+ - libffi >=3.4,<4.0a0
+ - libiconv >=1.17,<2.0a0
+ - libintl >=0.22.5,<1.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - glib 2.82.2 *_0
+ license: LGPL-2.1-or-later
+ size: 3810166
+ timestamp: 1729192227078
+- kind: conda
+ name: libglib
+ version: 2.82.2
+ build: hb6ef654_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.82.2-hb6ef654_0.conda
+ sha256: d782be2d8d6784f0b8584ca3cfa93357cddc71b0975560a2bcabd174dac60fff
+ md5: 2e0511f82f1481210f148e1205fe2482
+ depends:
+ - __osx >=10.13
+ - libffi >=3.4,<4.0a0
+ - libiconv >=1.17,<2.0a0
+ - libintl >=0.22.5,<1.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ constrains:
+ - glib 2.82.2 *_0
+ license: LGPL-2.1-or-later
+ size: 3692367
+ timestamp: 1729191628049
+- kind: conda
+ name: libglib
+ version: 2.82.2
+ build: hc486b8e_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libglib-2.82.2-hc486b8e_0.conda
+ sha256: 6797d24de7acd298f81a86078c64e4f3fea6d551a3e8892205c9e72a37a7cc3c
+ md5: 47f6d85fe47b865e56c539f2ba5f4dad
+ depends:
+ - libffi >=3.4,<4.0a0
+ - libgcc >=13
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ constrains:
+ - glib 2.82.2 *_0
+ license: LGPL-2.1-or-later
+ size: 4020802
+ timestamp: 1729191545578
+- kind: conda
+ name: libglu
+ version: 9.0.3
+ build: h03adeef_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.3-h03adeef_0.conda
+ sha256: cabd78b5ede1f3f161037d3a6cfb6b8a262ec474f9408859c364ef55ba778097
+ md5: b1df5affe904efe82ef890826b68881d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libdrm >=2.4.123,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libstdcxx >=13
+ - libxcb >=1.17.0,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxxf86vm >=1.1.5,<2.0a0
+ license: SGI-2
+ size: 325361
+ timestamp: 1731470892413
+- kind: conda
+ name: libglu
+ version: 9.0.3
+ build: hc7f7585_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libglu-9.0.3-hc7f7585_0.conda
+ sha256: fafab7ffb5522d6b788a9c83eab44a76750efa1a71380467599a458c4f7bf849
+ md5: cf9ff275dd030e5e8c9d336f5086da98
+ depends:
+ - libdrm >=2.4.123,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libstdcxx >=13
+ - libxcb >=1.17.0,<2.0a0
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxdmcp >=1.1.5,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxxf86vm >=1.1.5,<2.0a0
+ license: SGI-2
+ size: 317433
+ timestamp: 1731470978326
+- kind: conda
+ name: libglvnd
+ version: 1.7.0
+ build: ha4b6fd6_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda
+ sha256: 1175f8a7a0c68b7f81962699751bb6574e6f07db4c9f72825f978e3016f46850
+ md5: 434ca7e50e40f4918ab701e3facd59a0
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ license: LicenseRef-libglvnd
+ size: 132463
+ timestamp: 1731330968309
+- kind: conda
+ name: libglvnd
+ version: 1.7.0
+ build: hd24410f_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libglvnd-1.7.0-hd24410f_2.conda
+ sha256: 57ec3898a923d4bcc064669e90e8abfc4d1d945a13639470ba5f3748bd3090da
+ md5: 9e115653741810778c9a915a2f8439e7
+ license: LicenseRef-libglvnd
+ size: 152135
+ timestamp: 1731330986070
+- kind: conda
+ name: libglvnd-cos7-aarch64
+ version: 1.0.1
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libglvnd-cos7-aarch64-1.0.1-ha675448_1106.tar.bz2
+ sha256: 7b98dad41277b130a7f49a3a46094c3d9fa54bd5adac7b46d322b4ea5eb4331c
+ md5: 252273b7e6c71f51b0db597a46b991dc
+ depends:
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 127163
+ timestamp: 1726577722203
+- kind: conda
+ name: libglvnd-glx-cos7-aarch64
+ version: 1.0.1
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libglvnd-glx-cos7-aarch64-1.0.1-ha675448_1106.tar.bz2
+ sha256: e34c221c5ee2ad08789d3c656dc347f0be472a50752d1d5bc8abaf7067104d8a
+ md5: 4ffb207537e29036a555ac48aa4e138e
+ depends:
+ - libglvnd-cos7-aarch64 ==1.0.1 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 176808
+ timestamp: 1726579609474
+- kind: conda
+ name: libglx
+ version: 1.7.0
+ build: ha4b6fd6_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda
+ sha256: 2d35a679624a93ce5b3e9dd301fff92343db609b79f0363e6d0ceb3a6478bfa7
+ md5: c8013e438185f33b13814c5c488acd5c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ - xorg-libx11 >=1.8.10,<2.0a0
+ license: LicenseRef-libglvnd
+ size: 75504
+ timestamp: 1731330988898
+- kind: conda
+ name: libglx
+ version: 1.7.0
+ build: hd24410f_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libglx-1.7.0-hd24410f_2.conda
+ sha256: 6591af640cb05a399fab47646025f8b1e1a06a0d4bbb4d2e320d6629b47a1c61
+ md5: 1d4269e233636148696a67e2d30dad2a
+ depends:
+ - libglvnd 1.7.0 hd24410f_2
+ - xorg-libx11 >=1.8.9,<2.0a0
+ license: LicenseRef-libglvnd
+ size: 77736
+ timestamp: 1731330998960
+- kind: conda
+ name: libgomp
+ version: 14.2.0
+ build: h77fa898_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
+ sha256: 1911c29975ec99b6b906904040c855772ccb265a1c79d5d75c8ceec4ed89cd63
+ md5: cc3573974587f12dda90d96e3e55a702
+ depends:
+ - _libgcc_mutex 0.1 conda_forge
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 460992
+ timestamp: 1729027639220
+- kind: conda
+ name: libgomp
+ version: 14.2.0
+ build: he277a41_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_1.conda
+ sha256: 5aa53874a5e57a00f2e0c2e2910684eb674429cd5fcb803619b226a73e89aedf
+ md5: 376f0e73abbda6d23c0cb749adc195ef
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 463521
+ timestamp: 1729089357313
+- kind: conda
+ name: libhiredis
+ version: 1.0.2
+ build: h05efe27_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libhiredis-1.0.2-h05efe27_0.tar.bz2
+ sha256: f8878068428e83acd4783186c57d51d963aa331e6aa1e14d01fe86dffa982cf3
+ md5: a87f068744fd20334cd41489eb163bee
+ depends:
+ - libgcc-ng >=9.4.0
+ - libgfortran-ng
+ - libgfortran5 >=9.4.0
+ - libstdcxx-ng >=9.4.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 145989
+ timestamp: 1633983079265
+- kind: conda
+ name: libhiredis
+ version: 1.0.2
+ build: h0e60522_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libhiredis-1.0.2-h0e60522_0.tar.bz2
+ sha256: 671f9ddab4cc4675e0a1e4a5c2a99c45ade031924556523fe999f13b22f23dc6
+ md5: f92ce316734c9fa1e18f05b49b67cd56
+ depends:
+ - vc >=14.1,<15.0a0
+ - vs2015_runtime >=14.16.27012
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 56988
+ timestamp: 1633982299028
+- kind: conda
+ name: libhiredis
+ version: 1.0.2
+ build: h2beb688_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libhiredis-1.0.2-h2beb688_0.tar.bz2
+ sha256: f5347083dad7527a5c1732fcf4df914e9b728aae6af6660856ac7954d28948be
+ md5: 524282b2c46c9dedf051b3bc2ae05494
+ depends:
+ - libcxx >=11.1.0
+ - libgfortran 5.*
+ - libgfortran5 >=9.3.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 53043
+ timestamp: 1633982331651
+- kind: conda
+ name: libhiredis
+ version: 1.0.2
+ build: h2cc385e_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libhiredis-1.0.2-h2cc385e_0.tar.bz2
+ sha256: ee39c69df4fb39cfe1139ac4f7405bb066eba773e11ba3ab7c33835be00c2e48
+ md5: b34907d3a81a3cd8095ee83d174c074a
+ depends:
+ - libgcc-ng >=9.4.0
+ - libgfortran-ng
+ - libgfortran5 >=9.4.0
+ - libstdcxx-ng >=9.4.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 147325
+ timestamp: 1633982069195
+- kind: conda
+ name: libhiredis
+ version: 1.0.2
+ build: hbec66e7_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libhiredis-1.0.2-hbec66e7_0.tar.bz2
+ sha256: a77b7097b3a557e8bc2c2a6e5257bde72e6c828ab8dd9996cec3895cc6cbcf9e
+ md5: 37ca71a16015b17397da4a5e6883f66f
+ depends:
+ - libcxx >=11.1.0
+ - libgfortran 5.*
+ - libgfortran5 >=11.0.1.dev0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 51945
+ timestamp: 1633982449355
+- kind: conda
+ name: libhwloc
+ version: 2.11.2
+ build: default_h0d58e46_1001
+ build_number: 1001
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda
+ sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69
+ md5: 804ca9e91bcaea0824a341d55b1684f2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libxml2 >=2.13.4,<3.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2423200
+ timestamp: 1731374922090
+- kind: conda
+ name: libhwloc
+ version: 2.11.2
+ build: default_h2c612a5_1001
+ build_number: 1001
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libhwloc-2.11.2-default_h2c612a5_1001.conda
+ sha256: 8c7bf410afb4f068063c718a8691de611eeb75f3d0c6122698c7961e90820445
+ md5: 8f42119cdfd1ac905e19f0eeebe9ccfa
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - libxml2 >=2.13.4,<3.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2436762
+ timestamp: 1731374851939
+- kind: conda
+ name: libhwloc
+ version: 2.11.2
+ build: default_h4cdd727_1001
+ build_number: 1001
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.11.2-default_h4cdd727_1001.conda
+ sha256: 989917281abf762b7e7a2b5968db2b6b0e89f46e704042ab8ec61a66951e0e0b
+ md5: 52bbb10ac083c563d00df035c94f9a63
+ depends:
+ - __osx >=10.13
+ - libcxx >=18
+ - libxml2 >=2.13.4,<3.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2359326
+ timestamp: 1731375067281
+- kind: conda
+ name: libhwloc
+ version: 2.11.2
+ build: default_hbce5d74_1001
+ build_number: 1001
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libhwloc-2.11.2-default_hbce5d74_1001.conda
+ sha256: dcac7144ad93cf3f276ec14c5553aa34de07443a9b1db6b3cd8d2e117b173c40
+ md5: ff6438cf47cff4899ae9900bf9253c41
+ depends:
+ - __osx >=11.0
+ - libcxx >=18
+ - libxml2 >=2.13.4,<3.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2332319
+ timestamp: 1731375088576
+- kind: conda
+ name: libhwloc
+ version: 2.11.2
+ build: default_hc8275d1_1000
+ build_number: 1000
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.2-default_hc8275d1_1000.conda
+ sha256: 29db3126762be449bf137d0ce6662e0c95ce79e83a0685359012bb86c9ceef0a
+ md5: 2805c2eb3a74df931b3e2b724fcb965e
+ depends:
+ - libxml2 >=2.12.7,<3.0a0
+ - pthreads-win32
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2389010
+ timestamp: 1727380221363
+- kind: conda
+ name: libiconv
+ version: '1.17'
+ build: h0d3ecfb_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda
+ sha256: bc7de5097b97bcafcf7deaaed505f7ce02f648aac8eccc0d5a47cc599a1d0304
+ md5: 69bda57310071cf6d2b86caf11573d2d
+ license: LGPL-2.1-only
+ size: 676469
+ timestamp: 1702682458114
+- kind: conda
+ name: libiconv
+ version: '1.17'
+ build: h31becfc_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda
+ sha256: a30e09d089cb75a0d5b8e5c354694c1317da98261185ed65aa3793e741060614
+ md5: 9a8eb13f14de7d761555a98712e6df65
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.1-only
+ size: 705787
+ timestamp: 1702684557134
+- kind: conda
+ name: libiconv
+ version: '1.17'
+ build: hcfcfb64_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda
+ sha256: 5f844dd19b046d43174ad80c6ea75b5d504020e3b63cfbc4ace97b8730d35c7b
+ md5: e1eb10b1cca179f2baa3601e4efc8712
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LGPL-2.1-only
+ size: 636146
+ timestamp: 1702682547199
+- kind: conda
+ name: libiconv
+ version: '1.17'
+ build: hd590300_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
+ sha256: 8ac2f6a9f186e76539439e50505d98581472fedb347a20e7d1f36429849f05c9
+ md5: d66573916ffcf376178462f1b61c941e
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.1-only
+ size: 705775
+ timestamp: 1702682170569
+- kind: conda
+ name: libiconv
+ version: '1.17'
+ build: hd75f5a5_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda
+ sha256: 23d4923baeca359423a7347c2ed7aaf48c68603df0cf8b87cc94a10b0d4e9a23
+ md5: 6c3628d047e151efba7cf08c5e54d1ca
+ license: LGPL-2.1-only
+ size: 666538
+ timestamp: 1702682713201
+- kind: conda
+ name: libintl
+ version: 0.22.5
+ build: h5728263_3
+ build_number: 3
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda
+ sha256: c7e4600f28bcada8ea81456a6530c2329312519efcf0c886030ada38976b0511
+ md5: 2cf0cf76cc15d360dfa2f17fd6cf9772
+ depends:
+ - libiconv >=1.17,<2.0a0
+ license: LGPL-2.1-or-later
+ size: 95568
+ timestamp: 1723629479451
+- kind: conda
+ name: libintl
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.22.5-h8414b35_3.conda
+ sha256: 7c1d238d4333af385e594c89ebcb520caad7ed83a735c901099ec0970a87a891
+ md5: 3b98ec32e91b3b59ad53dbb9c96dd334
+ depends:
+ - __osx >=11.0
+ - libiconv >=1.17,<2.0a0
+ license: LGPL-2.1-or-later
+ size: 81171
+ timestamp: 1723626968270
+- kind: conda
+ name: libintl
+ version: 0.22.5
+ build: hdfe23c8_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.22.5-hdfe23c8_3.conda
+ sha256: 0dbb662440a73e20742f12d88e51785a5a5117b8b150783a032b8818a8c043af
+ md5: 52d4d643ed26c07599736326c46bf12f
+ depends:
+ - __osx >=10.13
+ - libiconv >=1.17,<2.0a0
+ license: LGPL-2.1-or-later
+ size: 88086
+ timestamp: 1723626826235
+- kind: conda
+ name: libintl-devel
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-devel-0.22.5-h8414b35_3.conda
+ sha256: c9d1d4fdfb5775828e54bc9fb443b1a6de9319a04b81d1bac52c26114a763154
+ md5: 271646de11b018c66e81eb4c4717b291
+ depends:
+ - __osx >=11.0
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 h8414b35_3
+ license: LGPL-2.1-or-later
+ size: 38584
+ timestamp: 1723627022409
+- kind: conda
+ name: libintl-devel
+ version: 0.22.5
+ build: hdfe23c8_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libintl-devel-0.22.5-hdfe23c8_3.conda
+ sha256: 4913a20244520d6fae14452910613b652752982193a401482b7d699ee70bb13a
+ md5: aeb045f400ec2b068c6c142b16f87c7e
+ depends:
+ - __osx >=10.13
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 hdfe23c8_3
+ license: LGPL-2.1-or-later
+ size: 38249
+ timestamp: 1723626863306
+- kind: conda
+ name: libjpeg-turbo
+ version: 3.0.0
+ build: h0dc2134_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda
+ sha256: d9572fd1024adc374aae7c247d0f29fdf4b122f1e3586fe62acc18067f40d02f
+ md5: 72507f8e3961bc968af17435060b6dd6
+ constrains:
+ - jpeg <0.0.0a
+ license: IJG AND BSD-3-Clause AND Zlib
+ size: 579748
+ timestamp: 1694475265912
+- kind: conda
+ name: libjpeg-turbo
+ version: 3.0.0
+ build: h31becfc_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda
+ sha256: 675bc1f2a8581cd34a86c412663ec29c5f90c1d9f8d11866aa1ade5cdbdf8429
+ md5: ed24e702928be089d9ba3f05618515c6
+ depends:
+ - libgcc-ng >=12
+ constrains:
+ - jpeg <0.0.0a
+ license: IJG AND BSD-3-Clause AND Zlib
+ size: 647126
+ timestamp: 1694475003570
+- kind: conda
+ name: libjpeg-turbo
+ version: 3.0.0
+ build: hb547adb_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda
+ sha256: a42054eaa38e84fc1e5ab443facac4bbc9d1b6b6f23f54b7bf4f1eb687e1d993
+ md5: 3ff1e053dc3a2b8e36b9bfa4256a58d1
+ constrains:
+ - jpeg <0.0.0a
+ license: IJG AND BSD-3-Clause AND Zlib
+ size: 547541
+ timestamp: 1694475104253
+- kind: conda
+ name: libjpeg-turbo
+ version: 3.0.0
+ build: hcfcfb64_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda
+ sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff
+ md5: 3f1b948619c45b1ca714d60c7389092c
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - jpeg <0.0.0a
+ license: IJG AND BSD-3-Clause AND Zlib
+ size: 822966
+ timestamp: 1694475223854
+- kind: conda
+ name: libjpeg-turbo
+ version: 3.0.0
+ build: hd590300_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda
+ sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f
+ md5: ea25936bb4080d843790b586850f82b8
+ depends:
+ - libgcc-ng >=12
+ constrains:
+ - jpeg <0.0.0a
+ license: IJG AND BSD-3-Clause AND Zlib
+ size: 618575
+ timestamp: 1694474974816
+- kind: conda
+ name: liblapack
+ version: 3.9.0
+ build: 25_linux64_openblas
+ build_number: 25
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-25_linux64_openblas.conda
+ sha256: 9d1ff017714edb2d84868f0f931a4a0e7c289a971062b2ac66cfc8145df7e20e
+ md5: 4dc03a53fc69371a6158d0ed37214cd3
+ depends:
+ - libblas 3.9.0 25_linux64_openblas
+ constrains:
+ - liblapacke 3.9.0 25_linux64_openblas
+ - libcblas 3.9.0 25_linux64_openblas
+ - blas * openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15608
+ timestamp: 1729642910812
+- kind: conda
+ name: liblapack
+ version: 3.9.0
+ build: 25_linuxaarch64_openblas
+ build_number: 25
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-25_linuxaarch64_openblas.conda
+ sha256: 2b399e65e0338bf249657b98333e910cd7086ea1332d4d6f303735883ca49318
+ md5: 0eb74e81de46454960bde9e44e7ee378
+ depends:
+ - libblas 3.9.0 25_linuxaarch64_openblas
+ constrains:
+ - blas * openblas
+ - liblapacke 3.9.0 25_linuxaarch64_openblas
+ - libcblas 3.9.0 25_linuxaarch64_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15711
+ timestamp: 1729643010817
+- kind: conda
+ name: liblapack
+ version: 3.9.0
+ build: 25_osx64_openblas
+ build_number: 25
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-25_osx64_openblas.conda
+ sha256: 2a9a6143d103e7e21511cbf439521645bdd506bfabfcac9d6398dd0562c6905c
+ md5: dda0e24b4605ebbd381e48606a107bed
+ depends:
+ - libblas 3.9.0 25_osx64_openblas
+ constrains:
+ - liblapacke 3.9.0 25_osx64_openblas
+ - blas * openblas
+ - libcblas 3.9.0 25_osx64_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15852
+ timestamp: 1729643174413
+- kind: conda
+ name: liblapack
+ version: 3.9.0
+ build: 25_osxarm64_openblas
+ build_number: 25
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-25_osxarm64_openblas.conda
+ sha256: fdd742407672a9af20e70764550cf18b3ab67f12e48bf04163b90492fbc401e7
+ md5: 19bbddfec972d401838330453186108d
+ depends:
+ - libblas 3.9.0 25_osxarm64_openblas
+ constrains:
+ - blas * openblas
+ - liblapacke 3.9.0 25_osxarm64_openblas
+ - libcblas 3.9.0 25_osxarm64_openblas
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15823
+ timestamp: 1729643275943
+- kind: conda
+ name: liblapack
+ version: 3.9.0
+ build: 25_win64_mkl
+ build_number: 25
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-25_win64_mkl.conda
+ sha256: 98c13a28596389539abe3f608c6fbd2826df47671f77c58a331df878c6140c53
+ md5: f716ef84564c574e8e74ae725f5d5f93
+ depends:
+ - libblas 3.9.0 25_win64_mkl
+ constrains:
+ - blas * mkl
+ - libcblas 3.9.0 25_win64_mkl
+ - liblapacke 3.9.0 25_win64_mkl
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 3736560
+ timestamp: 1729643588182
+- kind: conda
+ name: libllvm17
+ version: 17.0.6
+ build: h5090b49_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm17-17.0.6-h5090b49_2.conda
+ sha256: 5829e490e395d85442fb6c7edb0ec18d1a5bb1bc529919a89337d34235205064
+ md5: 443b26505722696a9535732bc2a07576
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ - libxml2 >=2.12.7,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 24612870
+ timestamp: 1718320971519
+- kind: conda
+ name: libllvm17
+ version: 17.0.6
+ build: hbedff68_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libllvm17-17.0.6-hbedff68_1.conda
+ sha256: 605460ecc4ccc04163d0b06c99693864e5bcba7a9f014a5263c9856195282265
+ md5: fcd38f0553a99fa279fb66a5bfc2fb28
+ depends:
+ - libcxx >=16
+ - libxml2 >=2.12.1,<3.0.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - zstd >=1.5.5,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 26306756
+ timestamp: 1701378823527
+- kind: conda
+ name: libllvm19
+ version: 19.1.4
+ build: h2edbd07_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libllvm19-19.1.4-h2edbd07_1.conda
+ sha256: 69500653cb2e6e4e1ed60e3bc69aa339fde7b1c062a0f927e16d74a10efec34b
+ md5: 9d2f8214e95ad15bd0da345a65c5f67f
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - libxml2 >=2.13.5,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 39414816
+ timestamp: 1732684916099
+- kind: conda
+ name: libllvm19
+ version: 19.1.4
+ build: h3089188_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libllvm19-19.1.4-h3089188_1.conda
+ sha256: f92cf16a44bd0cb8fa7d1e6989d654b6ba3190293728ed209fb5b9f298f3b70d
+ md5: 94de0da27387129a3358a8c7d824bbfe
+ depends:
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zstd >=1.5.6,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 54790
+ timestamp: 1732684335020
+- kind: conda
+ name: libllvm19
+ version: 19.1.4
+ build: ha7bfdaf_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libllvm19-19.1.4-ha7bfdaf_1.conda
+ sha256: 2e87601b308667b6962b41ee63d16ecaacb65ce92c2f7f4328e82edaff013de8
+ md5: 886acc67bcba28a5c6b429aad2f057ce
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libxml2 >=2.13.5,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 40124450
+ timestamp: 1732690957253
+- kind: conda
+ name: libllvm19
+ version: 19.1.4
+ build: hc29ff6c_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libllvm19-19.1.4-hc29ff6c_1.conda
+ sha256: 68e8107b245333abb3b6d23c79c517eb66a1c6f924db51251ac1aeb493c9ad98
+ md5: becb4d53f86081c79d6d14baccd27c2d
+ depends:
+ - __osx >=10.13
+ - libcxx >=18
+ - libxml2 >=2.13.5,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 28848789
+ timestamp: 1732683616680
+- kind: conda
+ name: libllvm19
+ version: 19.1.4
+ build: hc4b4ae8_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm19-19.1.4-hc4b4ae8_1.conda
+ sha256: 1611a8c5b68e1cb75540132907aba34961a4ec956ff9515053674096f98b38f5
+ md5: 7ae03e9e8845bb6ad637aed0c56a3c0f
+ depends:
+ - __osx >=11.0
+ - libcxx >=18
+ - libxml2 >=2.13.5,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 27017037
+ timestamp: 1732681230676
+- kind: conda
+ name: libmamba
+ version: 2.0.4
+ build: h4621f14_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libmamba-2.0.4-h4621f14_0.conda
+ sha256: 944d6eabeae47b4338cd473ac9b3345ffb758d9cd6abf3f2f96d15ac6259be82
+ md5: d5fc4b7a9eddbd7a3780f50929dec39f
+ depends:
+ - __osx >=11.0
+ - cpp-expected >=1.1.0,<1.2.0a0
+ - fmt >=11.0.2,<11.1.0a0
+ - fmt >=11.0.2,<12.0a0
+ - libarchive >=3.7.4,<3.8.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libcxx >=18
+ - libsolv >=0.7.30,<0.7.31.0a0
+ - libsolv >=0.7.30,<0.8.0a0
+ - nlohmann_json >=3.11.3,<3.12.0a0
+ - openssl >=3.4.0,<4.0a0
+ - reproc >=14.2,<15.0a0
+ - reproc >=14.2.5.0inf.0,<14.3.0a0
+ - reproc-cpp >=14.2,<15.0a0
+ - reproc-cpp >=14.2.5.0inf.0,<14.3.0a0
+ - simdjson >=3.10.1,<3.11.0a0
+ - spdlog >=1.14.1,<1.15.0a0
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1404987
+ timestamp: 1732522780004
+- kind: conda
+ name: libmamba
+ version: 2.0.4
+ build: h489cd8b_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libmamba-2.0.4-h489cd8b_0.conda
+ sha256: e11ed722a2658b3e6b45681f0333f20f2f9f0341039199ffe23b68e97bf384aa
+ md5: d029990ff4ab245b7aad8601c27783ac
+ depends:
+ - cpp-expected >=1.1.0,<1.2.0a0
+ - fmt >=11.0.2,<11.1.0a0
+ - fmt >=11.0.2,<12.0a0
+ - libarchive >=3.7.4,<3.8.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libsolv >=0.7.30,<0.7.31.0a0
+ - libsolv >=0.7.30,<0.8.0a0
+ - libstdcxx >=13
+ - nlohmann_json >=3.11.3,<3.12.0a0
+ - openssl >=3.4.0,<4.0a0
+ - reproc >=14.2,<15.0a0
+ - reproc >=14.2.4.0inf.0,<14.3.0a0
+ - reproc-cpp >=14.2,<15.0a0
+ - reproc-cpp >=14.2.4.0inf.0,<14.3.0a0
+ - simdjson >=3.10.1,<3.11.0a0
+ - spdlog >=1.14.1,<1.15.0a0
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1899073
+ timestamp: 1732522794555
+- kind: conda
+ name: libmamba
+ version: 2.0.4
+ build: h81425b0_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libmamba-2.0.4-h81425b0_0.conda
+ sha256: 088fa49166762209fd73ac2d760d8ddb96acd39468e1196f12c7467be8ce33b4
+ md5: ccbd7d88f7e662c528328574630759dc
+ depends:
+ - cpp-expected >=1.1.0,<1.2.0a0
+ - fmt >=11.0.2,<11.1.0a0
+ - fmt >=11.0.2,<12.0a0
+ - libarchive >=3.7.4,<3.8.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libsolv >=0.7.30,<0.7.31.0a0
+ - libsolv >=0.7.30,<0.8.0a0
+ - nlohmann_json >=3.11.3,<3.12.0a0
+ - openssl >=3.4.0,<4.0a0
+ - reproc >=14.2,<15.0a0
+ - reproc >=14.2.5.0inf.0,<14.3.0a0
+ - reproc-cpp >=14.2,<15.0a0
+ - reproc-cpp >=14.2.5.0inf.0,<14.3.0a0
+ - simdjson >=3.10.1,<3.11.0a0
+ - spdlog >=1.14.1,<1.15.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 4345006
+ timestamp: 1732522729053
+- kind: conda
+ name: libmamba
+ version: 2.0.4
+ build: hd41e4cc_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libmamba-2.0.4-hd41e4cc_0.conda
+ sha256: ab76dc5da58271107e91f66ada653c8aa87f64083b38383e198dcc1f51a63055
+ md5: e5d16aaf7e0ccf6e12085efeb8cc5b03
+ depends:
+ - __osx >=10.13
+ - cpp-expected >=1.1.0,<1.2.0a0
+ - fmt >=11.0.2,<11.1.0a0
+ - fmt >=11.0.2,<12.0a0
+ - libarchive >=3.7.4,<3.8.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libcxx >=18
+ - libsolv >=0.7.30,<0.7.31.0a0
+ - libsolv >=0.7.30,<0.8.0a0
+ - nlohmann_json >=3.11.3,<3.12.0a0
+ - openssl >=3.4.0,<4.0a0
+ - reproc >=14.2,<15.0a0
+ - reproc >=14.2.5.0inf.0,<14.3.0a0
+ - reproc-cpp >=14.2,<15.0a0
+ - reproc-cpp >=14.2.5.0inf.0,<14.3.0a0
+ - simdjson >=3.10.1,<3.11.0a0
+ - spdlog >=1.14.1,<1.15.0a0
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1516189
+ timestamp: 1732523119031
+- kind: conda
+ name: libmamba
+ version: 2.0.4
+ build: hf72d635_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libmamba-2.0.4-hf72d635_0.conda
+ sha256: 6533ce4158d726f5fbf1cbb7ddad4e82d86e647bffc530b01b93a9cc484d38f8
+ md5: ee936d20425961886b3ddc68e7021bb9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cpp-expected >=1.1.0,<1.2.0a0
+ - fmt >=11.0.2,<11.1.0a0
+ - fmt >=11.0.2,<12.0a0
+ - libarchive >=3.7.4,<3.8.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libsolv >=0.7.30,<0.7.31.0a0
+ - libsolv >=0.7.30,<0.8.0a0
+ - libstdcxx >=13
+ - nlohmann_json >=3.11.3,<3.12.0a0
+ - openssl >=3.4.0,<4.0a0
+ - reproc >=14.2,<15.0a0
+ - reproc >=14.2.5.0inf.0,<14.3.0a0
+ - reproc-cpp >=14.2,<15.0a0
+ - reproc-cpp >=14.2.5.0inf.0,<14.3.0a0
+ - simdjson >=3.10.1,<3.11.0a0
+ - spdlog >=1.14.1,<1.15.0a0
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1994153
+ timestamp: 1732522697290
+- kind: conda
+ name: libmambapy
+ version: 2.0.4
+ build: py312h0252a60_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libmambapy-2.0.4-py312h0252a60_0.conda
+ sha256: 0ec33a3cd9eada858bf6409c0a5ab8c56678834ce57258d072cdc72c29b77b09
+ md5: 3b4311a45cc42437756aeb1238f0fcf9
+ depends:
+ - __osx >=10.13
+ - fmt >=11.0.2,<12.0a0
+ - libcxx >=18
+ - libmamba 2.0.4 hd41e4cc_0
+ - openssl >=3.4.0,<4.0a0
+ - pybind11-abi 4
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 571096
+ timestamp: 1732523923834
+- kind: conda
+ name: libmambapy
+ version: 2.0.4
+ build: py312h33c3f33_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libmambapy-2.0.4-py312h33c3f33_0.conda
+ sha256: 4a08b73c674624a90964e9108ff299e4aa5af0e75ef2dfb7e2d6dbd190391224
+ md5: 3ddc274bddc333702a797e761b809c66
+ depends:
+ - fmt >=11.0.2,<12.0a0
+ - libgcc >=13
+ - libmamba 2.0.4 h489cd8b_0
+ - libstdcxx >=13
+ - openssl >=3.4.0,<4.0a0
+ - pybind11-abi 4
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 537947
+ timestamp: 1732523642579
+- kind: conda
+ name: libmambapy
+ version: 2.0.4
+ build: py312h643a1bd_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libmambapy-2.0.4-py312h643a1bd_0.conda
+ sha256: 82c0a32c90feb2b259bce8a041186d7d158f95fe7a0b37c5758108197ddec877
+ md5: 9f83de7c93e731ea07f442ec660e6e22
+ depends:
+ - fmt >=11.0.2,<12.0a0
+ - libmamba 2.0.4 h81425b0_0
+ - openssl >=3.4.0,<4.0a0
+ - pybind11-abi 4
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 426897
+ timestamp: 1732523258885
+- kind: conda
+ name: libmambapy
+ version: 2.0.4
+ build: py312hd07f1d4_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libmambapy-2.0.4-py312hd07f1d4_0.conda
+ sha256: c9c1fe80b481a5d5580810683cf8a5d0536a33db6d704c66e8c8b0eefed13739
+ md5: 20d71dbe802ce1ba4957ba899a001369
+ depends:
+ - __osx >=11.0
+ - fmt >=11.0.2,<12.0a0
+ - libcxx >=18
+ - libmamba 2.0.4 h4621f14_0
+ - openssl >=3.4.0,<4.0a0
+ - pybind11-abi 4
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 534524
+ timestamp: 1732523725615
+- kind: conda
+ name: libmambapy
+ version: 2.0.4
+ build: py312hf3f0a4e_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libmambapy-2.0.4-py312hf3f0a4e_0.conda
+ sha256: d9ff7aa0bd3e9e26f26dd5ae65e446e3b1ac58c71bbe8a75499d308e790f6c13
+ md5: 60e5a30eb41b8c3e77e6a460cbb9f6ec
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fmt >=11.0.2,<12.0a0
+ - libgcc >=13
+ - libmamba 2.0.4 hf72d635_0
+ - libstdcxx >=13
+ - openssl >=3.4.0,<4.0a0
+ - pybind11-abi 4
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - yaml-cpp >=0.8.0,<0.9.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 623914
+ timestamp: 1732522849216
+- kind: conda
+ name: libnetcdf
+ version: 4.9.2
+ build: nompi_h2564987_115
+ build_number: 115
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h2564987_115.conda
+ sha256: 77d9536095a076414b787a0c2497bb35fcd72f71eb899fae5acb9853a64b4ec4
+ md5: c5ce70b76c77a6c9a3107be8d8e8ab0b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - blosc >=1.21.6,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - hdf4 >=4.2.15,<4.2.16.0a0
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libxml2 >=2.12.7,<3.0a0
+ - libzip >=1.11.1,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - zlib
+ - zstd >=1.5.6,<1.6.0a0
+ license: MIT
+ license_family: MIT
+ size: 835104
+ timestamp: 1728055792846
+- kind: conda
+ name: libnetcdf
+ version: 4.9.2
+ build: nompi_h4c91916_115
+ build_number: 115
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnetcdf-4.9.2-nompi_h4c91916_115.conda
+ sha256: 57c5d85d7765e45c37df15f10c7eeac5610fefe4847061e6b8d68b28aea7e232
+ md5: 3055787b9f2544e6d17538959763f924
+ depends:
+ - blosc >=1.21.6,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - hdf4 >=4.2.15,<4.2.16.0a0
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libxml2 >=2.12.7,<3.0a0
+ - libzip >=1.11.1,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - zlib
+ - zstd >=1.5.6,<1.6.0a0
+ license: MIT
+ license_family: MIT
+ size: 851765
+ timestamp: 1728149993918
+- kind: conda
+ name: libnetcdf
+ version: 4.9.2
+ build: nompi_h853a48d_115
+ build_number: 115
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libnetcdf-4.9.2-nompi_h853a48d_115.conda
+ sha256: 8d7c9ede65241de34aa5aa4c1cf04964fd6e027e2a7d4e8cce654b2350c0f2d3
+ md5: 94b3a12456a4e257e65c6b962c785190
+ depends:
+ - __osx >=11.0
+ - blosc >=1.21.6,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - hdf4 >=4.2.15,<4.2.16.0a0
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libcxx >=17
+ - libxml2 >=2.12.7,<3.0a0
+ - libzip >=1.11.1,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - zlib
+ - zstd >=1.5.6,<1.6.0a0
+ license: MIT
+ license_family: MIT
+ size: 678786
+ timestamp: 1728055979264
+- kind: conda
+ name: libnetcdf
+ version: 4.9.2
+ build: nompi_h976d569_115
+ build_number: 115
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-nompi_h976d569_115.conda
+ sha256: 90fbe85be42ce31b4d41b54fe2d686049435c08ffbc60f8b6a9c39de51102031
+ md5: cece37517cf646a6a710080f8fc1528d
+ depends:
+ - __osx >=10.13
+ - blosc >=1.21.6,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - hdf4 >=4.2.15,<4.2.16.0a0
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libcxx >=17
+ - libxml2 >=2.12.7,<3.0a0
+ - libzip >=1.11.1,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - zlib
+ - zstd >=1.5.6,<1.6.0a0
+ license: MIT
+ license_family: MIT
+ size: 724239
+ timestamp: 1728056183743
+- kind: conda
+ name: libnetcdf
+ version: 4.9.2
+ build: nompi_he239ae6_115
+ build_number: 115
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libnetcdf-4.9.2-nompi_he239ae6_115.conda
+ sha256: bdf67732b92836287bdf6618093dada2ec20f2be4102d031a80f736e082cc410
+ md5: 582fd971ca8f54b59f007f2c1f1a113e
+ depends:
+ - blosc >=1.21.6,<2.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - hdf4 >=4.2.15,<4.2.16.0a0
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - libaec >=1.1.3,<2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - libzip >=1.11.1,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zlib
+ - zstd >=1.5.6,<1.6.0a0
+ license: MIT
+ license_family: MIT
+ size: 625327
+ timestamp: 1728056291410
+- kind: conda
+ name: libnghttp2
+ version: 1.64.0
+ build: h161d5f1_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda
+ sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975
+ md5: 19e57602824042dfd0446292ef90488b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - c-ares >=1.32.3,<2.0a0
+ - libev >=4.33,<4.34.0a0
+ - libev >=4.33,<5.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 647599
+ timestamp: 1729571887612
+- kind: conda
+ name: libnghttp2
+ version: 1.64.0
+ build: h6d7220d_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda
+ sha256: 00cc685824f39f51be5233b54e19f45abd60de5d8847f1a56906f8936648b72f
+ md5: 3408c02539cee5f1141f9f11450b6a51
+ depends:
+ - __osx >=11.0
+ - c-ares >=1.34.2,<2.0a0
+ - libcxx >=17
+ - libev >=4.33,<4.34.0a0
+ - libev >=4.33,<5.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 566719
+ timestamp: 1729572385640
+- kind: conda
+ name: libnghttp2
+ version: 1.64.0
+ build: hc7306c3_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.64.0-hc7306c3_0.conda
+ sha256: 0dcfdcf3a445d2d7de4f3b186ab0a794dc872f4ea21622f9b997be72712c027f
+ md5: ab21007194b97beade22ceb7a3f6fee5
+ depends:
+ - __osx >=10.13
+ - c-ares >=1.34.2,<2.0a0
+ - libcxx >=17
+ - libev >=4.33,<4.34.0a0
+ - libev >=4.33,<5.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 606663
+ timestamp: 1729572019083
+- kind: conda
+ name: libnghttp2
+ version: 1.64.0
+ build: hc8609a4_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda
+ sha256: c093c6d370aadbf0409c20b6c54c488ee2f6fea976181919fcc63e87ee232673
+ md5: f52c614fa214a8bedece9421c771670d
+ depends:
+ - c-ares >=1.32.3,<2.0a0
+ - libev >=4.33,<4.34.0a0
+ - libev >=4.33,<5.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 714610
+ timestamp: 1729571912479
+- kind: conda
+ name: libnsl
+ version: 2.0.1
+ build: h31becfc_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda
+ sha256: fd18c2b75d7411096428d36a70b36b1a17e31f7b8956b6905d145792d49e97f8
+ md5: c14f32510f694e3185704d89967ec422
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.1-only
+ license_family: GPL
+ size: 34501
+ timestamp: 1697358973269
+- kind: conda
+ name: libnsl
+ version: 2.0.1
+ build: hd590300_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
+ sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6
+ md5: 30fd6e37fe21f86f4bd26d6ee73eeec7
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.1-only
+ license_family: GPL
+ size: 33408
+ timestamp: 1697359010159
+- kind: conda
+ name: libntlm
+ version: '1.4'
+ build: h0d85af4_1002
+ build_number: 1002
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libntlm-1.4-h0d85af4_1002.tar.bz2
+ sha256: c536513b3b7a74a1a46ee426ff6d5511df521b2218ebaff0ac7badc474cddb9a
+ md5: d9c13a9ec123f376ac38db038b7dfbb6
+ license: LGPL-2.1-or-later
+ size: 32149
+ timestamp: 1661533559256
+- kind: conda
+ name: libntlm
+ version: '1.4'
+ build: h3422bc3_1002
+ build_number: 1002
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libntlm-1.4-h3422bc3_1002.tar.bz2
+ sha256: d0047d4d967e4e3e1d0ad0dd0e45ed4b0effdd0ae57ec88b4850122b0635d8fe
+ md5: 02fb3eb7be85f98c084bcee20cf925f1
+ license: LGPL-2.1-or-later
+ size: 32219
+ timestamp: 1661533625744
+- kind: conda
+ name: libntlm
+ version: '1.4'
+ build: h7f98852_1002
+ build_number: 1002
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libntlm-1.4-h7f98852_1002.tar.bz2
+ sha256: 63244b73156033ea3b7c2a1581526e79b4670349d64b15f645dcdb12de441d1a
+ md5: e728e874159b042d92b90238a3cb0dc2
+ depends:
+ - libgcc-ng >=9.3.0
+ license: LGPL-2.1-or-later
+ size: 33201
+ timestamp: 1609781914458
+- kind: conda
+ name: libntlm
+ version: '1.4'
+ build: hf897c2e_1002
+ build_number: 1002
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libntlm-1.4-hf897c2e_1002.tar.bz2
+ sha256: 0e303d7a8845391bd1634efb65dc9d9b82b5608ebeb32fb77a56d1ed696d2eee
+ md5: 835c7c4137821de5c309f4266a51ba89
+ depends:
+ - libgcc-ng >=9.3.0
+ license: LGPL-2.1-or-later
+ size: 39449
+ timestamp: 1609781865660
+- kind: conda
+ name: libogg
+ version: 1.3.5
+ build: h0b9eccb_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libogg-1.3.5-h0b9eccb_0.conda
+ sha256: e65acc318b7535fb8f2b5e994fe6eac3ae0be3bdb2acbe6037841d033c51f290
+ md5: 15cb67b1b9dd0d4b37c81daba785e6ad
+ depends:
+ - libgcc-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 208233
+ timestamp: 1719301637185
+- kind: conda
+ name: libogg
+ version: 1.3.5
+ build: h2466b09_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libogg-1.3.5-h2466b09_0.conda
+ sha256: fcffdf32c620569738b85c98ddd25e1c84c8add80cd732743d90d469b7b532bb
+ md5: 44a4d173e62c5ed6d715f18ae7c46b7a
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 35459
+ timestamp: 1719302192495
+- kind: conda
+ name: libogg
+ version: 1.3.5
+ build: h4ab18f5_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.5-h4ab18f5_0.conda
+ sha256: 5eda3fe92b99b25dd4737226a9485078ab405672d9f621be75edcb68f1e9026d
+ md5: 601bfb4b3c6f0b844443bb81a56651e0
+ depends:
+ - libgcc-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 205914
+ timestamp: 1719301575771
+- kind: conda
+ name: libogg
+ version: 1.3.5
+ build: h99b78c6_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libogg-1.3.5-h99b78c6_0.conda
+ sha256: 685f73b7241978007dfe0cecb9cae46c6a26d87d192b6f85a09eb65023c0b99e
+ md5: 57b668b9b78dea2c08e44bb2385d57c0
+ depends:
+ - __osx >=11.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 205451
+ timestamp: 1719301708541
+- kind: conda
+ name: libogg
+ version: 1.3.5
+ build: hfdf4475_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libogg-1.3.5-hfdf4475_0.conda
+ sha256: bebf5797e2a278fd2094f2b0c29ccdfc51d400f4736701108a7e544a49705c64
+ md5: 7497372c91a31d3e8d64ce3f1a9632e8
+ depends:
+ - __osx >=10.13
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 203604
+ timestamp: 1719301669662
+- kind: conda
+ name: libopenblas
+ version: 0.3.28
+ build: openmp_hbf64a52_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.28-openmp_hbf64a52_1.conda
+ sha256: cef5856952688ce9303f85f5bc62c99e8c2256b4c679f63afdfb381f222e90c7
+ md5: cd2c572c02a73b88c4d378eb31110e85
+ depends:
+ - __osx >=10.13
+ - libgfortran 5.*
+ - libgfortran5 >=13.2.0
+ - llvm-openmp >=18.1.8
+ constrains:
+ - openblas >=0.3.28,<0.3.29.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6165715
+ timestamp: 1730773348340
+- kind: conda
+ name: libopenblas
+ version: 0.3.28
+ build: openmp_hf332438_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.28-openmp_hf332438_1.conda
+ sha256: 62bb669c37a845129096f73d446cdb6bb170e4927f2fea2b661329680dbbc373
+ md5: 40803a48d947c8639da6704e9a44d3ce
+ depends:
+ - __osx >=11.0
+ - libgfortran 5.*
+ - libgfortran5 >=13.2.0
+ - llvm-openmp >=18.1.8
+ constrains:
+ - openblas >=0.3.28,<0.3.29.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 4165774
+ timestamp: 1730772154295
+- kind: conda
+ name: libopenblas
+ version: 0.3.28
+ build: pthreads_h94d23a6_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.28-pthreads_h94d23a6_1.conda
+ sha256: 99ba271d8a80a1af2723f2e124ffd91d850074c0389c067e6d96d72a2dbfeabe
+ md5: 62857b389e42b36b686331bec0922050
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.2.0
+ constrains:
+ - openblas >=0.3.28,<0.3.29.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 5578513
+ timestamp: 1730772671118
+- kind: conda
+ name: libopenblas
+ version: 0.3.28
+ build: pthreads_h9d3fd7e_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.28-pthreads_h9d3fd7e_1.conda
+ sha256: 30623a40764e935aa77e0d4db54c1a1589189a9bf3a03fdb445505c1e319b5a6
+ md5: e8dde93dd199da3c1f2c1fcfd0042cd4
+ depends:
+ - libgcc >=14
+ - libgfortran
+ - libgfortran5 >=14.2.0
+ constrains:
+ - openblas >=0.3.28,<0.3.29.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 4793435
+ timestamp: 1730773029647
+- kind: conda
+ name: libopengl
+ version: 1.7.0
+ build: ha4b6fd6_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda
+ sha256: 215086c108d80349e96051ad14131b751d17af3ed2cb5a34edd62fa89bfe8ead
+ md5: 7df50d44d4a14d6c31a2c54f2cd92157
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libglvnd 1.7.0 ha4b6fd6_2
+ license: LicenseRef-libglvnd
+ size: 50757
+ timestamp: 1731330993524
+- kind: conda
+ name: libopengl
+ version: 1.7.0
+ build: hd24410f_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopengl-1.7.0-hd24410f_2.conda
+ sha256: e359df399fb2f308774237384414e318fac8870c1bf6481bdc67ae16e0bd2a02
+ md5: cf9d12bfab305e48d095a4c79002c922
+ depends:
+ - libglvnd 1.7.0 hd24410f_2
+ license: LicenseRef-libglvnd
+ size: 56355
+ timestamp: 1731331001820
+- kind: conda
+ name: libopenvino
+ version: 2024.4.0
+ build: h84cb933_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-2024.4.0-h84cb933_2.conda
+ sha256: 7cddc199a26c7d2889b0dbd025726a49978bfc47166ca464d740942e4f600610
+ md5: 2dbab95dc55ef0be83138374220e3cd6
+ depends:
+ - __osx >=10.15
+ - libcxx >=17
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ size: 4243159
+ timestamp: 1729589312735
+- kind: conda
+ name: libopenvino
+ version: 2024.4.0
+ build: hac27bb2_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.4.0-hac27bb2_2.conda
+ sha256: 1f804b6238951d59b3a431c2e01bd831d44e015ea6835809775bb60b6978e3b3
+ md5: ba5ac0bb9ec5aec38dec37c230b12d64
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ size: 5362131
+ timestamp: 1729594675874
+- kind: conda
+ name: libopenvino
+ version: 2024.4.0
+ build: hbfeda7a_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-2024.4.0-hbfeda7a_2.conda
+ sha256: 372064e0ae774b50ce66522699648b3115837afad6261d7a6dec447b701611d2
+ md5: bfb018530a5e9beacd8ef7d01ce01708
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ size: 3947154
+ timestamp: 1729589796148
+- kind: conda
+ name: libopenvino
+ version: 2024.4.0
+ build: hd7d4d4f_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-2024.4.0-hd7d4d4f_2.conda
+ sha256: fa92fa4e9da3cb1a6ac37004c0f63922e62d3b2fe631385c923436a51d76005e
+ md5: 842ca0bee620b70ce30d397d7eb47d26
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ size: 4902384
+ timestamp: 1729590142049
+- kind: conda
+ name: libopenvino-arm-cpu-plugin
+ version: 2024.4.0
+ build: hbfeda7a_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-arm-cpu-plugin-2024.4.0-hbfeda7a_2.conda
+ sha256: 1d6119f9012bdf4d5c044bd23ae7bea05fab435e216b9861521b2d241ba186c2
+ md5: 76383ff76071f723294edff67968ed18
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - libopenvino 2024.4.0 hbfeda7a_2
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ size: 7430916
+ timestamp: 1729589826098
+- kind: conda
+ name: libopenvino-arm-cpu-plugin
+ version: 2024.4.0
+ build: hd7d4d4f_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-arm-cpu-plugin-2024.4.0-hd7d4d4f_2.conda
+ sha256: f8c598062b07f7c7047c1a3fe5479aad30884cf02bbb49842e9fdcd1ed1468fb
+ md5: e5817f6e796293f49bd94c9ce47b2d69
+ depends:
+ - libgcc >=13
+ - libopenvino 2024.4.0 hd7d4d4f_2
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ size: 8377593
+ timestamp: 1729590158748
+- kind: conda
+ name: libopenvino-auto-batch-plugin
+ version: 2024.4.0
+ build: h4d9b6c2_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.4.0-h4d9b6c2_2.conda
+ sha256: dc596ff555b7ae19a7cd62af8965445575e1441dd486b8aec6a647f9ecbada3a
+ md5: 1d05a25da36ba5f98291d7237fc6b8ce
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hac27bb2_2
+ - libstdcxx >=13
+ - tbb >=2021.13.0
+ size: 111701
+ timestamp: 1729594696807
+- kind: conda
+ name: libopenvino-auto-batch-plugin
+ version: 2024.4.0
+ build: h92dab7a_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.4.0-h92dab7a_2.conda
+ sha256: 241f05b5f2519e1a18276a91fdf623f07911a8175142d0925574bbc41b192db1
+ md5: a0eab88b714e3d6ddcfe7b1b3fa99283
+ depends:
+ - __osx >=10.15
+ - libcxx >=17
+ - libopenvino 2024.4.0 h84cb933_2
+ - tbb >=2021.13.0
+ size: 105809
+ timestamp: 1729589338818
+- kind: conda
+ name: libopenvino-auto-batch-plugin
+ version: 2024.4.0
+ build: hf15766e_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-auto-batch-plugin-2024.4.0-hf15766e_2.conda
+ sha256: f0c1a7e5a5654328c88814590ed53aa98ac6d079d336c3335d9f0ba00d70ffc0
+ md5: 1f737fa48eadcbadc5e35cd86c1b0036
+ depends:
+ - libgcc >=13
+ - libopenvino 2024.4.0 hd7d4d4f_2
+ - libstdcxx >=13
+ - tbb >=2021.13.0
+ size: 108042
+ timestamp: 1729590183012
+- kind: conda
+ name: libopenvino-auto-batch-plugin
+ version: 2024.4.0
+ build: hf276634_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-auto-batch-plugin-2024.4.0-hf276634_2.conda
+ sha256: 1d182574a0987728971e9d119b11bb4cfadf71fde28f0e357e11c7af2b7a82b9
+ md5: a8669452d6178b41f9bc9ead21f9b7d3
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - libopenvino 2024.4.0 hbfeda7a_2
+ - tbb >=2021.13.0
+ size: 104374
+ timestamp: 1729589873528
+- kind: conda
+ name: libopenvino-auto-plugin
+ version: 2024.4.0
+ build: h4d9b6c2_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.4.0-h4d9b6c2_2.conda
+ sha256: 27b732f1ba3ae7dc8263f59e69447eebabcc76de86e2ec4c9722842a1d2f4aa8
+ md5: 838b2db868f9ab69a7bad9c065a3362d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hac27bb2_2
+ - libstdcxx >=13
+ - tbb >=2021.13.0
+ size: 237694
+ timestamp: 1729594707449
+- kind: conda
+ name: libopenvino-auto-plugin
+ version: 2024.4.0
+ build: h92dab7a_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-plugin-2024.4.0-h92dab7a_2.conda
+ sha256: b69690a03c940e00e3d373c5d31131745a54f4cb40b51826d53e3a6cc95c6676
+ md5: 4492ac7a52a13ed860ade97d1353c890
+ depends:
+ - __osx >=10.15
+ - libcxx >=17
+ - libopenvino 2024.4.0 h84cb933_2
+ - tbb >=2021.13.0
+ size: 218057
+ timestamp: 1729589358476
+- kind: conda
+ name: libopenvino-auto-plugin
+ version: 2024.4.0
+ build: hf15766e_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-auto-plugin-2024.4.0-hf15766e_2.conda
+ sha256: 2de62ad880f30283778fa9c148b6e9095a206f0a1f0fb6b6d5f7bcaf9572d184
+ md5: 040cfcec2cccffd2599ba746d8dac9a6
+ depends:
+ - libgcc >=13
+ - libopenvino 2024.4.0 hd7d4d4f_2
+ - libstdcxx >=13
+ - tbb >=2021.13.0
+ size: 224080
+ timestamp: 1729590192079
+- kind: conda
+ name: libopenvino-auto-plugin
+ version: 2024.4.0
+ build: hf276634_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-auto-plugin-2024.4.0-hf276634_2.conda
+ sha256: 52c22114bd16956d5a810c9dc9a624a53446578a872a2cdb4188333256b04dac
+ md5: 0a6f2709c335049b804d7ce23c1dc46f
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - libopenvino 2024.4.0 hbfeda7a_2
+ - tbb >=2021.13.0
+ size: 211623
+ timestamp: 1729589895613
+- kind: conda
+ name: libopenvino-hetero-plugin
+ version: 2024.4.0
+ build: h03892cd_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-hetero-plugin-2024.4.0-h03892cd_2.conda
+ sha256: 5ec87af2db01843ed4ecef25485e772b75e77d1b484b459a9ce56c28442b4e56
+ md5: cfd28b170b1a6e097a014c4e1f514bdc
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - libopenvino 2024.4.0 hbfeda7a_2
+ - pugixml >=1.14,<1.15.0a0
+ size: 174162
+ timestamp: 1729589920318
+- kind: conda
+ name: libopenvino-hetero-plugin
+ version: 2024.4.0
+ build: h14156cc_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-hetero-plugin-2024.4.0-h14156cc_2.conda
+ sha256: 47a1f9ea6c9887c6f04eb2b36231f6466bca2adda5477536e5899c85c187f85b
+ md5: 3225cf138956bff656e09f88af51aa13
+ depends:
+ - __osx >=10.15
+ - libcxx >=17
+ - libopenvino 2024.4.0 h84cb933_2
+ - pugixml >=1.14,<1.15.0a0
+ size: 181211
+ timestamp: 1729589379396
+- kind: conda
+ name: libopenvino-hetero-plugin
+ version: 2024.4.0
+ build: h3f63f65_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.4.0-h3f63f65_2.conda
+ sha256: 0c7cd10c9e3d99d6f23e4d7b48cd8e72aeb4a1c7acb801b6ca9add0f87f238d3
+ md5: 00a6127960a3f41d4bfcabd35d5fbeec
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hac27bb2_2
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ size: 197567
+ timestamp: 1729594718187
+- kind: conda
+ name: libopenvino-hetero-plugin
+ version: 2024.4.0
+ build: h6ef32b0_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-hetero-plugin-2024.4.0-h6ef32b0_2.conda
+ sha256: 215665ba9169a61f30d96c197bf799b85223963af483fdd137f508e7865fa057
+ md5: b106de2dc7ebc8cb930061cffbd117e0
+ depends:
+ - libgcc >=13
+ - libopenvino 2024.4.0 hd7d4d4f_2
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ size: 184694
+ timestamp: 1729590203040
+- kind: conda
+ name: libopenvino-intel-cpu-plugin
+ version: 2024.4.0
+ build: h84cb933_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.4.0-h84cb933_2.conda
+ sha256: 369d68c966507b3a46562f87462bb17740adfdeb86f02e4a12e9bff2d931d8d2
+ md5: 0c91ffaa947cbc17dc3b579b69b2c5d1
+ depends:
+ - __osx >=10.15
+ - libcxx >=17
+ - libopenvino 2024.4.0 h84cb933_2
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ size: 11143246
+ timestamp: 1729589403635
+- kind: conda
+ name: libopenvino-intel-cpu-plugin
+ version: 2024.4.0
+ build: hac27bb2_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.4.0-hac27bb2_2.conda
+ sha256: 5642443645408f030e9dfbe20dbe2c2ab6d852daf02c9a36eac123b44bf2980f
+ md5: 6cfc840bc39c17d92fb25e5a35789e5b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hac27bb2_2
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ size: 12101994
+ timestamp: 1729594729554
+- kind: conda
+ name: libopenvino-intel-gpu-plugin
+ version: 2024.4.0
+ build: hac27bb2_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.4.0-hac27bb2_2.conda
+ sha256: 508d0e36febebfb66628d8cb0312b4133c212eac1e8d891fc8977e0d85b23741
+ md5: 9e9814b40d8fdfd8485451e3fa2f1719
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hac27bb2_2
+ - libstdcxx >=13
+ - ocl-icd >=2.3.2,<3.0a0
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ size: 8885078
+ timestamp: 1729594772427
+- kind: conda
+ name: libopenvino-intel-npu-plugin
+ version: 2024.4.0
+ build: hac27bb2_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.4.0-hac27bb2_2.conda
+ sha256: a07bdb55c3214cd5b27736ee6d06abe55782ddf1cfaeb9fffee96179bf12390b
+ md5: 724719ce97feb6f310f88ae8dbb40afd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hac27bb2_2
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ - tbb >=2021.13.0
+ size: 799335
+ timestamp: 1729594804720
+- kind: conda
+ name: libopenvino-ir-frontend
+ version: 2024.4.0
+ build: h03892cd_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-ir-frontend-2024.4.0-h03892cd_2.conda
+ sha256: 60026c3fe4655c210bde3c447ab84c8f23c9794657f4ea758f27427983056b90
+ md5: 928ecc20581599707acda5c5434bf98d
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - libopenvino 2024.4.0 hbfeda7a_2
+ - pugixml >=1.14,<1.15.0a0
+ size: 173928
+ timestamp: 1729589940535
+- kind: conda
+ name: libopenvino-ir-frontend
+ version: 2024.4.0
+ build: h14156cc_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-ir-frontend-2024.4.0-h14156cc_2.conda
+ sha256: a665badcd30db3dddd46f18e1fb3a7f58513a49859d2cafddf554045dc4b9960
+ md5: fa87ea4e22a4b782f0a1bff5f983afcd
+ depends:
+ - __osx >=10.15
+ - libcxx >=17
+ - libopenvino 2024.4.0 h84cb933_2
+ - pugixml >=1.14,<1.15.0a0
+ size: 182877
+ timestamp: 1729589458940
+- kind: conda
+ name: libopenvino-ir-frontend
+ version: 2024.4.0
+ build: h3f63f65_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.4.0-h3f63f65_2.conda
+ sha256: 6038aefea84aeb9534aaf6963d2b266eb757fa36c1a7a9f5e29d6d813bd85a2c
+ md5: 8908f31eab30f65636eb61ab9cb1f3ad
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hac27bb2_2
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ size: 204163
+ timestamp: 1729594816408
+- kind: conda
+ name: libopenvino-ir-frontend
+ version: 2024.4.0
+ build: h6ef32b0_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-ir-frontend-2024.4.0-h6ef32b0_2.conda
+ sha256: 846de69b4e387684857d824974e07a42213781d6519ab59a7bca768d94c49736
+ md5: 60f6f88fa0b0cda9c635963aef4013d7
+ depends:
+ - libgcc >=13
+ - libopenvino 2024.4.0 hd7d4d4f_2
+ - libstdcxx >=13
+ - pugixml >=1.14,<1.15.0a0
+ size: 192130
+ timestamp: 1729590212150
+- kind: conda
+ name: libopenvino-onnx-frontend
+ version: 2024.4.0
+ build: h5c8f2c3_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.4.0-h5c8f2c3_2.conda
+ sha256: b68c2ee5fd08c0974ad9395ea0de809b306c261485114cbcbbc0f55c1e0285b3
+ md5: e098caa87868e8dcc7ed5d011981207d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hac27bb2_2
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libstdcxx >=13
+ size: 1559399
+ timestamp: 1729594827815
+- kind: conda
+ name: libopenvino-onnx-frontend
+ version: 2024.4.0
+ build: h7f5a098_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-onnx-frontend-2024.4.0-h7f5a098_2.conda
+ sha256: 6f7e9871a71e06e8dae9f2cd43db209fdbe4f957ac778cc7f0f0bed556e04f26
+ md5: 26dcc0a3c16a97c717f88981472db4aa
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcxx >=17
+ - libopenvino 2024.4.0 hbfeda7a_2
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ size: 1227299
+ timestamp: 1729589977734
+- kind: conda
+ name: libopenvino-onnx-frontend
+ version: 2024.4.0
+ build: haa99d6a_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-onnx-frontend-2024.4.0-haa99d6a_2.conda
+ sha256: e33692a3da876040d877c207290e7df5bef56639466769cb7fdec935754e699d
+ md5: a626d0a2138aea9e65f978e936069fe5
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hd7d4d4f_2
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libstdcxx >=13
+ size: 1404356
+ timestamp: 1729590221767
+- kind: conda
+ name: libopenvino-onnx-frontend
+ version: 2024.4.0
+ build: he28f95a_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-onnx-frontend-2024.4.0-he28f95a_2.conda
+ sha256: 63542752306ef2fa873074bb65b8166bdccfd76c2012e3460147334edf318b5b
+ md5: bc40f66f9d366cac822c806d330af921
+ depends:
+ - __osx >=10.15
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcxx >=17
+ - libopenvino 2024.4.0 h84cb933_2
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ size: 1281082
+ timestamp: 1729589492958
+- kind: conda
+ name: libopenvino-paddle-frontend
+ version: 2024.4.0
+ build: h5c8f2c3_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.4.0-h5c8f2c3_2.conda
+ sha256: fa57b201fb92af0adc2118de8e92648959b98c0dc1a60b278ba2b79c5601eea6
+ md5: 59bb8c3502cb9d35f1fb26691730288c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hac27bb2_2
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libstdcxx >=13
+ size: 653105
+ timestamp: 1729594841297
+- kind: conda
+ name: libopenvino-paddle-frontend
+ version: 2024.4.0
+ build: h7f5a098_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-paddle-frontend-2024.4.0-h7f5a098_2.conda
+ sha256: 4bc7994673c5b7bfe700ca6297f563d7f535403ba28178e6b7f4d54959534aa2
+ md5: c109c0314b83a852d7c85a91b98b277f
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcxx >=17
+ - libopenvino 2024.4.0 hbfeda7a_2
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ size: 418862
+ timestamp: 1729590007426
+- kind: conda
+ name: libopenvino-paddle-frontend
+ version: 2024.4.0
+ build: haa99d6a_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-paddle-frontend-2024.4.0-haa99d6a_2.conda
+ sha256: 43c3ef7aeb90bcafe93e3946c063d72dc82933818eff7f9eb7a5b51bad430703
+ md5: 75480960fe1dfcfc5f8eeea26e56b4be
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hd7d4d4f_2
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libstdcxx >=13
+ size: 605764
+ timestamp: 1729590232511
+- kind: conda
+ name: libopenvino-paddle-frontend
+ version: 2024.4.0
+ build: he28f95a_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-paddle-frontend-2024.4.0-he28f95a_2.conda
+ sha256: 6b59752d19e7082b05c4e1fa62fd597bafad952c974fedd3452ea7a37e9d20e1
+ md5: 3da602a667ba557a94d42944216bfc39
+ depends:
+ - __osx >=10.15
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcxx >=17
+ - libopenvino 2024.4.0 h84cb933_2
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ size: 427736
+ timestamp: 1729589516305
+- kind: conda
+ name: libopenvino-pytorch-frontend
+ version: 2024.4.0
+ build: h5833ebf_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-pytorch-frontend-2024.4.0-h5833ebf_2.conda
+ sha256: 2b6ee15f5b2f44331c5e161cff01c15b2b109582131f73c6557666748633faac
+ md5: 31f2b940f1c0a5390353b10b72449832
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - libopenvino 2024.4.0 hbfeda7a_2
+ size: 766073
+ timestamp: 1729590028174
+- kind: conda
+ name: libopenvino-pytorch-frontend
+ version: 2024.4.0
+ build: h5888daf_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.4.0-h5888daf_2.conda
+ sha256: a029b3ebff1e8d1d2736a548a616c20066ed6508f238782afbf3a77a4f57c6cd
+ md5: e0b88fd64dc95f715ef52e607a9af89b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hac27bb2_2
+ - libstdcxx >=13
+ size: 1075090
+ timestamp: 1729594854413
+- kind: conda
+ name: libopenvino-pytorch-frontend
+ version: 2024.4.0
+ build: h5ad3122_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-pytorch-frontend-2024.4.0-h5ad3122_2.conda
+ sha256: e86b89a8d7fda8d1015abc1918a23785310348f64b73012e1ea87a639e27a14a
+ md5: fbeb65db200c04bac9e95ad05b859161
+ depends:
+ - libgcc >=13
+ - libopenvino 2024.4.0 hd7d4d4f_2
+ - libstdcxx >=13
+ size: 996903
+ timestamp: 1729590242095
+- kind: conda
+ name: libopenvino-pytorch-frontend
+ version: 2024.4.0
+ build: hc3d39de_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.4.0-hc3d39de_2.conda
+ sha256: b336c446fc28c07e832424c96758f244f3fae1d63968129f9948d023a86951be
+ md5: 55223d989ddad9d8908ec1310b28b0f8
+ depends:
+ - __osx >=10.15
+ - libcxx >=17
+ - libopenvino 2024.4.0 h84cb933_2
+ size: 788593
+ timestamp: 1729589537016
+- kind: conda
+ name: libopenvino-tensorflow-frontend
+ version: 2024.4.0
+ build: h488aad4_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.4.0-h488aad4_2.conda
+ sha256: 15633c02ffb36dc695f653b06c74e723610b8d4de45a812f0cb950bb32e45a31
+ md5: 9dc93ef2d110b5b5268627d8c879e6a8
+ depends:
+ - __osx >=10.15
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcxx >=17
+ - libopenvino 2024.4.0 h84cb933_2
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - snappy >=1.2.1,<1.3.0a0
+ size: 976222
+ timestamp: 1729589585972
+- kind: conda
+ name: libopenvino-tensorflow-frontend
+ version: 2024.4.0
+ build: h6481b9d_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.4.0-h6481b9d_2.conda
+ sha256: fdc4871a05bbb61cfe6db1e60018d74cbd6d65d82f03b9be515c3ad41bb7ca04
+ md5: 12bf831b85f17368bc71a26ac93a8493
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hac27bb2_2
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libstdcxx >=13
+ - snappy >=1.2.1,<1.3.0a0
+ size: 1282840
+ timestamp: 1729594867098
+- kind: conda
+ name: libopenvino-tensorflow-frontend
+ version: 2024.4.0
+ build: h9d544f2_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-tensorflow-frontend-2024.4.0-h9d544f2_2.conda
+ sha256: 577dff3fa81c389878312200a649b4360f44430c4aaf06c93c8f827256b5c6ac
+ md5: 9acac136a616aa3f36fd317eb9ff821a
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcxx >=17
+ - libopenvino 2024.4.0 hbfeda7a_2
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - snappy >=1.2.1,<1.3.0a0
+ size: 932555
+ timestamp: 1729590076653
+- kind: conda
+ name: libopenvino-tensorflow-frontend
+ version: 2024.4.0
+ build: he24a241_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-tensorflow-frontend-2024.4.0-he24a241_2.conda
+ sha256: d7f2247da62e2605f768694144100637afff046989aa6b5d4aff8bc74cdeffbc
+ md5: 91a86ff710cd96f4241ef18aa594a764
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hd7d4d4f_2
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libstdcxx >=13
+ - snappy >=1.2.1,<1.3.0a0
+ size: 1192974
+ timestamp: 1729590252604
+- kind: conda
+ name: libopenvino-tensorflow-lite-frontend
+ version: 2024.4.0
+ build: h5833ebf_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenvino-tensorflow-lite-frontend-2024.4.0-h5833ebf_2.conda
+ sha256: 0583c58e6c6796f7c756a10937fa6c7a1c52b1afc1f75451c4690a38ec57f7fd
+ md5: e6b793ea4b5dc41ea6ae1dfc65becabc
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - libopenvino 2024.4.0 hbfeda7a_2
+ size: 369779
+ timestamp: 1729590097301
+- kind: conda
+ name: libopenvino-tensorflow-lite-frontend
+ version: 2024.4.0
+ build: h5888daf_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.4.0-h5888daf_2.conda
+ sha256: a8f26058cf57159492c63fb0622ea2858763ea22338c507ff40a6e9bb792295e
+ md5: d48c774c40ea2047adbff043e9076e7a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libopenvino 2024.4.0 hac27bb2_2
+ - libstdcxx >=13
+ size: 466563
+ timestamp: 1729594879557
+- kind: conda
+ name: libopenvino-tensorflow-lite-frontend
+ version: 2024.4.0
+ build: h5ad3122_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenvino-tensorflow-lite-frontend-2024.4.0-h5ad3122_2.conda
+ sha256: b67b4c74e97a810a902e4aa81a173db9281955270dae2890afc29320df7659ae
+ md5: a3f82dbd3189dffd49ed67216f21e35a
+ depends:
+ - libgcc >=13
+ - libopenvino 2024.4.0 hd7d4d4f_2
+ - libstdcxx >=13
+ size: 430404
+ timestamp: 1729590264452
+- kind: conda
+ name: libopenvino-tensorflow-lite-frontend
+ version: 2024.4.0
+ build: hc3d39de_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.4.0-hc3d39de_2.conda
+ sha256: 9076a899090bb8f9f9d5c2ef5c0d2c46f69570af4b5b3f6b46870f36e62cf1de
+ md5: ac195e5406bc31fd5650208d88def549
+ depends:
+ - __osx >=10.15
+ - libcxx >=17
+ - libopenvino 2024.4.0 h84cb933_2
+ size: 368215
+ timestamp: 1729589610964
+- kind: conda
+ name: libopus
+ version: 1.3.1
+ build: h27ca646_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2
+ sha256: e9912101a58cbc609a1917c5289f3bd1f600c82ed3a1c90a6dd4ca02df77958a
+ md5: 3d0dbee0ccd2f6d6781d270313627b62
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 252854
+ timestamp: 1606823635137
+- kind: conda
+ name: libopus
+ version: 1.3.1
+ build: h7f98852_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2
+ sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f
+ md5: 15345e56d527b330e1cacbdf58676e8f
+ depends:
+ - libgcc-ng >=9.3.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 260658
+ timestamp: 1606823578035
+- kind: conda
+ name: libopus
+ version: 1.3.1
+ build: h8ffe710_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2
+ sha256: b2e5ec193762a5b4f905f8100437370e164df3db0ea5c18b4ce09390f5d3d525
+ md5: e35a6bcfeb20ea83aab21dfc50ae62a4
+ depends:
+ - vc >=14.1,<15.0a0
+ - vs2015_runtime >=14.16.27012
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 260615
+ timestamp: 1606824019288
+- kind: conda
+ name: libopus
+ version: 1.3.1
+ build: hc929b4f_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2
+ sha256: c126fc225bece591a8f010e95ca7d010ea2d02df9251830bec24a19bf823fc31
+ md5: 380b9ea5f6a7a277e6c1ac27d034369b
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 279983
+ timestamp: 1606823633642
+- kind: conda
+ name: libopus
+ version: 1.3.1
+ build: hf897c2e_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libopus-1.3.1-hf897c2e_1.tar.bz2
+ sha256: 92a87ade11af2cff41c35cf941f1a79390fde1f113f8e51e1cce30d31b7c8305
+ md5: ac7534c50934ed25e4749d74b04c667a
+ depends:
+ - libgcc-ng >=9.3.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 328825
+ timestamp: 1606823775764
+- kind: conda
+ name: libpciaccess
+ version: '0.18'
+ build: h31becfc_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpciaccess-0.18-h31becfc_0.conda
+ sha256: 0c6806dcd53da457c472cf22ad7793aef074cb198a10677a91b02c7dceeee770
+ md5: 6d48179630f00e8c9ad9e30879ce1e54
+ depends:
+ - libgcc-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 29211
+ timestamp: 1707101477910
+- kind: conda
+ name: libpciaccess
+ version: '0.18'
+ build: hd590300_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda
+ sha256: c0a30ac74eba66ea76a4f0a39acc7833f5ed783a632ca3bb6665b2d81aabd2fb
+ md5: 48f4330bfcd959c3cfb704d424903c82
+ depends:
+ - libgcc-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 28361
+ timestamp: 1707101388552
+- kind: conda
+ name: libpng
+ version: 1.6.44
+ build: h3ca93ac_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.44-h3ca93ac_0.conda
+ sha256: 0d3d6ff9225f6918ac225e3839c0d91e5af1da08a4ebf59cac1bfd86018db945
+ md5: 639ac6b55a40aa5de7b8c1b4d78f9e81
+ depends:
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: zlib-acknowledgement
+ size: 348933
+ timestamp: 1726235196095
+- kind: conda
+ name: libpng
+ version: 1.6.44
+ build: h4b8f8c9_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.44-h4b8f8c9_0.conda
+ sha256: 12b44e58f8832798d7a5c0a7480c95e905dbd6c3558dec09739062411f9e08d1
+ md5: f32ac2c8dd390dbf169f550887ed09d9
+ depends:
+ - __osx >=10.13
+ - libzlib >=1.3.1,<2.0a0
+ license: zlib-acknowledgement
+ size: 268073
+ timestamp: 1726234803010
+- kind: conda
+ name: libpng
+ version: 1.6.44
+ build: hadc24fc_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
+ sha256: e5b14f7a01c2db4362d8591f42f82f336ed48d5e4079e4d1f65d0c2a3637ea78
+ md5: f4cc49d7aa68316213e4b12be35308d1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: zlib-acknowledgement
+ size: 290661
+ timestamp: 1726234747153
+- kind: conda
+ name: libpng
+ version: 1.6.44
+ build: hc14010f_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.44-hc14010f_0.conda
+ sha256: 38f8759a3eb8060deabd4db41f0f023514d853e46ddcbd0ba21768fc4e563bb1
+ md5: fb36e93f0ea6a6f5d2b99984f34b049e
+ depends:
+ - __osx >=11.0
+ - libzlib >=1.3.1,<2.0a0
+ license: zlib-acknowledgement
+ size: 263385
+ timestamp: 1726234714421
+- kind: conda
+ name: libpng
+ version: 1.6.44
+ build: hc4a20ef_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.44-hc4a20ef_0.conda
+ sha256: 23b5ce15cf9c6017641a8396bab00ae807dd9f662718cfa7f61de114d0c97647
+ md5: 5d25802b25fcc7419fa13e21affaeb3a
+ depends:
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: zlib-acknowledgement
+ size: 294907
+ timestamp: 1726236639270
+- kind: conda
+ name: libpq
+ version: '17.2'
+ build: h04577a9_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libpq-17.2-h04577a9_0.conda
+ sha256: d8ed60436b8f1484d74f68b01f98301d6c8174df1d77a3e89ba42f033dcb43c5
+ md5: 52dd46162c6fb2765b49e6fd06adf8d5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - openldap >=2.6.8,<2.7.0a0
+ - openssl >=3.4.0,<4.0a0
+ license: PostgreSQL
+ size: 2588868
+ timestamp: 1732204566030
+- kind: conda
+ name: libpq
+ version: '17.2'
+ build: h081282e_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpq-17.2-h081282e_0.conda
+ sha256: 428b051d888c17c2399f5f18f69938cec2440f35b078a0d0530e5a48e4a886ae
+ md5: cfef255cbd6e1c9d5b15fad06667aa02
+ depends:
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - openldap >=2.6.8,<2.7.0a0
+ - openssl >=3.4.0,<4.0a0
+ license: PostgreSQL
+ size: 2585867
+ timestamp: 1732204520732
+- kind: conda
+ name: libpq
+ version: '17.2'
+ build: h9b1ab17_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libpq-17.2-h9b1ab17_0.conda
+ sha256: 3df7defd514d989ead1280cabb13618e03f7cdace828e6b7a307f2e47845123d
+ md5: 0ba6b6772a08c40de13427c957ceaf67
+ depends:
+ - __osx >=11.0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - openldap >=2.6.8,<2.7.0a0
+ - openssl >=3.4.0,<4.0a0
+ license: PostgreSQL
+ size: 2603320
+ timestamp: 1732204754944
+- kind: conda
+ name: libpq
+ version: '17.2'
+ build: hfbed10f_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libpq-17.2-hfbed10f_0.conda
+ sha256: 2cdeabc2278ebdee89202a6e380b1032399aa7ee35a52915f181a215ae31f66f
+ md5: e833f32ff8aa5062928c768af987a875
+ depends:
+ - __osx >=10.13
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - openldap >=2.6.8,<2.7.0a0
+ - openssl >=3.4.0,<4.0a0
+ license: PostgreSQL
+ size: 2607354
+ timestamp: 1732205034231
+- kind: conda
+ name: libprotobuf
+ version: 5.28.2
+ build: h029595c_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda
+ sha256: d8c7b6f851bfc53494d9b8e54d473c4f11ab26483a6e64df6f7967563df166b1
+ md5: 538dbe0ad9f248e2e109abb9b6809ea5
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2802876
+ timestamp: 1728564881988
+- kind: conda
+ name: libprotobuf
+ version: 5.28.2
+ build: h5b01275_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
+ sha256: 5e8fd4aa00193c85602ce6101dd28fe31306dff85c9725048f6dc828dfa7c421
+ md5: ab0bff36363bec94720275a681af8b83
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2945348
+ timestamp: 1728565355702
+- kind: conda
+ name: libprotobuf
+ version: 5.28.2
+ build: h8b30cf6_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-5.28.2-h8b30cf6_0.conda
+ sha256: e240c2003e301ede0a0f4af7688adb8456559ffaa4af2eed3fce879c22c80a0e
+ md5: 2302089e5bcb04ce891ce765c963befb
+ depends:
+ - __osx >=10.13
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcxx >=17
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2428926
+ timestamp: 1728565541606
+- kind: conda
+ name: libprotobuf
+ version: 5.28.2
+ build: h8f0b736_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda
+ sha256: f732a6fa918428e2d5ba61e78fe11bb44a002cc8f6bb74c94ee5b1297fefcfd8
+ md5: d2cb5991f2fb8eb079c80084435e9ce6
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcxx >=17
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 2374965
+ timestamp: 1728565334796
+- kind: conda
+ name: libraw
+ version: 0.21.3
+ build: h0f5434b_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libraw-0.21.3-h0f5434b_0.conda
+ sha256: 0d2610b684cd8712bdcf0873b17b1fa3d7ce1105550264b7fd91b184a00d1a28
+ md5: 075f3d5fe250279afc5d9b221d71f84b
+ depends:
+ - lcms2 >=2.16,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LGPL-2.1-only
+ license_family: LGPL
+ size: 489267
+ timestamp: 1726766863050
+- kind: conda
+ name: libraw
+ version: 0.21.3
+ build: h8f7feda_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libraw-0.21.3-h8f7feda_0.conda
+ sha256: 6b1cebffeedbc8d3ccf203b71e488361893060ac0172c1e8812ef1fda031484d
+ md5: ea73d5e8ffd5f89389303c681d48ea2b
+ depends:
+ - __osx >=10.13
+ - lcms2 >=2.16,<3.0a0
+ - libcxx >=17
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.1-only
+ license_family: LGPL
+ size: 581665
+ timestamp: 1726766248079
+- kind: conda
+ name: libraw
+ version: 0.21.3
+ build: hca62329_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libraw-0.21.3-hca62329_0.conda
+ sha256: 4b483d963686bcc1fbe225c41f48a2ec206bc97e1d9d1c16fac2d6b5709240b8
+ md5: e99091d245425cf089b814107b40c349
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - _openmp_mutex >=4.5
+ - lcms2 >=2.16,<3.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.1-only
+ license_family: LGPL
+ size: 640729
+ timestamp: 1726766159397
+- kind: conda
+ name: libraw
+ version: 0.21.3
+ build: hee66ff5_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libraw-0.21.3-hee66ff5_0.conda
+ sha256: 0a3d149cdd05eda13ff7bf99ed55cd52e26ae641d8bdb52386e440e118a8eb87
+ md5: d2072e65b6784cf0b6000ac59f03640d
+ depends:
+ - __osx >=11.0
+ - lcms2 >=2.16,<3.0a0
+ - libcxx >=17
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.1-only
+ license_family: LGPL
+ size: 582358
+ timestamp: 1726766236233
+- kind: conda
+ name: libraw
+ version: 0.21.3
+ build: hf20323b_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libraw-0.21.3-hf20323b_0.conda
+ sha256: 94c4fe562d9f962f89e28140e04fe53868e2886e12434b834f62de9a4f7970df
+ md5: 885621c9ba4186c2b88c5033d301bb72
+ depends:
+ - _openmp_mutex >=4.5
+ - lcms2 >=2.16,<3.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: LGPL-2.1-only
+ license_family: LGPL
+ size: 650078
+ timestamp: 1726766243482
+- kind: conda
+ name: librsvg
+ version: 2.58.4
+ build: h00090f3_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/librsvg-2.58.4-h00090f3_0.conda
+ sha256: f27d29bec094cd4a9190409a0e881a8eac2affdf2bda850d9f2a580b3280ab96
+ md5: e217f742afbec9f3632e73602dadb810
+ depends:
+ - cairo >=1.18.0,<2.0a0
+ - freetype >=2.12.1,<3.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libgcc >=13
+ - libglib >=2.80.3,<3.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - pango >=1.54.0,<2.0a0
+ constrains:
+ - __glibc >=2.17
+ license: LGPL-2.1-or-later
+ size: 6366018
+ timestamp: 1726236562130
+- kind: conda
+ name: librsvg
+ version: 2.58.4
+ build: h2682814_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/librsvg-2.58.4-h2682814_0.conda
+ sha256: ed2d08ef3647d1c10fa51a0480f215ddae04f73a2bd9bbd135d3f37d313d84a6
+ md5: 0022c69263e9bb8c530feff2dfc431f9
+ depends:
+ - __osx >=10.13
+ - cairo >=1.18.0,<2.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - libglib >=2.80.3,<3.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - pango >=1.54.0,<2.0a0
+ constrains:
+ - __osx >=10.13
+ license: LGPL-2.1-or-later
+ size: 4919155
+ timestamp: 1726227702081
+- kind: conda
+ name: librsvg
+ version: 2.58.4
+ build: h33bc1f6_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/librsvg-2.58.4-h33bc1f6_0.conda
+ sha256: 21d3c867a7cfa28ed7e77840c0275ac4ae8a3eb4d17455b920cb0c24051d84f1
+ md5: 40b2421b8358e85cde3f153022b6f364
+ depends:
+ - cairo >=1.18.0,<2.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - libglib >=2.80.3,<3.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - pango >=1.54.0,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.40.33810
+ license: LGPL-2.1-or-later
+ size: 3871820
+ timestamp: 1726228304069
+- kind: conda
+ name: librsvg
+ version: 2.58.4
+ build: h40956f1_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/librsvg-2.58.4-h40956f1_0.conda
+ sha256: 88cd8603a6fe6c3299e9cd0a81f5e38cf431d20b7d3e2e6642c8a41113ede6db
+ md5: 27c333944e11caae7bc3a35178d32ac5
+ depends:
+ - __osx >=11.0
+ - cairo >=1.18.0,<2.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - libglib >=2.80.3,<3.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - pango >=1.54.0,<2.0a0
+ constrains:
+ - __osx >=11.0
+ license: LGPL-2.1-or-later
+ size: 4688893
+ timestamp: 1726228099207
+- kind: conda
+ name: librsvg
+ version: 2.58.4
+ build: hc0ffecb_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/librsvg-2.58.4-hc0ffecb_0.conda
+ sha256: fda3197ffb24512e719d55defa02f9f70286038e56cad8c1d580ed6460f417fa
+ md5: 83f045969988f5c7a65f3950b95a8b35
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cairo >=1.18.0,<2.0a0
+ - freetype >=2.12.1,<3.0a0
+ - gdk-pixbuf >=2.42.12,<3.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libgcc >=13
+ - libglib >=2.80.3,<3.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - pango >=1.54.0,<2.0a0
+ constrains:
+ - __glibc >=2.17
+ license: LGPL-2.1-or-later
+ size: 6390511
+ timestamp: 1726227212382
+- kind: conda
+ name: libsanitizer
+ version: 13.3.0
+ build: ha58e236_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsanitizer-13.3.0-ha58e236_1.conda
+ sha256: 6892c7e723dbfb3a7e65c9c21ad7396dee5c73fd988e039045ca96145632ee71
+ md5: ed8a2074f0afb09450a009e02de65e3c
+ depends:
+ - libgcc >=13.3.0
+ - libstdcxx >=13.3.0
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 4105930
+ timestamp: 1724802022367
+- kind: conda
+ name: libsanitizer
+ version: 13.3.0
+ build: heb74ff8_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-13.3.0-heb74ff8_1.conda
+ sha256: c86d130f0a3099e46ff51aa7ffaab73cb44fc420d27a96076aab3b9a326fc137
+ md5: c4cb22f270f501f5c59a122dc2adf20a
+ depends:
+ - libgcc >=13.3.0
+ - libstdcxx >=13.3.0
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 4133922
+ timestamp: 1724801171589
+- kind: conda
+ name: libselinux-cos6-x86_64
+ version: 2.0.94
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libselinux-cos6-x86_64-2.0.94-h9b0a68f_1105.tar.bz2
+ sha256: 8b8094b66b4551f44001becc23c67a3b1da4fce588a3670f16266eec5dcdd41b
+ md5: 99ffb774b18de97d6a934da3bec724a1
+ depends:
+ - libsepol-cos6-x86_64 >=2.0.32 *_1105
+ - sysroot_linux-64 2.12.*
+ license: Public-Domain
+ license_family: Public-Domain
+ size: 62600
+ timestamp: 1627481614893
+- kind: conda
+ name: libselinux-cos7-aarch64
+ version: '2.5'
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libselinux-cos7-aarch64-2.5-ha675448_1106.tar.bz2
+ sha256: e03d71ad61215337984cfc94c7f879eeb7f84b9e5c744be616e9c16620b47f43
+ md5: 8ccebbf0b5720b707b755bc0c7148b7d
+ depends:
+ - libsepol-cos7-aarch64 >=2.5 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: Public-Domain
+ license_family: Public-Domain
+ size: 100583
+ timestamp: 1726578569567
+- kind: conda
+ name: libsepol-cos6-x86_64
+ version: 2.0.41
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libsepol-cos6-x86_64-2.0.41-h9b0a68f_1105.tar.bz2
+ sha256: 4c51d278f7db127692936ef7a68c13ecd22798484ffe1c03af3342685f2d7ffe
+ md5: 774fcdf9815077e7cde4e89c93ff0594
+ depends:
+ - sysroot_linux-64 2.12.*
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 116764
+ timestamp: 1627479932322
+- kind: conda
+ name: libsepol-cos7-aarch64
+ version: '2.5'
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libsepol-cos7-aarch64-2.5-ha675448_1106.tar.bz2
+ sha256: 3fc531308ba36824bc482d92705666318a82b006a2a347e72b76742335fa54d7
+ md5: ac284710bb5b5ac30f58e0543dddaf5b
+ depends:
+ - sysroot_linux-aarch64 2.17.*
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ size: 284363
+ timestamp: 1726576811370
+- kind: conda
+ name: libsolv
+ version: 0.7.30
+ build: h3509ff9_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.30-h3509ff9_0.conda
+ sha256: 1dddbde791efdfc34c8fefa74dc2f910eac9cf87bf37ee6c3c9132eb96a0e7d4
+ md5: 02539b77d25aa4f65b20246549e256c3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 470810
+ timestamp: 1720790097030
+- kind: conda
+ name: libsolv
+ version: 0.7.30
+ build: h62756fc_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsolv-0.7.30-h62756fc_0.conda
+ sha256: 1360b034a6dfe9dd800f5a5569c5013558f128b2b8ee90f90c37239bf266d6fc
+ md5: 3313c18870220c75fdd8374406ef7491
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 474705
+ timestamp: 1720790111161
+- kind: conda
+ name: libsolv
+ version: 0.7.30
+ build: h69d5d9b_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libsolv-0.7.30-h69d5d9b_0.conda
+ sha256: d0c8a8a448dc8b01aecc023b8e6a26f8cdd03f04263ca0a282a057d636b47b3c
+ md5: 8f8fd9f1740c8cb7dcfebf1a1ed7e678
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 415636
+ timestamp: 1720790194490
+- kind: conda
+ name: libsolv
+ version: 0.7.30
+ build: h6c9b7f8_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libsolv-0.7.30-h6c9b7f8_0.conda
+ sha256: e5ffda8a71a334edff7af4f194aa6c72df2f0763321250270f9f68dfc8eaf439
+ md5: a5795a7ca73c9c99f112abce7864b500
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 387085
+ timestamp: 1720790391931
+- kind: conda
+ name: libsolv
+ version: 0.7.30
+ build: hbb528cf_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libsolv-0.7.30-hbb528cf_0.conda
+ sha256: 9697652adc0cef5a7f284fb59bf1263c8338fd8932f5817be9f369b985981aa7
+ md5: 8394b4531cef34f46297f73286a35a39
+ depends:
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 429121
+ timestamp: 1720790579319
+- kind: conda
+ name: libspnav
+ version: '1.1'
+ build: h4ab18f5_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libspnav-1.1-h4ab18f5_2.conda
+ sha256: f1a8e35164ffb686fa08794c655b7793e2f15fed2b7c1b27c2e7a7e86d5081f8
+ md5: e2b57c40774ddd61f112d66d8323b157
+ depends:
+ - libgcc-ng >=12
+ - xorg-libx11 >=1.8.4,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 92594
+ timestamp: 1716963514988
+- kind: conda
+ name: libspnav
+ version: '1.1'
+ build: h68df207_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libspnav-1.1-h68df207_2.conda
+ sha256: b59985c397e0b8cfbc1fa5add725a2e21dc8d0603ce3d98130290053ff2e0817
+ md5: b7b0510def0c00c6911f757c4553cc54
+ depends:
+ - libgcc-ng >=12
+ - xorg-libx11 >=1.8.4,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 76492
+ timestamp: 1716963604586
+- kind: conda
+ name: libsqlite
+ version: 3.47.0
+ build: h2466b09_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.47.0-h2466b09_1.conda
+ sha256: 3342d6fe787f5830f7e8466d9c65c914bfd8d67220fb5673041b338cbba47afe
+ md5: 5b1f36012cc3d09c4eb9f24ad0e2c379
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Unlicense
+ size: 892175
+ timestamp: 1730208431651
+- kind: conda
+ name: libsqlite
+ version: 3.47.0
+ build: h2f8c449_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.47.0-h2f8c449_1.conda
+ sha256: a0f7381c867898a45018b1e5cf1aca68659d292d58252e8f489a4270b010fed8
+ md5: af445c495253a871c3d809e1199bb12b
+ depends:
+ - __osx >=10.13
+ - libzlib >=1.3.1,<2.0a0
+ license: Unlicense
+ size: 915300
+ timestamp: 1730208101739
+- kind: conda
+ name: libsqlite
+ version: 3.47.0
+ build: hadc24fc_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.0-hadc24fc_1.conda
+ sha256: 8a9aadf996a2399f65b679c6e7f29139d5059f699c63e6d7b50e20db10c00508
+ md5: b6f02b52a174e612e89548f4663ce56a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: Unlicense
+ size: 875349
+ timestamp: 1730208050020
+- kind: conda
+ name: libsqlite
+ version: 3.47.0
+ build: hbaaea75_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.47.0-hbaaea75_1.conda
+ sha256: 5a96caa566c11e5a5ebdcdb86a0759a7fb27d3c5f42e6a0fd0d6023c1e935d9e
+ md5: 07a14fbe439eef078cc479deca321161
+ depends:
+ - __osx >=11.0
+ - libzlib >=1.3.1,<2.0a0
+ license: Unlicense
+ size: 837683
+ timestamp: 1730208293578
+- kind: conda
+ name: libsqlite
+ version: 3.47.0
+ build: hc4a20ef_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.47.0-hc4a20ef_1.conda
+ sha256: 73e143fdb966b61cd25ab804d416d87dfce43ac684e0fac3ad8b1450796331ab
+ md5: a6b185aac10d08028340858f77231b23
+ depends:
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: Unlicense
+ size: 1041855
+ timestamp: 1730208187962
+- kind: conda
+ name: libssh2
+ version: 1.11.1
+ build: h3dc7d44_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-h3dc7d44_0.conda
+ sha256: ef2a81c9a15080b996a37f0e1712881da90a710b234e63d8539d69892353de90
+ md5: b1caec4561059e43a5d056684c5a2de0
+ depends:
+ - __osx >=10.13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 283874
+ timestamp: 1732349525684
+- kind: conda
+ name: libssh2
+ version: 1.11.1
+ build: h9cc3647_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h9cc3647_0.conda
+ sha256: f7047c6ed44bcaeb04432e8c74da87591940d091b0a3940c0d884b7faa8062e9
+ md5: ddc7194676c285513706e5fc64f214d7
+ depends:
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 279028
+ timestamp: 1732349599461
+- kind: conda
+ name: libssh2
+ version: 1.11.1
+ build: ha41c0db_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.1-ha41c0db_0.conda
+ sha256: 40f2af5357457546bd11cd64a3b9043d83865180f65ce602515c35f353be35c7
+ md5: aeffe03c0e598f015aab08dbb04f6ee4
+ depends:
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 311577
+ timestamp: 1732349396421
+- kind: conda
+ name: libssh2
+ version: 1.11.1
+ build: he619c9f_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda
+ sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191
+ md5: af0cbf037dd614c34399b3b3e568c557
+ depends:
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 291889
+ timestamp: 1732349796504
+- kind: conda
+ name: libssh2
+ version: 1.11.1
+ build: hf672d98_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda
+ sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9
+ md5: be2de152d8073ef1c01b7728475f2fe7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.4.0,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 304278
+ timestamp: 1732349402869
+- kind: conda
+ name: libstdcxx
+ version: 14.2.0
+ build: h3f4de04_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-14.2.0-h3f4de04_1.conda
+ sha256: 519556d2c93f1b487091ce046d62e762286177f4a670ec10e16005177d0bcab3
+ md5: 37f489acd39e22b623d2d1e5ac6d195c
+ depends:
+ - libgcc 14.2.0 he277a41_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 3816794
+ timestamp: 1729089463404
+- kind: conda
+ name: libstdcxx
+ version: 14.2.0
+ build: hc0a3c3a_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-hc0a3c3a_1.conda
+ sha256: 4661af0eb9bdcbb5fb33e5d0023b001ad4be828fccdcc56500059d56f9869462
+ md5: 234a5554c53625688d51062645337328
+ depends:
+ - libgcc 14.2.0 h77fa898_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 3893695
+ timestamp: 1729027746910
+- kind: conda
+ name: libstdcxx-devel_linux-64
+ version: 13.3.0
+ build: h84ea5a7_101
+ build_number: 101
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-13.3.0-h84ea5a7_101.conda
+ sha256: 0a9226c1b994f996229ffb54fa40d608cd4e4b48e8dc73a66134bea8ce949412
+ md5: 29b5a4ed4613fa81a07c21045e3f5bf6
+ depends:
+ - __unix
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 14074676
+ timestamp: 1724801075448
+- kind: conda
+ name: libstdcxx-devel_linux-aarch64
+ version: 13.3.0
+ build: h0c07274_101
+ build_number: 101
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-aarch64-13.3.0-h0c07274_101.conda
+ sha256: a2cc4cc3ef5d470c25a872a05485cf322a525950f9e1472e22cc97030d0858b1
+ md5: a7fdc5d75d643dd46f4e3d6092a13036
+ depends:
+ - __unix
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 12182186
+ timestamp: 1724801911954
+- kind: conda
+ name: libstdcxx-ng
+ version: 14.2.0
+ build: h4852527_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_1.conda
+ sha256: 25bb30b827d4f6d6f0522cc0579e431695503822f144043b93c50237017fffd8
+ md5: 8371ac6457591af2cf6159439c1fd051
+ depends:
+ - libstdcxx 14.2.0 hc0a3c3a_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 54105
+ timestamp: 1729027780628
+- kind: conda
+ name: libstdcxx-ng
+ version: 14.2.0
+ build: hf1166c9_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-14.2.0-hf1166c9_1.conda
+ sha256: 9f97461bd55a2745a7a0941f3502a047f15bfe7bb2952dc7fb204b3202f866fd
+ md5: 0e75771b8a03afae5a2c6ce71bc733f5
+ depends:
+ - libstdcxx 14.2.0 h3f4de04_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 54133
+ timestamp: 1729089498541
+- kind: conda
+ name: libtheora
+ version: 1.1.1
+ build: h4ab18f5_1006
+ build_number: 1006
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda
+ sha256: 50c8cd416ac8425e415264de167b41ae8442de22a91098dfdd993ddbf9f13067
+ md5: 553281a034e9cf8693c9df49f6c78ea1
+ depends:
+ - libgcc-ng >=12
+ - libogg 1.3.*
+ - libogg >=1.3.5,<1.4.0a0
+ - libvorbis 1.3.*
+ - libvorbis >=1.3.7,<1.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 328924
+ timestamp: 1719667859099
+- kind: conda
+ name: libtheora
+ version: 1.1.1
+ build: h68df207_1006
+ build_number: 1006
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libtheora-1.1.1-h68df207_1006.conda
+ sha256: b5a46b5f2cf1ab6734dcab65f370c6b95f1d62ed27d9d30fe06a828bcb9b239b
+ md5: 5786518d6e1eff2225fe56c0e5d573d8
+ depends:
+ - libgcc-ng >=12
+ - libogg 1.3.*
+ - libogg >=1.3.5,<1.4.0a0
+ - libvorbis 1.3.*
+ - libvorbis >=1.3.7,<1.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 335103
+ timestamp: 1719667812650
+- kind: conda
+ name: libtheora
+ version: 1.1.1
+ build: h99b78c6_1006
+ build_number: 1006
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libtheora-1.1.1-h99b78c6_1006.conda
+ sha256: 05d8f9a4ae6669ebf8d69ec7f62c47b197b885ff989641d8a8043a1159d50c22
+ md5: 4b0af7570b8af42ac6796da8777589d1
+ depends:
+ - __osx >=11.0
+ - libogg 1.3.*
+ - libogg >=1.3.5,<1.4.0a0
+ - libvorbis 1.3.*
+ - libvorbis >=1.3.7,<1.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 282764
+ timestamp: 1719667898064
+- kind: conda
+ name: libtheora
+ version: 1.1.1
+ build: hc70643c_1006
+ build_number: 1006
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libtheora-1.1.1-hc70643c_1006.conda
+ sha256: 7c4f8dca38604fa17d54061ff03f3e79aff78537a12e1eaf3b4a01be743b5633
+ md5: 90cdca71edde0b3e549e8cbb43308208
+ depends:
+ - libogg 1.3.*
+ - libogg >=1.3.5,<1.4.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 160440
+ timestamp: 1719668116346
+- kind: conda
+ name: libtheora
+ version: 1.1.1
+ build: hfdf4475_1006
+ build_number: 1006
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libtheora-1.1.1-hfdf4475_1006.conda
+ sha256: 72421637a05c2e99120d29a00951190644a4439c8155df9e8a8340983934db13
+ md5: fc8c11f9f4edda643302e28aa0999b90
+ depends:
+ - __osx >=10.13
+ - libogg 1.3.*
+ - libogg >=1.3.5,<1.4.0a0
+ - libvorbis 1.3.*
+ - libvorbis >=1.3.7,<1.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 289472
+ timestamp: 1719667988764
+- kind: conda
+ name: libtiff
+ version: 4.7.0
+ build: h583c2ba_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.7.0-h583c2ba_1.conda
+ sha256: 4d58c695dfed6f308d0fd3ff552e0078bb98bc0be2ea0bf55820eb6e86fa5355
+ md5: 4b78bcdcc8780cede8b3d090deba874d
+ depends:
+ - __osx >=10.13
+ - lerc >=4.0.0,<5.0a0
+ - libcxx >=17
+ - libdeflate >=1.22,<1.23.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: HPND
+ size: 395980
+ timestamp: 1728232302162
+- kind: conda
+ name: libtiff
+ version: 4.7.0
+ build: he137b08_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-he137b08_1.conda
+ sha256: 9890121db85f6ef463fe12eb04ef1471176e3ef3b5e2d62e8d6dac713df00df4
+ md5: 63872517c98aa305da58a757c443698e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - lerc >=4.0.0,<5.0a0
+ - libdeflate >=1.22,<1.23.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libstdcxx >=13
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: HPND
+ size: 428156
+ timestamp: 1728232228989
+- kind: conda
+ name: libtiff
+ version: 4.7.0
+ build: hec21d91_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libtiff-4.7.0-hec21d91_1.conda
+ sha256: 14ecb9e129b1b5ffd6d4bee48de95cd2cd0973c712e1b965d3ef977cca23936d
+ md5: 1f80061f5ba6956fcdc381f34618cd8d
+ depends:
+ - lerc >=4.0.0,<5.0a0
+ - libdeflate >=1.22,<1.23.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libstdcxx >=13
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: HPND
+ size: 464938
+ timestamp: 1728232266969
+- kind: conda
+ name: libtiff
+ version: 4.7.0
+ build: hfc51747_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.0-hfc51747_1.conda
+ sha256: 902cb9f7f54d17dcfd54ce050b1ce2bc944b9bbd1748913342c2ea1e1140f8bb
+ md5: eac317ed1cc6b9c0af0c27297e364665
+ depends:
+ - lerc >=4.0.0,<5.0a0
+ - libdeflate >=1.22,<1.23.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: HPND
+ size: 978865
+ timestamp: 1728232594877
+- kind: conda
+ name: libtiff
+ version: 4.7.0
+ build: hfce79cd_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.0-hfce79cd_1.conda
+ sha256: 97ba24c74750b6e731b3fe0d2a751cda6148b4937d2cc3f72d43bf7b3885c39d
+ md5: b9abf45f7c64caf3303725f1aa0e9a4d
+ depends:
+ - __osx >=11.0
+ - lerc >=4.0.0,<5.0a0
+ - libcxx >=17
+ - libdeflate >=1.22,<1.23.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: HPND
+ size: 366323
+ timestamp: 1728232400072
+- kind: conda
+ name: libuuid
+ version: 2.38.1
+ build: h0b41bf4_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
+ sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18
+ md5: 40b61aab5c7ba9ff276c41cfffe6b80b
+ depends:
+ - libgcc-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 33601
+ timestamp: 1680112270483
+- kind: conda
+ name: libuuid
+ version: 2.38.1
+ build: hb4cce97_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda
+ sha256: 616277b0c5f7616c2cdf36f6c316ea3f9aa5bb35f2d4476a349ab58b9b91675f
+ md5: 000e30b09db0b7c775b21695dff30969
+ depends:
+ - libgcc-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 35720
+ timestamp: 1680113474501
+- kind: conda
+ name: libuv
+ version: 1.49.2
+ build: h2466b09_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libuv-1.49.2-h2466b09_0.conda
+ sha256: d598c536f0e432901ba8b489564799f6f570471b2a3ce9b76e152ee0a961a380
+ md5: 30ebb43533efcdc8c357ef409bad86b6
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 290376
+ timestamp: 1729322844056
+- kind: conda
+ name: libuv
+ version: 1.49.2
+ build: h7ab814d_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.49.2-h7ab814d_0.conda
+ sha256: 0e5176af1e788ad5006cf261c4ea5a288a935fda48993b0240ddd2e562dc3d02
+ md5: 4bc348e3a1a74d20a3f9beb866d75e0a
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 410500
+ timestamp: 1729322654121
+- kind: conda
+ name: libuv
+ version: 1.49.2
+ build: h86ecc28_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.49.2-h86ecc28_0.conda
+ sha256: adf4eca89339ac7780f2394e7e6699be81259eb91f79f9d9fdf2c1bc6b26f210
+ md5: 1899e1ec2be63386c41c4db31d3056af
+ depends:
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 627484
+ timestamp: 1729322575379
+- kind: conda
+ name: libuv
+ version: 1.49.2
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.49.2-hb9d3cd8_0.conda
+ sha256: a35cd81cd1a9add11024097da83cc06b0aae83186fe4124b77710876f37d8f31
+ md5: 070e3c9ddab77e38799d5c30b109c633
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 884647
+ timestamp: 1729322566955
+- kind: conda
+ name: libuv
+ version: 1.49.2
+ build: hd79239c_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.49.2-hd79239c_0.conda
+ sha256: a2083200357513f932b44e88858a50a638d1a751a050bc62b2cbee2ac54f102c
+ md5: ec36c2438046ca8d2b4368d62dd5c38c
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 413607
+ timestamp: 1729322686826
+- kind: conda
+ name: libva
+ version: 2.22.0
+ build: h8a09558_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.22.0-h8a09558_1.conda
+ sha256: 0bd81019e02cce8d9d4077c96b82ca03c9b0ece67831c7437f977ca1f5a924a3
+ md5: 139262125a3eac8ff6eef898598745a3
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libdrm >=2.4.123,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglx >=1.7.0,<2.0a0
+ - libxcb >=1.16,<2.0.0a0
+ - wayland >=1.23.1,<2.0a0
+ - wayland-protocols
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.4,<2.0a0
+ - xorg-libxfixes
+ license: MIT
+ license_family: MIT
+ size: 217708
+ timestamp: 1726828458441
+- kind: conda
+ name: libvorbis
+ version: 1.3.7
+ build: h01db608_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libvorbis-1.3.7-h01db608_0.tar.bz2
+ sha256: 1ade4727be5c52b287001b8094d02af66342dfe0ba13ef69222aaaf2e9be4342
+ md5: c2863ff72c6d8a59054f8b9102c206e9
+ depends:
+ - libgcc-ng >=9.3.0
+ - libogg >=1.3.4,<1.4.0a0
+ - libstdcxx-ng >=9.3.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 292082
+ timestamp: 1610616294416
+- kind: conda
+ name: libvorbis
+ version: 1.3.7
+ build: h046ec9c_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libvorbis-1.3.7-h046ec9c_0.tar.bz2
+ sha256: fbcce1005efcd616e452dea07fe34893d8dd13c65628e74920eeb68ac549faf7
+ md5: fbbda1fede0aadaa252f6919148c4ce1
+ depends:
+ - libcxx >=11.0.0
+ - libogg >=1.3.4,<1.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 254208
+ timestamp: 1610609857389
+- kind: conda
+ name: libvorbis
+ version: 1.3.7
+ build: h9c3ff4c_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2
+ sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33
+ md5: 309dec04b70a3cc0f1e84a4013683bc0
+ depends:
+ - libgcc-ng >=9.3.0
+ - libogg >=1.3.4,<1.4.0a0
+ - libstdcxx-ng >=9.3.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 286280
+ timestamp: 1610609811627
+- kind: conda
+ name: libvorbis
+ version: 1.3.7
+ build: h9f76cd9_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libvorbis-1.3.7-h9f76cd9_0.tar.bz2
+ sha256: 60457217e20d8b24a8390c81338a8fa69c8656b440c067cd82f802a09da93cb9
+ md5: 92a1a88d1a1d468c19d9e1659ac8d3df
+ depends:
+ - libcxx >=11.0.0
+ - libogg >=1.3.4,<1.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 254839
+ timestamp: 1610609991029
+- kind: conda
+ name: libvpx
+ version: 1.14.1
+ build: h0a1ffab_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libvpx-1.14.1-h0a1ffab_0.conda
+ sha256: 918493354f78cb3bb2c3d91264afbcb312b2afe287237e7d1c85ee7e96d15b47
+ md5: 3cb63f822a49e4c406639ebf8b5d87d7
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1211700
+ timestamp: 1717859955539
+- kind: conda
+ name: libvpx
+ version: 1.14.1
+ build: h7bae524_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libvpx-1.14.1-h7bae524_0.conda
+ sha256: 5d6458b5395cba0804846f156574aa8a34eef6d5f05d39e9932ddbb4215f8bd0
+ md5: 95bee48afff34f203e4828444c2b2ae9
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1178981
+ timestamp: 1717860096742
+- kind: conda
+ name: libvpx
+ version: 1.14.1
+ build: hac33072_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda
+ sha256: e7d2daf409c807be48310fcc8924e481b62988143f582eb3a58c5523a6763b13
+ md5: cde393f461e0c169d9ffb2fc70f81c33
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1022466
+ timestamp: 1717859935011
+- kind: conda
+ name: libvpx
+ version: 1.14.1
+ build: hf036a51_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.14.1-hf036a51_0.conda
+ sha256: 47e70e76988c11de97d539794fd4b03db69b75289ac02cdc35ae5a595ffcd973
+ md5: 9b8744a702ffb1738191e094e6eb67dc
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1297054
+ timestamp: 1717860051058
+- kind: conda
+ name: libwebp-base
+ version: 1.4.0
+ build: h10d778d_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.4.0-h10d778d_0.conda
+ sha256: 7bafd8f4c637778cd0aa390bf3a894feef0e1fcf6ea6000c7ffc25c4c5a65538
+ md5: b2c0047ea73819d992484faacbbe1c24
+ constrains:
+ - libwebp 1.4.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 355099
+ timestamp: 1713200298965
+- kind: conda
+ name: libwebp-base
+ version: 1.4.0
+ build: h31becfc_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.4.0-h31becfc_0.conda
+ sha256: 10dded60f274e29c573cfacf6e96f5d0fc374ee431250374a44cbd773916ab9d
+ md5: 5fd7ab3e5f382c70607fbac6335e6e19
+ depends:
+ - libgcc-ng >=12
+ constrains:
+ - libwebp 1.4.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 363577
+ timestamp: 1713201785160
+- kind: conda
+ name: libwebp-base
+ version: 1.4.0
+ build: h93a5062_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.4.0-h93a5062_0.conda
+ sha256: 0d4bad713a512d79bfeb4d61821f447afab8b0792aca823f505ce6b195e9fde5
+ md5: c0af0edfebe780b19940e94871f1a765
+ constrains:
+ - libwebp 1.4.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 287750
+ timestamp: 1713200194013
+- kind: conda
+ name: libwebp-base
+ version: 1.4.0
+ build: hcfcfb64_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.4.0-hcfcfb64_0.conda
+ sha256: d0ca51cb1de9192be9a3238e71fbcca5a535619c499c4f4c9b2ed41c14d36770
+ md5: abd61d0ab127ec5cd68f62c2969e6f34
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - libwebp 1.4.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 274359
+ timestamp: 1713200524021
+- kind: conda
+ name: libwebp-base
+ version: 1.4.0
+ build: hd590300_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda
+ sha256: 49bc5f6b1e11cb2babf2a2a731d1a680a5e08a858280876a779dbda06c78c35f
+ md5: b26e8aa824079e1be0294e7152ca4559
+ depends:
+ - libgcc-ng >=12
+ constrains:
+ - libwebp 1.4.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 438953
+ timestamp: 1713199854503
+- kind: conda
+ name: libx11-common-cos6-x86_64
+ version: 1.6.4
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libx11-common-cos6-x86_64-1.6.4-h9b0a68f_1105.tar.bz2
+ sha256: 3434d7218322b868c726fee4392ff3d678e0bd68daccafd181f6a1a9193be12a
+ md5: 058d747a8521521a6139776e346e9007
+ depends:
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 146903
+ timestamp: 1627478872834
+- kind: conda
+ name: libx11-common-cos7-aarch64
+ version: 1.6.7
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libx11-common-cos7-aarch64-1.6.7-ha675448_1106.tar.bz2
+ sha256: 76842ec3742ade0a65beb3526e6ef8d34eb11754651d659b010bcdb0fa57426f
+ md5: 56f8f6bfdf4cde3ed766194c929b1ad5
+ depends:
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 148239
+ timestamp: 1726575499900
+- kind: conda
+ name: libx11-cos6-x86_64
+ version: 1.6.4
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libx11-cos6-x86_64-1.6.4-h9b0a68f_1105.tar.bz2
+ sha256: b87edfe71094560b1a50303c0b15415e99061eb7cef6063edc5045276ffc5451
+ md5: ea2a73c7d4913ce9ec8cc6c50a21c6a9
+ depends:
+ - libx11-common-cos6-x86_64 ==1.6.4 *_1105
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 752964
+ timestamp: 1627482280842
+- kind: conda
+ name: libx11-cos7-aarch64
+ version: 1.6.7
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libx11-cos7-aarch64-1.6.7-ha675448_1106.tar.bz2
+ sha256: ba0d700a3aed99e3898172855af399e1356b44cb7b146a7f43bdc97098801da6
+ md5: 5c6e07141a4d9931bea7106472c5423d
+ depends:
+ - libx11-common-cos7-aarch64 >=1.6.7 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 739899
+ timestamp: 1726583073033
+- kind: conda
+ name: libxau-cos6-x86_64
+ version: 1.0.6
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxau-cos6-x86_64-1.0.6-h9b0a68f_1105.tar.bz2
+ sha256: fc228ad0bd6b4a862cd7ff39cf3f475f417d944546ebd7bb8a79ffa38d6065ae
+ md5: 6574f3964f24ff622de05ed50aa6eeaa
+ depends:
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 20895
+ timestamp: 1627478063277
+- kind: conda
+ name: libxau-cos7-aarch64
+ version: 1.0.8
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxau-cos7-aarch64-1.0.8-ha675448_1106.tar.bz2
+ sha256: 9cbb3974097793328236afde334c4d2a7991c4059a99214f3d3978929a62b527
+ md5: 8498a7400df19ded6dac69810b7f6779
+ depends:
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 26231
+ timestamp: 1726575472110
+- kind: conda
+ name: libxcb
+ version: '1.16'
+ build: h013a479_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.16-h013a479_1.conda
+ sha256: abae56e12a4c62730b899fdfb82628a9ac171c4ce144fc9f34ae024957a82a0e
+ md5: f0b599acdc82d5bc7e3b105833e7c5c8
+ depends:
+ - m2w64-gcc-libs
+ - m2w64-gcc-libs-core
+ - pthread-stubs
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdmcp
+ license: MIT
+ license_family: MIT
+ size: 989459
+ timestamp: 1724419883091
+- kind: conda
+ name: libxcb
+ version: 1.17.0
+ build: h262b8f6_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda
+ sha256: 461cab3d5650ac6db73a367de5c8eca50363966e862dcf60181d693236b1ae7b
+ md5: cd14ee5cca2464a425b1dbfc24d90db2
+ depends:
+ - libgcc >=13
+ - pthread-stubs
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdmcp
+ license: MIT
+ license_family: MIT
+ size: 397493
+ timestamp: 1727280745441
+- kind: conda
+ name: libxcb
+ version: 1.17.0
+ build: h8a09558_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
+ sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa
+ md5: 92ed62436b625154323d40d5f2f11dd7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - pthread-stubs
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdmcp
+ license: MIT
+ license_family: MIT
+ size: 395888
+ timestamp: 1727278577118
+- kind: conda
+ name: libxcb
+ version: 1.17.0
+ build: hdb1d25a_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda
+ sha256: bd3816218924b1e43b275863e21a3e13a5db4a6da74cca8e60bc3c213eb62f71
+ md5: af523aae2eca6dfa1c8eec693f5b9a79
+ depends:
+ - __osx >=11.0
+ - pthread-stubs
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdmcp
+ license: MIT
+ license_family: MIT
+ size: 323658
+ timestamp: 1727278733917
+- kind: conda
+ name: libxcb
+ version: 1.17.0
+ build: hf1f96e2_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.17.0-hf1f96e2_0.conda
+ sha256: 8896cd5deff6f57d102734f3e672bc17120613647288f9122bec69098e839af7
+ md5: bbeca862892e2898bdb45792a61c4afc
+ depends:
+ - __osx >=10.13
+ - pthread-stubs
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdmcp
+ license: MIT
+ license_family: MIT
+ size: 323770
+ timestamp: 1727278927545
+- kind: conda
+ name: libxcb-cos6-x86_64
+ version: '1.12'
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxcb-cos6-x86_64-1.12-h9b0a68f_1105.tar.bz2
+ sha256: 3d2ee9ac9aa8246adfb805e34dc43341627fd921f37095604915ec48d4088aa0
+ md5: 657f56a7df04d422c7da5d20f32b1d91
+ depends:
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 204518
+ timestamp: 1627477525951
+- kind: conda
+ name: libxcb-cos7-aarch64
+ version: '1.13'
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxcb-cos7-aarch64-1.13-ha675448_1106.tar.bz2
+ sha256: f2c0ab908d1922f51f0d7e5fabdc4a12b0d15fb8f992e23928ffb25bd772c3d3
+ md5: 75aee5c5c899473c267e64301ab259f8
+ depends:
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 246027
+ timestamp: 1726576807979
+- kind: conda
+ name: libxcrypt
+ version: 4.4.36
+ build: h31becfc_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda
+ sha256: 6b46c397644091b8a26a3048636d10b989b1bf266d4be5e9474bf763f828f41f
+ md5: b4df5d7d4b63579d081fd3a4cf99740e
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.1-or-later
+ size: 114269
+ timestamp: 1702724369203
+- kind: conda
+ name: libxcrypt
+ version: 4.4.36
+ build: hd590300_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
+ md5: 5aa797f8787fe7a17d1b0821485b5adc
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.1-or-later
+ size: 100393
+ timestamp: 1702724383534
+- kind: conda
+ name: libxdamage-cos6-x86_64
+ version: 1.1.3
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxdamage-cos6-x86_64-1.1.3-h9b0a68f_1105.tar.bz2
+ sha256: badde3e0e29d9cd791719b7411b78a6a83fdc31f9c8613d9ce74919186cf99bf
+ md5: 49ffcbf26a66e5d070b87a7ebb414e99
+ depends:
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 15356
+ timestamp: 1627479666414
+- kind: conda
+ name: libxdamage-cos7-aarch64
+ version: 1.1.4
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxdamage-cos7-aarch64-1.1.4-ha675448_1106.tar.bz2
+ sha256: 92ddc0854544f185ab0db0c52d5d013fd1dd7beacc2b71c375792e000b0020b0
+ md5: a803b17c691e0d454145b41684ba161b
+ depends:
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 18453
+ timestamp: 1726575535492
+- kind: conda
+ name: libxext-cos6-x86_64
+ version: 1.3.3
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxext-cos6-x86_64-1.3.3-h9b0a68f_1105.tar.bz2
+ sha256: 9ceea97572a8df82638555e86054c6ac46368e61ebe38d01fd3d1d10b133b5de
+ md5: 9b7ffe036c99cfaf2ef454a61165328b
+ depends:
+ - libx11-cos6-x86_64 >=1.5.99.902 *_1105
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 34905
+ timestamp: 1627484818339
+- kind: conda
+ name: libxext-cos7-aarch64
+ version: 1.3.3
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxext-cos7-aarch64-1.3.3-ha675448_1106.tar.bz2
+ sha256: b407e56ce1fb4b0ebab0096504523da732781e6ffaaa5728592fd6d589a54d7e
+ md5: 3b8c8e892b9351a7a2c99e20e7455db5
+ depends:
+ - libx11-cos7-aarch64 >=1.5.99.902 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 39917
+ timestamp: 1726584354967
+- kind: conda
+ name: libxfixes-cos6-x86_64
+ version: 5.0.3
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxfixes-cos6-x86_64-5.0.3-h9b0a68f_1105.tar.bz2
+ sha256: 96f104ceb8fe39035ccfead27465baddd0685bee196d4f977ff476f70fac4662
+ md5: 687c7aaba8cb84250cad653430377dc6
+ depends:
+ - libx11-cos6-x86_64 >=1.6 *_1105
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 14342
+ timestamp: 1627485142320
+- kind: conda
+ name: libxfixes-cos7-aarch64
+ version: 5.0.3
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxfixes-cos7-aarch64-5.0.3-ha675448_1106.tar.bz2
+ sha256: f6fa2ef949ad3576d9e4b258b18ea02f02c059e3d7023ed9ec7f76dae5733a08
+ md5: 1fa1e58f9a3ee0df93e36bc839072069
+ depends:
+ - libx11-cos7-aarch64 >=1.6 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 17024
+ timestamp: 1726585824940
+- kind: conda
+ name: libxi-cos6-x86_64
+ version: 1.7.8
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxi-cos6-x86_64-1.7.8-h9b0a68f_1105.tar.bz2
+ sha256: 8e951ee4f84276f19d51f9b9528a16fa53bf9fc53b358c6972aa50a18d223d38
+ md5: fd5134fd220ba3cb654100b5b9ee616c
+ depends:
+ - libx11-cos6-x86_64 >=1.5.99.902 *_1105
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 33890
+ timestamp: 1627484499199
+- kind: conda
+ name: libxi-cos7-aarch64
+ version: 1.7.9
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxi-cos7-aarch64-1.7.9-ha675448_1106.tar.bz2
+ sha256: f665a94754fd41f372e189790d46bfb2b6174aa124f68dd64bb7773153922300
+ md5: d4a8f75382df3ed340a258170fd492eb
+ depends:
+ - libx11-cos7-aarch64 >=1.5.99.902 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 38133
+ timestamp: 1726584370851
+- kind: conda
+ name: libxi-devel-cos6-x86_64
+ version: 1.7.8
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxi-devel-cos6-x86_64-1.7.8-h9b0a68f_1105.tar.bz2
+ sha256: f92cc61d32e7fa86c37c54c041ccb1d6b0399860b21199c05d1a0e625d09f755
+ md5: e4e890adb9c5e604084c4ed263be24a3
+ depends:
+ - libxi-cos6-x86_64 ==1.7.8 *_1105
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 95784
+ timestamp: 1627486378997
+- kind: conda
+ name: libxi-devel-cos7-aarch64
+ version: 1.7.9
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxi-devel-cos7-aarch64-1.7.9-ha675448_1106.tar.bz2
+ sha256: b64758b9f65dbdda54ab57136dc1c35d859544c7fbc3d4ba9a62d8c3720e0778
+ md5: 03ae09a32f06f5523b38cdfbcb5f8e2c
+ depends:
+ - libxi-cos7-aarch64 ==1.7.9 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 96691
+ timestamp: 1726587933486
+- kind: conda
+ name: libxkbcommon
+ version: 1.7.0
+ build: h2c5496b_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.7.0-h2c5496b_1.conda
+ sha256: 6804c2a7062d10de6f159f7106dc45ebccc8d42bfb925f7919e26e567fa6da6b
+ md5: e2eaefa4de2b7237af7c907b8bbc760a
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - xkeyboard-config
+ - xorg-libxau >=1.0.11,<2.0a0
+ license: MIT/X11 Derivative
+ license_family: MIT
+ size: 593336
+ timestamp: 1718819935698
+- kind: conda
+ name: libxkbcommon
+ version: 1.7.0
+ build: h46f2afe_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libxkbcommon-1.7.0-h46f2afe_1.conda
+ sha256: 8ed470f72c733aea32bb5d272bf458041add7923d7716d5046bd40edf7ddd67c
+ md5: 78a24e611ab9c09c518f519be49c2e46
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - xkeyboard-config
+ - xorg-libxau >=1.0.11,<2.0a0
+ license: MIT/X11 Derivative
+ license_family: MIT
+ size: 596053
+ timestamp: 1718819931537
+- kind: conda
+ name: libxml2
+ version: 2.13.5
+ build: h442d1da_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.13.5-h442d1da_0.conda
+ sha256: 020466b17c143190bd5a6540be2ceef4c1f8d514408bd5f0adaafcd9d0057b5c
+ md5: 1fbabbec60a3c7c519a5973b06c3b2f4
+ depends:
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 1511585
+ timestamp: 1731489892312
+- kind: conda
+ name: libxml2
+ version: 2.13.5
+ build: h495214b_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.13.5-h495214b_0.conda
+ sha256: 66e1bf40699daf83b39e1281f06c64cf83499de3a9c05d59477fadded6d85b18
+ md5: 8711bc6fb054192dc432741dcd233ac3
+ depends:
+ - __osx >=10.13
+ - icu >=75.1,<76.0a0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ license: MIT
+ license_family: MIT
+ size: 608931
+ timestamp: 1731489767386
+- kind: conda
+ name: libxml2
+ version: 2.13.5
+ build: hb346dea_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.5-hb346dea_0.conda
+ sha256: 8c9d6a3a421ac5bf965af495d1b0a08c6fb2245ba156550bc064a7b4f8fc7bd8
+ md5: c81a9f1118541aaa418ccb22190c817e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - icu >=75.1,<76.0a0
+ - libgcc >=13
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ license: MIT
+ license_family: MIT
+ size: 689626
+ timestamp: 1731489608971
+- kind: conda
+ name: libxml2
+ version: 2.13.5
+ build: hbbdcc80_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.5-hbbdcc80_0.conda
+ sha256: 936de9c0e91cb6f178c48ea14313cf6c79bdb1f474c785c117c41492b0407a98
+ md5: 967d4a9dadd710415ee008d862a07c99
+ depends:
+ - __osx >=11.0
+ - icu >=75.1,<76.0a0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ license: MIT
+ license_family: MIT
+ size: 583082
+ timestamp: 1731489765442
+- kind: conda
+ name: libxml2
+ version: 2.13.5
+ build: hf4efe5d_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.13.5-hf4efe5d_0.conda
+ sha256: bb5033bd79371e82886f9e83ef86babae8e0f50b77d7f9302210345b9205d939
+ md5: 5650ac8a6ed680c032bdabe40ad19ee0
+ depends:
+ - icu >=75.1,<76.0a0
+ - libgcc >=13
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ license: MIT
+ license_family: MIT
+ size: 734453
+ timestamp: 1731489860751
+- kind: conda
+ name: libxslt
+ version: 1.1.39
+ build: h03b04e6_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.39-h03b04e6_0.conda
+ sha256: decfc5614a10231a17543b7366616fb2d88c14be6dd9dd5ecde63aa9a5acfb9e
+ md5: a6e0cec6b3517ffc6b5d36a920fc9312
+ depends:
+ - libxml2 >=2.12.1,<3.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 231368
+ timestamp: 1701628933115
+- kind: conda
+ name: libxslt
+ version: 1.1.39
+ build: h1cc9640_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libxslt-1.1.39-h1cc9640_0.conda
+ sha256: 89ce87b5f594b2ddcd3ddf66dd3f36f85bbe3562b3f408409ccec787d7ed36a3
+ md5: 13e1d3f9188e85c6d59a98651aced002
+ depends:
+ - libgcc-ng >=12
+ - libxml2 >=2.12.1,<3.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 260979
+ timestamp: 1701628809171
+- kind: conda
+ name: libxslt
+ version: 1.1.39
+ build: h223e5b9_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libxslt-1.1.39-h223e5b9_0.conda
+ sha256: 2f1d99ef3fb960f23a63f06cf65ee621a5594a8b4616f35d9805be44617a92af
+ md5: 560c9cacc33e927f55b998eaa0cb1732
+ depends:
+ - libxml2 >=2.12.1,<3.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 225705
+ timestamp: 1701628966565
+- kind: conda
+ name: libxslt
+ version: 1.1.39
+ build: h3df6e99_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libxslt-1.1.39-h3df6e99_0.conda
+ sha256: 6e3d99466d2076c35e7ac8dcdfe604da3d593f55b74a5b8e96c2b2ff63c247aa
+ md5: 279ee338c9b34871d578cb3c7aa68f70
+ depends:
+ - libxml2 >=2.12.1,<3.0.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 418542
+ timestamp: 1701629338549
+- kind: conda
+ name: libxslt
+ version: 1.1.39
+ build: h76b75d6_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda
+ sha256: 684e9b67ef7b9ca0ca993762eeb39705ec58e2e7f958555c758da7ef416db9f3
+ md5: e71f31f8cfb0a91439f2086fc8aa0461
+ depends:
+ - libgcc-ng >=12
+ - libxml2 >=2.12.1,<3.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 254297
+ timestamp: 1701628814990
+- kind: conda
+ name: libxxf86vm-cos6-x86_64
+ version: 1.1.3
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxxf86vm-cos6-x86_64-1.1.3-h9b0a68f_1105.tar.bz2
+ sha256: c3db860723001736d032b1780dc6ada4d58cbaad871e5f453bae17d6b6ef28f9
+ md5: fba350c49bc22452f199b2a1846cba43
+ depends:
+ - libx11-cos6-x86_64 >=1.5.99.902 *_1105
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 13580
+ timestamp: 1627485158222
+- kind: conda
+ name: libxxf86vm-cos7-aarch64
+ version: 1.1.4
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libxxf86vm-cos7-aarch64-1.1.4-ha675448_1106.tar.bz2
+ sha256: 5efd0e0c8bd5f8369585b9da30bfd1753d74230f6eb92725401a47e66ba3d5b0
+ md5: 4a97667afebc70c37ff30fb6a0de867e
+ depends:
+ - libx11-cos7-aarch64 >=1.5.99.902 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 16318
+ timestamp: 1726586753803
+- kind: conda
+ name: libzip
+ version: 1.11.2
+ build: h1336266_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libzip-1.11.2-h1336266_0.conda
+ sha256: 507599a77c1ce823c2d3acaefaae4ead0686f183f3980467a4c4b8ba209eff40
+ md5: 7177414f275db66735a17d316b0a81d6
+ depends:
+ - __osx >=11.0
+ - bzip2 >=1.0.8,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 125507
+ timestamp: 1730442214849
+- kind: conda
+ name: libzip
+ version: 1.11.2
+ build: h3135430_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libzip-1.11.2-h3135430_0.conda
+ sha256: 8ed49d8aa0ff908e16c82f92154174027c8906429e8b63d71f0b27ecc987b43e
+ md5: 09066edc7810e4bd1b41ad01a6cc4706
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 146856
+ timestamp: 1730442305774
+- kind: conda
+ name: libzip
+ version: 1.11.2
+ build: h31df5bb_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.11.2-h31df5bb_0.conda
+ sha256: 434a4d1ad23c1c8deb7ec2da94aca05e22bc29dee445b4f7642e1c2f20fc0b0b
+ md5: 3cf12c97a18312c9243a895580bf5be6
+ depends:
+ - __osx >=10.13
+ - bzip2 >=1.0.8,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 129542
+ timestamp: 1730442392952
+- kind: conda
+ name: libzip
+ version: 1.11.2
+ build: h3e8f909_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libzip-1.11.2-h3e8f909_0.conda
+ sha256: 9ae7edbe6dcdaa0371736118a1e05ffa47c15c0118a092ff1b0a35cbb621ac2d
+ md5: faf7adbb1938c4aa7a312f110f46859b
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 117603
+ timestamp: 1730442215935
+- kind: conda
+ name: libzip
+ version: 1.11.2
+ build: h6991a6a_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda
+ sha256: 991e7348b0f650d495fb6d8aa9f8c727bdf52dabf5853c0cc671439b160dce48
+ md5: a7b27c075c9b7f459f1c022090697cba
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 109043
+ timestamp: 1730442108429
+- kind: conda
+ name: libzlib
+ version: 1.3.1
+ build: h2466b09_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
+ sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402
+ md5: 41fbfac52c601159df6c01f875de31b9
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ size: 55476
+ timestamp: 1727963768015
+- kind: conda
+ name: libzlib
+ version: 1.3.1
+ build: h8359307_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
+ sha256: ce34669eadaba351cd54910743e6a2261b67009624dbc7daeeafdef93616711b
+ md5: 369964e85dc26bfe78f41399b366c435
+ depends:
+ - __osx >=11.0
+ constrains:
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ size: 46438
+ timestamp: 1727963202283
+- kind: conda
+ name: libzlib
+ version: 1.3.1
+ build: h86ecc28_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
+ sha256: 5a2c1eeef69342e88a98d1d95bff1603727ab1ff4ee0e421522acd8813439b84
+ md5: 08aad7cbe9f5a6b460d0976076b6ae64
+ depends:
+ - libgcc >=13
+ constrains:
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ size: 66657
+ timestamp: 1727963199518
+- kind: conda
+ name: libzlib
+ version: 1.3.1
+ build: hb9d3cd8_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
+ md5: edb0dca6bc32e4f4789199455a1dbeb8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ size: 60963
+ timestamp: 1727963148474
+- kind: conda
+ name: libzlib
+ version: 1.3.1
+ build: hd23fc13_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda
+ sha256: 8412f96504fc5993a63edf1e211d042a1fd5b1d51dedec755d2058948fcced09
+ md5: 003a54a4e32b02f7355b50a837e699da
+ depends:
+ - __osx >=10.13
+ constrains:
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ size: 57133
+ timestamp: 1727963183990
+- kind: conda
+ name: lld
+ version: 19.1.4
+ build: hd91d51b_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/lld-19.1.4-hd91d51b_0.conda
+ sha256: b515b1b952e9dced5953c0b73b5791bf72501a7351527cebe076ed46b2e1be22
+ md5: 100f18f987f83543b351e602ce1f047b
+ depends:
+ - libxml2 >=2.13.5,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - llvm ==19.1.4
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 122891313
+ timestamp: 1732070834010
+- kind: conda
+ name: llvm-openmp
+ version: 19.1.4
+ build: ha54dae1_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-19.1.4-ha54dae1_0.conda
+ sha256: 69fca4a9318d7367ec3e0e7d6e6023a46ae1113dbd67da6d0f93fffa0ef54497
+ md5: 193715d512f648fe0865f6f13b1957e3
+ depends:
+ - __osx >=10.13
+ constrains:
+ - openmp 19.1.4|19.1.4.*
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 305132
+ timestamp: 1732102427054
+- kind: conda
+ name: llvm-openmp
+ version: 19.1.4
+ build: hdb05f8b_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.4-hdb05f8b_0.conda
+ sha256: dfdcd8de37899d984326f9734b28f46f80b88c068e44c562933a8b3117f2401a
+ md5: 76ca179ec970bea6e275e2fa477c2d3c
+ depends:
+ - __osx >=11.0
+ constrains:
+ - openmp 19.1.4|19.1.4.*
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: APACHE
+ size: 281554
+ timestamp: 1732102484807
+- kind: conda
+ name: llvm-tools
+ version: 17.0.6
+ build: h5090b49_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-17.0.6-h5090b49_2.conda
+ sha256: a8011fffc1ab3b49f2027fbdba0887e90a2d288240484a4ba4c1b80617522541
+ md5: df635fb4c27fc012c0caf53adf61f043
+ depends:
+ - __osx >=11.0
+ - libllvm17 17.0.6 h5090b49_2
+ - libxml2 >=2.12.7,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - clang-tools 17.0.6
+ - llvm 17.0.6
+ - llvmdev 17.0.6
+ - clang 17.0.6
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 21864486
+ timestamp: 1718321368877
+- kind: conda
+ name: llvm-tools
+ version: 17.0.6
+ build: hbedff68_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-17.0.6-hbedff68_1.conda
+ sha256: 2380e9ac72aba8ef351ec13c9d5b1b233057c70bf4b9b3cea0b3f5bfb5a4e211
+ md5: 4260f86b3dd201ad7ea758d783cd5613
+ depends:
+ - libllvm17 17.0.6 hbedff68_1
+ - libxml2 >=2.12.1,<3.0.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - zstd >=1.5.5,<1.6.0a0
+ constrains:
+ - llvm 17.0.6
+ - clang 17.0.6
+ - clang-tools 17.0.6
+ - llvmdev 17.0.6
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 23219165
+ timestamp: 1701378990823
+- kind: conda
+ name: llvm-tools
+ version: 19.1.4
+ build: h2a44499_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/llvm-tools-19.1.4-h2a44499_1.conda
+ sha256: e0fc92effea7a2aa7315905241c4c549983f493209630ccb17397dab45e3ea2b
+ md5: 7b48821232351c7e5c2905668fe31ba5
+ depends:
+ - libllvm19 19.1.4 h3089188_1
+ - libxml2 >=2.13.5,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - llvmdev 19.1.4
+ - clang-tools 19.1.4
+ - llvm 19.1.4
+ - clang 19.1.4
+ license: Apache-2.0 WITH LLVM-exception
+ license_family: Apache
+ size: 397725696
+ timestamp: 1732684783968
+- kind: conda
+ name: loguru
+ version: 0.7.2
+ build: py312h2e8e312_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/loguru-0.7.2-py312h2e8e312_2.conda
+ sha256: a739c06ba1c020429dd7d5112ecc8c7b109b908d0b38162401a385895905d2c7
+ md5: 01232802799e9861f3f9a61d4ac8ab0b
+ depends:
+ - colorama >=0.3.4
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - win32_setctime >=1.0.0
+ license: MIT
+ license_family: MIT
+ size: 123536
+ timestamp: 1725349948294
+- kind: conda
+ name: loguru
+ version: 0.7.2
+ build: py312h7900ff3_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/loguru-0.7.2-py312h7900ff3_2.conda
+ sha256: e5477e3fa7b4ef070e9ecae619cfc5845e14e3cdac8fbb2d158a03d51f967bef
+ md5: fddd3092f921be8e01b18f2a0266d98f
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 123047
+ timestamp: 1725349857430
+- kind: conda
+ name: loguru
+ version: 0.7.2
+ build: py312h8025657_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/loguru-0.7.2-py312h8025657_2.conda
+ sha256: adccfa12dc866260f568f5d2a4bfac6c9142fdb68c4f70b765d0027e72e4b783
+ md5: ffae73022f1e85223fd1f2f7de8cf1b4
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 123218
+ timestamp: 1725350987665
+- kind: conda
+ name: loguru
+ version: 0.7.2
+ build: py312h81bd7bf_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/loguru-0.7.2-py312h81bd7bf_2.conda
+ sha256: 09c51d5b2c07232c9fa84bdd6f2c6f98536d3a2568ba427ab1d45b634bd30bf4
+ md5: c4bf17db944569f3b0e2e100c91c54e2
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 123434
+ timestamp: 1725349952242
+- kind: conda
+ name: loguru
+ version: 0.7.2
+ build: py312hb401068_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/loguru-0.7.2-py312hb401068_2.conda
+ sha256: e898a7db07218700ca81ccd2eb4ad045e740c88773a32ec0fdb9f2b5a0873795
+ md5: 782d363c536ff818265a294b68f67127
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 122974
+ timestamp: 1725349903912
+- kind: conda
+ name: lz4-c
+ version: 1.9.4
+ build: hb7217d7_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda
+ sha256: fc343b8c82efe40819b986e29ba748366514e5ab94a1e1138df195af5f45fa24
+ md5: 45505bec548634f7d05e02fb25262cb9
+ depends:
+ - libcxx >=14.0.6
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 141188
+ timestamp: 1674727268278
+- kind: conda
+ name: lz4-c
+ version: 1.9.4
+ build: hcb278e6_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda
+ sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f
+ md5: 318b08df404f9c9be5712aaa5a6f0bb0
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 143402
+ timestamp: 1674727076728
+- kind: conda
+ name: lz4-c
+ version: 1.9.4
+ build: hcfcfb64_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda
+ sha256: a0954b4b1590735ea5f3d0f4579c3883f8ac837387afd5b398b241fda85124ab
+ md5: e34720eb20a33fc3bfb8451dd837ab7a
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vs2015_runtime >=14.29.30139
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 134235
+ timestamp: 1674728465431
+- kind: conda
+ name: lz4-c
+ version: 1.9.4
+ build: hd600fc2_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda
+ sha256: 076870eb72411f41c46598c7582a2f3f42ba94c526a2d60a0c8f70a0a7a64429
+ md5: 500145a83ed07ce79c8cef24252f366b
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 163770
+ timestamp: 1674727020254
+- kind: conda
+ name: lz4-c
+ version: 1.9.4
+ build: hf0c8a7f_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda
+ sha256: 39aa0c01696e4e202bf5e337413de09dfeec061d89acd5f28e9968b4e93c3f48
+ md5: aa04f7143228308662696ac24023f991
+ depends:
+ - libcxx >=14.0.6
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 156415
+ timestamp: 1674727335352
+- kind: conda
+ name: lzo
+ version: '2.10'
+ build: h10d778d_1001
+ build_number: 1001
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda
+ sha256: 4006c57f805ca6aec72ee0eb7166b2fd648dd1bf3721b9de4b909cd374196643
+ md5: bfecd73e4a2dc18ffd5288acf8a212ab
+ license: GPL-2.0-or-later
+ license_family: GPL2
+ size: 146405
+ timestamp: 1713516112292
+- kind: conda
+ name: lzo
+ version: '2.10'
+ build: h31becfc_1001
+ build_number: 1001
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/lzo-2.10-h31becfc_1001.conda
+ sha256: d8626d739ac4268e63ca4ba71329cfc4da78b59b377b8cb45a81840138e0e3c9
+ md5: 004025fe20a11090e0b02154f413a758
+ depends:
+ - libgcc-ng >=12
+ license: GPL-2.0-or-later
+ license_family: GPL2
+ size: 164049
+ timestamp: 1713517023523
+- kind: conda
+ name: lzo
+ version: '2.10'
+ build: h93a5062_1001
+ build_number: 1001
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/lzo-2.10-h93a5062_1001.conda
+ sha256: b68160b0a8ec374cea12de7afb954ca47419cdc300358232e19cec666d60b929
+ md5: 915996063a7380c652f83609e970c2a7
+ license: GPL-2.0-or-later
+ license_family: GPL2
+ size: 131447
+ timestamp: 1713516009610
+- kind: conda
+ name: lzo
+ version: '2.10'
+ build: hcfcfb64_1001
+ build_number: 1001
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/lzo-2.10-hcfcfb64_1001.conda
+ sha256: 39e176b8cc8fe878d87594fae0504c649d1c2c6d5476dd7238237d19eb825751
+ md5: 629f4f4e874cf096eb93a23240910cee
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: GPL-2.0-or-later
+ license_family: GPL2
+ size: 142771
+ timestamp: 1713516312465
+- kind: conda
+ name: lzo
+ version: '2.10'
+ build: hd590300_1001
+ build_number: 1001
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda
+ sha256: 88433b98a9dd9da315400e7fb9cd5f70804cb17dca8b1c85163a64f90f584126
+ md5: ec7398d21e2651e0dcb0044d03b9a339
+ depends:
+ - libgcc-ng >=12
+ license: GPL-2.0-or-later
+ license_family: GPL2
+ size: 171416
+ timestamp: 1713515738503
+- kind: conda
+ name: m2w64-gcc-libgfortran
+ version: 5.3.0
+ build: '6'
+ build_number: 6
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2
+ sha256: 9de95a7996d5366ae0808eef2acbc63f9b11b874aa42375f55379e6715845dc6
+ md5: 066552ac6b907ec6d72c0ddab29050dc
+ depends:
+ - m2w64-gcc-libs-core
+ - msys2-conda-epoch ==20160418
+ license: GPL, LGPL, FDL, custom
+ size: 350687
+ timestamp: 1608163451316
+- kind: conda
+ name: m2w64-gcc-libs
+ version: 5.3.0
+ build: '7'
+ build_number: 7
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2
+ sha256: 3bd1ab02b7c89a5b153a17be03b36d833f1517ff2a6a77ead7c4a808b88196aa
+ md5: fe759119b8b3bfa720b8762c6fdc35de
+ depends:
+ - m2w64-gcc-libgfortran
+ - m2w64-gcc-libs-core
+ - m2w64-gmp
+ - m2w64-libwinpthread-git
+ - msys2-conda-epoch ==20160418
+ license: GPL3+, partial:GCCRLE, partial:LGPL2+
+ size: 532390
+ timestamp: 1608163512830
+- kind: conda
+ name: m2w64-gcc-libs-core
+ version: 5.3.0
+ build: '7'
+ build_number: 7
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2
+ sha256: 58afdfe859ed2e9a9b1cc06bc408720cb2c3a6a132e59d4805b090d7574f4ee0
+ md5: 4289d80fb4d272f1f3b56cfe87ac90bd
+ depends:
+ - m2w64-gmp
+ - m2w64-libwinpthread-git
+ - msys2-conda-epoch ==20160418
+ license: GPL3+, partial:GCCRLE, partial:LGPL2+
+ size: 219240
+ timestamp: 1608163481341
+- kind: conda
+ name: m2w64-gmp
+ version: 6.1.0
+ build: '2'
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2
+ sha256: 7e3cd95f554660de45f8323fca359e904e8d203efaf07a4d311e46d611481ed1
+ md5: 53a1c73e1e3d185516d7e3af177596d9
+ depends:
+ - msys2-conda-epoch ==20160418
+ license: LGPL3
+ size: 743501
+ timestamp: 1608163782057
+- kind: conda
+ name: m2w64-libwinpthread-git
+ version: 5.0.0.4634.697f757
+ build: '2'
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2
+ sha256: f63a09b2cae7defae0480f1740015d6235f1861afa6fe2e2d3e10bd0d1314ee0
+ md5: 774130a326dee16f1ceb05cc687ee4f0
+ depends:
+ - msys2-conda-epoch ==20160418
+ license: MIT, BSD
+ size: 31928
+ timestamp: 1608166099896
+- kind: conda
+ name: markupsafe
+ version: 3.0.2
+ build: py312h178313f_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda
+ sha256: 15f14ab429c846aacd47fada0dc4f341d64491e097782830f0906d00cb7b48b6
+ md5: a755704ea0e2503f8c227d84829a8e81
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - jinja2 >=3.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 24878
+ timestamp: 1729351558563
+- kind: conda
+ name: markupsafe
+ version: 3.0.2
+ build: py312h31fea79_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.2-py312h31fea79_0.conda
+ sha256: eb0f3768890291f2d5fb666ab31b32b37a821e4a30968c6b3cd332472957abe7
+ md5: e2ff001440760f2cbac24765d8a3d84a
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - jinja2 >=3.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 27358
+ timestamp: 1729351504449
+- kind: conda
+ name: markupsafe
+ version: 3.0.2
+ build: py312h74ce7d3_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda
+ sha256: 997baf7f46bce112f6e0390efaa7fbb892b8f31567d3c554f08ac636774d74f7
+ md5: 8992b90e8374193d53118f7651db0b73
+ depends:
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - jinja2 >=3.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 25013
+ timestamp: 1729352489213
+- kind: conda
+ name: markupsafe
+ version: 3.0.2
+ build: py312ha0ccf2a_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda
+ sha256: 360e958055f35e5087942b9c499eaafae984a951b84cf354ef7481a2806f340d
+ md5: c6ff9f291d011c9d4f0b840f49435c64
+ depends:
+ - __osx >=11.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - jinja2 >=3.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 24495
+ timestamp: 1729351534830
+- kind: conda
+ name: markupsafe
+ version: 3.0.2
+ build: py312hbe3f5e4_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-3.0.2-py312hbe3f5e4_0.conda
+ sha256: b2fb54718159055fdf89da7d9f0c6743ef84b31960617a56810920d17616d944
+ md5: c6238833d7dc908ec295bc490b80d845
+ depends:
+ - __osx >=10.13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - jinja2 >=3.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 23889
+ timestamp: 1729351468966
+- kind: conda
+ name: matplotlib
+ version: 3.9.3
+ build: py312h1f38498_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-3.9.3-py312h1f38498_0.conda
+ sha256: 37a4c66d9f45bfd57d340b18f094dae4a3a934c50375e95936ae2cbd197c6056
+ md5: d59d691e62901625bc2113cc7fc4a806
+ depends:
+ - matplotlib-base >=3.9.3,<3.9.4.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tornado >=5
+ license: PSF-2.0
+ license_family: PSF
+ size: 17057
+ timestamp: 1733176577477
+- kind: conda
+ name: matplotlib
+ version: 3.9.3
+ build: py312h2e8e312_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-3.9.3-py312h2e8e312_0.conda
+ sha256: 45fe92fe5466f8bcf24a7b84b5057025fc08c4c04c5d68b940ba046ff8090584
+ md5: bf667ae25f3588c6f4cfc2e10bf76c05
+ depends:
+ - matplotlib-base >=3.9.3,<3.9.4.0a0
+ - pyside6 >=6.7.2
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tornado >=5
+ license: PSF-2.0
+ license_family: PSF
+ size: 17349
+ timestamp: 1733177072622
+- kind: conda
+ name: matplotlib
+ version: 3.9.3
+ build: py312h7900ff3_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-3.9.3-py312h7900ff3_0.conda
+ sha256: c72176bbb4bb000e6b602f1fc2c3ef21caf9a0f4b6d2f4b0e183cbcb88e6c5a4
+ md5: 4297d8db465b02727a206d6e60477246
+ depends:
+ - matplotlib-base >=3.9.3,<3.9.4.0a0
+ - pyside6 >=6.7.2
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tornado >=5
+ license: PSF-2.0
+ license_family: PSF
+ size: 16831
+ timestamp: 1733176212063
+- kind: conda
+ name: matplotlib
+ version: 3.9.3
+ build: py312h8025657_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-3.9.3-py312h8025657_0.conda
+ sha256: c928604f5e60c8a35bf7703d9f7bbc0eba5922a7f023a0e4c7933d7b8780f6af
+ md5: eeaabc85a8a0135a0bc184df0809d179
+ depends:
+ - matplotlib-base >=3.9.3,<3.9.4.0a0
+ - pyside6 >=6.7.2
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tornado >=5
+ license: PSF-2.0
+ license_family: PSF
+ size: 16987
+ timestamp: 1733176482877
+- kind: conda
+ name: matplotlib
+ version: 3.9.3
+ build: py312hb401068_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-3.9.3-py312hb401068_0.conda
+ sha256: c54ce35d834a86ce9c7d6c0d357820e1c117d5926d0cde2cfc6e3df98f39f743
+ md5: 4240d065b668486449aea39a7614c4e3
+ depends:
+ - matplotlib-base >=3.9.3,<3.9.4.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tornado >=5
+ license: PSF-2.0
+ license_family: PSF
+ size: 16964
+ timestamp: 1733176422271
+- kind: conda
+ name: matplotlib-base
+ version: 3.9.3
+ build: py312h535dea3_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/matplotlib-base-3.9.3-py312h535dea3_0.conda
+ sha256: e449ac73986596088bb14c76d3650fcf69dd5f89c50faffbc519f8f801a80c81
+ md5: 79f3d3149023f3c0f8cc54a645ce704c
+ depends:
+ - __osx >=10.13
+ - certifi >=2020.06.20
+ - contourpy >=1.0.1
+ - cycler >=0.10
+ - fonttools >=4.22.0
+ - freetype >=2.12.1,<3.0a0
+ - kiwisolver >=1.3.1
+ - libcxx >=18
+ - numpy >=1.19,<3
+ - numpy >=1.23
+ - packaging >=20.0
+ - pillow >=8
+ - pyparsing >=2.3.1
+ - python >=3.12,<3.13.0a0
+ - python-dateutil >=2.7
+ - python_abi 3.12.* *_cp312
+ - qhull >=2020.2,<2020.3.0a0
+ license: PSF-2.0
+ license_family: PSF
+ size: 7819443
+ timestamp: 1733176386182
+- kind: conda
+ name: matplotlib-base
+ version: 3.9.3
+ build: py312h90004f6_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.9.3-py312h90004f6_0.conda
+ sha256: f2411d7c3a8a4b479e3fe0aa201cbeff457cf906ae8bf0874098d4d41650b185
+ md5: 0b704b91357a3e635db627160a3141be
+ depends:
+ - certifi >=2020.06.20
+ - contourpy >=1.0.1
+ - cycler >=0.10
+ - fonttools >=4.22.0
+ - freetype >=2.12.1,<3.0a0
+ - kiwisolver >=1.3.1
+ - numpy >=1.19,<3
+ - numpy >=1.23
+ - packaging >=20.0
+ - pillow >=8
+ - pyparsing >=2.3.1
+ - python >=3.12,<3.13.0a0
+ - python-dateutil >=2.7
+ - python_abi 3.12.* *_cp312
+ - qhull >=2020.2,<2020.3.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: PSF-2.0
+ license_family: PSF
+ size: 7655607
+ timestamp: 1733177040555
+- kind: conda
+ name: matplotlib-base
+ version: 3.9.3
+ build: py312h965bf68_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/matplotlib-base-3.9.3-py312h965bf68_0.conda
+ sha256: 3f2e5877b1270ae68d6ef0e53d6accdae2b776aa31c8037c81f699a4035f2c14
+ md5: 1b69bc4b148a0c193791d092296d69be
+ depends:
+ - certifi >=2020.06.20
+ - contourpy >=1.0.1
+ - cycler >=0.10
+ - fonttools >=4.22.0
+ - freetype >=2.12.1,<3.0a0
+ - kiwisolver >=1.3.1
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - numpy >=1.23
+ - packaging >=20.0
+ - pillow >=8
+ - pyparsing >=2.3.1
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python-dateutil >=2.7
+ - python_abi 3.12.* *_cp312
+ - qhull >=2020.2,<2020.3.0a0
+ - tk >=8.6.13,<8.7.0a0
+ license: PSF-2.0
+ license_family: PSF
+ size: 7872834
+ timestamp: 1733176461676
+- kind: conda
+ name: matplotlib-base
+ version: 3.9.3
+ build: py312hd3ec401_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.9.3-py312hd3ec401_0.conda
+ sha256: 8e8f4e20eccc2473ad14d649609dbaae74354630dbd34e58b53870d8f15d663d
+ md5: b023c7b33ecc2aa6726232dc3061ac6c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - certifi >=2020.06.20
+ - contourpy >=1.0.1
+ - cycler >=0.10
+ - fonttools >=4.22.0
+ - freetype >=2.12.1,<3.0a0
+ - kiwisolver >=1.3.1
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - numpy >=1.23
+ - packaging >=20.0
+ - pillow >=8
+ - pyparsing >=2.3.1
+ - python >=3.12,<3.13.0a0
+ - python-dateutil >=2.7
+ - python_abi 3.12.* *_cp312
+ - qhull >=2020.2,<2020.3.0a0
+ - tk >=8.6.13,<8.7.0a0
+ license: PSF-2.0
+ license_family: PSF
+ size: 7923928
+ timestamp: 1733176194348
+- kind: conda
+ name: matplotlib-base
+ version: 3.9.3
+ build: py312hdbc7e53_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/matplotlib-base-3.9.3-py312hdbc7e53_0.conda
+ sha256: 390baee1a7a2d9261379dff429b701033046c14189491e6163b69fe449856dcc
+ md5: a3599bf612a717121cae8201d5471168
+ depends:
+ - __osx >=11.0
+ - certifi >=2020.06.20
+ - contourpy >=1.0.1
+ - cycler >=0.10
+ - fonttools >=4.22.0
+ - freetype >=2.12.1,<3.0a0
+ - kiwisolver >=1.3.1
+ - libcxx >=18
+ - numpy >=1.19,<3
+ - numpy >=1.23
+ - packaging >=20.0
+ - pillow >=8
+ - pyparsing >=2.3.1
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python-dateutil >=2.7
+ - python_abi 3.12.* *_cp312
+ - qhull >=2020.2,<2020.3.0a0
+ license: PSF-2.0
+ license_family: PSF
+ size: 7791133
+ timestamp: 1733176544235
+- kind: conda
+ name: menuinst
+ version: 2.2.0
+ build: py312h275cf98_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/menuinst-2.2.0-py312h275cf98_0.conda
+ sha256: 6de0335756afcbca905e4796cc801a88c568ec0711fad3777c7ae87a81628faf
+ md5: c435a5681c148e369bb49f8fa15acbaf
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause AND MIT
+ size: 133005
+ timestamp: 1731147494253
+- kind: conda
+ name: menuinst
+ version: 2.2.0
+ build: py312h7900ff3_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/menuinst-2.2.0-py312h7900ff3_0.conda
+ sha256: a3d3f509e545913b6aee004b3e91c0147723b7d569ff256db9cbc8eb2d7b1772
+ md5: f22f8e77b36e67297feffe03eefd5375
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause AND MIT
+ size: 166308
+ timestamp: 1731147065526
+- kind: conda
+ name: menuinst
+ version: 2.2.0
+ build: py312h81bd7bf_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/menuinst-2.2.0-py312h81bd7bf_0.conda
+ sha256: b1def1d581bfd96473e854712ce77fe039835ea5c80d9a5033b0d2d2d14cdf0c
+ md5: 4ecad32f75f4ad25268e38778cac2b7f
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause AND MIT
+ size: 166659
+ timestamp: 1731147206286
+- kind: conda
+ name: menuinst
+ version: 2.2.0
+ build: py312h996f985_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/menuinst-2.2.0-py312h996f985_0.conda
+ sha256: 467e05563f58004b3d143ec7b975443b015eddd76e98f5ea71e04fdd1657b30f
+ md5: ef25ec436741df9dbcb2831b4ccb160d
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause AND MIT
+ size: 166746
+ timestamp: 1731147165325
+- kind: conda
+ name: menuinst
+ version: 2.2.0
+ build: py312hb401068_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/menuinst-2.2.0-py312hb401068_0.conda
+ sha256: caf806b6f0d8acbfc06d87c21d89b0624b5b230fd30246860399fa01f3b0ba0f
+ md5: 4b908217561a1274f48b0f9952fb5359
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause AND MIT
+ size: 166741
+ timestamp: 1731147133148
+- kind: conda
+ name: mesa-dri-drivers-cos6-x86_64
+ version: 11.0.7
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-dri-drivers-cos6-x86_64-11.0.7-h9b0a68f_1105.tar.bz2
+ sha256: cf64c767ff7c6936ccde3d29aa595b96262f37c64ae868740c4f27fd24903cf5
+ md5: d4dca243709fbad3e94efa457ad3181f
+ depends:
+ - mesa-dri1-drivers-cos6-x86_64 >=7.11 *_1105
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 21659359
+ timestamp: 1627482582591
+- kind: conda
+ name: mesa-dri-drivers-cos7-aarch64
+ version: 18.3.4
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-dri-drivers-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ sha256: c1bf8ea45f1f624a13cc98105461a14c06d6bed176e1760f5d6fc46e83cd0a2b
+ md5: 4de51329469938463885c5ce7beaa22d
+ depends:
+ - libdrm-cos7-aarch64 >=2.4.83 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 43525774
+ timestamp: 1726581692498
+- kind: conda
+ name: mesa-dri1-drivers-cos6-x86_64
+ version: '7.11'
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-dri1-drivers-cos6-x86_64-7.11-h9b0a68f_1105.tar.bz2
+ sha256: 4835d4dcebf4944078087d25a6daeb335248c2dd70790e37ec711ee5d752de6d
+ md5: 155946c889d98e8c3f338ae79f38806a
+ depends:
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 4517486
+ timestamp: 1627480981192
+- kind: conda
+ name: mesa-khr-devel-cos7-aarch64
+ version: 18.3.4
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-khr-devel-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ sha256: 5c1fae6082f2afd2587c44fec49c84032d2f4dcbbbf780bd5926d817c89e431a
+ md5: 0cb1809fea234a3523d0fd814ff5fe94
+ depends:
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 8427
+ timestamp: 1726577660477
+- kind: conda
+ name: mesa-libegl-cos6-x86_64
+ version: 11.0.7
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-libegl-cos6-x86_64-11.0.7-h9b0a68f_1105.tar.bz2
+ sha256: 3310453750d7bada1300a34827f7d961afc8fb79c6031493440eaa65e85620c8
+ md5: 863a31dcd83f582cef6d04a9db333fe2
+ depends:
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 62589
+ timestamp: 1627478612418
+- kind: conda
+ name: mesa-libegl-cos7-aarch64
+ version: 18.3.4
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-libegl-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ sha256: daf165497be0c56b9fe97bce3a601eb0069b25b51162c8cd7ec6a6b374c7a577
+ md5: d256dcf009df018c0d99170d8b0356b9
+ depends:
+ - mesa-libgbm-cos7-aarch64 ==18.3.4 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 111719
+ timestamp: 1726586775763
+- kind: conda
+ name: mesa-libegl-devel-cos6-x86_64
+ version: 11.0.7
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-libegl-devel-cos6-x86_64-11.0.7-h9b0a68f_1105.tar.bz2
+ sha256: 6079101fcdde8dbb47e423f1785010941dc936261d950b07c50e7e16ef60d61e
+ md5: ad36d52d7054e623f52aa4a24eac8091
+ depends:
+ - mesa-libegl-cos6-x86_64 ==11.0.7 *_1105
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 18493
+ timestamp: 1627484194828
+- kind: conda
+ name: mesa-libegl-devel-cos7-aarch64
+ version: 18.3.4
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-libegl-devel-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ sha256: 901b780bf076fabfc6caff58df1f41a49a13457a63feea30bc13f97268d1bb50
+ md5: 6296ae7964a7f8ccbb2633dc0055dcb9
+ depends:
+ - mesa-khr-devel-cos7-aarch64 ==18.3.4 *_1106
+ - mesa-libegl-cos7-aarch64 ==18.3.4 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 20858
+ timestamp: 1726589972530
+- kind: conda
+ name: mesa-libgbm-cos7-aarch64
+ version: 18.3.4
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-libgbm-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ sha256: 743eb7d4594aaaf13c6c0cd4bf65c43dc68fa4c300ce5aee19ac1ac329e3422c
+ md5: 12d9f4962f2f0b2987a6458d7f42934b
+ depends:
+ - libdrm-cos7-aarch64 >=2.4.83 *_1106
+ - mesa-libglapi-cos7-aarch64 ==18.3.4 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 33552
+ timestamp: 1726580055743
+- kind: conda
+ name: mesa-libgl-cos6-x86_64
+ version: 11.0.7
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-libgl-cos6-x86_64-11.0.7-h9b0a68f_1105.tar.bz2
+ sha256: 884ecba304ea7deb493c9ff02df8ddd1fbbd9ddff6584b86515d9b3e09d2fe76
+ md5: 02b1f3c2a6e0e0a985a23aa23fcd0a72
+ depends:
+ - libdrm-cos6-x86_64 >=2.4.24 *_1105
+ - libx11-cos6-x86_64 >1.6 *_1105
+ - mesa-dri-drivers-cos6-x86_64 ==11.0.7 *_1105
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 185025
+ timestamp: 1627484836108
+- kind: conda
+ name: mesa-libgl-cos7-aarch64
+ version: 18.3.4
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-libgl-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ sha256: a93a2604823d2a73bfc94d9224d1422d7dd314d4470bb076eb0da92c9297b053
+ md5: 61b68708c7bc04807bd1e51bb1434bcc
+ depends:
+ - libdrm-cos7-aarch64 >=2.4.83 *_1106
+ - libglvnd-glx-cos7-aarch64 >=1.0.1 *_1106
+ - mesa-libglapi-cos7-aarch64 ==18.3.4 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 205695
+ timestamp: 1726585822546
+- kind: conda
+ name: mesa-libgl-devel-cos6-x86_64
+ version: 11.0.7
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-libgl-devel-cos6-x86_64-11.0.7-h9b0a68f_1105.tar.bz2
+ sha256: 3737ba27f72ff4ec8a781cac9e9077c0e074fc2ea7be0ef1d4de6f75d2289511
+ md5: f7c7657e834923f81a1cab54e0f6497e
+ depends:
+ - mesa-libgl-cos6-x86_64 ==11.0.7 *_1105
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 452529
+ timestamp: 1627487066171
+- kind: conda
+ name: mesa-libgl-devel-cos7-aarch64
+ version: 18.3.4
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-libgl-devel-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ sha256: 974ce6b95bdcf4643cc34e78a2ff458dd792852bcdbceaf31e3b514e61cf3998
+ md5: be200abf26c4c673f40e00647016bd8e
+ depends:
+ - mesa-khr-devel-cos7-aarch64 ==18.3.4 *_1106
+ - mesa-libgl-cos7-aarch64 ==18.3.4 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 166618
+ timestamp: 1726588682006
+- kind: conda
+ name: mesa-libglapi-cos7-aarch64
+ version: 18.3.4
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/mesa-libglapi-cos7-aarch64-18.3.4-ha675448_1106.tar.bz2
+ sha256: a9d4d4df5c8f9547308c45c1cbee8783a12d489c36a9ecb8a03bc132dbce3ca3
+ md5: 920b959c968eb7aae1e9dc6f2e3eb757
+ depends:
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 71737
+ timestamp: 1726573109829
+- kind: conda
+ name: mkl
+ version: 2024.2.2
+ build: h66d3029_14
+ build_number: 14
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.2.2-h66d3029_14.conda
+ sha256: 098ba4a3cb82f627bc79dc0ab1111b44859c9ef4aaa8d75ce043bce107770cb3
+ md5: f011e7cc21918dc9d1efe0209e27fa16
+ depends:
+ - intel-openmp 2024.*
+ - tbb 2021.*
+ license: LicenseRef-IntelSimplifiedSoftwareOct2022
+ license_family: Proprietary
+ size: 103019089
+ timestamp: 1727378392081
+- kind: conda
+ name: mpc
+ version: 1.3.1
+ build: h8f1351a_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.3.1-h8f1351a_1.conda
+ sha256: 2700899ad03302a1751dbf2bca135407e470dd83ac897ab91dd8675d4300f158
+ md5: a5635df796b71f6ca400fc7026f50701
+ depends:
+ - __osx >=11.0
+ - gmp >=6.3.0,<7.0a0
+ - mpfr >=4.2.1,<5.0a0
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ size: 104766
+ timestamp: 1725629165420
+- kind: conda
+ name: mpc
+ version: 1.3.1
+ build: h9d8efa1_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.3.1-h9d8efa1_1.conda
+ sha256: dcf91571da6c2f0db96d43a1b639047def05a0e1b6436d42c9129ab14af47b10
+ md5: 0520855aaae268ea413d6bc913f1384c
+ depends:
+ - __osx >=10.13
+ - gmp >=6.3.0,<7.0a0
+ - mpfr >=4.2.1,<5.0a0
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ size: 107774
+ timestamp: 1725629348601
+- kind: conda
+ name: mpfr
+ version: 4.2.1
+ build: haed47dc_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.1-haed47dc_3.conda
+ sha256: dddb6721dff05b8dfb654c532725330231fcb81ff1e27d885ee0cdcc9fccf1c4
+ md5: d511e58aaaabfc23136880d9956fa7a6
+ depends:
+ - __osx >=10.13
+ - gmp >=6.3.0,<7.0a0
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 373396
+ timestamp: 1725746891597
+- kind: conda
+ name: mpfr
+ version: 4.2.1
+ build: hb693164_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.2.1-hb693164_3.conda
+ sha256: 4463e4e2aba7668e37a1b8532859191b4477a6f3602a5d6b4d64ad4c4baaeac5
+ md5: 4e4ea852d54cc2b869842de5044662fb
+ depends:
+ - __osx >=11.0
+ - gmp >=6.3.0,<7.0a0
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 345517
+ timestamp: 1725746730583
+- kind: conda
+ name: msgpack-python
+ version: 1.1.0
+ build: py312h451a7dd_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/msgpack-python-1.1.0-py312h451a7dd_0.conda
+ sha256: 4d31391007a9bea03aa9637e5de7fde5d3c32bac2b0f55fceed0a18b0077a907
+ md5: 15e5cebe90fe26204128ad169ffe0c48
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 102609
+ timestamp: 1725975196338
+- kind: conda
+ name: msgpack-python
+ version: 1.1.0
+ build: py312h6142ec9_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/msgpack-python-1.1.0-py312h6142ec9_0.conda
+ sha256: 2b8c22f8a4e0031c2d6fa81d32814c8afdaf7e7fe2e681bf2369a35ff3eab1fd
+ md5: 0dfc3750cc6bbc463d72c0b727e60d8a
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 90793
+ timestamp: 1725975279147
+- kind: conda
+ name: msgpack-python
+ version: 1.1.0
+ build: py312h68727a3_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.1.0-py312h68727a3_0.conda
+ sha256: 4bc53333774dea1330643b7e23aa34fd6880275737fc2e07491795872d3af8dd
+ md5: 5c9b020a3f86799cdc6115e55df06146
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 105271
+ timestamp: 1725975182669
+- kind: conda
+ name: msgpack-python
+ version: 1.1.0
+ build: py312hc5c4d5f_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/msgpack-python-1.1.0-py312hc5c4d5f_0.conda
+ sha256: d12f400fb57eef8aae8a8b2a3c4d4917130b9bd8f08a631646e3bf4a6551bb54
+ md5: 3448a4ca65790764c2f8d44d5f917f84
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 90548
+ timestamp: 1725975181015
+- kind: conda
+ name: msgpack-python
+ version: 1.1.0
+ build: py312hd5eb7cc_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/msgpack-python-1.1.0-py312hd5eb7cc_0.conda
+ sha256: 3fd45d9c0830e931e34990cb90e88ba53cc7f89fce69fc7d1a8289639d363e85
+ md5: ff4f1e63a6438a06d1ab259936e5c2ac
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: Apache
+ size: 88169
+ timestamp: 1725975418157
+- kind: conda
+ name: msys2-conda-epoch
+ version: '20160418'
+ build: '1'
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2
+ sha256: 99358d58d778abee4dca82ad29fb58058571f19b0f86138363c260049d4ac7f1
+ md5: b0309b72560df66f71a9d5e34a5efdfa
+ size: 3227
+ timestamp: 1608166968312
+- kind: conda
+ name: multidict
+ version: 6.1.0
+ build: py312h178313f_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda
+ sha256: bf9cb8487f447098bd4a8248b4f176f34dd55be729a67b8ac2fdb984b80c5d46
+ md5: e397d9b841c37fc3180b73275ce7e990
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ size: 61519
+ timestamp: 1729065799315
+- kind: conda
+ name: multidict
+ version: 6.1.0
+ build: py312h31fea79_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/multidict-6.1.0-py312h31fea79_1.conda
+ sha256: 374050b314f35b7d869b7f085284a8ac3de2030f5b26e4992845e3f881626846
+ md5: f5489605efd8bf8a850383d146f00d84
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: APACHE
+ size: 56283
+ timestamp: 1729066082188
+- kind: conda
+ name: multidict
+ version: 6.1.0
+ build: py312h6f3313d_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/multidict-6.1.0-py312h6f3313d_1.conda
+ sha256: 326c92cd8e4bc85294f2f0b5cdf97d90e96158c2881915256e99f8bc07559960
+ md5: 47e51ecdee53dfc456f02ad633aa43bf
+ depends:
+ - __osx >=10.13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ size: 55520
+ timestamp: 1729065636269
+- kind: conda
+ name: multidict
+ version: 6.1.0
+ build: py312hcc812fe_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda
+ sha256: 39264fd518c5dcda3affed162b874a58c775a5f5eb81e0aaf2387e92408a3490
+ md5: 7629c9ce86495fa01cdfc3ea5418d03f
+ depends:
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ size: 62830
+ timestamp: 1729065694252
+- kind: conda
+ name: multidict
+ version: 6.1.0
+ build: py312hdb8e49c_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda
+ sha256: 482fd09fb798090dc8cce2285fa69f43b1459099122eac2fb112d9b922b9f916
+ md5: 0048335516fed938e4dd2c457b4c5b9b
+ depends:
+ - __osx >=11.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ size: 55968
+ timestamp: 1729065664275
+- kind: conda
+ name: munkres
+ version: 1.1.4
+ build: pyh9f0ad1d_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2
+ sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306
+ md5: 2ba8498c1018c1e9c61eb99b973dfe19
+ depends:
+ - python
+ license: Apache-2.0
+ license_family: Apache
+ size: 12452
+ timestamp: 1600387789153
+- kind: conda
+ name: mysql-common
+ version: 9.0.1
+ build: h0887d5e_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/mysql-common-9.0.1-h0887d5e_2.conda
+ sha256: 7769d67c3b9463e45ec8e57ea3e0adfdd2f17c0c2b32226e1e88ed669baf14fe
+ md5: 7643ebb29dae0a548c356c5c4d44b79e
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - openssl >=3.3.2,<4.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 630582
+ timestamp: 1729802112289
+- kind: conda
+ name: mysql-common
+ version: 9.0.1
+ build: h266115a_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-9.0.1-h266115a_2.conda
+ sha256: bf0c230c35ca70e2c98530eb064a99f0c4d4596793a0be3ca8a3cbd92094ef82
+ md5: 85c0dc0bcd110c998b01856975486ee7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - openssl >=3.3.2,<4.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 649443
+ timestamp: 1729804130603
+- kind: conda
+ name: mysql-common
+ version: 9.0.1
+ build: h3f5c77f_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/mysql-common-9.0.1-h3f5c77f_2.conda
+ sha256: 27cb52f00b2fedb89ed4e7ed2527caf7c5b245dac76a809d0aed58514e08d325
+ md5: cc7bc11893dd1aee492dae85f317769e
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - openssl >=3.3.2,<4.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 636837
+ timestamp: 1729806881403
+- kind: conda
+ name: mysql-common
+ version: 9.0.1
+ build: h918ca22_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/mysql-common-9.0.1-h918ca22_2.conda
+ sha256: d46a234777afaa7f7c4aa1898067a89f43d86db348909fee1b418713809e8836
+ md5: 6adefe5eada0fb37f098288127961ac9
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ - openssl >=3.3.2,<4.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 644932
+ timestamp: 1729801807155
+- kind: conda
+ name: mysql-libs
+ version: 9.0.1
+ build: h11569fd_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/mysql-libs-9.0.1-h11569fd_2.conda
+ sha256: 0c014ecbb449cd10bab96bf036cae646068ce42827f582244117adc805850d04
+ md5: 94c70f21e0a1f8558941d901027215a4
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - mysql-common 9.0.1 h3f5c77f_2
+ - openssl >=3.3.2,<4.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 1408789
+ timestamp: 1729806960210
+- kind: conda
+ name: mysql-libs
+ version: 9.0.1
+ build: h502887b_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/mysql-libs-9.0.1-h502887b_2.conda
+ sha256: df608e92b025d8f83c10a5a932d2b3c16b983571016a04fc21d3660d04e820fe
+ md5: 901d570614d2c0c58a6e3800d9261cf4
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ - libzlib >=1.3.1,<2.0a0
+ - mysql-common 9.0.1 h918ca22_2
+ - openssl >=3.3.2,<4.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 1329554
+ timestamp: 1729802009317
+- kind: conda
+ name: mysql-libs
+ version: 9.0.1
+ build: he0572af_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-9.0.1-he0572af_2.conda
+ sha256: e376189cd11304f4089971b372dac8a1cbbab6eacda8ca978ead2c220d16b8a4
+ md5: 57a9e7ee3c0840d3c8c9012473978629
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - mysql-common 9.0.1 h266115a_2
+ - openssl >=3.3.2,<4.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 1372671
+ timestamp: 1729804203990
+- kind: conda
+ name: mysql-libs
+ version: 9.0.1
+ build: he9bc4e1_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/mysql-libs-9.0.1-he9bc4e1_2.conda
+ sha256: ca89f4accacfc2297b5036aa847c2387c53aa937c8f9050ceec275c1be32eec1
+ md5: f36d1cf1ffeb604bac5870c04cb4ee8f
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - libzlib >=1.3.1,<2.0a0
+ - mysql-common 9.0.1 h0887d5e_2
+ - openssl >=3.3.2,<4.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 1346928
+ timestamp: 1729802330351
+- kind: conda
+ name: ncurses
+ version: '6.5'
+ build: h7bae524_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda
+ sha256: 27d0b9ff78ad46e1f3a6c96c479ab44beda5f96def88e2fe626e0a49429d8afc
+ md5: cb2b0ea909b97b3d70cd3921d1445e1a
+ depends:
+ - __osx >=11.0
+ license: X11 AND BSD-3-Clause
+ size: 802321
+ timestamp: 1724658775723
+- kind: conda
+ name: ncurses
+ version: '6.5'
+ build: hcccb83c_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-hcccb83c_1.conda
+ sha256: acad4cf1f57b12ee1e42995e6fac646fa06aa026529f05eb8c07eb0a84a47a84
+ md5: 91d49c85cacd92caa40cf375ef72a25d
+ depends:
+ - libgcc-ng >=12
+ license: X11 AND BSD-3-Clause
+ size: 924472
+ timestamp: 1724658573518
+- kind: conda
+ name: ncurses
+ version: '6.5'
+ build: he02047a_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda
+ sha256: 6a1d5d8634c1a07913f1c525db6455918cbc589d745fac46d9d6e30340c8731a
+ md5: 70caf8bb6cf39a0b6b7efc885f51c0fe
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ license: X11 AND BSD-3-Clause
+ size: 889086
+ timestamp: 1724658547447
+- kind: conda
+ name: ncurses
+ version: '6.5'
+ build: hf036a51_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-hf036a51_1.conda
+ sha256: b0b3180039ef19502525a2abd5833c00f9624af830fd391f851934d57bffb9af
+ md5: e102bbf8a6ceeaf429deab8032fc8977
+ depends:
+ - __osx >=10.13
+ license: X11 AND BSD-3-Clause
+ size: 822066
+ timestamp: 1724658603042
+- kind: conda
+ name: ninja
+ version: 1.12.1
+ build: h297d8ca_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.12.1-h297d8ca_0.conda
+ sha256: 40f7b76b07067935f8a5886aab0164067b7aa71eb5ad20b7278618c0c2c98e06
+ md5: 3aa1c7e292afeff25a0091ddd7c69b72
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: Apache-2.0
+ license_family: Apache
+ size: 2198858
+ timestamp: 1715440571685
+- kind: conda
+ name: ninja
+ version: 1.12.1
+ build: h3c5361c_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/ninja-1.12.1-h3c5361c_0.conda
+ sha256: 230f11a2f73955b67550be09a0c1fd053772f5e01e98d5873547d63ebea73229
+ md5: a0ebabd021c8191aeb82793fe43cfdcb
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ license: Apache-2.0
+ license_family: Apache
+ size: 124942
+ timestamp: 1715440780183
+- kind: conda
+ name: ninja
+ version: 1.12.1
+ build: h420ef59_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ninja-1.12.1-h420ef59_0.conda
+ sha256: 11528acfa0f05d0c51639f6b09b51dc6611b801668449bb36c206c4b055be4f4
+ md5: 9166c10405d41c95ffde8fcb8e5c3d51
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ license: Apache-2.0
+ license_family: Apache
+ size: 112576
+ timestamp: 1715440927034
+- kind: conda
+ name: ninja
+ version: 1.12.1
+ build: h70be974_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/ninja-1.12.1-h70be974_0.conda
+ sha256: a42f12c03a69cdcd2e7d5f95fd4e0f1e5fc43ef482aff2b8ee16a3730cc642de
+ md5: 216635cea46498d8045c7cf0f03eaf72
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: Apache-2.0
+ license_family: Apache
+ size: 2329583
+ timestamp: 1715442512963
+- kind: conda
+ name: ninja
+ version: 1.12.1
+ build: hc790b64_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/ninja-1.12.1-hc790b64_0.conda
+ sha256: b821cb72cb3ef08fab90a9bae899510e6cf3c23b5da6070d1ec30099dfe6a5be
+ md5: a557dde55343e03c68cd7e29e7f87279
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: Apache
+ size: 285150
+ timestamp: 1715441052517
+- kind: conda
+ name: nlohmann_json
+ version: 3.11.3
+ build: h00cdb27_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/nlohmann_json-3.11.3-h00cdb27_1.conda
+ sha256: 3f4e6a4fa074bb297855f8111ab974dab6d9f98b7d4317d4dd46f8687ee2363b
+ md5: d2dee849c806430eee64d3acc98ce090
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ license: MIT
+ license_family: MIT
+ size: 123250
+ timestamp: 1723652704997
+- kind: conda
+ name: nlohmann_json
+ version: 3.11.3
+ build: h0a1ffab_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/nlohmann_json-3.11.3-h0a1ffab_1.conda
+ sha256: c90b1f11fc337d90a9e4c5aeeacac1418c5ba6a195097086566d38bb2ecf0f24
+ md5: f2bd10ff23ab5c87327439c4499b3f3e
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 122755
+ timestamp: 1723652622631
+- kind: conda
+ name: nlohmann_json
+ version: 3.11.3
+ build: he02047a_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.11.3-he02047a_1.conda
+ sha256: ce4bcced4f8eea71b7cac8bc3daac097abf7a5792f278cd811dedada199500c1
+ md5: e46f7ac4917215b49df2ea09a694a3fa
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 122743
+ timestamp: 1723652407663
+- kind: conda
+ name: nlohmann_json
+ version: 3.11.3
+ build: he0c23c2_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/nlohmann_json-3.11.3-he0c23c2_1.conda
+ sha256: 106af14431772a6bc659e8d5a3bb1930cf1010b85e0e7eca99ecd3e556e91470
+ md5: 340cbb4ab78c90cd9d08f826ad22aed2
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 124255
+ timestamp: 1723652081336
+- kind: conda
+ name: nlohmann_json
+ version: 3.11.3
+ build: hf036a51_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/nlohmann_json-3.11.3-hf036a51_1.conda
+ sha256: 41b1aa2a67654917c9c32a5f0111970b11cfce49ed57cf44bba4aefdcd59e54b
+ md5: 00c3efa95b3a010ee85bc36aac6ab2f6
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ license: MIT
+ license_family: MIT
+ size: 122773
+ timestamp: 1723652497933
+- kind: conda
+ name: nodeenv
+ version: 1.9.1
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.9.1-pyhd8ed1ab_0.conda
+ sha256: 85ee07342ab055dc081f3de8292c5e7195e43e046db9c5750f242f928f6bb8f2
+ md5: dfe0528d0f1c16c1f7c528ea5536ab30
+ depends:
+ - python 2.7|>=3.7
+ - setuptools
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 34489
+ timestamp: 1717585382642
+- kind: conda
+ name: noqt5
+ version: '1.0'
+ build: hd8ed1ab_1
+ build_number: 1
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda
+ sha256: b785c3daf3c6038680c2bb93ebc1aeadca076dcc127ee0797359df67e635fd26
+ md5: 59b5eb8b88b1c63db676a498767c1267
+ constrains:
+ - qt <0.0a0
+ - qt-main <5.0a0|>=6.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6347
+ timestamp: 1732243385797
+- kind: conda
+ name: numpy
+ version: 2.1.3
+ build: py312h2eb110b_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-2.1.3-py312h2eb110b_0.conda
+ sha256: 58a089949d87c4d54b9a02adc88f986318c6ff5525f37a82b0ddcc6acc8f4f37
+ md5: 09c72d80ff045b05a4bb3d3089f3e41e
+ depends:
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc >=13
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - numpy-base <0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 7106685
+ timestamp: 1730588472368
+- kind: conda
+ name: numpy
+ version: 2.1.3
+ build: py312h49bc9c5_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/numpy-2.1.3-py312h49bc9c5_0.conda
+ sha256: f7e6648e2e55de450c8022008eb86158c55786f360aacc91fe3a5a53ba52d5d8
+ md5: 4d03cad3ea6c6cc575f1fd811691432f
+ depends:
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - liblapack >=3.9.0,<4.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - numpy-base <0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6965471
+ timestamp: 1730589010831
+- kind: conda
+ name: numpy
+ version: 2.1.3
+ build: py312h58c1407_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.1.3-py312h58c1407_0.conda
+ sha256: e4c14f71588a5627a6935d3e7d9ca78a8387229ec8ebc91616b0988ce57ba0dc
+ md5: dfdbc12e6d81889ba4c494a23f23eba8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc >=13
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - numpy-base <0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 8388631
+ timestamp: 1730588649810
+- kind: conda
+ name: numpy
+ version: 2.1.3
+ build: py312h94ee1e1_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-2.1.3-py312h94ee1e1_0.conda
+ sha256: cd287b6c270ee8af77d200c46d56fdfe1e2a9deeff68044439718b8d073214dd
+ md5: a2af54c86582e08718805c69af737897
+ depends:
+ - __osx >=11.0
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libcxx >=18
+ - liblapack >=3.9.0,<4.0a0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - numpy-base <0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6398123
+ timestamp: 1730588490904
+- kind: conda
+ name: numpy
+ version: 2.1.3
+ build: py312hfc93d17_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.1.3-py312hfc93d17_0.conda
+ sha256: 2f120e958da2d6ab7e4785a42515b4f65f70422b8b722e1a75654962fcfb26e9
+ md5: 011118baf131914d1cb48e07317f0946
+ depends:
+ - __osx >=10.13
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libcxx >=18
+ - liblapack >=3.9.0,<4.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ constrains:
+ - numpy-base <0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 7538388
+ timestamp: 1730588494493
+- kind: conda
+ name: occt
+ version: 7.8.1
+ build: all_h4c4714a_203
+ build_number: 203
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/occt-7.8.1-all_h4c4714a_203.conda
+ sha256: 581ac3387afaf349f44d4b03469d7849093ad868509ef109e6e149d48211f990
+ md5: 43aed13aae8e2d25f232e98cb636e139
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freeimage >=3.18.0,<3.19.0a0
+ - freetype >=2.12.1,<3.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - rapidjson
+ - vtk
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ - xorg-libxt >=1.3.0,<2.0a0
+ license: LGPL-2.1-only
+ license_family: LGPL
+ size: 28529142
+ timestamp: 1729329346168
+- kind: conda
+ name: occt
+ version: 7.8.1
+ build: all_h78e3548_203
+ build_number: 203
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/occt-7.8.1-all_h78e3548_203.conda
+ sha256: 36df2c302b0db14d541831edca21b6bb40d27f25915556beee57deaa42cc0fe6
+ md5: 3f7934863b690dea888116794f309bdf
+ depends:
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freeimage >=3.18.0,<3.19.0a0
+ - freetype >=2.12.1,<3.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - rapidjson
+ - vtk
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ - xorg-libxt >=1.3.0,<2.0a0
+ license: LGPL-2.1-only
+ license_family: LGPL
+ size: 26951693
+ timestamp: 1729329781771
+- kind: conda
+ name: occt
+ version: 7.8.1
+ build: all_h869bdd7_203
+ build_number: 203
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/occt-7.8.1-all_h869bdd7_203.conda
+ sha256: 0615e7a63fa4b671057bf72c9b0eb42527a2853fe15338eea76bbb36dc0201d5
+ md5: 6c192205820d2919496c0e83dc52a7c2
+ depends:
+ - __osx >=11.0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freeimage >=3.18.0,<3.19.0a0
+ - freetype >=2.12.1,<3.0a0
+ - libcxx >=17
+ - rapidjson
+ - vtk
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ license: LGPL-2.1-only
+ license_family: LGPL
+ size: 23711359
+ timestamp: 1729329035391
+- kind: conda
+ name: occt
+ version: 7.8.1
+ build: all_ha9a7d59_203
+ build_number: 203
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/occt-7.8.1-all_ha9a7d59_203.conda
+ sha256: 34a68aadfe98265a24a1c43305fd6188a01ad5f18cedc32e9c722d8b8c67d718
+ md5: b1470601a9f4b2f3401c0426153bf2f5
+ depends:
+ - __osx >=10.13
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freeimage >=3.18.0,<3.19.0a0
+ - freetype >=2.12.1,<3.0a0
+ - libcxx >=17
+ - rapidjson
+ - vtk
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ license: LGPL-2.1-only
+ license_family: LGPL
+ size: 24943534
+ timestamp: 1729329001159
+- kind: conda
+ name: occt
+ version: 7.8.1
+ build: all_hae6dad1_203
+ build_number: 203
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/occt-7.8.1-all_hae6dad1_203.conda
+ sha256: 4fdcaec136386a7348b98cd588446d7e76861a17dfc383cc0e9204666f8da9c0
+ md5: a4828b8b040e39e33c6de4c15b7cf1b5
+ depends:
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freeimage >=3.18.0,<3.19.0a0
+ - freetype >=2.12.1,<3.0a0
+ - rapidjson
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - vtk
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ license: LGPL-2.1-only
+ license_family: LGPL
+ size: 24824977
+ timestamp: 1729330486797
+- kind: conda
+ name: ocl-icd
+ version: 2.3.2
+ build: hb9d3cd8_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.2-hb9d3cd8_2.conda
+ sha256: 96ddd13054032fabd54636f634d50bc74d10d8578bc946405c429b2d895db6f2
+ md5: 2e8d2b469559d6b2cb6fd4b34f9c8d7f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - opencl-headers >=2024.10.24
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 94934
+ timestamp: 1732915114536
+- kind: conda
+ name: opencl-headers
+ version: 2024.10.24
+ build: h5888daf_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/opencl-headers-2024.10.24-h5888daf_0.conda
+ sha256: 7e1d3ad55d4ad3ddf826e205d4603b9ed40c5e655a9dfd66b56f459d7ba14db3
+ md5: 3ba02cce423fdac1a8582bd6bb189359
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: APACHE
+ size: 54060
+ timestamp: 1732912937444
+- kind: conda
+ name: openexr
+ version: 3.3.2
+ build: h04410fd_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/openexr-3.3.2-h04410fd_0.conda
+ sha256: 8a6ed34ad47af3483a7dfbe6c872938fbbecd6800fcb66870a1f74e9bd39a5ec
+ md5: 8fad0e7c4bab81ffd76e002c1a108997
+ depends:
+ - __osx >=11.0
+ - imath >=3.1.12,<3.1.13.0a0
+ - libcxx >=18
+ - libdeflate >=1.22,<1.23.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1224909
+ timestamp: 1731857788337
+- kind: conda
+ name: openexr
+ version: 3.3.2
+ build: h0b01aae_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/openexr-3.3.2-h0b01aae_0.conda
+ sha256: 175b6ef9f515fd4e57053e69b29aab75cf22bb45d40709b020e0a2e6319c88ba
+ md5: 940278f54a624fbc79cb2ae04d6cb812
+ depends:
+ - __osx >=10.13
+ - imath >=3.1.12,<3.1.13.0a0
+ - libcxx >=18
+ - libdeflate >=1.22,<1.23.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1220832
+ timestamp: 1731857835803
+- kind: conda
+ name: openexr
+ version: 3.3.2
+ build: h974021d_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/openexr-3.3.2-h974021d_0.conda
+ sha256: 97a6faa63b4709b18625970cf0ca3313eaff4c54f64aad3e826bd7e8f11cf72b
+ md5: f0562f96eb6431cb9c57f0caaa472690
+ depends:
+ - imath >=3.1.12,<3.1.13.0a0
+ - libdeflate >=1.22,<1.23.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1179237
+ timestamp: 1731858048554
+- kind: conda
+ name: openexr
+ version: 3.3.2
+ build: haace395_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/openexr-3.3.2-haace395_0.conda
+ sha256: 7017b76f46b6795660554cc38eea631ab995d207de0a6b3696abefc51fbf9fbb
+ md5: bfa35d44a93b461dbfe20f1e7ec74188
+ depends:
+ - imath >=3.1.12,<3.1.13.0a0
+ - libdeflate >=1.22,<1.23.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1356630
+ timestamp: 1731857636421
+- kind: conda
+ name: openexr
+ version: 3.3.2
+ build: hccdc605_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/openexr-3.3.2-hccdc605_0.conda
+ sha256: a503574542e97041b9357d77b598a9d4776c5fa14d8e1110512ef3a55c9a04a7
+ md5: 8eab344da672927e9b417d5a26a15393
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - imath >=3.1.12,<3.1.13.0a0
+ - libdeflate >=1.22,<1.23.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 1403157
+ timestamp: 1731857539130
+- kind: conda
+ name: openh264
+ version: 2.4.1
+ build: h2f0025b_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/openh264-2.4.1-h2f0025b_0.conda
+ sha256: fbd43d4ab82fd6dfd1502a55ccade4aabae4a85fa2353396078da8d5c10941db
+ md5: 97fc3bbca08e95e1d7af8366d5a4ece6
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 770201
+ timestamp: 1706873872574
+- kind: conda
+ name: openh264
+ version: 2.4.1
+ build: h59595ed_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.4.1-h59595ed_0.conda
+ sha256: 0d4eaf15fb771f25c924aef831d76eea11d90c824778fc1e7666346e93475f42
+ md5: 3dfcf61b8e78af08110f5229f79580af
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 735244
+ timestamp: 1706873814072
+- kind: conda
+ name: openh264
+ version: 2.4.1
+ build: h73e2aa4_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/openh264-2.4.1-h73e2aa4_0.conda
+ sha256: 4e660e62225815dd996788ed08dc50870e387c159f31d65cd8b677988dfb387b
+ md5: 877f116d9a4f8b826b0e1d427ac00871
+ depends:
+ - libcxx >=16
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 660428
+ timestamp: 1706874091051
+- kind: conda
+ name: openh264
+ version: 2.5.0
+ build: h774163f_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/openh264-2.5.0-h774163f_0.conda
+ sha256: d8a72fd9a72e4a01b614485fbeca32c59cdc9a9f6ca8a344f0bb81e6e8f84f6e
+ md5: d30a8420d9e45cf160bbe731c9d0a1be
+ depends:
+ - __osx >=11.0
+ - libcxx >=18
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 599874
+ timestamp: 1731068229253
+- kind: conda
+ name: openh264
+ version: 2.5.0
+ build: ha9db3cd_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/openh264-2.5.0-ha9db3cd_0.conda
+ sha256: 78f1610033b6de73111e29552d65e1124ceb652fe003d32585ca38f0cc351cb6
+ md5: 4df5f64d919b886181a16bc46b620c38
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 410131
+ timestamp: 1731068326412
+- kind: conda
+ name: openjpeg
+ version: 2.5.2
+ build: h0d9d63b_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.2-h0d9d63b_0.conda
+ sha256: d83375856601bc67c11295b537548a937a6896ede9d0a51d78bf5e921ab07c6f
+ md5: fd2898519e839d5ceb778343f39a3176
+ depends:
+ - libgcc-ng >=12
+ - libpng >=1.6.43,<1.7.0a0
+ - libstdcxx-ng >=12
+ - libtiff >=4.6.0,<4.8.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 374964
+ timestamp: 1709159226478
+- kind: conda
+ name: openjpeg
+ version: 2.5.2
+ build: h3d672ee_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.2-h3d672ee_0.conda
+ sha256: dda71cbe094234ab208f3552dec1f4ca6f2e614175d010808d6cb66ecf0bc753
+ md5: 7e7099ad94ac3b599808950cec30ad4e
+ depends:
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 237974
+ timestamp: 1709159764160
+- kind: conda
+ name: openjpeg
+ version: 2.5.2
+ build: h488ebb8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda
+ sha256: 5600a0b82df042bd27d01e4e687187411561dfc11cc05143a08ce29b64bf2af2
+ md5: 7f2e286780f072ed750df46dc2631138
+ depends:
+ - libgcc-ng >=12
+ - libpng >=1.6.43,<1.7.0a0
+ - libstdcxx-ng >=12
+ - libtiff >=4.6.0,<4.8.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 341592
+ timestamp: 1709159244431
+- kind: conda
+ name: openjpeg
+ version: 2.5.2
+ build: h7310d3a_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.2-h7310d3a_0.conda
+ sha256: dc9c405119b9b54f8ca5984da27ba498bd848ab4f0f580da6f293009ca5adc13
+ md5: 05a14cc9d725dd74995927968d6547e3
+ depends:
+ - libcxx >=16
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 331273
+ timestamp: 1709159538792
+- kind: conda
+ name: openjpeg
+ version: 2.5.2
+ build: h9f1df11_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.2-h9f1df11_0.conda
+ sha256: 472d6eaffc1996e6af35ec8e91c967f472a536a470079bfa56383cc0dbf4d463
+ md5: 5029846003f0bc14414b9128a1f7c84b
+ depends:
+ - libcxx >=16
+ - libpng >=1.6.43,<1.7.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 316603
+ timestamp: 1709159627299
+- kind: conda
+ name: openldap
+ version: 2.6.9
+ build: h30c48ee_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/openldap-2.6.9-h30c48ee_0.conda
+ sha256: ee09612f256dd3532b1309c8ff70489d21db3bde2a0849da08393e5ffd84400d
+ md5: c07822a5de65ce9797b9afa257faa917
+ depends:
+ - cyrus-sasl >=2.1.27,<3.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - openssl >=3.4.0,<4.0a0
+ license: OLDAP-2.8
+ license_family: BSD
+ size: 904889
+ timestamp: 1732674273894
+- kind: conda
+ name: openldap
+ version: 2.6.9
+ build: hbe55e7a_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/openldap-2.6.9-hbe55e7a_0.conda
+ sha256: 5ae85f00a9dcf438e375d4fb5c45c510c7116e32c4b7af608ffd88e9e9dc6969
+ md5: 8291e59e1dd136bceecdefbc7207ecd6
+ depends:
+ - __osx >=11.0
+ - cyrus-sasl >=2.1.27,<3.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libcxx >=18
+ - openssl >=3.4.0,<4.0a0
+ license: OLDAP-2.8
+ license_family: BSD
+ size: 842504
+ timestamp: 1732674565486
+- kind: conda
+ name: openldap
+ version: 2.6.9
+ build: hd8a590d_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/openldap-2.6.9-hd8a590d_0.conda
+ sha256: b0c541939d905a1a23c41f0f22ad34401da50470e779a6e618c37fdba6c057aa
+ md5: 10dff9d8c67ae8b807b9fe8cfe9ca1d0
+ depends:
+ - __osx >=10.13
+ - cyrus-sasl >=2.1.27,<3.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libcxx >=18
+ - openssl >=3.4.0,<4.0a0
+ license: OLDAP-2.8
+ license_family: BSD
+ size: 777835
+ timestamp: 1732674429367
+- kind: conda
+ name: openldap
+ version: 2.6.9
+ build: he970967_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/openldap-2.6.9-he970967_0.conda
+ sha256: 224f458848f792fe9e3587ee6b626d4eaad63aead0e5e6c25cbe29aba7b05c53
+ md5: ca2de8bbdc871bce41dbf59e51324165
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cyrus-sasl >=2.1.27,<3.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - openssl >=3.4.0,<4.0a0
+ license: OLDAP-2.8
+ license_family: BSD
+ size: 784483
+ timestamp: 1732674189726
+- kind: conda
+ name: openssl
+ version: 3.4.0
+ build: h2466b09_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.0-h2466b09_0.conda
+ sha256: e03045a0837e01ff5c75e9273a572553e7522290799807f918c917a9826a6484
+ md5: d0d805d9b5524a14efb51b3bff965e83
+ depends:
+ - ca-certificates
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: Apache
+ size: 8491156
+ timestamp: 1731379715927
+- kind: conda
+ name: openssl
+ version: 3.4.0
+ build: h39f12f2_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda
+ sha256: bd1d58ced46e75efa3b842c61642fd12272c69e9fe4d7261078bc082153a1d53
+ md5: df307bbc703324722df0293c9ca2e418
+ depends:
+ - __osx >=11.0
+ - ca-certificates
+ license: Apache-2.0
+ license_family: Apache
+ size: 2935176
+ timestamp: 1731377561525
+- kind: conda
+ name: openssl
+ version: 3.4.0
+ build: h86ecc28_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda
+ sha256: 64dbbdd6384fa56338124783197f7ad9048c989a02264bcd2e07355e3570f113
+ md5: b2f202b5bddafac824eb610b65dde98f
+ depends:
+ - ca-certificates
+ - libgcc >=13
+ license: Apache-2.0
+ license_family: Apache
+ size: 3474825
+ timestamp: 1731379200886
+- kind: conda
+ name: openssl
+ version: 3.4.0
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda
+ sha256: 814b9dff1847b132c676ee6cc1a8cb2d427320779b93e1b6d76552275c128705
+ md5: 23cc74f77eb99315c0360ec3533147a9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - ca-certificates
+ - libgcc >=13
+ license: Apache-2.0
+ license_family: Apache
+ size: 2947466
+ timestamp: 1731377666602
+- kind: conda
+ name: openssl
+ version: 3.4.0
+ build: hd471939_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.0-hd471939_0.conda
+ sha256: ba7e068ed469d6625e32ae60e6ad893e655b6695280dadf7e065ed0b6f3b885c
+ md5: ec99d2ce0b3033a75cbad01bbc7c5b71
+ depends:
+ - __osx >=10.13
+ - ca-certificates
+ license: Apache-2.0
+ license_family: Apache
+ size: 2590683
+ timestamp: 1731378034404
+- kind: conda
+ name: packaging
+ version: '24.2'
+ build: pyhd8ed1ab_2
+ build_number: 2
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
+ sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1
+ md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa
+ depends:
+ - python >=3.8
+ license: Apache-2.0
+ size: 60164
+ timestamp: 1733203368787
+- kind: conda
+ name: pango
+ version: 1.54.0
+ build: h115fe74_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pango-1.54.0-h115fe74_2.conda
+ sha256: ed400571a75027563b91bc48054a6599f22c8c2a7ee94a9c3d4e9932c02581ac
+ md5: 9bfd18e7d9292154b2b79ddb7145f9cf
+ depends:
+ - __osx >=10.13
+ - cairo >=1.18.0,<2.0a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - fribidi >=1.0.10,<2.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libglib >=2.80.3,<3.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ license: LGPL-2.1-or-later
+ size: 423324
+ timestamp: 1723832327771
+- kind: conda
+ name: pango
+ version: 1.54.0
+ build: h4c5309f_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pango-1.54.0-h4c5309f_1.conda
+ sha256: d362237be82d5a0d532fe66ec8d68018c3b2a9705bad6d73c2b63dae2970da02
+ md5: 7df02e445367703cd87a574046e3a6f0
+ depends:
+ - cairo >=1.18.0,<2.0a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - fribidi >=1.0.10,<2.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libgcc-ng >=12
+ - libglib >=2.80.2,<3.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ license: LGPL-2.1-or-later
+ size: 447117
+ timestamp: 1719839527713
+- kind: conda
+ name: pango
+ version: 1.54.0
+ build: h7579590_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pango-1.54.0-h7579590_1.conda
+ sha256: 98e1706ef62c766e2a57f14da95d9d6652b594f901cb9a1b6c04208bd616bd99
+ md5: 905145a94ad41fce135074a0214616e9
+ depends:
+ - cairo >=1.18.0,<2.0a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - fribidi >=1.0.10,<2.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libgcc-ng >=12
+ - libglib >=2.80.2,<3.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ license: LGPL-2.1-or-later
+ size: 460989
+ timestamp: 1719841137355
+- kind: conda
+ name: pango
+ version: 1.54.0
+ build: h9ee27a3_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.54.0-h9ee27a3_2.conda
+ sha256: cfa2d11204bb75f6fbcfe1ff0cc1f6e4fc01185bf07b8eee8f698bfbd3702a79
+ md5: af2a2118261adf2d7a350d6767b450f2
+ depends:
+ - __osx >=11.0
+ - cairo >=1.18.0,<2.0a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - fribidi >=1.0.10,<2.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libglib >=2.80.3,<3.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ license: LGPL-2.1-or-later
+ size: 417224
+ timestamp: 1723832458095
+- kind: conda
+ name: pango
+ version: 1.54.0
+ build: hbb871f6_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pango-1.54.0-hbb871f6_2.conda
+ sha256: 90327dd606f78ae9c881e285f85bc2b0f57d11c807be58ee3f690742354918b2
+ md5: 409c0b778deee649c025b7106549a24f
+ depends:
+ - cairo >=1.18.0,<2.0a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - fribidi >=1.0.10,<2.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - libglib >=2.80.3,<3.0a0
+ - libpng >=1.6.43,<1.7.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LGPL-2.1-or-later
+ size: 450610
+ timestamp: 1723832834434
+- kind: conda
+ name: pcl
+ version: 1.14.1
+ build: h4a636e1_6
+ build_number: 6
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pcl-1.14.1-h4a636e1_6.conda
+ sha256: 498a8c127cb7b5fa27c474a16b978df06cca2e13bdbb7e69c31a1d6677b284b4
+ md5: f89b349c873bb5e518ebd562e253aef8
+ depends:
+ - __osx >=11.0
+ - flann >=1.9.2,<1.9.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libcxx >=17
+ - libpng >=1.6.44,<1.7.0a0
+ - qhull >=2020.2,<2020.3.0a0
+ - qt6-main >=6.7.2,<6.8.0a0
+ - vtk * qt*
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 13363511
+ timestamp: 1726792373457
+- kind: conda
+ name: pcl
+ version: 1.14.1
+ build: h777c531_6
+ build_number: 6
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pcl-1.14.1-h777c531_6.conda
+ sha256: cc9ed2113e100d4fde8f4f0c21007d1bc6acca00c9d387b276936d62ac072a05
+ md5: 55e08906a39b1f208ed54a055d776edc
+ depends:
+ - flann >=1.9.2,<1.9.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libgcc >=13
+ - libpng >=1.6.44,<1.7.0a0
+ - libstdcxx >=13
+ - qhull >=2020.2,<2020.3.0a0
+ - qt6-main >=6.7.2,<6.8.0a0
+ - vtk * qt*
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17633474
+ timestamp: 1726789438119
+- kind: conda
+ name: pcl
+ version: 1.14.1
+ build: h8d4a065_6
+ build_number: 6
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pcl-1.14.1-h8d4a065_6.conda
+ sha256: e08315768fd12245da6f8b70b58d87c85a4ab93c62e6e18efaaab88e16978f69
+ md5: edf68bc76515c901f2a359782f5ea8e0
+ depends:
+ - flann >=1.9.2,<1.9.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - qhull >=2020.2,<2020.3.0a0
+ - qt6-main >=6.7.2,<6.8.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - vtk * qt*
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 9408069
+ timestamp: 1726789098083
+- kind: conda
+ name: pcl
+ version: 1.14.1
+ build: hbaf7342_6
+ build_number: 6
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pcl-1.14.1-hbaf7342_6.conda
+ sha256: f33699537a9ca0544b3a6ef4f15d26dcc2ddc7bdeca3a6e18d2330dd110dcc1c
+ md5: 2862c0e45e0ac301cc6395994aa457b7
+ depends:
+ - __osx >=10.13
+ - flann >=1.9.2,<1.9.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libcxx >=17
+ - libpng >=1.6.44,<1.7.0a0
+ - qhull >=2020.2,<2020.3.0a0
+ - qt6-main >=6.7.2,<6.8.0a0
+ - vtk * qt*
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 13768569
+ timestamp: 1726793391220
+- kind: conda
+ name: pcl
+ version: 1.14.1
+ build: hd932182_6
+ build_number: 6
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pcl-1.14.1-hd932182_6.conda
+ sha256: 2a5fb516d84648bee8c842d9164e43871f95b6839b3d5a8e9d82d719a2e16e60
+ md5: c0d87dbe683557dd69d3872c8ff59ec8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - flann >=1.9.2,<1.9.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libgcc >=13
+ - libpng >=1.6.44,<1.7.0a0
+ - libstdcxx >=13
+ - qhull >=2020.2,<2020.3.0a0
+ - qt6-main >=6.7.2,<6.8.0a0
+ - vtk * qt*
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18246943
+ timestamp: 1726788911732
+- kind: conda
+ name: pcre2
+ version: '10.44'
+ build: h070dd5b_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pcre2-10.44-h070dd5b_2.conda
+ sha256: e9f4b912e48514771d477f2ee955f59d4ff4ef799c3d4d16e4d0f335ce91df67
+ md5: 94022de9682cb1a0bb18a99cbc3541b3
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc-ng >=12
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 884590
+ timestamp: 1723488793100
+- kind: conda
+ name: pcre2
+ version: '10.44'
+ build: h297a79d_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.44-h297a79d_2.conda
+ sha256: 83153c7d8fd99cab33c92ce820aa7bfed0f1c94fc57010cf227b6e3c50cb7796
+ md5: 147c83e5e44780c7492998acbacddf52
+ depends:
+ - __osx >=11.0
+ - bzip2 >=1.0.8,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 618973
+ timestamp: 1723488853807
+- kind: conda
+ name: pcre2
+ version: '10.44'
+ build: h3d7b363_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.44-h3d7b363_2.conda
+ sha256: f4a12cbf8a7c5bfa2592b9dc92b492c438781898e5b02f397979b0be6e1b5851
+ md5: a3a3baddcfb8c80db84bec3cb7746fb8
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 820831
+ timestamp: 1723489427046
+- kind: conda
+ name: pcre2
+ version: '10.44'
+ build: h7634a1b_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.44-h7634a1b_2.conda
+ sha256: 336057fce69d45e1059f138beb38d60eb87ba858c3ad729ed49d9ecafd23669f
+ md5: 58cde0663f487778bcd7a0c8daf50293
+ depends:
+ - __osx >=10.13
+ - bzip2 >=1.0.8,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 854306
+ timestamp: 1723488807216
+- kind: conda
+ name: pcre2
+ version: '10.44'
+ build: hba22ea6_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-hba22ea6_2.conda
+ sha256: 1087716b399dab91cc9511d6499036ccdc53eb29a288bebcb19cf465c51d7c0d
+ md5: df359c09c41cd186fffb93a2d87aa6f5
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc-ng >=12
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 952308
+ timestamp: 1723488734144
+- kind: conda
+ name: perl
+ version: 5.32.1
+ build: 7_h10d778d_perl5
+ build_number: 7
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/perl-5.32.1-7_h10d778d_perl5.conda
+ sha256: 8ebd35e2940055a93135b9fd11bef3662cecef72d6ee651f68d64a2f349863c7
+ md5: dc442e0885c3a6b65e61c61558161a9e
+ license: GPL-1.0-or-later OR Artistic-1.0-Perl
+ size: 12334471
+ timestamp: 1703311001432
+- kind: conda
+ name: perl
+ version: 5.32.1
+ build: 7_h31becfc_perl5
+ build_number: 7
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/perl-5.32.1-7_h31becfc_perl5.conda
+ sha256: d78296134263b5bf476cad838ded65451e7162db756f9997c5d06b08122572ed
+ md5: 17d019cb2a6c72073c344e98e40dfd61
+ depends:
+ - libgcc-ng >=12
+ - libxcrypt >=4.4.36
+ license: GPL-1.0-or-later OR Artistic-1.0-Perl
+ size: 13338804
+ timestamp: 1703310557094
+- kind: conda
+ name: perl
+ version: 5.32.1
+ build: 7_h4614cfb_perl5
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/perl-5.32.1-7_h4614cfb_perl5.conda
+ sha256: b0c55040d2994fd6bf2f83786561d92f72306d982d6ea12889acad24a9bf43b8
+ md5: ba3cbe93f99e896765422cc5f7c3a79e
+ license: GPL-1.0-or-later OR Artistic-1.0-Perl
+ size: 14439531
+ timestamp: 1703311335652
+- kind: conda
+ name: perl
+ version: 5.32.1
+ build: 7_hd590300_perl5
+ build_number: 7
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/perl-5.32.1-7_hd590300_perl5.conda
+ sha256: 9ec32b6936b0e37bcb0ed34f22ec3116e75b3c0964f9f50ecea5f58734ed6ce9
+ md5: f2cfec9406850991f4e3d960cc9e3321
+ depends:
+ - libgcc-ng >=12
+ - libxcrypt >=4.4.36
+ license: GPL-1.0-or-later OR Artistic-1.0-Perl
+ size: 13344463
+ timestamp: 1703310653947
+- kind: conda
+ name: pillow
+ version: 10.4.0
+ build: py312h381445a_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pillow-10.4.0-py312h381445a_1.conda
+ sha256: 0b52e708ac4b72e6e1608de517cd4c8e6517dd525e23163a69bf73c7261399fc
+ md5: c57e54ae4acca720fb3a44bee93cb5b9
+ depends:
+ - freetype >=2.12.1,<3.0a0
+ - lcms2 >=2.16,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.6.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libxcb >=1.16,<2.0.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openjpeg >=2.5.2,<3.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tk >=8.6.13,<8.7.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: HPND
+ size: 42468305
+ timestamp: 1726075694989
+- kind: conda
+ name: pillow
+ version: 11.0.0
+ build: py312h5ab5af3_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.0.0-py312h5ab5af3_0.conda
+ sha256: 3cf43a5eb1f67f3a5f3ef1ec3a685f8767019cce24dbe46c4b76fee8a54fbacf
+ md5: 1c4bdfe659cfdedd372685ce2494e97b
+ depends:
+ - freetype >=2.12.1,<3.0a0
+ - lcms2 >=2.16,<3.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openjpeg >=2.5.2,<3.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tk >=8.6.13,<8.7.0a0
+ license: HPND
+ size: 41756471
+ timestamp: 1729068045876
+- kind: conda
+ name: pillow
+ version: 11.0.0
+ build: py312h66fe14f_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pillow-11.0.0-py312h66fe14f_0.conda
+ sha256: 5e531eded0bb784c745abe3a1187c6c33478e153755bf8a8496aebff60801150
+ md5: 1e49b81b5aae7af9d74bcdac0cd0d174
+ depends:
+ - __osx >=10.13
+ - freetype >=2.12.1,<3.0a0
+ - lcms2 >=2.16,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openjpeg >=2.5.2,<3.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tk >=8.6.13,<8.7.0a0
+ license: HPND
+ size: 42189378
+ timestamp: 1729065985392
+- kind: conda
+ name: pillow
+ version: 11.0.0
+ build: py312h7b63e92_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.0.0-py312h7b63e92_0.conda
+ sha256: 13a464bea02c0df0199c20ef6bad24a6bc336aaf55bf8d6a133d0fe664463224
+ md5: 385f46a4df6f97892503a841121a9acf
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - freetype >=2.12.1,<3.0a0
+ - lcms2 >=2.16,<3.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openjpeg >=2.5.2,<3.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - tk >=8.6.13,<8.7.0a0
+ license: HPND
+ size: 41948418
+ timestamp: 1729065846594
+- kind: conda
+ name: pillow
+ version: 11.0.0
+ build: py312haf37ca6_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.0.0-py312haf37ca6_0.conda
+ sha256: 727b4c3faecdb6f6809cf20c5f32d2df4af34e0d5b9146b7588383bcba7990e8
+ md5: dc9b51fbd2b6f7fea9b5123458864dbb
+ depends:
+ - __osx >=11.0
+ - freetype >=2.12.1,<3.0a0
+ - lcms2 >=2.16,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openjpeg >=2.5.2,<3.0a0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - tk >=8.6.13,<8.7.0a0
+ license: HPND
+ size: 41737424
+ timestamp: 1729065920347
+- kind: conda
+ name: pip
+ version: 24.3.1
+ build: pyh8b19718_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_0.conda
+ sha256: 499313e72e20225f84c2e9690bbaf5b952c8d7e0bf34b728278538f766b81628
+ md5: 5dd546fe99b44fda83963d15f84263b7
+ depends:
+ - python >=3.8,<3.13.0a0
+ - setuptools
+ - wheel
+ license: MIT
+ license_family: MIT
+ size: 1243168
+ timestamp: 1730203795600
+- kind: conda
+ name: pivy
+ version: 0.6.9.a0
+ build: py312h1dac651_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/label/pivy_rc/osx-arm64/pivy-0.6.9.a0-py312h1dac651_1.conda
+ sha256: 56443f95abe70d0df54460634019c2ca9400b3dd3bbff90d58107329507bf753
+ md5: dbeb99c6b527862d4e7e57ef26a4a577
+ depends:
+ - __osx >=11.0
+ - coin3d >=4.0.2,<4.1.0a0
+ - libcxx >=16
+ - pyside6
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - qt6-main >=6.7.2,<6.8.0a0
+ - soqt6 >=1.6.2,<1.7.0a0
+ arch: arm64
+ platform: osx
+ license: ISC
+ size: 2100458
+ timestamp: 1719780481731
+- kind: conda
+ name: pivy
+ version: 0.6.9.a0
+ build: py312h27fdfec_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/label/pivy_rc/osx-64/pivy-0.6.9.a0-py312h27fdfec_1.conda
+ sha256: 3ddcffe7ef50a96db0c8b2c8d65c5c64880cac1b2f8a937dd6c0b8826ef74ad9
+ md5: 14b142fa5c2dba9af0c899ca046bd84d
+ depends:
+ - __osx >=10.15
+ - coin3d >=4.0.2,<4.1.0a0
+ - libcxx >=16
+ - pyside6
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main >=6.7.2,<6.8.0a0
+ - soqt6 >=1.6.2,<1.7.0a0
+ arch: x86_64
+ platform: osx
+ license: ISC
+ size: 2191838
+ timestamp: 1719780458507
+- kind: conda
+ name: pivy
+ version: 0.6.9.a0
+ build: py312h615b049_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/label/pivy_rc/linux-aarch64/pivy-0.6.9.a0-py312h615b049_1.conda
+ sha256: 33f6ff29befbdcd9cdbb354169b81893b84f84dc5456661487c79973c8694969
+ md5: 6d18fba7bceaa2c35b14b0f0b7289866
+ depends:
+ - coin3d >=4.0.2,<4.1.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - pyside6
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main >=6.7.2,<6.8.0a0
+ - soqt6 >=1.6.2,<1.7.0a0
+ arch: aarch64
+ platform: linux
+ license: ISC
+ size: 2367973
+ timestamp: 1719783387612
+- kind: conda
+ name: pivy
+ version: 0.6.9.a0
+ build: py312h6680977_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/label/pivy_rc/win-64/pivy-0.6.9.a0-py312h6680977_1.conda
+ sha256: 6d8a36e0d18e66a04d80fb4d3d2671555c903107b5d3b98b5783fb0b71aaddab
+ md5: ec979a2f27189c71fa084c3d6f017cbf
+ depends:
+ - coin3d >=4.0.2,<4.1.0a0
+ - pyside6
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main >=6.7.2,<6.8.0a0
+ - soqt6 >=1.6.2,<1.7.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ arch: x86_64
+ platform: win
+ license: ISC
+ size: 2370201
+ timestamp: 1719780940241
+- kind: conda
+ name: pivy
+ version: 0.6.9.a0
+ build: py312hc9ec64c_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/label/pivy_rc/linux-64/pivy-0.6.9.a0-py312hc9ec64c_1.conda
+ sha256: 34fd79439fa3e84a829b72cc068ce9d5822d8514141e62af6d8b55f1ce516e62
+ md5: 9df55069647b7a4d1640269ccbf9fd79
+ depends:
+ - coin3d >=4.0.2,<4.1.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - pyside6
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main >=6.7.2,<6.8.0a0
+ - soqt6 >=1.6.2,<1.7.0a0
+ arch: x86_64
+ platform: linux
+ license: ISC
+ size: 2536574
+ timestamp: 1719780408360
+- kind: conda
+ name: pixman
+ version: 0.43.2
+ build: h59595ed_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda
+ sha256: 366d28e2a0a191d6c535e234741e0cd1d94d713f76073d8af4a5ccb2a266121e
+ md5: 71004cbf7924e19c02746ccde9fd7123
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 386826
+ timestamp: 1706549500138
+- kind: conda
+ name: pixman
+ version: 0.43.4
+ build: h2f0025b_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pixman-0.43.4-h2f0025b_0.conda
+ sha256: e145b0d89c800326a20d1afd86c74f9422b81549b17fe53add46c2fa43a4c93e
+ md5: 81b2ddea4b0eca188da9c5a7aa4b0cff
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 295064
+ timestamp: 1709240909660
+- kind: conda
+ name: pixman
+ version: 0.43.4
+ build: h63175ca_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pixman-0.43.4-h63175ca_0.conda
+ sha256: 51de4d7fb41597b06d60f1b82e269dafcb55e994e08fdcca8e4d6f7d42bedd07
+ md5: b98135614135d5f458b75ab9ebb9558c
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 461854
+ timestamp: 1709239971654
+- kind: conda
+ name: pixman
+ version: 0.43.4
+ build: h73e2aa4_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.43.4-h73e2aa4_0.conda
+ sha256: 3ab44e12e566c67a6e9fd831f557ab195456aa996b8dd9af19787ca80caa5cd1
+ md5: cb134c1e03fd32f4e6bea3f6de2614fd
+ depends:
+ - libcxx >=16
+ license: MIT
+ license_family: MIT
+ size: 323904
+ timestamp: 1709239931160
+- kind: conda
+ name: pixman
+ version: 0.43.4
+ build: hebf3989_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.43.4-hebf3989_0.conda
+ sha256: df0ba2710ccdea5c909b63635529797f6eb3635b6fb77ae9cb2f183d08818409
+ md5: 0308c68e711cd295aaa026a4f8c4b1e5
+ depends:
+ - libcxx >=16
+ license: MIT
+ license_family: MIT
+ size: 198755
+ timestamp: 1709239846651
+- kind: conda
+ name: pixman-cos6-x86_64
+ version: 0.32.8
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/pixman-cos6-x86_64-0.32.8-h9b0a68f_1105.tar.bz2
+ sha256: 485cd1adeef655d19cd2767c80f2e0ab87d204677154fb81110d956bf2e33500
+ md5: 984df8516afa1614d455a125cd2388f5
+ depends:
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 273072
+ timestamp: 1627479886137
+- kind: conda
+ name: pixman-cos7-aarch64
+ version: 0.34.0
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/pixman-cos7-aarch64-0.34.0-ha675448_1106.tar.bz2
+ sha256: e2f7168002fd08a061ad3a1106f2e655469c70ba3c427918487a4c8be5dc3f0d
+ md5: 49bc6786bfc06d3d8ef1b576def6f53c
+ depends:
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 177796
+ timestamp: 1726572662070
+- kind: conda
+ name: platformdirs
+ version: 4.3.6
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda
+ sha256: c81bdeadc4adcda216b2c7b373f0335f5c78cc480d1d55d10f21823590d7e46f
+ md5: fd8f2b18b65bbf62e8f653100690c8d2
+ depends:
+ - python >=3.8
+ license: MIT
+ license_family: MIT
+ size: 20625
+ timestamp: 1726613611845
+- kind: conda
+ name: pluggy
+ version: 1.5.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda
+ sha256: 33eaa3359948a260ebccf9cdc2fd862cea5a6029783289e13602d8e634cd9a26
+ md5: d3483c8fc2dc2cc3f5cf43e26d60cabf
+ depends:
+ - python >=3.8
+ license: MIT
+ license_family: MIT
+ size: 23815
+ timestamp: 1713667175451
+- kind: conda
+ name: ply
+ version: '3.11'
+ build: pyhd8ed1ab_2
+ build_number: 2
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/ply-3.11-pyhd8ed1ab_2.conda
+ sha256: d8faaf4dcc13caed560fa32956523b35928a70499a2d08c51320947d637e3a41
+ md5: 18c6deb6f9602e32446398203c8f0e91
+ depends:
+ - python >=2.6
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 49196
+ timestamp: 1712243121626
+- kind: conda
+ name: pre-commit
+ version: 4.0.1
+ build: pyha770c72_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.0.1-pyha770c72_0.conda
+ sha256: 2490b18ec802d8f085f2de8298a3d275451f7db17769353080dfb121fe386675
+ md5: 5971cc64048943605f352f7f8612de6c
+ depends:
+ - cfgv >=2.0.0
+ - identify >=1.0.0
+ - nodeenv >=0.11.1
+ - python >=3.9
+ - pyyaml >=5.1
+ - virtualenv >=20.10.0
+ license: MIT
+ license_family: MIT
+ size: 194633
+ timestamp: 1728420305558
+- kind: conda
+ name: proj
+ version: 9.5.1
+ build: h0054346_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.5.1-h0054346_0.conda
+ sha256: 835afb9c8198895ec1ce2916320503d47bb0c25b75c228d744c44e505f1f4e3b
+ md5: 398cabfd9bd75e90d0901db95224f25f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libsqlite >=3.47.0,<4.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - sqlite
+ constrains:
+ - proj4 ==999999999999
+ license: MIT
+ license_family: MIT
+ size: 3108751
+ timestamp: 1733138115896
+- kind: conda
+ name: proj
+ version: 9.5.1
+ build: h1318a7e_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/proj-9.5.1-h1318a7e_0.conda
+ sha256: c6289d6f1a13f28ff3754ac0cb2553f7e7bc4a3102291115f62a04995d0421eb
+ md5: 5eb42e77ae79b46fabcb0f6f6d130763
+ depends:
+ - __osx >=11.0
+ - libcurl >=8.10.1,<9.0a0
+ - libcxx >=18
+ - libsqlite >=3.47.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - sqlite
+ constrains:
+ - proj4 ==999999999999
+ license: MIT
+ license_family: MIT
+ size: 2673401
+ timestamp: 1733138376056
+- kind: conda
+ name: proj
+ version: 9.5.1
+ build: h4f671f6_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/proj-9.5.1-h4f671f6_0.conda
+ sha256: ddd0be6172e3903bc6602a93394e8051826235377c1ce8c6ba2435869794e726
+ md5: 7303dac2aa92318f319508aedab6a127
+ depends:
+ - libcurl >=8.10.1,<9.0a0
+ - libsqlite >=3.47.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - sqlite
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - proj4 ==999999999999
+ license: MIT
+ license_family: MIT
+ size: 2740461
+ timestamp: 1733138695290
+- kind: conda
+ name: proj
+ version: 9.5.1
+ build: h5273da6_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/proj-9.5.1-h5273da6_0.conda
+ sha256: 5d35d13994abdc6a7dd1801f37db98e9efca5983f0479e380844264343ec8096
+ md5: 523c87f13b2f99a96295993ede863b87
+ depends:
+ - __osx >=10.13
+ - libcurl >=8.10.1,<9.0a0
+ - libcxx >=18
+ - libsqlite >=3.47.0,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - sqlite
+ constrains:
+ - proj4 ==999999999999
+ license: MIT
+ license_family: MIT
+ size: 2840582
+ timestamp: 1733138585653
+- kind: conda
+ name: proj
+ version: 9.5.1
+ build: h9655f4d_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/proj-9.5.1-h9655f4d_0.conda
+ sha256: f1cf12e3f3101e3b5eec136b54d71c11dd8a9408f2574d1e0c8307908e0461d0
+ md5: 60cc005fa3ce97967d435f92adfc7cf7
+ depends:
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libsqlite >=3.47.0,<4.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - sqlite
+ constrains:
+ - proj4 ==999999999999
+ license: MIT
+ license_family: MIT
+ size: 3038717
+ timestamp: 1733139312143
+- kind: conda
+ name: propcache
+ version: 0.2.0
+ build: py312h024a12e_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/propcache-0.2.0-py312h024a12e_2.conda
+ sha256: 0f3a04675c6c473398f0aaa95c259e0a085d5ec106b4fa89a7efeb7cc73d5dd2
+ md5: 6693e523bc43c38508efe14ab3374f0c
+ depends:
+ - __osx >=11.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ size: 47796
+ timestamp: 1728545963127
+- kind: conda
+ name: propcache
+ version: 0.2.0
+ build: py312h4389bb4_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/propcache-0.2.0-py312h4389bb4_2.conda
+ sha256: 5b865eff7ae44f121dcf9513a6deca6ce899f6f622ae4b3598fc5e87aeea6127
+ md5: 02da51b48c3cbb47552691108a764b08
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: APACHE
+ size: 49834
+ timestamp: 1728546297827
+- kind: conda
+ name: propcache
+ version: 0.2.0
+ build: py312h66e93f0_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.2.0-py312h66e93f0_2.conda
+ sha256: be7aa0056680dd6e528b7992169a20dd525b94f62d37c8ba0fbf69bd4e8df57d
+ md5: 2c6c0c68f310bc33972e7c83264d7786
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ size: 53498
+ timestamp: 1728545927816
+- kind: conda
+ name: propcache
+ version: 0.2.0
+ build: py312hb2c0f52_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/propcache-0.2.0-py312hb2c0f52_2.conda
+ sha256: 50dad7604b6c20440baf081700b5d6829097121e65f34fd1a15508b20fbecc07
+ md5: 8a258196d6f79ad32d3ea4dd4572f721
+ depends:
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ size: 53507
+ timestamp: 1728546155066
+- kind: conda
+ name: propcache
+ version: 0.2.0
+ build: py312hb553811_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/propcache-0.2.0-py312hb553811_2.conda
+ sha256: 0945df828856b73f1005f7339a93a9bd6aabf70e021952270c17aa9243cddd7a
+ md5: 5710d1b099b723d6296f5c2a03a9546a
+ depends:
+ - __osx >=10.13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: APACHE
+ size: 47459
+ timestamp: 1728545894885
+- kind: conda
+ name: pthread-stubs
+ version: '0.4'
+ build: h00291cd_1002
+ build_number: 1002
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-h00291cd_1002.conda
+ sha256: 05944ca3445f31614f8c674c560bca02ff05cb51637a96f665cb2bbe496099e5
+ md5: 8bcf980d2c6b17094961198284b8e862
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 8364
+ timestamp: 1726802331537
+- kind: conda
+ name: pthread-stubs
+ version: '0.4'
+ build: h86ecc28_1002
+ build_number: 1002
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda
+ sha256: 977dfb0cb3935d748521dd80262fe7169ab82920afd38ed14b7fee2ea5ec01ba
+ md5: bb5a90c93e3bac3d5690acf76b4a6386
+ depends:
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 8342
+ timestamp: 1726803319942
+- kind: conda
+ name: pthread-stubs
+ version: '0.4'
+ build: hb9d3cd8_1002
+ build_number: 1002
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973
+ md5: b3c17d95b5a10c6e64a21fa17573e70e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 8252
+ timestamp: 1726802366959
+- kind: conda
+ name: pthread-stubs
+ version: '0.4'
+ build: hcd874cb_1001
+ build_number: 1001
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2
+ sha256: bb5a6ddf1a609a63addd6d7b488b0f58d05092ea84e9203283409bff539e202a
+ md5: a1f820480193ea83582b13249a7e7bd9
+ depends:
+ - m2w64-gcc-libs
+ license: MIT
+ license_family: MIT
+ size: 6417
+ timestamp: 1606147814351
+- kind: conda
+ name: pthread-stubs
+ version: '0.4'
+ build: hd74edd7_1002
+ build_number: 1002
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda
+ sha256: 8ed65e17fbb0ca944bfb8093b60086e3f9dd678c3448b5de212017394c247ee3
+ md5: 415816daf82e0b23a736a069a75e9da7
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 8381
+ timestamp: 1726802424786
+- kind: conda
+ name: pthreads-win32
+ version: 2.9.1
+ build: h2466b09_4
+ build_number: 4
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-h2466b09_4.conda
+ sha256: b989bdcf0a22ba05a238adac1ad3452c11871681f565e509f629e225a26b7d45
+ md5: cf98a67a1ec8040b42455002a24f0b0b
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LGPL-2.1-or-later
+ size: 265827
+ timestamp: 1728400965968
+- kind: conda
+ name: pugixml
+ version: '1.14'
+ build: h13dd4ca_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pugixml-1.14-h13dd4ca_0.conda
+ sha256: 0bfeac4f1a374da9ff0a322344cdab577d397d6a0a0e5591f08cb7b491926825
+ md5: 4de774bb04e03af9704ec1a2618c636c
+ depends:
+ - libcxx >=15.0.7
+ license: MIT
+ license_family: MIT
+ size: 92472
+ timestamp: 1696182843052
+- kind: conda
+ name: pugixml
+ version: '1.14'
+ build: h2f0025b_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pugixml-1.14-h2f0025b_0.conda
+ sha256: 4f37f0a94bb465157e66f1a38ac1843f223db72b80c5e6a87ff354219ee86037
+ md5: 9af93a191056b12e841b7d32f1b01b1c
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 110831
+ timestamp: 1696182637281
+- kind: conda
+ name: pugixml
+ version: '1.14'
+ build: h59595ed_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda
+ sha256: ea5f2d593177318f6b19af05018c953f41124cbb3bf21f9fdedfdb6ac42913ae
+ md5: 2c97dd90633508b422c11bd3018206ab
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 114871
+ timestamp: 1696182708943
+- kind: conda
+ name: pugixml
+ version: '1.14'
+ build: h63175ca_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pugixml-1.14-h63175ca_0.conda
+ sha256: 68a5cb9a7560b2ce0d72ccebc7f6623e13ca66a67f80feb1094a75199bd1a50c
+ md5: 6794ab7a1f26ebfe0452297eba029d4f
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 111324
+ timestamp: 1696182979614
+- kind: conda
+ name: pugixml
+ version: '1.14'
+ build: he965462_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pugixml-1.14-he965462_0.conda
+ sha256: 8ba30eb9ead058a19a472bb8e795ab408c629b0b84fc5bb7b6899e7429d5e625
+ md5: 92f9416f48c010bf04c34c9841c84b09
+ depends:
+ - libcxx >=15.0.7
+ license: MIT
+ license_family: MIT
+ size: 94175
+ timestamp: 1696182807580
+- kind: conda
+ name: pybind11
+ version: 2.13.6
+ build: pyh1ec8472_2
+ build_number: 2
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/pybind11-2.13.6-pyh1ec8472_2.conda
+ sha256: 27f888492af3d5ab19553f263b0015bf3766a334668b5b3a79c7dc0416e603c1
+ md5: 8088a5e7b2888c780738c3130f2a969d
+ depends:
+ - pybind11-global 2.13.6 *_2
+ - python
+ constrains:
+ - pybind11-abi ==4
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 186375
+ timestamp: 1730237816231
+- kind: conda
+ name: pybind11-abi
+ version: '4'
+ build: hd8ed1ab_3
+ build_number: 3
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2
+ sha256: d4fb485b79b11042a16dc6abfb0c44c4f557707c2653ac47c81e5d32b24a3bb0
+ md5: 878f923dd6acc8aeb47a75da6c4098be
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 9906
+ timestamp: 1610372835205
+- kind: conda
+ name: pybind11-global
+ version: 2.13.6
+ build: pyh415d2e4_2
+ build_number: 2
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/pybind11-global-2.13.6-pyh415d2e4_2.conda
+ sha256: 9ff0d61d86878f81779bdb7e47656a75feaab539893462cff29b8ec353026d81
+ md5: 120541563e520d12d8e39abd7de9092c
+ depends:
+ - __unix
+ - python
+ constrains:
+ - pybind11-abi ==4
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 179139
+ timestamp: 1730237481227
+- kind: conda
+ name: pybind11-global
+ version: 2.13.6
+ build: pyhab904b8_2
+ build_number: 2
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/pybind11-global-2.13.6-pyhab904b8_2.conda
+ sha256: 49b3c9b5e73bf696e7af9824095eb34e4a74334fc108af06e8739c1fec54ab9a
+ md5: 3482d403d3fef1cb2810c53a48548185
+ depends:
+ - __win
+ - python
+ constrains:
+ - pybind11-abi ==4
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 182337
+ timestamp: 1730237499231
+- kind: conda
+ name: pycosat
+ version: 0.6.6
+ build: py312h01d7ebd_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pycosat-0.6.6-py312h01d7ebd_2.conda
+ sha256: fabcf7191cd808ddc7ae78c7379eb7557c913e460227ae498121d022ea55e553
+ md5: 9addc104aa4afd0b21a086cfdca253d5
+ depends:
+ - __osx >=10.13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 88862
+ timestamp: 1732588621742
+- kind: conda
+ name: pycosat
+ version: 0.6.6
+ build: py312h4389bb4_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pycosat-0.6.6-py312h4389bb4_2.conda
+ sha256: e8375488806c16a067f62e81f1d84aa05e149c35c72ed443b645b9292fc3b35f
+ md5: b05ea9cb9eb430aa417b84ea34414551
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 77781
+ timestamp: 1732588951422
+- kind: conda
+ name: pycosat
+ version: 0.6.6
+ build: py312h66e93f0_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.6-py312h66e93f0_2.conda
+ sha256: dad83b55d1511a853ecf1d5bff3027055337262aa63084986ee2e329ee26d71b
+ md5: 08223e6a73e0bca5ade16ec4cebebf23
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 87749
+ timestamp: 1732588516003
+- kind: conda
+ name: pycosat
+ version: 0.6.6
+ build: py312hb2c0f52_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pycosat-0.6.6-py312hb2c0f52_2.conda
+ sha256: 501aff3b26b037cefcc8cfcff90954660281c62d58cf1e585fc3eb22fda7fa70
+ md5: a5bd669336a31b5250e8d76dd6b8d659
+ depends:
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 87443
+ timestamp: 1732588597495
+- kind: conda
+ name: pycosat
+ version: 0.6.6
+ build: py312hea69d52_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pycosat-0.6.6-py312hea69d52_2.conda
+ sha256: ad64eadac6b0a9534cbba1088df9de84c95f7f69c700a5a9cb8b20dfc175e6aa
+ md5: b62d16d1aabb9349c8e81d842dfb2268
+ depends:
+ - __osx >=11.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 84234
+ timestamp: 1732588806999
+- kind: conda
+ name: pycparser
+ version: '2.22'
+ build: pyh29332c3_1
+ build_number: 1
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
+ sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6
+ md5: 12c566707c80111f9799308d9e265aef
+ depends:
+ - python >=3.9
+ - python
+ license: BSD-3-Clause
+ size: 110100
+ timestamp: 1733195786147
+- kind: conda
+ name: pyparsing
+ version: 3.2.0
+ build: pyhd8ed1ab_1
+ build_number: 1
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.0-pyhd8ed1ab_1.conda
+ sha256: b846e3965cd106438cf0b9dc0de8d519670ac065f822a7d66862e9423e0229cb
+ md5: 035c17fbf099f50ff60bf2eb303b0a83
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 92444
+ timestamp: 1728880549923
+- kind: conda
+ name: pyside6
+ version: 6.7.3
+ build: py312h2ee7485_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pyside6-6.7.3-py312h2ee7485_1.conda
+ sha256: e3f3c1eb70a051f06c0598ac70fb9d5e770a116a56b399d48f4ce22a2c169e89
+ md5: d55a97c0263d3f780726a76ae18498cc
+ depends:
+ - libclang13 >=19.1.0
+ - libxml2 >=2.12.7,<3.0a0
+ - libxslt >=1.1.39,<2.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main 6.7.3.*
+ - qt6-main >=6.7.3,<6.8.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 9211882
+ timestamp: 1727987852185
+- kind: conda
+ name: pyside6
+ version: 6.7.3
+ build: py312h91f0f75_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pyside6-6.7.3-py312h91f0f75_1.conda
+ sha256: e9d26444e4a554a71e885017898b101d388855277b6604f3235e50b63cc66fe0
+ md5: 64a74d686fd29fa04c4c313a688e2421
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libclang13 >=19.1.0
+ - libegl >=1.7.0,<2.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - libstdcxx >=13
+ - libxml2 >=2.12.7,<3.0a0
+ - libxslt >=1.1.39,<2.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main 6.7.3.*
+ - qt6-main >=6.7.3,<6.8.0a0
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 10458409
+ timestamp: 1727987584620
+- kind: conda
+ name: pyside6
+ version: 6.7.3
+ build: py312h943ac22_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pyside6-6.7.3-py312h943ac22_1.conda
+ sha256: b360a1e7ae36d75442a76310aae3c2cf97dab1b759329c5e332e771130f01215
+ md5: 3719540260a520b4f60a5e9e7b38d2b1
+ depends:
+ - __osx >=11.0
+ - libclang13 >=17.0.6
+ - libcxx >=17
+ - libxml2 >=2.12.7,<3.0a0
+ - libxslt >=1.1.39,<2.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main 6.7.3.*
+ - qt6-main >=6.7.3,<6.8.0a0
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 11926619
+ timestamp: 1727988075684
+- kind: conda
+ name: pyside6
+ version: 6.7.3
+ build: py312hdb00d57_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pyside6-6.7.3-py312hdb00d57_1.conda
+ sha256: c357b578cf360155e8465abd809d8febee0af50119c356a0c5bc9b2fa6afdf0d
+ md5: 7a127eaa448a53553c7e3b964d7fbbf0
+ depends:
+ - __osx >=11.0
+ - libclang13 >=17.0.6
+ - libcxx >=17
+ - libxml2 >=2.12.7,<3.0a0
+ - libxslt >=1.1.39,<2.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main 6.7.3.*
+ - qt6-main >=6.7.3,<6.8.0a0
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 12345387
+ timestamp: 1727987542743
+- kind: conda
+ name: pyside6
+ version: 6.7.3
+ build: py312hdd999d0_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyside6-6.7.3-py312hdd999d0_1.conda
+ sha256: 6f40c26caaf55b62707ab26d9610f4e26dc26be08e9063f0e554e0b93537313a
+ md5: 78311b86779f10934f0eae9323d3a2b4
+ depends:
+ - libclang13 >=19.1.0
+ - libegl >=1.7.0,<2.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libopengl >=1.7.0,<2.0a0
+ - libstdcxx >=13
+ - libxml2 >=2.12.7,<3.0a0
+ - libxslt >=1.1.39,<2.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main 6.7.3.*
+ - qt6-main >=6.7.3,<6.8.0a0
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 7537350
+ timestamp: 1727987722585
+- kind: conda
+ name: pysocks
+ version: 1.7.1
+ build: pyh0701188_6
+ build_number: 6
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2
+ sha256: b3a612bc887f3dd0fb7c4199ad8e342bd148cf69a9b74fd9468a18cf2bef07b7
+ md5: 56cd9fe388baac0e90c7149cfac95b60
+ depends:
+ - __win
+ - python >=3.8
+ - win_inet_pton
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 19348
+ timestamp: 1661605138291
+- kind: conda
+ name: pysocks
+ version: 1.7.1
+ build: pyha2e5f31_6
+ build_number: 6
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
+ sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b
+ md5: 2a7de29fb590ca14b5243c4c812c8025
+ depends:
+ - __unix
+ - python >=3.8
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 18981
+ timestamp: 1661604969727
+- kind: conda
+ name: python
+ version: 3.12.0
+ build: h2628c8c_0_cpython
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/python-3.12.0-h2628c8c_0_cpython.conda
+ sha256: 90553586879bf328f2f9efb8d8faa958ecba822faf379f0a20c3461467b9b955
+ md5: defd5d375853a2caff36a19d2d81a28e
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libexpat >=2.5.0,<3.0a0
+ - libffi >=3.4,<4.0a0
+ - libsqlite >=3.43.0,<4.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - openssl >=3.1.3,<4.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - xz >=5.2.6,<6.0a0
+ constrains:
+ - python_abi 3.12.* *_cp312
+ license: Python-2.0
+ size: 16140836
+ timestamp: 1696321871976
+- kind: conda
+ name: python
+ version: 3.12.0
+ build: h30d4d87_0_cpython
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.0-h30d4d87_0_cpython.conda
+ sha256: 0a1ed3983acbd0528bef5216179e46170f024f4409032875b27865568fef46a1
+ md5: d11dc8f4551011fb6baa2865f1ead48f
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libexpat >=2.5.0,<3.0a0
+ - libffi >=3.4,<4.0a0
+ - libsqlite >=3.43.0,<4.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - ncurses >=6.4,<7.0a0
+ - openssl >=3.1.3,<4.0a0
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ - xz >=5.2.6,<6.0a0
+ constrains:
+ - python_abi 3.12.* *_cp312
+ license: Python-2.0
+ size: 14529683
+ timestamp: 1696323482650
+- kind: conda
+ name: python
+ version: 3.12.0
+ build: h43d1f9e_0_cpython
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.12.0-h43d1f9e_0_cpython.conda
+ sha256: d771b2eb228cefcb622e2f1aeed1d12c91ab9a41ab21acb9214a8962c7fefa3c
+ md5: 2e462f114cb8a6f1b3e3e934b7f4507a
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - ld_impl_linux-aarch64 >=2.36.1
+ - libexpat >=2.5.0,<3.0a0
+ - libffi >=3.4,<4.0a0
+ - libgcc-ng >=12
+ - libnsl >=2.0.0,<2.1.0a0
+ - libsqlite >=3.43.0,<4.0a0
+ - libuuid >=2.38.1,<3.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - ncurses >=6.4,<7.0a0
+ - openssl >=3.1.3,<4.0a0
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ - xz >=5.2.6,<6.0a0
+ constrains:
+ - python_abi 3.12.* *_cp312
+ license: Python-2.0
+ size: 13856145
+ timestamp: 1696323158781
+- kind: conda
+ name: python
+ version: 3.12.0
+ build: h47c9636_0_cpython
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.0-h47c9636_0_cpython.conda
+ sha256: eb66f8f249caa9d5a956c3a407f079e4779d652ebfc2a4b4f50dcea078e84fa8
+ md5: ed8ae98b1b510de68392971b9367d18c
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - libexpat >=2.5.0,<3.0a0
+ - libffi >=3.4,<4.0a0
+ - libsqlite >=3.43.0,<4.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - ncurses >=6.4,<7.0a0
+ - openssl >=3.1.3,<4.0a0
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ - xz >=5.2.6,<6.0a0
+ constrains:
+ - python_abi 3.12.* *_cp312
+ license: Python-2.0
+ size: 13306758
+ timestamp: 1696322682581
+- kind: conda
+ name: python
+ version: 3.12.0
+ build: hab00c5b_0_cpython
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.0-hab00c5b_0_cpython.conda
+ sha256: 5398ebae6a1ccbfd3f76361eac75f3ac071527a8072627c4bf9008c689034f48
+ md5: 7f97faab5bebcc2580f4f299285323da
+ depends:
+ - bzip2 >=1.0.8,<2.0a0
+ - ld_impl_linux-64 >=2.36.1
+ - libexpat >=2.5.0,<3.0a0
+ - libffi >=3.4,<4.0a0
+ - libgcc-ng >=12
+ - libnsl >=2.0.0,<2.1.0a0
+ - libsqlite >=3.43.0,<4.0a0
+ - libuuid >=2.38.1,<3.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - ncurses >=6.4,<7.0a0
+ - openssl >=3.1.3,<4.0a0
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
+ - xz >=5.2.6,<6.0a0
+ constrains:
+ - python_abi 3.12.* *_cp312
+ license: Python-2.0
+ size: 32123473
+ timestamp: 1696324522323
+- kind: conda
+ name: python-dateutil
+ version: 2.9.0.post0
+ build: pyhff2d567_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda
+ sha256: 3888012c5916efaef45d503e3e544bbcc571b84426c1bb9577799ada9efefb54
+ md5: b6dfd90a2141e573e4b6a81630b56df5
+ depends:
+ - python >=3.9
+ - six >=1.5
+ license: Apache-2.0
+ license_family: APACHE
+ size: 221925
+ timestamp: 1731919374686
+- kind: conda
+ name: python_abi
+ version: '3.12'
+ build: 5_cp312
+ build_number: 5
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-5_cp312.conda
+ sha256: d10e93d759931ffb6372b45d65ff34d95c6000c61a07e298d162a3bc2accebb0
+ md5: 0424ae29b104430108f5218a66db7260
+ constrains:
+ - python 3.12.* *_cpython
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6238
+ timestamp: 1723823388266
+- kind: conda
+ name: python_abi
+ version: '3.12'
+ build: 5_cp312
+ build_number: 5
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/python_abi-3.12-5_cp312.conda
+ sha256: 5ccdad9981753cc4a2d126e356673a21c0cd5b34e209cb8d476a3947d4ad9b39
+ md5: 62b20f305498284a07dc6c45fd0e5c87
+ constrains:
+ - python 3.12.* *_cpython
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6329
+ timestamp: 1723823366253
+- kind: conda
+ name: python_abi
+ version: '3.12'
+ build: 5_cp312
+ build_number: 5
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-5_cp312.conda
+ sha256: 4da26c7508d5bc5d8621e84dc510284402239df56aab3587a7d217de9d3c806d
+ md5: c34dd4920e0addf7cfcc725809f25d8e
+ constrains:
+ - python 3.12.* *_cpython
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6312
+ timestamp: 1723823137004
+- kind: conda
+ name: python_abi
+ version: '3.12'
+ build: 5_cp312
+ build_number: 5
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.12-5_cp312.conda
+ sha256: 49d624e4b809c799d2bf257b22c23cf3fc4460f5570d9a58e7ad86350aeaa1f4
+ md5: b76f9b1c862128e56ac7aa8cd2333de9
+ constrains:
+ - python 3.12.* *_cpython
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6278
+ timestamp: 1723823099686
+- kind: conda
+ name: python_abi
+ version: '3.12'
+ build: 5_cp312
+ build_number: 5
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.12-5_cp312.conda
+ sha256: 9486662af81a219e96d343449eff242f38d7c5128ced5ce5acf85857265058d6
+ md5: e8681f534453af7afab4cd2bc1423eec
+ constrains:
+ - python 3.12.* *_cpython
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6730
+ timestamp: 1723823139725
+- kind: conda
+ name: pyyaml
+ version: 6.0.2
+ build: py312h024a12e_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.2-py312h024a12e_1.conda
+ sha256: b06f1c15fb39695bbf707ae8fb554b9a77519af577b5556784534c7db10b52e3
+ md5: 1ee23620cf46cb15900f70a1300bae55
+ depends:
+ - __osx >=11.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - yaml >=0.2.5,<0.3.0a0
+ license: MIT
+ license_family: MIT
+ size: 187143
+ timestamp: 1725456547263
+- kind: conda
+ name: pyyaml
+ version: 6.0.2
+ build: py312h4389bb4_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.2-py312h4389bb4_1.conda
+ sha256: fa3ede1fa2ed6ea0a51095aeea398f6f0f54af036c4bc525726107cfb49229d5
+ md5: afb7809721516919c276b45f847c085f
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - yaml >=0.2.5,<0.3.0a0
+ license: MIT
+ license_family: MIT
+ size: 181227
+ timestamp: 1725456516473
+- kind: conda
+ name: pyyaml
+ version: 6.0.2
+ build: py312h66e93f0_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py312h66e93f0_1.conda
+ sha256: a60705971e958724168f2ebbb8ed4853067f1d3f7059843df3903e3092bbcffa
+ md5: 549e5930e768548a89c23f595dac5a95
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - yaml >=0.2.5,<0.3.0a0
+ license: MIT
+ license_family: MIT
+ size: 206553
+ timestamp: 1725456256213
+- kind: conda
+ name: pyyaml
+ version: 6.0.2
+ build: py312hb2c0f52_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyyaml-6.0.2-py312hb2c0f52_1.conda
+ sha256: 8c515ebe1e7e85d972d72b75760af9dfac06fd11a9dba7e05c42d69aedbb303c
+ md5: dc5de424f7dbb9772da720dbb81317b2
+ depends:
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - yaml >=0.2.5,<0.3.0a0
+ license: MIT
+ license_family: MIT
+ size: 199141
+ timestamp: 1725456356043
+- kind: conda
+ name: pyyaml
+ version: 6.0.2
+ build: py312hb553811_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.2-py312hb553811_1.conda
+ sha256: 455ce40588b35df654cb089d29cc3f0d3c78365924ffdfc6ee93dba80cea5f33
+ md5: 66514594817d51c78db7109a23ad322f
+ depends:
+ - __osx >=10.13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - yaml >=0.2.5,<0.3.0a0
+ license: MIT
+ license_family: MIT
+ size: 189347
+ timestamp: 1725456465705
+- kind: conda
+ name: qhull
+ version: '2020.2'
+ build: h3c5361c_5
+ build_number: 5
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/qhull-2020.2-h3c5361c_5.conda
+ sha256: 79d804fa6af9c750e8b09482559814ae18cd8df549ecb80a4873537a5a31e06e
+ md5: dd1ea9ff27c93db7c01a7b7656bd4ad4
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ license: LicenseRef-Qhull
+ size: 528122
+ timestamp: 1720814002588
+- kind: conda
+ name: qhull
+ version: '2020.2'
+ build: h420ef59_5
+ build_number: 5
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/qhull-2020.2-h420ef59_5.conda
+ sha256: 873ac689484262a51fd79bc6103c1a1bedbf524924d7f0088fb80703042805e4
+ md5: 6483b1f59526e05d7d894e466b5b6924
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ license: LicenseRef-Qhull
+ size: 516376
+ timestamp: 1720814307311
+- kind: conda
+ name: qhull
+ version: '2020.2'
+ build: h434a139_5
+ build_number: 5
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda
+ sha256: 776363493bad83308ba30bcb88c2552632581b143e8ee25b1982c8c743e73abc
+ md5: 353823361b1d27eb3960efb076dfcaf6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: LicenseRef-Qhull
+ size: 552937
+ timestamp: 1720813982144
+- kind: conda
+ name: qhull
+ version: '2020.2'
+ build: h70be974_5
+ build_number: 5
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/qhull-2020.2-h70be974_5.conda
+ sha256: 49f777bdf3c5e030a8c7b24c58cdfe9486b51d6ae0001841079a3228bdf9fb51
+ md5: bb138086d938e2b64f5f364945793ebf
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: LicenseRef-Qhull
+ size: 554571
+ timestamp: 1720813941183
+- kind: conda
+ name: qhull
+ version: '2020.2'
+ build: hc790b64_5
+ build_number: 5
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/qhull-2020.2-hc790b64_5.conda
+ sha256: 887d53486a37bd870da62b8fa2ebe3993f912ad04bd755e7ed7c47ced97cbaa8
+ md5: 854fbdff64b572b5c0b470f334d34c11
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LicenseRef-Qhull
+ size: 1377020
+ timestamp: 1720814433486
+- kind: conda
+ name: qt6-main
+ version: 6.7.3
+ build: h2fbab7f_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/qt6-main-6.7.3-h2fbab7f_1.conda
+ sha256: dfbe1966d4c48c934a7ac2c8aaf1e98b403892a7110cf1e7c0f4083ef41384e7
+ md5: 5e88d4724cd324b0cb29776605364d1f
+ depends:
+ - __osx >=11.0
+ - double-conversion >=3.3.0,<3.4.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp17 >=17.0.6,<17.1.0a0
+ - libclang13 >=17.0.6
+ - libcxx >=17
+ - libglib >=2.82.1,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libllvm17 >=17.0.6,<17.1.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libpq >=17.0,<18.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - mysql-libs >=9.0.1,<9.1.0a0
+ - openssl >=3.3.2,<4.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - qt 6.7.3
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 39497419
+ timestamp: 1727939046886
+- kind: conda
+ name: qt6-main
+ version: 6.7.3
+ build: h666f7c6_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/qt6-main-6.7.3-h666f7c6_1.conda
+ sha256: 1d13e7a753aac06a2d211b57176ff79daee4b6c1d1a6e858663d87952a85db12
+ md5: e8ca639d0e06d586f7263e4d9e32b651
+ depends:
+ - alsa-lib >=1.2.12,<1.3.0a0
+ - dbus >=1.13.6,<2.0a0
+ - double-conversion >=3.3.0,<3.4.0a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp19.1 >=19.1.0,<19.2.0a0
+ - libclang13 >=19.1.0
+ - libcups >=2.3.3,<2.4.0a0
+ - libdrm >=2.4.123,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.82.1,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libllvm19 >=19.1.0,<19.2.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libpq >=17.0,<18.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxkbcommon >=1.7.0,<2.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - mysql-libs >=9.0.1,<9.1.0a0
+ - openssl >=3.3.2,<4.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ - wayland >=1.23.1,<2.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ - xcb-util-cursor >=0.1.5,<0.2.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-keysyms >=0.4.1,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ - xcb-util-wm >=0.4.2,<0.5.0a0
+ - xorg-libice >=1.1.1,<2.0a0
+ - xorg-libsm >=1.2.4,<2.0a0
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxcomposite >=0.4.6,<1.0a0
+ - xorg-libxcursor >=1.2.2,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ - xorg-libxtst >=1.2.5,<2.0a0
+ - xorg-libxxf86vm >=1.1.5,<2.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - qt 6.7.3
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 49156132
+ timestamp: 1727941520557
+- kind: conda
+ name: qt6-main
+ version: 6.7.3
+ build: h6e8976b_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/qt6-main-6.7.3-h6e8976b_1.conda
+ sha256: f5e4cefa82edec73c9bfc99566391463aeb339cfae8446f9b3c7950fefec6555
+ md5: f3234422a977b5d400ccf503ad55c5d1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - alsa-lib >=1.2.12,<1.3.0a0
+ - dbus >=1.13.6,<2.0a0
+ - double-conversion >=3.3.0,<3.4.0a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp19.1 >=19.1.0,<19.2.0a0
+ - libclang13 >=19.1.0
+ - libcups >=2.3.3,<2.4.0a0
+ - libdrm >=2.4.123,<2.5.0a0
+ - libegl >=1.7.0,<2.0a0
+ - libgcc >=13
+ - libgl >=1.7.0,<2.0a0
+ - libglib >=2.82.1,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libllvm19 >=19.1.0,<19.2.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libpq >=17.0,<18.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libstdcxx >=13
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxkbcommon >=1.7.0,<2.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - mysql-libs >=9.0.1,<9.1.0a0
+ - openssl >=3.3.2,<4.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ - wayland >=1.23.1,<2.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ - xcb-util-cursor >=0.1.5,<0.2.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-keysyms >=0.4.1,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ - xcb-util-wm >=0.4.2,<0.5.0a0
+ - xorg-libice >=1.1.1,<2.0a0
+ - xorg-libsm >=1.2.4,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxcomposite >=0.4.6,<1.0a0
+ - xorg-libxcursor >=1.2.2,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrandr >=1.5.4,<2.0a0
+ - xorg-libxtst >=1.2.5,<2.0a0
+ - xorg-libxxf86vm >=1.1.5,<2.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - qt 6.7.3
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 47378301
+ timestamp: 1727940486113
+- kind: conda
+ name: qt6-main
+ version: 6.7.3
+ build: h8612794_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/qt6-main-6.7.3-h8612794_1.conda
+ sha256: d79bd723c80855a527e541e0ec8dec9929440bcc7443a53cf8f5e0b8f60d4881
+ md5: 4d44b5907375ac312b76fc7996271ca6
+ depends:
+ - __osx >=11.0
+ - double-conversion >=3.3.0,<3.4.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang-cpp17 >=17.0.6,<17.1.0a0
+ - libclang13 >=17.0.6
+ - libcxx >=17
+ - libglib >=2.82.1,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libllvm17 >=17.0.6,<17.1.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libpq >=17.0,<18.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - mysql-libs >=9.0.1,<9.1.0a0
+ - openssl >=3.3.2,<4.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - qt 6.7.3
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 40378217
+ timestamp: 1727940537540
+- kind: conda
+ name: qt6-main
+ version: 6.7.3
+ build: hfb098fa_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/qt6-main-6.7.3-hfb098fa_1.conda
+ sha256: c10933396b409f74f05fe7036ddf2b129e219dd3939170c3ebb0fd0790cd14ac
+ md5: 3dd4b78a610e48def640c3c9acd0c7e7
+ depends:
+ - double-conversion >=3.3.0,<3.4.0a0
+ - harfbuzz >=9.0.0,<10.0a0
+ - icu >=75.1,<76.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libclang13 >=19.1.0
+ - libglib >=2.82.1,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libwebp-base >=1.4.0,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - pcre2 >=10.44,<10.45.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zstd >=1.5.6,<1.6.0a0
+ constrains:
+ - qt 6.7.3
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 88587578
+ timestamp: 1727941590323
+- kind: conda
+ name: rapidjson
+ version: 1.1.0.post20240409
+ build: h00cdb27_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/rapidjson-1.1.0.post20240409-h00cdb27_1.conda
+ sha256: 16549f928a434713b700d429447122228400c9d1f1c516d1bef71994434fc2dc
+ md5: c67d4d9c7616766a7a73a06589325649
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ license: MIT
+ license_family: MIT
+ size: 145601
+ timestamp: 1715007159451
+- kind: conda
+ name: rapidjson
+ version: 1.1.0.post20240409
+ build: h0a1ffab_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/rapidjson-1.1.0.post20240409-h0a1ffab_1.conda
+ sha256: d8eed0186aa7d03c5ca1335eb5c6f9e703971eccc665935360cb45f8d5d45f35
+ md5: 84af91a35a124148b3e1ead8ee4588b4
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 145790
+ timestamp: 1715006975319
+- kind: conda
+ name: rapidjson
+ version: 1.1.0.post20240409
+ build: hac33072_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0.post20240409-hac33072_1.conda
+ sha256: 645e408a91d3c3bea6cbb24e0c208222eb45694978b48e0224424369271ca0ef
+ md5: d6e98530772fc26c112640461110d127
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 145404
+ timestamp: 1715006973191
+- kind: conda
+ name: rapidjson
+ version: 1.1.0.post20240409
+ build: he0c23c2_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/rapidjson-1.1.0.post20240409-he0c23c2_1.conda
+ sha256: 569ccbf264ed1fd40ee92f9909e54019c87f8cfbccd508c6bb1983b1d6f93d4b
+ md5: b16fc1a64fe3ef08c3c886d372c64934
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 145494
+ timestamp: 1715007138921
+- kind: conda
+ name: rapidjson
+ version: 1.1.0.post20240409
+ build: hf036a51_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/rapidjson-1.1.0.post20240409-hf036a51_1.conda
+ sha256: 07f88271bc5a73fc5a910895bf83bb6046b2b84a3935015c448667aef41abf9e
+ md5: 7b32c6b26b7c3a0d97ad484ab6f207c9
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ license: MIT
+ license_family: MIT
+ size: 145520
+ timestamp: 1715007151117
+- kind: conda
+ name: readline
+ version: '8.2'
+ build: h8228510_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
+ sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7
+ md5: 47d31b792659ce70f470b5c82fdfb7a4
+ depends:
+ - libgcc-ng >=12
+ - ncurses >=6.3,<7.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 281456
+ timestamp: 1679532220005
+- kind: conda
+ name: readline
+ version: '8.2'
+ build: h8fc344f_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda
+ sha256: 4c99f7417419734e3797d45bc355e61c26520e111893b0d7087a01a7fbfbe3dd
+ md5: 105eb1e16bf83bfb2eb380a48032b655
+ depends:
+ - libgcc-ng >=12
+ - ncurses >=6.3,<7.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 294092
+ timestamp: 1679532238805
+- kind: conda
+ name: readline
+ version: '8.2'
+ build: h92ec313_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda
+ sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884
+ md5: 8cbb776a2f641b943d413b3e19df71f4
+ depends:
+ - ncurses >=6.3,<7.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 250351
+ timestamp: 1679532511311
+- kind: conda
+ name: readline
+ version: '8.2'
+ build: h9e318b2_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda
+ sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568
+ md5: f17f77f2acf4d344734bda76829ce14e
+ depends:
+ - ncurses >=6.3,<7.0a0
+ license: GPL-3.0-only
+ license_family: GPL
+ size: 255870
+ timestamp: 1679532707590
+- kind: conda
+ name: reproc
+ version: 14.2.4.post0
+ build: h31becfc_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/reproc-14.2.4.post0-h31becfc_1.conda
+ sha256: 4b6b5602e4b382e00c8a6311f537ee41d94a994bf44acdbbb106b9709d402c1c
+ md5: c148bb4ba029a018527d3e4d5c7b63fa
+ depends:
+ - libgcc-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 35284
+ timestamp: 1698242244378
+- kind: conda
+ name: reproc
+ version: 14.2.5.post0
+ build: h2466b09_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/reproc-14.2.5.post0-h2466b09_0.conda
+ sha256: 112dee79da4f55de91f029dd9808f4284bc5e0cf0c4d308d4cec3381bf5bc836
+ md5: c3ca4c18c99a3b9832e11b11af227713
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 37058
+ timestamp: 1731926140985
+- kind: conda
+ name: reproc
+ version: 14.2.5.post0
+ build: h5505292_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-14.2.5.post0-h5505292_0.conda
+ sha256: a5f0dbfa8099a3d3c281ea21932b6359775fd8ce89acc53877a6ee06f50642bc
+ md5: f1d129089830365d9dac932c4dd8c675
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 32023
+ timestamp: 1731926255834
+- kind: conda
+ name: reproc
+ version: 14.2.5.post0
+ build: h6e16a3a_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/reproc-14.2.5.post0-h6e16a3a_0.conda
+ sha256: dda2a8bc1bf16b563b74c2a01dccea657bda573b0c45e708bfeee01c208bcbaf
+ md5: eda18d4a7dce3831016086a482965345
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 31749
+ timestamp: 1731926270954
+- kind: conda
+ name: reproc
+ version: 14.2.5.post0
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/reproc-14.2.5.post0-hb9d3cd8_0.conda
+ sha256: a1973f41a6b956f1305f9aaefdf14b2f35a8c9615cfe5f143f1784ed9aa6bf47
+ md5: 69fbc0a9e42eb5fe6733d2d60d818822
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 34194
+ timestamp: 1731925834928
+- kind: conda
+ name: reproc-cpp
+ version: 14.2.4.post0
+ build: h2f0025b_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/reproc-cpp-14.2.4.post0-h2f0025b_1.conda
+ sha256: 3216952572764ec7424317ee71bddf86443329fa335d1bea3d33b0cd5a8e358c
+ md5: 35148ef0f190022ca52cf6edd6bdc814
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - reproc 14.2.4.post0 h31becfc_1
+ license: MIT
+ license_family: MIT
+ size: 25589
+ timestamp: 1698242268434
+- kind: conda
+ name: reproc-cpp
+ version: 14.2.5.post0
+ build: h240833e_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/reproc-cpp-14.2.5.post0-h240833e_0.conda
+ sha256: 4d8638b7f44082302c7687c99079789f42068d34cddc0959c11ad5d28aab3d47
+ md5: 420229341978751bd96faeced92c200e
+ depends:
+ - __osx >=10.13
+ - libcxx >=18
+ - reproc 14.2.5.post0 h6e16a3a_0
+ license: MIT
+ license_family: MIT
+ size: 24394
+ timestamp: 1731926392643
+- kind: conda
+ name: reproc-cpp
+ version: 14.2.5.post0
+ build: h286801f_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/reproc-cpp-14.2.5.post0-h286801f_0.conda
+ sha256: f1b6aa9d9131ea159a5883bc5990b91b4b8f56eb52e0dc2b01aa9622e14edc81
+ md5: 11a3d09937d250fc4423bf28837d9363
+ depends:
+ - __osx >=11.0
+ - libcxx >=18
+ - reproc 14.2.5.post0 h5505292_0
+ license: MIT
+ license_family: MIT
+ size: 24834
+ timestamp: 1731926355120
+- kind: conda
+ name: reproc-cpp
+ version: 14.2.5.post0
+ build: h5888daf_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/reproc-cpp-14.2.5.post0-h5888daf_0.conda
+ sha256: 568485837b905b1ea7bdb6e6496d914b83db57feda57f6050d5a694977478691
+ md5: 828302fca535f9cfeb598d5f7c204323
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - reproc 14.2.5.post0 hb9d3cd8_0
+ license: MIT
+ license_family: MIT
+ size: 25665
+ timestamp: 1731925852714
+- kind: conda
+ name: reproc-cpp
+ version: 14.2.5.post0
+ build: he0c23c2_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/reproc-cpp-14.2.5.post0-he0c23c2_0.conda
+ sha256: ccf49fb5149298015ab410aae88e43600954206608089f0dfb7aea8b771bbe8e
+ md5: d2ce31fa746dddeb37f24f32da0969e9
+ depends:
+ - reproc 14.2.5.post0 h2466b09_0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 30096
+ timestamp: 1731926177599
+- kind: conda
+ name: requests
+ version: 2.32.3
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda
+ sha256: 5845ffe82a6fa4d437a2eae1e32a1ad308d7ad349f61e337c0a890fe04c513cc
+ md5: 5ede4753180c7a550a443c430dc8ab52
+ depends:
+ - certifi >=2017.4.17
+ - charset-normalizer >=2,<4
+ - idna >=2.5,<4
+ - python >=3.8
+ - urllib3 >=1.21.1,<3
+ constrains:
+ - chardet >=3.0.2,<6
+ license: Apache-2.0
+ license_family: APACHE
+ size: 58810
+ timestamp: 1717057174842
+- kind: conda
+ name: rhash
+ version: 1.4.5
+ build: h7ab814d_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.5-h7ab814d_0.conda
+ sha256: e6a3e9dbfcb5ad5d69a20c8ac237d37a282a95983314a28912fc54208c5db391
+ md5: 352b210f81798ae1e2f25a98ef4b3b54
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 177240
+ timestamp: 1728886815751
+- kind: conda
+ name: rhash
+ version: 1.4.5
+ build: h86ecc28_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/rhash-1.4.5-h86ecc28_0.conda
+ sha256: 82f3555c8f4fa76faf111622766457a8d17755bf493c0ac72ee59f4dad71d994
+ md5: 93bac703d92dafc337db454e6e93a520
+ depends:
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 201958
+ timestamp: 1728886717057
+- kind: conda
+ name: rhash
+ version: 1.4.5
+ build: ha44c9a9_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.5-ha44c9a9_0.conda
+ sha256: 8680069a88f33e96046cf09c3c973074976064c5f13c282bf0e6d6a798f4f7ab
+ md5: a7a3324229bba7fd1c06bcbbb26a420a
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 178400
+ timestamp: 1728886821902
+- kind: conda
+ name: rhash
+ version: 1.4.5
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.5-hb9d3cd8_0.conda
+ sha256: 04677caac29ec64a5d41d0cca8dbec5f60fa166d5458ff5a4393e4dc08a4799e
+ md5: 9af0e7981755f09c81421946c4bcea04
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 186921
+ timestamp: 1728886721623
+- kind: conda
+ name: ruamel.yaml
+ version: 0.18.6
+ build: py312h0bf5046_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.6-py312h0bf5046_1.conda
+ sha256: 839efe8e59d146206a9bffde190015c9bf2419a914d8f53493540fc7311184b3
+ md5: c67fe5e10c151ef58bfc255b30f35f29
+ depends:
+ - __osx >=11.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - ruamel.yaml.clib >=0.1.2
+ license: MIT
+ license_family: MIT
+ size: 268321
+ timestamp: 1728765161983
+- kind: conda
+ name: ruamel.yaml
+ version: 0.18.6
+ build: py312h3d0f464_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.6-py312h3d0f464_1.conda
+ sha256: 6a7fba898720a81e2f19ec2870fc43ec2fc568dc71974390a91285d0bb75c476
+ md5: 54f228329acc295c90a1961871439f58
+ depends:
+ - __osx >=10.13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ruamel.yaml.clib >=0.1.2
+ license: MIT
+ license_family: MIT
+ size: 266986
+ timestamp: 1728765127326
+- kind: conda
+ name: ruamel.yaml
+ version: 0.18.6
+ build: py312h4389bb4_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.6-py312h4389bb4_1.conda
+ sha256: aed92a2293b89c53b1fd1de40935dca0322e7a0e08a6df3917bb82bdbb1d1f96
+ md5: bc4a745d5f87eaf136035aa43455e105
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ruamel.yaml.clib >=0.1.2
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 267122
+ timestamp: 1728765254935
+- kind: conda
+ name: ruamel.yaml
+ version: 0.18.6
+ build: py312h66e93f0_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.6-py312h66e93f0_1.conda
+ sha256: adbf638ac2916c8c376ade8e5f77cf6998e049eea4e23cc8a9f4a947c6938df3
+ md5: 28ed869ade5601ee374934a31c9d628e
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ruamel.yaml.clib >=0.1.2
+ license: MIT
+ license_family: MIT
+ size: 267375
+ timestamp: 1728765106963
+- kind: conda
+ name: ruamel.yaml
+ version: 0.18.6
+ build: py312hb2c0f52_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/ruamel.yaml-0.18.6-py312hb2c0f52_1.conda
+ sha256: 472a68884b3752012585eae75fe3371bfb2a3c38feef6b80d57fd9849ee93f8a
+ md5: 2868b65b462c1c311fbb5c81aa522e36
+ depends:
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - ruamel.yaml.clib >=0.1.2
+ license: MIT
+ license_family: MIT
+ size: 268102
+ timestamp: 1728765224852
+- kind: conda
+ name: ruamel.yaml.clib
+ version: 0.2.8
+ build: py312h0bf5046_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py312h0bf5046_1.conda
+ sha256: ce979a9bcb4b987e30c4aadfbd4151006cd6ac480bdbee1d059e6f0186b48bca
+ md5: 2ed5f254c9ea57b6d0fd4e12baa4b87f
+ depends:
+ - __osx >=11.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 117121
+ timestamp: 1728724705098
+- kind: conda
+ name: ruamel.yaml.clib
+ version: 0.2.8
+ build: py312h3d0f464_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py312h3d0f464_1.conda
+ sha256: b5ddb73db7ca3d4d8780af1761efb97a5f555ae489f287a91367624d4425f498
+ md5: f4c0464f98dabcd65064e89991c3c9c2
+ depends:
+ - __osx >=10.13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 122331
+ timestamp: 1728724619287
+- kind: conda
+ name: ruamel.yaml.clib
+ version: 0.2.8
+ build: py312h4389bb4_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py312h4389bb4_1.conda
+ sha256: d5583406ea6d17391294da0a6dadf9a22aad732d1f658f2d6d12fc50b968c0fa
+ md5: 5758e70a80936d7527f70196685c6695
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 108926
+ timestamp: 1728725024979
+- kind: conda
+ name: ruamel.yaml.clib
+ version: 0.2.8
+ build: py312h66e93f0_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py312h66e93f0_1.conda
+ sha256: ac987b1c186d79e4e1ce4354a84724fc68db452b2bd61de3a3e1b6fc7c26138d
+ md5: 532c3e5d0280be4fea52396ec1fa7d5d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 145481
+ timestamp: 1728724626666
+- kind: conda
+ name: ruamel.yaml.clib
+ version: 0.2.8
+ build: py312hb2c0f52_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/ruamel.yaml.clib-0.2.8-py312hb2c0f52_1.conda
+ sha256: 819677769f58b5cbcdf1b4f3fbf5a0779c2e40a8922d8fb72e48dd9357d65345
+ md5: 189e58f9d58f36f522ceda028f5249f8
+ depends:
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 138521
+ timestamp: 1728724676717
+- kind: conda
+ name: scipy
+ version: 1.14.1
+ build: py312h20deb59_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.14.1-py312h20deb59_1.conda
+ sha256: 1a4d655609bad7dbdbe9f44ba37fd100d01fb8e4e7060dfaed3c4a044ab40052
+ md5: c60ad657cccb6c2b97513f87ae27f47a
+ depends:
+ - __osx >=11.0
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libcxx >=17
+ - libgfortran 5.*
+ - libgfortran5 >=13.2.0
+ - liblapack >=3.9.0,<4.0a0
+ - numpy <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 15132713
+ timestamp: 1729481799441
+- kind: conda
+ name: scipy
+ version: 1.14.1
+ build: py312h337df96_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py312h337df96_1.conda
+ sha256: d0a8b9e849ae53af5c8373d1429464e071fda3ee35accb77775757b330e0d340
+ md5: 7d85322084d7262008c49c85d3079c50
+ depends:
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - liblapack >=3.9.0,<4.0a0
+ - numpy <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 16143541
+ timestamp: 1729482531384
+- kind: conda
+ name: scipy
+ version: 1.14.1
+ build: py312h62794b6_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py312h62794b6_1.conda
+ sha256: d069a64edade554261672d8febf4756aeb56a6cb44bd91844eaa944e5d9f4eb9
+ md5: b43233a9e2f62fb94affe5607ea79473
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc >=13
+ - libgfortran
+ - libgfortran5 >=13.3.0
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx >=13
+ - numpy <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17622722
+ timestamp: 1729481826601
+- kind: conda
+ name: scipy
+ version: 1.14.1
+ build: py312h888eae2_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.14.1-py312h888eae2_1.conda
+ sha256: 5a28ea91c935513e6c5f64baac5a02ce43d9ba183b98e20127220b207ec96529
+ md5: ee7a4ffe9742d2df44caa858b36814b8
+ depends:
+ - __osx >=10.13
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libcxx >=17
+ - libgfortran 5.*
+ - libgfortran5 >=13.2.0
+ - liblapack >=3.9.0,<4.0a0
+ - numpy <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 16032291
+ timestamp: 1729481615781
+- kind: conda
+ name: scipy
+ version: 1.14.1
+ build: py312hcbff3fa_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/scipy-1.14.1-py312hcbff3fa_1.conda
+ sha256: a17a0ec7eafee676707f4eb05d56dfd9d97cbbf82be04163f49e1ceae7d06f5b
+ md5: 7f7934012e929d4da282cee15a8f754e
+ depends:
+ - libblas >=3.9.0,<4.0a0
+ - libcblas >=3.9.0,<4.0a0
+ - libgcc >=13
+ - libgfortran
+ - libgfortran5 >=13.3.0
+ - liblapack >=3.9.0,<4.0a0
+ - libstdcxx >=13
+ - numpy <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17548771
+ timestamp: 1729482405590
+- kind: conda
+ name: sed
+ version: '4.7'
+ build: h3efe00b_1000
+ build_number: 1000
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/sed-4.7-h3efe00b_1000.tar.bz2
+ sha256: c7dc65d2d43561aa20f2ee3ddcb9b8d19fd52d18802b5ca87e508f6041c0b225
+ md5: 12e92b1d4ac4f839fcdd66289caea89f
+ depends:
+ - gettext >=0.19.2
+ - gettext >=0.19.8.1,<1.0a0
+ license: GPL-3
+ size: 263631
+ timestamp: 1550735515743
+- kind: conda
+ name: sed
+ version: '4.8'
+ build: ha0d5d3d_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/sed-4.8-ha0d5d3d_0.tar.bz2
+ sha256: 1ec6d66923a767bdeb534591b530d43a31681c2ffbc453e0fab87bef3c102343
+ md5: c9d4b34c44d1083c857a6aee1563b0b6
+ depends:
+ - libgcc-ng >=7.5.0
+ license: GPL-3
+ size: 289288
+ timestamp: 1605308328167
+- kind: conda
+ name: sed
+ version: '4.8'
+ build: hc6a1b29_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/sed-4.8-hc6a1b29_0.tar.bz2
+ sha256: a9c4193ccfa633aa7ab37aa95c7d28101a1df45b27efcaf28828d7266c2d43c1
+ md5: 1b410382feb5302344180b25df05b591
+ depends:
+ - gettext >=0.19.2
+ - gettext >=0.19.8.1,<1.0a0
+ license: GPL-3
+ size: 279194
+ timestamp: 1605307517437
+- kind: conda
+ name: sed
+ version: '4.8'
+ build: he412f7d_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/sed-4.8-he412f7d_0.tar.bz2
+ sha256: 7c1f391789f3928ef688a348be998e31b8aa3cfb58a1854733c2552ef5c5a2fd
+ md5: 7362f0042e95681f5d371c46c83ebd08
+ depends:
+ - libgcc-ng >=7.5.0
+ license: GPL-3
+ size: 270762
+ timestamp: 1605307395873
+- kind: conda
+ name: setuptools
+ version: 75.6.0
+ build: pyhff2d567_1
+ build_number: 1
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.6.0-pyhff2d567_1.conda
+ sha256: abb12e1dd515b13660aacb5d0fd43835bc2186cab472df25b7716cd65e095111
+ md5: fc80f7995e396cbaeabd23cf46c413dc
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 774252
+ timestamp: 1732632769210
+- kind: conda
+ name: sigtool
+ version: 0.1.3
+ build: h44b9a77_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2
+ sha256: 70791ae00a3756830cb50451db55f63e2a42a2fa2a8f1bab1ebd36bbb7d55bff
+ md5: 4a2cac04f86a4540b8c9b8d8f597848f
+ depends:
+ - openssl >=3.0.0,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 210264
+ timestamp: 1643442231687
+- kind: conda
+ name: sigtool
+ version: 0.1.3
+ build: h88f4db0_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2
+ sha256: 46fdeadf8f8d725819c4306838cdfd1099cd8fe3e17bd78862a5dfdcd6de61cf
+ md5: fbfb84b9de9a6939cb165c02c69b1865
+ depends:
+ - openssl >=3.0.0,<4.0a0
+ license: MIT
+ license_family: MIT
+ size: 213817
+ timestamp: 1643442169866
+- kind: conda
+ name: simdjson
+ version: 3.10.1
+ build: h17cf362_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/simdjson-3.10.1-h17cf362_0.conda
+ sha256: ba876573093886fec3eb63d250cc1374d746e63ddda6f002f7d01296277798aa
+ md5: 3c6b6318fff5d337af31ace509f6bb17
+ depends:
+ - libgcc-ng >=13
+ - libstdcxx-ng >=13
+ license: Apache-2.0
+ license_family: APACHE
+ size: 206716
+ timestamp: 1724699003789
+- kind: conda
+ name: simdjson
+ version: 3.10.1
+ build: h37c8870_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/simdjson-3.10.1-h37c8870_0.conda
+ sha256: 66e6968c3d14dfdd81b0cbae28c31ed55d51c6542519bb77b293a6c8ef213f29
+ md5: d5048706875bc90d10a7fd6d12bbe456
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ license: Apache-2.0
+ license_family: APACHE
+ size: 229800
+ timestamp: 1724699053839
+- kind: conda
+ name: simdjson
+ version: 3.10.1
+ build: h7b3277c_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/simdjson-3.10.1-h7b3277c_0.conda
+ sha256: 8891aaeceadfc216dcc3c670deb9bfdd743545807e6784ff66a8a7573b32aab9
+ md5: 20d38192890c62d1bc30707cff2cb22a
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ license: Apache-2.0
+ license_family: APACHE
+ size: 200868
+ timestamp: 1724699076143
+- kind: conda
+ name: simdjson
+ version: 3.10.1
+ build: h84d6215_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/simdjson-3.10.1-h84d6215_0.conda
+ sha256: 0148900cdf96ad935f977aea53014b41fbfb7809afa007c10a3678e4a58520b4
+ md5: 7f9bd0e5c889fae32b03dd448eb71de6
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=13
+ - libstdcxx-ng >=13
+ license: Apache-2.0
+ license_family: APACHE
+ size: 240017
+ timestamp: 1724698949769
+- kind: conda
+ name: simdjson
+ version: 3.10.1
+ build: hc790b64_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/simdjson-3.10.1-hc790b64_0.conda
+ sha256: a84d697214d1ff83734f10ef27f7cdc1b7b6ef2e0f6b7a4db1af955d62abe399
+ md5: 0538768856198b49c0b91f9af17159ef
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: APACHE
+ size: 248769
+ timestamp: 1724699287388
+- kind: conda
+ name: six
+ version: 1.16.0
+ build: pyh6c4a22f_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
+ sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6
+ md5: e5f25f8dbc060e9a8d912e432202afc2
+ depends:
+ - python
+ license: MIT
+ license_family: MIT
+ size: 14259
+ timestamp: 1620240338595
+- kind: conda
+ name: smesh
+ version: 9.9.0.0
+ build: h0d71592_13
+ build_number: 13
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/smesh-9.9.0.0-h0d71592_13.conda
+ sha256: b661ad37d73de52ba2c133d843fad3e20d8c0b677f194ddb0cce721900b71d8a
+ md5: 3c66ab3d7f24ca9c0a9f79ebe950b495
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libboost >=1.86.0,<1.87.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - occt >=7.8.1,<7.8.2.0a0
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ size: 4535754
+ timestamp: 1729371963115
+- kind: conda
+ name: smesh
+ version: 9.9.0.0
+ build: h212b014_13
+ build_number: 13
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/smesh-9.9.0.0-h212b014_13.conda
+ sha256: 8c55daf93f4d7434d2051227e86a617ce7f8b66b9bf43fa4ecb034ee7bbc0d90
+ md5: 08ee56e0a10ca95781f960014b65a278
+ depends:
+ - libboost >=1.86.0,<1.87.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - occt >=7.8.1,<7.8.2.0a0
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ size: 4796963
+ timestamp: 1729372232913
+- kind: conda
+ name: smesh
+ version: 9.9.0.0
+ build: ha774313_13
+ build_number: 13
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/smesh-9.9.0.0-ha774313_13.conda
+ sha256: ce77d396d9c0d7836c714fa6dd74b7fedd65368414302adcf0453b682168739d
+ md5: 8a856c4514e00f3d70332016c32eed33
+ depends:
+ - __osx >=10.13
+ - libboost >=1.86.0,<1.87.0a0
+ - libcxx >=17
+ - libzlib >=1.3.1,<2.0a0
+ - occt >=7.8.1,<7.8.2.0a0
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ size: 4202183
+ timestamp: 1729372719929
+- kind: conda
+ name: smesh
+ version: 9.9.0.0
+ build: hdbf5530_13
+ build_number: 13
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/smesh-9.9.0.0-hdbf5530_13.conda
+ sha256: 9664e16dbad2a2de052fae26ecae84ba8209cba9981e75ce212b6abd1713cf01
+ md5: d342dd9adb2741987ad7570d376b3686
+ depends:
+ - libboost >=1.86.0,<1.87.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - occt >=7.8.1,<7.8.2.0a0
+ - pthreads-win32
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.40.33810
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ size: 3646997
+ timestamp: 1729372911260
+- kind: conda
+ name: smesh
+ version: 9.9.0.0
+ build: hf192bc0_13
+ build_number: 13
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/smesh-9.9.0.0-hf192bc0_13.conda
+ sha256: f0a05c7a3898dba7cd4639dd9a467999865030918f2329079442e913d9d7a45c
+ md5: 1c3e982e81b32ccfce0c2e36c19d5569
+ depends:
+ - __osx >=11.0
+ - libboost >=1.86.0,<1.87.0a0
+ - libcxx >=17
+ - libzlib >=1.3.1,<2.0a0
+ - occt >=7.8.1,<7.8.2.0a0
+ - vtk-base >=9.3.1,<9.3.2.0a0
+ license: LGPL-2.1-or-later
+ license_family: LGPL
+ size: 3762789
+ timestamp: 1729372519693
+- kind: conda
+ name: snappy
+ version: 1.2.1
+ build: h1088aeb_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-h1088aeb_0.conda
+ sha256: 79f5d0a9098acf2ed16e6ecc4c11472b50ccf59feea37a7d585fd43888d7e41f
+ md5: e4ed5b015f525b56f95c26d85a4ea208
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 42888
+ timestamp: 1720003817527
+- kind: conda
+ name: snappy
+ version: 1.2.1
+ build: h23299a8_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/snappy-1.2.1-h23299a8_0.conda
+ sha256: 5b9450f619aabcfbf3d284a272964250b2e1971ab0f7a7ef9143dda0ecc537b8
+ md5: 7635a408509e20dcfc7653ca305ad799
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 59350
+ timestamp: 1720004197144
+- kind: conda
+ name: snappy
+ version: 1.2.1
+ build: ha2e4443_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda
+ sha256: dc7c8e0e8c3e8702aae81c52d940bfaabe756953ee51b1f1757e891bab62cf7f
+ md5: 6b7dcc7349efd123d493d2dbe85a045f
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 42465
+ timestamp: 1720003704360
+- kind: conda
+ name: snappy
+ version: 1.2.1
+ build: hd02b534_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-hd02b534_0.conda
+ sha256: cb7a9440241c6092e0f1c795fdca149c4767023e783eaf9cfebc501f906b4897
+ md5: 69d0f9694f3294418ee935da3d5f7272
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 35708
+ timestamp: 1720003794374
+- kind: conda
+ name: snappy
+ version: 1.2.1
+ build: he1e6707_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda
+ sha256: a979319cd4916f0e7450aa92bb3cf4c2518afa80be50de99f31d075e693a6dd9
+ md5: ddceef5df973c8ff7d6b32353c0cb358
+ depends:
+ - __osx >=10.13
+ - libcxx >=16
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 37036
+ timestamp: 1720003862906
+- kind: conda
+ name: soqt6
+ version: 1.6.3
+ build: h23d7b0e_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/soqt6-1.6.3-h23d7b0e_0.conda
+ sha256: c8201aa5a9d22f41c0d5f42b7c0e497ecf7159feec8636a7daf6fa02950930d8
+ md5: 37672c8be048696b5fc10be22e8c9435
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - coin3d >=4.0.3,<4.1.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - qt6-main >=6.7.3,<6.8.0a0
+ constrains:
+ - soqt <0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 321109
+ timestamp: 1728082619106
+- kind: conda
+ name: soqt6
+ version: 1.6.3
+ build: h667e493_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/soqt6-1.6.3-h667e493_0.conda
+ sha256: f7fd8b27eb202efdc4d7c660b5cc37dfc942adc63d54f928ac403581db953523
+ md5: 60fc4f49510c680dd54edc31cd5bced0
+ depends:
+ - __osx >=10.13
+ - coin3d >=4.0.3,<4.1.0a0
+ - libcxx >=17
+ - qt6-main >=6.7.3,<6.8.0a0
+ constrains:
+ - soqt <0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 261592
+ timestamp: 1728082747427
+- kind: conda
+ name: soqt6
+ version: 1.6.3
+ build: h796eb14_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/soqt6-1.6.3-h796eb14_0.conda
+ sha256: c0fe037f622380b551313f72944790adaf43f6155609aca8a716638ac1d8e192
+ md5: 0496a0fe733111cbd8dd0ba285fb73f5
+ depends:
+ - coin3d >=4.0.3,<4.1.0a0
+ - qt6-main >=6.7.3,<6.8.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - soqt <0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 250216
+ timestamp: 1728083269744
+- kind: conda
+ name: soqt6
+ version: 1.6.3
+ build: h808f404_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/soqt6-1.6.3-h808f404_0.conda
+ sha256: e42c6ef58dc3371bb43029788ed1d7ddf1fa7a3fd83fb1d78d63db5815bebb74
+ md5: 4935d0d9baa48d929d88026dfe82c073
+ depends:
+ - coin3d >=4.0.3,<4.1.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - qt6-main >=6.7.3,<6.8.0a0
+ constrains:
+ - soqt <0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 318319
+ timestamp: 1728082634827
+- kind: conda
+ name: soqt6
+ version: 1.6.3
+ build: hd20b56a_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/soqt6-1.6.3-hd20b56a_0.conda
+ sha256: b800fad0d87a7bc88fe3c47e03749f9c0777687eb5e209d7db3909efa349f27a
+ md5: efcc605289339a5fc4cc65ddf4336127
+ depends:
+ - __osx >=11.0
+ - coin3d >=4.0.3,<4.1.0a0
+ - libcxx >=17
+ - qt6-main >=6.7.3,<6.8.0a0
+ constrains:
+ - soqt <0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 258332
+ timestamp: 1728082869198
+- kind: conda
+ name: spdlog
+ version: 1.14.1
+ build: h325aa07_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/spdlog-1.14.1-h325aa07_1.conda
+ sha256: ec594f80f82f69472cf518795303a222a03460cc4102c4758b33eab833640024
+ md5: 4aa13d84a5c71b5df6642761a6c35ce9
+ depends:
+ - __osx >=10.13
+ - fmt >=11.0.1,<12.0a0
+ - libcxx >=16
+ license: MIT
+ license_family: MIT
+ size: 171455
+ timestamp: 1722238446029
+- kind: conda
+ name: spdlog
+ version: 1.14.1
+ build: h6d8af72_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/spdlog-1.14.1-h6d8af72_1.conda
+ sha256: f981d4f3555125cb913be49397892f43c6b747705c0d72cba3676f7d98709f92
+ md5: 4af518b01539da8e4af17aee5fb92639
+ depends:
+ - __osx >=11.0
+ - fmt >=11.0.1,<12.0a0
+ - libcxx >=16
+ license: MIT
+ license_family: MIT
+ size: 164011
+ timestamp: 1722238482313
+- kind: conda
+ name: spdlog
+ version: 1.14.1
+ build: h9d9cc24_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/spdlog-1.14.1-h9d9cc24_1.conda
+ sha256: bcec80ee6145e30c1aaec1e6b4632318c9165b1fc08def6a090982de16bf299d
+ md5: 771630cc938de801e261c3a069d22a68
+ depends:
+ - fmt >=11.0.1,<12.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 194216
+ timestamp: 1722238356907
+- kind: conda
+ name: spdlog
+ version: 1.14.1
+ build: h9f2357e_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/spdlog-1.14.1-h9f2357e_1.conda
+ sha256: 3ed3e9aaeb6255914472109a6d25d5119eb196c8d6cc2ec732cffe79ccc789bf
+ md5: b9bff07144f2be7ee32f0b83a79ef21d
+ depends:
+ - fmt >=11.0.1,<12.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 169120
+ timestamp: 1722238639391
+- kind: conda
+ name: spdlog
+ version: 1.14.1
+ build: hed91bc2_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.14.1-hed91bc2_1.conda
+ sha256: 0c604fe3f78ddb2b612841722bd9b5db24d0484e30ced89fac78c0a3f524dfd6
+ md5: 909188c8979846bac8e586908cf1ca6a
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - fmt >=11.0.1,<12.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 195665
+ timestamp: 1722238295031
+- kind: conda
+ name: sqlite
+ version: 3.47.0
+ build: h2466b09_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/sqlite-3.47.0-h2466b09_1.conda
+ sha256: bc2a5ab86dbe2352790d1742265b3b6ae9a7aa5cf80345a37f26ec3e04cf9b4a
+ md5: 93084a590e8b7d2b62b7d5b1763d5bde
+ depends:
+ - libsqlite 3.47.0 h2466b09_1
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Unlicense
+ size: 914686
+ timestamp: 1730208443157
+- kind: conda
+ name: sqlite
+ version: 3.47.0
+ build: h578a6b9_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/sqlite-3.47.0-h578a6b9_1.conda
+ sha256: 56c340844a9d8e8bb7c5175fba309dbea5362d5e81746e3cec6a08ee42444d80
+ md5: 8d4471877330ce83ef7a2a007cb34851
+ depends:
+ - libgcc >=13
+ - libsqlite 3.47.0 hc4a20ef_1
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - readline >=8.2,<9.0a0
+ license: Unlicense
+ size: 1070835
+ timestamp: 1730208195373
+- kind: conda
+ name: sqlite
+ version: 3.47.0
+ build: h6285a30_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.47.0-h6285a30_1.conda
+ sha256: 34eaf24c2d0b034374d7a85026650fe28e17321fa471e5c5f654b48c5cbd3c2a
+ md5: c1d1f4d014063068fd6c402cf741e317
+ depends:
+ - __osx >=10.13
+ - libsqlite 3.47.0 h2f8c449_1
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - readline >=8.2,<9.0a0
+ license: Unlicense
+ size: 929527
+ timestamp: 1730208118175
+- kind: conda
+ name: sqlite
+ version: 3.47.0
+ build: h9eae976_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.47.0-h9eae976_1.conda
+ sha256: 8ea1a085fa95d806301aeec0df6985c3ad0852a9a46aa62dd737d228c7862f9f
+ md5: 53abf1ef70b9ae213b22caa5350f97a9
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libsqlite 3.47.0 hadc24fc_1
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - readline >=8.2,<9.0a0
+ license: Unlicense
+ size: 883666
+ timestamp: 1730208056779
+- kind: conda
+ name: sqlite
+ version: 3.47.0
+ build: hcd14bea_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/sqlite-3.47.0-hcd14bea_1.conda
+ sha256: f9975914a78d600182ec68c963a98c6c0a07eda9b9eee7d6e8bdac9310858ad2
+ md5: ca42c22ab1d212895e58fee9ba32875f
+ depends:
+ - __osx >=11.0
+ - libsqlite 3.47.0 hbaaea75_1
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - readline >=8.2,<9.0a0
+ license: Unlicense
+ size: 840459
+ timestamp: 1730208324005
+- kind: conda
+ name: svt-av1
+ version: 2.3.0
+ build: h5888daf_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.3.0-h5888daf_0.conda
+ sha256: df30a9be29f1a8b5a2e314dd5b16ccfbcbd1cc6a4f659340e8bc2bd4de37bc6f
+ md5: 355898d24394b2af353eb96358db9fdd
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 2746291
+ timestamp: 1730246036363
+- kind: conda
+ name: svt-av1
+ version: 2.3.0
+ build: h5ad3122_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/svt-av1-2.3.0-h5ad3122_0.conda
+ sha256: 2fad2496a21d198ea72f5dabfdace2fae0ced5cc3ea243922cb372fcf4c18222
+ md5: efb60b536bbf64772929b57f6b30298b
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 1796731
+ timestamp: 1730246027014
+- kind: conda
+ name: svt-av1
+ version: 2.3.0
+ build: h97d8b74_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-2.3.0-h97d8b74_0.conda
+ sha256: 8cd3878eb1d31ecf21fe982e6d2ca557787100aed2f0c7fd44d01d504e704e30
+ md5: c54053b3d1752308a38a9a8c48ce10da
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 2413474
+ timestamp: 1730246540736
+- kind: conda
+ name: svt-av1
+ version: 2.3.0
+ build: he0c23c2_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/svt-av1-2.3.0-he0c23c2_0.conda
+ sha256: c25bf68ef411d41ee29f353acc698c482fdd087426a77398b7b41ce9d968519e
+ md5: ac11ae1da661e573b71870b1191ce079
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 1845727
+ timestamp: 1730246453216
+- kind: conda
+ name: svt-av1
+ version: 2.3.0
+ build: hf24288c_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-2.3.0-hf24288c_0.conda
+ sha256: ab876ed8bdd20e22a868dcb8d03e9ce9bbba7762d7e652d49bfff6af768a5b8f
+ md5: 114c33e9eec335a379c9ee6c498bb807
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ license: BSD-2-Clause
+ license_family: BSD
+ size: 1387330
+ timestamp: 1730246134730
+- kind: conda
+ name: swig
+ version: 4.3.0
+ build: h051d1ac_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/swig-4.3.0-h051d1ac_0.conda
+ sha256: 40093468f8983fe331d8a4e8e631a8dbcee0167edcbb2f68aef6db2ab68aa816
+ md5: 2a8e52dc5014460dc890041d31f79f93
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - pcre2 >=10.44,<10.45.0a0
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 1113443
+ timestamp: 1729589137221
+- kind: conda
+ name: swig
+ version: 4.3.0
+ build: h05d4bff_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/swig-4.3.0-h05d4bff_0.conda
+ sha256: 5d1accf5609d7152c8ee0961b7a83aa73519866f549e4e75aa0b8e2fe365db65
+ md5: e977150e8f2dd12aa3fa3c94c87e5b8f
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ - pcre2 >=10.44,<10.45.0a0
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 1160596
+ timestamp: 1729589065015
+- kind: conda
+ name: swig
+ version: 4.3.0
+ build: h2f4baa9_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/swig-4.3.0-h2f4baa9_0.conda
+ sha256: 50b8b93bd1cef4451c6a659f59ad48ca886990f1123a71dbe54c49562f64ac30
+ md5: 3004200698c3e9599b255fb357628f48
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - pcre2 >=10.44,<10.45.0a0
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 1299652
+ timestamp: 1729589010660
+- kind: conda
+ name: swig
+ version: 4.3.0
+ build: h51fbe9b_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/swig-4.3.0-h51fbe9b_0.conda
+ sha256: b6f66e27dac7799a844e530f2b946713223106b8df66c809a6dda4a96ae68ba3
+ md5: f076cd8282f1c164e57990a1daf70fd1
+ depends:
+ - pcre2 >=10.44,<10.45.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 1079944
+ timestamp: 1729589112085
+- kind: conda
+ name: swig
+ version: 4.3.0
+ build: heed6a68_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/swig-4.3.0-heed6a68_0.conda
+ sha256: 4771f7a2323d7f3c4d42b1c8ed670335ede7e78b80d8ba17d3c40b781dedcbdc
+ md5: 0e4da15e507b716140699aca1a279a88
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - pcre2 >=10.44,<10.45.0a0
+ license: GPL-3.0-or-later
+ license_family: GPL
+ size: 1248414
+ timestamp: 1729588950292
+- kind: conda
+ name: sysroot_linux-64
+ version: '2.12'
+ build: he073ed8_17
+ build_number: 17
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_17.conda
+ sha256: b4e4d685e41cb36cfb16f0cb15d2c61f8f94f56fab38987a44eff95d8a673fb5
+ md5: 595db67e32b276298ff3d94d07d47fbf
+ depends:
+ - kernel-headers_linux-64 2.6.32 he073ed8_17
+ license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0
+ license_family: GPL
+ size: 15127123
+ timestamp: 1708000843849
+- kind: conda
+ name: sysroot_linux-aarch64
+ version: '2.17'
+ build: h5b4a56d_18
+ build_number: 18
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-aarch64-2.17-h5b4a56d_18.conda
+ sha256: 769a720e0066e3b5c4168d6de455dbde12c2ee11ee3a19fc614659d04f726370
+ md5: d42f4bece921c5e59f56a36414106dc1
+ depends:
+ - kernel-headers_linux-aarch64 4.18.0 h05a177a_18
+ - tzdata
+ license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0
+ license_family: GPL
+ size: 15669544
+ timestamp: 1729794509305
+- kind: conda
+ name: tapi
+ version: 1300.6.5
+ build: h03f4b80_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1300.6.5-h03f4b80_0.conda
+ sha256: 37cd4f62ec023df8a6c6f9f6ffddde3d6620a83cbcab170a8fff31ef944402e5
+ md5: b703bc3e6cba5943acf0e5f987b5d0e2
+ depends:
+ - __osx >=11.0
+ - libcxx >=17.0.0.a0
+ - ncurses >=6.5,<7.0a0
+ license: NCSA
+ license_family: MIT
+ size: 207679
+ timestamp: 1725491499758
+- kind: conda
+ name: tapi
+ version: 1300.6.5
+ build: h390ca13_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/tapi-1300.6.5-h390ca13_0.conda
+ sha256: f97372a1c75b749298cb990405a690527e8004ff97e452ed2c59e4bc6a35d132
+ md5: c6ee25eb54accb3f1c8fc39203acfaf1
+ depends:
+ - __osx >=10.13
+ - libcxx >=17.0.0.a0
+ - ncurses >=6.5,<7.0a0
+ license: NCSA
+ license_family: MIT
+ size: 221236
+ timestamp: 1725491044729
+- kind: conda
+ name: tbb
+ version: 2021.13.0
+ build: h62715c5_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda
+ sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302
+ md5: 9190dd0a23d925f7602f9628b3aed511
+ depends:
+ - libhwloc >=2.11.2,<2.11.3.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: APACHE
+ size: 151460
+ timestamp: 1732982860332
+- kind: conda
+ name: tbb
+ version: 2022.0.0
+ build: h0cbf7ec_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/tbb-2022.0.0-h0cbf7ec_0.conda
+ sha256: f436517a16494c93e2d779b9cdb91e8f4a9b48cef67fe20a4e75e494c8631dff
+ md5: 44ba5ad9819821b9b176ba2bb937a79c
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - libhwloc >=2.11.2,<2.11.3.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 117825
+ timestamp: 1730477755617
+- kind: conda
+ name: tbb
+ version: 2022.0.0
+ build: h0ec6371_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2022.0.0-h0ec6371_0.conda
+ sha256: a69e71e18f2da8807b23615f1d3c1989bbb27862709b9d29c6b67c6f19d0523f
+ md5: a490face63f9af5b631921c8ddfd7383
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ - libhwloc >=2.11.2,<2.11.3.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ size: 162933
+ timestamp: 1730477787840
+- kind: conda
+ name: tbb
+ version: 2022.0.0
+ build: h243be18_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/tbb-2022.0.0-h243be18_0.conda
+ sha256: 914b8f72004bc72dda573ae6579f2443f9be2556865b91a0a958368b40b189c6
+ md5: adc00506117e9ea09114ce0dac3681f0
+ depends:
+ - libgcc >=13
+ - libhwloc >=2.11.2,<2.11.3.0a0
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: APACHE
+ size: 146414
+ timestamp: 1730479107676
+- kind: conda
+ name: tbb
+ version: 2022.0.0
+ build: hceb3a55_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2022.0.0-hceb3a55_0.conda
+ sha256: 2f7931cad1682d8b6bdc90dbb51edf01f6f5c33fc00392c396d63e24437df1e8
+ md5: 79f0161f3ca73804315ca980f65d9c60
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libhwloc >=2.11.2,<2.11.3.0a0
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: APACHE
+ size: 178584
+ timestamp: 1730477634943
+- kind: conda
+ name: tbb-devel
+ version: 2021.13.0
+ build: h47441b3_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/tbb-devel-2021.13.0-h47441b3_1.conda
+ sha256: c290681bb8e03f13ec490e7ed048dc74da884f23d146c7f98283c0d218532dcb
+ md5: e372dfa2ea4bf2143ee2072e8adc8ac7
+ depends:
+ - tbb 2021.13.0 h62715c5_1
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ size: 1062747
+ timestamp: 1732982884583
+- kind: conda
+ name: tbb-devel
+ version: 2022.0.0
+ build: h1f99690_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/tbb-devel-2022.0.0-h1f99690_0.conda
+ sha256: 67a58fa88d4c8d353a72c8ab2130b4e2a96afbfeca6e8438b07b9fc76e551090
+ md5: 52317967d0c3dc2ef6f73c2e6a60e005
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - tbb 2022.0.0 hceb3a55_0
+ size: 1075564
+ timestamp: 1730477658219
+- kind: conda
+ name: tbb-devel
+ version: 2022.0.0
+ build: h6e261d1_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/tbb-devel-2022.0.0-h6e261d1_0.conda
+ sha256: 50d10fd8d6be3deaf7fabbd40d61c82cf13b70e2e09603e67c0a41161214b279
+ md5: f0ab986bef824b8045c44737d7e6464e
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - tbb 2022.0.0 h0cbf7ec_0
+ size: 1075822
+ timestamp: 1730477778601
+- kind: conda
+ name: tbb-devel
+ version: 2022.0.0
+ build: h80d89ef_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/tbb-devel-2022.0.0-h80d89ef_0.conda
+ sha256: 057720aeed52e84f5620025d736e8d1be265387e3632b7ccc2725be9ab7b430a
+ md5: b5f7717fe68aed91bda2366a18035dfb
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ - tbb 2022.0.0 h0ec6371_0
+ size: 1074771
+ timestamp: 1730477812192
+- kind: conda
+ name: tbb-devel
+ version: 2022.0.0
+ build: h9a8439e_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/tbb-devel-2022.0.0-h9a8439e_0.conda
+ sha256: 3eedbece2bbd25e683d7ab0257fcfe8606f35955c20b4ea39750c46eb7b91153
+ md5: b26ac5ef7be85db0dbb7c5f828145277
+ depends:
+ - libgcc >=13
+ - libstdcxx >=13
+ - tbb 2022.0.0 h243be18_0
+ size: 1075158
+ timestamp: 1730479266699
+- kind: conda
+ name: tk
+ version: 8.6.13
+ build: h194ca79_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda
+ sha256: 7fa27cc512d3a783f38bd16bbbffc008807372499d5b65d089a8e43bde9db267
+ md5: f75105e0585851f818e0009dd1dde4dc
+ depends:
+ - libgcc-ng >=12
+ - libzlib >=1.2.13,<2.0.0a0
+ license: TCL
+ license_family: BSD
+ size: 3351802
+ timestamp: 1695506242997
+- kind: conda
+ name: tk
+ version: 8.6.13
+ build: h1abcd95_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda
+ sha256: 30412b2e9de4ff82d8c2a7e5d06a15f4f4fef1809a72138b6ccb53a33b26faf5
+ md5: bf830ba5afc507c6232d4ef0fb1a882d
+ depends:
+ - libzlib >=1.2.13,<2.0.0a0
+ license: TCL
+ license_family: BSD
+ size: 3270220
+ timestamp: 1699202389792
+- kind: conda
+ name: tk
+ version: 8.6.13
+ build: h5083fa2_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda
+ sha256: 72457ad031b4c048e5891f3f6cb27a53cb479db68a52d965f796910e71a403a8
+ md5: b50a57ba89c32b62428b71a875291c9b
+ depends:
+ - libzlib >=1.2.13,<2.0.0a0
+ license: TCL
+ license_family: BSD
+ size: 3145523
+ timestamp: 1699202432999
+- kind: conda
+ name: tk
+ version: 8.6.13
+ build: h5226925_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda
+ sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1
+ md5: fc048363eb8f03cd1737600a5d08aafe
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: TCL
+ license_family: BSD
+ size: 3503410
+ timestamp: 1699202577803
+- kind: conda
+ name: tk
+ version: 8.6.13
+ build: noxft_h4845f30_101
+ build_number: 101
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
+ sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e
+ md5: d453b98d9c83e71da0741bb0ff4d76bc
+ depends:
+ - libgcc-ng >=12
+ - libzlib >=1.2.13,<2.0.0a0
+ license: TCL
+ license_family: BSD
+ size: 3318875
+ timestamp: 1699202167581
+- kind: conda
+ name: tornado
+ version: 6.4.2
+ build: py312h01d7ebd_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.4.2-py312h01d7ebd_0.conda
+ sha256: a7b0796b9f8a02121a866ee396f0f8674c302504ccb9a3a2830699eedbc000b0
+ md5: 1b977164053085b356297127d3d6be49
+ depends:
+ - __osx >=10.13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 837113
+ timestamp: 1732616134981
+- kind: conda
+ name: tornado
+ version: 6.4.2
+ build: py312h4389bb4_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.4.2-py312h4389bb4_0.conda
+ sha256: e21f24e5d598d9a31c604f510c82fbe73d756696bc70a69f11811a2ea9dd5d95
+ md5: f06104f71f496b0784b35b23e30e7990
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: Apache
+ size: 844347
+ timestamp: 1732616435803
+- kind: conda
+ name: tornado
+ version: 6.4.2
+ build: py312h52516f5_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.4.2-py312h52516f5_0.conda
+ sha256: 4c19a544354172b2273553267e734795a6da3c78a04c2d19f8e9e159ca3178bc
+ md5: e28996d9d2d44d777b7e6fb12f63715b
+ depends:
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 841662
+ timestamp: 1732616934923
+- kind: conda
+ name: tornado
+ version: 6.4.2
+ build: py312h66e93f0_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda
+ sha256: 062a3a3a37fa8615ce57929ba7e982c76f5a5810bcebd435950f6d6c4147c310
+ md5: e417822cb989e80a0d2b1b576fdd1657
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 840414
+ timestamp: 1732616043734
+- kind: conda
+ name: tornado
+ version: 6.4.2
+ build: py312hea69d52_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.2-py312hea69d52_0.conda
+ sha256: 964a2705a36c50040c967b18b45b9cc8de3c2aff4af546979a574e0b38e58e39
+ md5: fb0605888a475d6a380ae1d1a819d976
+ depends:
+ - __osx >=11.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 842549
+ timestamp: 1732616081362
+- kind: conda
+ name: tqdm
+ version: 4.67.1
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda
+ sha256: 5673b7104350a6998cb86cccf1d0058217d86950e8d6c927d8530606028edb1d
+ md5: 4085c9db273a148e149c03627350e22c
+ depends:
+ - colorama
+ - python >=3.7
+ license: MPL-2.0 or MIT
+ size: 89484
+ timestamp: 1732497312317
+- kind: conda
+ name: truststore
+ version: 0.10.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/truststore-0.10.0-pyhd8ed1ab_0.conda
+ sha256: 0d23d3b370fc0393d05468fbff5152826317d4495446f6b2cc4d446e21050808
+ md5: ad1c20cd193e3044bcf17798c33b9d67
+ depends:
+ - python >=3.10
+ license: MIT
+ license_family: MIT
+ size: 21799
+ timestamp: 1729762456098
+- kind: conda
+ name: typing_extensions
+ version: 4.12.2
+ build: pyha770c72_1
+ build_number: 1
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
+ sha256: 337be7af5af8b2817f115b3b68870208b30c31d3439bec07bfb2d8f4823e3568
+ md5: d17f13df8b65464ca316cbc000a3cb64
+ depends:
+ - python >=3.9
+ license: PSF-2.0
+ license_family: PSF
+ size: 39637
+ timestamp: 1733188758212
+- kind: conda
+ name: tzdata
+ version: 2024b
+ build: hc8b5060_0
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
+ sha256: 4fde5c3008bf5d2db82f2b50204464314cc3c91c1d953652f7bd01d9e52aefdf
+ md5: 8ac3367aafb1cc0a068483c580af8015
+ license: LicenseRef-Public-Domain
+ size: 122354
+ timestamp: 1728047496079
+- kind: conda
+ name: ucrt
+ version: 10.0.22621.0
+ build: h57928b3_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda
+ sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450
+ md5: 6797b005cd0f439c4c5c9ac565783700
+ constrains:
+ - vs2015_runtime >=14.29.30037
+ license: LicenseRef-MicrosoftWindowsSDK10
+ size: 559710
+ timestamp: 1728377334097
+- kind: conda
+ name: ukkonen
+ version: 1.0.1
+ build: py312h451a7dd_5
+ build_number: 5
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/ukkonen-1.0.1-py312h451a7dd_5.conda
+ sha256: a4fdd0ce8532174bb7caf475fac947d3cdfe85d3b71ebeb2892281c650614c08
+ md5: 800fc7dab0bb640c93f530f8fa280c7b
+ depends:
+ - cffi
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 14718
+ timestamp: 1725784301836
+- kind: conda
+ name: ukkonen
+ version: 1.0.1
+ build: py312h6142ec9_5
+ build_number: 5
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py312h6142ec9_5.conda
+ sha256: 1e4452b4a12d8a69c237f14b876fbf0cdc456914170b49ba805779c749c31eca
+ md5: 2b485a809d1572cbe7f0ad9ee107e4b0
+ depends:
+ - __osx >=11.0
+ - cffi
+ - libcxx >=17
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 13605
+ timestamp: 1725784243533
+- kind: conda
+ name: ukkonen
+ version: 1.0.1
+ build: py312h68727a3_5
+ build_number: 5
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py312h68727a3_5.conda
+ sha256: 9fb020083a7f4fee41f6ece0f4840f59739b3e249f157c8a407bb374ffb733b5
+ md5: f9664ee31aed96c85b7319ab0a693341
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cffi
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 13904
+ timestamp: 1725784191021
+- kind: conda
+ name: ukkonen
+ version: 1.0.1
+ build: py312hc5c4d5f_5
+ build_number: 5
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py312hc5c4d5f_5.conda
+ sha256: f6433143294c1ca52410bf8bbca6029a04f2061588d32e6d2b67c7fd886bc4e0
+ md5: f270aa502d8817e9cb3eb33541f78418
+ depends:
+ - __osx >=10.13
+ - cffi
+ - libcxx >=17
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: MIT
+ license_family: MIT
+ size: 13031
+ timestamp: 1725784199719
+- kind: conda
+ name: ukkonen
+ version: 1.0.1
+ build: py312hd5eb7cc_5
+ build_number: 5
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.0.1-py312hd5eb7cc_5.conda
+ sha256: f1944f3d9645a6fa2770966ff010791136e7ce0eaa0c751822b812ac04fee7d6
+ md5: d8c5ef1991a5121de95ea8e44c34e13a
+ depends:
+ - cffi
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 17213
+ timestamp: 1725784449622
+- kind: conda
+ name: unicodedata2
+ version: 15.1.0
+ build: py312h0bf5046_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/unicodedata2-15.1.0-py312h0bf5046_1.conda
+ sha256: 236961004c088f190d8b27863b2898f1d43c2d5dc769f135abdacc644b033fab
+ md5: eda2082df9c9c6259af246424b7f3db1
+ depends:
+ - __osx >=11.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 372492
+ timestamp: 1729704995151
+- kind: conda
+ name: unicodedata2
+ version: 15.1.0
+ build: py312h3d0f464_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/unicodedata2-15.1.0-py312h3d0f464_1.conda
+ sha256: e1d8da8eed41f5479eacff7d4b42ad69e8476eb370dcebd3ffff26819a7da4ea
+ md5: f4627b5e2f46389140760303124b4c49
+ depends:
+ - __osx >=10.13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 364385
+ timestamp: 1729704742038
+- kind: conda
+ name: unicodedata2
+ version: 15.1.0
+ build: py312h4389bb4_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/unicodedata2-15.1.0-py312h4389bb4_1.conda
+ sha256: 92abc9d85c1cec3349db089a9942266a981cf347ac6a9ddbeaa3d3162958d81b
+ md5: 9cf863b723d64077f74396cfe4d7c00c
+ depends:
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: Apache
+ size: 365482
+ timestamp: 1729705063982
+- kind: conda
+ name: unicodedata2
+ version: 15.1.0
+ build: py312h66e93f0_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/unicodedata2-15.1.0-py312h66e93f0_1.conda
+ sha256: 1fcba6d363d901d9a06381e1aee2d5634f82389965dd7a339f19b3ae81ce6da0
+ md5: 588486a61153f94c7c13816f7069e440
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 368550
+ timestamp: 1729704685856
+- kind: conda
+ name: unicodedata2
+ version: 15.1.0
+ build: py312hb2c0f52_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/unicodedata2-15.1.0-py312hb2c0f52_1.conda
+ sha256: d4d824f7b349255c78f793361d3ba0e7ca4be4b3e0862c0bba29df0ba2363a8a
+ md5: 8af221242377135de97413db7eea49fd
+ depends:
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 368846
+ timestamp: 1729704767444
+- kind: conda
+ name: urllib3
+ version: 2.2.3
+ build: pyhd8ed1ab_1
+ build_number: 1
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ sha256: 416e30a1c3262275f01a3e22e783118d9e9d2872a739a9ed860d06fa9c7593d5
+ md5: 4a2d8ef7c37b8808c5b9b750501fffce
+ depends:
+ - brotli-python >=1.0.9
+ - h2 >=4,<5
+ - pysocks >=1.5.6,<2.0,!=1.5.7
+ - python >=3.9
+ - zstandard >=0.18.0
+ license: MIT
+ license_family: MIT
+ size: 98077
+ timestamp: 1733206968917
+- kind: conda
+ name: utfcpp
+ version: 4.0.6
+ build: h005c6e1_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-4.0.6-h005c6e1_0.conda
+ sha256: ec540ff477cd6d209b98f9b201e9c440908ea3a8b62e9e02dd12fcb60fff6d08
+ md5: 9464e297fa2bf08030c65a54342b48c3
+ license: BSL-1.0
+ size: 13447
+ timestamp: 1730672182037
+- kind: conda
+ name: utfcpp
+ version: 4.0.6
+ build: h01cc221_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/utfcpp-4.0.6-h01cc221_0.conda
+ sha256: c8b19a825ec19387181be2c2a63a649f408b6c77fe5f01389565011755150c86
+ md5: 4bc420dcc08be7b850d1d6e9e32e0a0e
+ license: BSL-1.0
+ size: 13427
+ timestamp: 1730672219363
+- kind: conda
+ name: utfcpp
+ version: 4.0.6
+ build: h54c0426_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/utfcpp-4.0.6-h54c0426_0.conda
+ sha256: f35ec947f1c7cf49a0171db562a767d81b59ebbca37989bce34d36d43020fb76
+ md5: 663093debcad11b7f3f1e8d62469af05
+ license: BSL-1.0
+ size: 13663
+ timestamp: 1730672215514
+- kind: conda
+ name: utfcpp
+ version: 4.0.6
+ build: h93fb1c9_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/utfcpp-4.0.6-h93fb1c9_0.conda
+ sha256: ddf50c776d1b12e6b1274c204ecb94e82e0656d0259bd4019fcb7f2863ea001c
+ md5: 674132c65b17f287badb24a9cd807f96
+ license: BSL-1.0
+ size: 13644
+ timestamp: 1730672214332
+- kind: conda
+ name: utfcpp
+ version: 4.0.6
+ build: hc1507ef_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/utfcpp-4.0.6-hc1507ef_0.conda
+ sha256: 71ee67c739bb32a2b684231f156150e1f7fd6c852aa2ceaae50e56909c073227
+ md5: 7071f524e58d346948d4ac7ae7b5d2f2
+ license: BSL-1.0
+ size: 13983
+ timestamp: 1730672186474
+- kind: conda
+ name: vc
+ version: '14.3'
+ build: ha32ba9b_23
+ build_number: 23
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-ha32ba9b_23.conda
+ sha256: 986ddaf8feec2904eac9535a7ddb7acda1a1dfb9482088fdb8129f1595181663
+ md5: 7c10ec3158d1eb4ddff7007c9101adb0
+ depends:
+ - vc14_runtime >=14.38.33135
+ track_features:
+ - vc14
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17479
+ timestamp: 1731710827215
+- kind: conda
+ name: vc14_runtime
+ version: 14.42.34433
+ build: he29a5d6_23
+ build_number: 23
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34433-he29a5d6_23.conda
+ sha256: c483b090c4251a260aba6ff3e83a307bcfb5fb24ad7ced872ab5d02971bd3a49
+ md5: 32b37d0cfa80da34548501cdc913a832
+ depends:
+ - ucrt >=10.0.20348.0
+ constrains:
+ - vs2015_runtime 14.42.34433.* *_23
+ license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime
+ license_family: Proprietary
+ size: 754247
+ timestamp: 1731710681163
+- kind: conda
+ name: virtualenv
+ version: 20.28.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.28.0-pyhd8ed1ab_0.conda
+ sha256: 82776f74e90a296b79415361faa6b10f360755c1fb8e6d59ca68509e6fe7e115
+ md5: 1d601bc1d28b5ce6d112b90f4b9b8ede
+ depends:
+ - distlib >=0.3.7,<1
+ - filelock >=3.12.2,<4
+ - platformdirs >=3.9.1,<5
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 3350255
+ timestamp: 1732609542072
+- kind: conda
+ name: vs2015_runtime
+ version: 14.42.34433
+ build: hdffcdeb_23
+ build_number: 23
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34433-hdffcdeb_23.conda
+ sha256: 568ce8151eaae256f1cef752fc78651ad7a86ff05153cc7a4740b52ae6536118
+ md5: 5c176975ca2b8366abad3c97b3cd1e83
+ depends:
+ - vc14_runtime >=14.42.34433
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17572
+ timestamp: 1731710685291
+- kind: conda
+ name: vs2019_win-64
+ version: 19.29.30139
+ build: he1865b1_23
+ build_number: 23
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/vs2019_win-64-19.29.30139-he1865b1_23.conda
+ sha256: c41039f7f19a6570ad2af6ef7a8534111fe1e6157b187505fb81265d755bb825
+ md5: 245e19dde23580d186b11a29bfd3b99e
+ depends:
+ - vswhere
+ constrains:
+ - vs_win-64 2019.11
+ track_features:
+ - vc14
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 20163
+ timestamp: 1731710669471
+- kind: conda
+ name: vswhere
+ version: 3.1.7
+ build: h57928b3_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/vswhere-3.1.7-h57928b3_0.conda
+ sha256: 8caeda9c0898cb8ee2cf4f45640dbbbdf772ddc01345cfb0f7b352c58b4d8025
+ md5: ba83df93b48acfc528f5464c9a882baa
+ license: MIT
+ license_family: MIT
+ size: 219013
+ timestamp: 1719460515960
+- kind: conda
+ name: vtk
+ version: 9.3.1
+ build: qt_py312h88e836f_209
+ build_number: 209
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/vtk-9.3.1-qt_py312h88e836f_209.conda
+ sha256: 77763e06d5053f144e65bb3cf4407213abb883db146dd46cfb3ec2c0fcd82ac1
+ md5: 03069480d8623812484944dc1c81e1c3
+ depends:
+ - vtk-base 9.3.1 qt_py312h44e7938_209
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 23229
+ timestamp: 1728220734977
+- kind: conda
+ name: vtk
+ version: 9.3.1
+ build: qt_py312h8bbc2db_209
+ build_number: 209
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/vtk-9.3.1-qt_py312h8bbc2db_209.conda
+ sha256: 2900b519275f17322a15e24f440ecacdf80930fc0a8957696e599c420cf837d2
+ md5: 99c2b59c3b35010a778a1b87c04a6242
+ depends:
+ - vtk-base 9.3.1 qt_py312hfd5146d_209
+ - vtk-io-ffmpeg 9.3.1 qt_py312h98fac4b_209
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 23086
+ timestamp: 1728209135633
+- kind: conda
+ name: vtk
+ version: 9.3.1
+ build: qt_py312h8d5bf7a_209
+ build_number: 209
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/vtk-9.3.1-qt_py312h8d5bf7a_209.conda
+ sha256: b1e3cec3215c04bf3bd4072c837ca960ee21bd765c4c324cdad356707e652e13
+ md5: 0bd6884908c2b85fd19f77dc5a077bcc
+ depends:
+ - vtk-base 9.3.1 qt_py312h679c1d7_209
+ - vtk-io-ffmpeg 9.3.1 qt_py312hf99a90b_209
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 23224
+ timestamp: 1728213890380
+- kind: conda
+ name: vtk
+ version: 9.3.1
+ build: qt_py312hbfbf3b8_209
+ build_number: 209
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/vtk-9.3.1-qt_py312hbfbf3b8_209.conda
+ sha256: 66e881f7076b1fa7c74560dc3f14c724687115d018b1c5be8b2bd1854572de58
+ md5: 354adaf21f5ed76b1c81538bb9523731
+ depends:
+ - vtk-base 9.3.1 qt_py312hc7336a2_209
+ - vtk-io-ffmpeg 9.3.1 qt_py312hf51569e_209
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 23296
+ timestamp: 1728216891060
+- kind: conda
+ name: vtk
+ version: 9.3.1
+ build: qt_py312he5e186c_209
+ build_number: 209
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/vtk-9.3.1-qt_py312he5e186c_209.conda
+ sha256: 3df9725ff352d06d163e84bffb1afc501469960be872ad706ebcc9a72736886d
+ md5: c6aba64b606a07b20b345b1e4146494b
+ depends:
+ - vtk-base 9.3.1 qt_py312hc73667e_209
+ - vtk-io-ffmpeg 9.3.1 qt_py312hc8241c7_209
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 23210
+ timestamp: 1728211068636
+- kind: conda
+ name: vtk-base
+ version: 9.3.1
+ build: qt_py312h44e7938_209
+ build_number: 209
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/vtk-base-9.3.1-qt_py312h44e7938_209.conda
+ sha256: f363ec7dabfd8be3d3d40ac0b0e9f091efd6f2238004e7dfe538f962c676e18f
+ md5: d14ebe8928517da5eb33ffe8bab36573
+ depends:
+ - double-conversion >=3.3.0,<3.4.0a0
+ - eigen
+ - expat
+ - ffmpeg >=7.1.0,<8.0a0
+ - freetype >=2.12.1,<3.0a0
+ - gl2ps >=1.4.2,<1.4.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - jsoncpp >=1.9.6,<1.9.7.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libnetcdf >=4.9.2,<4.9.3.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libtheora >=1.1.1,<1.2.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - loguru
+ - lz4-c >=1.9.3,<1.10.0a0
+ - nlohmann_json
+ - numpy
+ - proj >=9.5.0,<9.6.0a0
+ - pugixml >=1.14,<1.15.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main >=6.7.3,<6.8.0a0
+ - sqlite
+ - tbb >=2021.13.0
+ - tbb-devel
+ - ucrt >=10.0.20348.0
+ - utfcpp
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - wslink
+ - zlib
+ constrains:
+ - libboost_headers
+ - paraview ==9999999999
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 33640598
+ timestamp: 1728220616890
+- kind: conda
+ name: vtk-base
+ version: 9.3.1
+ build: qt_py312h679c1d7_209
+ build_number: 209
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/vtk-base-9.3.1-qt_py312h679c1d7_209.conda
+ sha256: 899eb8c18b57c5ac42bdf462a594837f2cdccce10d3face5cab767a24d44c63d
+ md5: a06f56bc999e607e8c2fac1fc3f3450f
+ depends:
+ - __osx >=11.0
+ - double-conversion >=3.3.0,<3.4.0a0
+ - eigen
+ - expat
+ - freetype >=2.12.1,<3.0a0
+ - gl2ps >=1.4.2,<1.4.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - jsoncpp >=1.9.6,<1.9.7.0a0
+ - libcxx >=17
+ - libexpat >=2.6.3,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libnetcdf >=4.9.2,<4.9.3.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libtheora >=1.1.1,<1.2.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - loguru
+ - lz4-c >=1.9.3,<1.10.0a0
+ - nlohmann_json
+ - numpy
+ - proj >=9.5.0,<9.6.0a0
+ - pugixml >=1.14,<1.15.0a0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - qt6-main >=6.7.3,<6.8.0a0
+ - sqlite
+ - tbb >=2021.13.0
+ - tbb-devel
+ - tk >=8.6.13,<8.7.0a0
+ - utfcpp
+ - wslink
+ - zlib
+ constrains:
+ - libboost_headers
+ - paraview ==9999999999
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 34598480
+ timestamp: 1728213794188
+- kind: conda
+ name: vtk-base
+ version: 9.3.1
+ build: qt_py312hc7336a2_209
+ build_number: 209
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/vtk-base-9.3.1-qt_py312hc7336a2_209.conda
+ sha256: fba059d914838487c36614da6c98d58b9ce60acaab28915fe792256e3a1cba3e
+ md5: 75b61d63b7ed6a377ba486cfd33a93b1
+ depends:
+ - double-conversion >=3.3.0,<3.4.0a0
+ - eigen
+ - expat
+ - freetype >=2.12.1,<3.0a0
+ - gl2ps >=1.4.2,<1.4.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - jsoncpp >=1.9.6,<1.9.7.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libnetcdf >=4.9.2,<4.9.3.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libstdcxx >=13
+ - libtheora >=1.1.1,<1.2.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libuuid >=2.38.1,<3.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - loguru
+ - lz4-c >=1.9.3,<1.10.0a0
+ - nlohmann_json
+ - numpy
+ - proj >=9.5.0,<9.6.0a0
+ - pugixml >=1.14,<1.15.0a0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - qt6-main >=6.7.3,<6.8.0a0
+ - sqlite
+ - tbb >=2021.13.0
+ - tbb-devel
+ - tk >=8.6.13,<8.7.0a0
+ - utfcpp
+ - wslink
+ - xorg-libice >=1.1.1,<2.0a0
+ - xorg-libsm >=1.2.4,<2.0a0
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxt >=1.3.0,<2.0a0
+ - xorg-libxxf86vm >=1.1.5,<2.0a0
+ - zlib
+ constrains:
+ - paraview ==9999999999
+ - libboost_headers
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 43091968
+ timestamp: 1728216764685
+- kind: conda
+ name: vtk-base
+ version: 9.3.1
+ build: qt_py312hc73667e_209
+ build_number: 209
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/vtk-base-9.3.1-qt_py312hc73667e_209.conda
+ sha256: 872e10f79f8dcdfa3305093be55c712184d290aefb2ad346b8358fcfe7bcba08
+ md5: e2967eddf4ea06a8b645da9967f370be
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - double-conversion >=3.3.0,<3.4.0a0
+ - eigen
+ - expat
+ - freetype >=2.12.1,<3.0a0
+ - gl2ps >=1.4.2,<1.4.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - jsoncpp >=1.9.6,<1.9.7.0a0
+ - libexpat >=2.6.3,<3.0a0
+ - libgcc >=13
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libnetcdf >=4.9.2,<4.9.3.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libstdcxx >=13
+ - libtheora >=1.1.1,<1.2.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libuuid >=2.38.1,<3.0a0
+ - libxcb >=1.17.0,<2.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - loguru
+ - lz4-c >=1.9.3,<1.10.0a0
+ - nlohmann_json
+ - numpy
+ - proj >=9.5.0,<9.6.0a0
+ - pugixml >=1.14,<1.15.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main >=6.7.3,<6.8.0a0
+ - sqlite
+ - tbb >=2021.13.0
+ - tbb-devel
+ - tk >=8.6.13,<8.7.0a0
+ - utfcpp
+ - wslink
+ - xorg-libice >=1.1.1,<2.0a0
+ - xorg-libsm >=1.2.4,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxau >=1.0.11,<2.0a0
+ - xorg-libxdamage >=1.1.6,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxt >=1.3.0,<2.0a0
+ - xorg-libxxf86vm >=1.1.5,<2.0a0
+ - zlib
+ constrains:
+ - libboost_headers
+ - paraview ==9999999999
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 46554009
+ timestamp: 1728210911160
+- kind: conda
+ name: vtk-base
+ version: 9.3.1
+ build: qt_py312hfd5146d_209
+ build_number: 209
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/vtk-base-9.3.1-qt_py312hfd5146d_209.conda
+ sha256: 7238f2c36c3a65e1eb5f18a6b1da8009a634779035de323de63b5b7b4b27c2c0
+ md5: b51e75d9ac3041abb005e1ea33dc5b12
+ depends:
+ - __osx >=10.13
+ - double-conversion >=3.3.0,<3.4.0a0
+ - eigen
+ - expat
+ - freetype >=2.12.1,<3.0a0
+ - gl2ps >=1.4.2,<1.4.3.0a0
+ - glew >=2.1.0,<2.2.0a0
+ - hdf5 >=1.14.4,<1.14.5.0a0
+ - jsoncpp >=1.9.6,<1.9.7.0a0
+ - libcxx >=17
+ - libexpat >=2.6.3,<3.0a0
+ - libjpeg-turbo >=3.0.0,<4.0a0
+ - libnetcdf >=4.9.2,<4.9.3.0a0
+ - libogg >=1.3.5,<1.4.0a0
+ - libpng >=1.6.44,<1.7.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libtheora >=1.1.1,<1.2.0a0
+ - libtiff >=4.7.0,<4.8.0a0
+ - libxml2 >=2.12.7,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - loguru
+ - lz4-c >=1.9.3,<1.10.0a0
+ - nlohmann_json
+ - numpy
+ - proj >=9.5.0,<9.6.0a0
+ - pugixml >=1.14,<1.15.0a0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - qt6-main >=6.7.3,<6.8.0a0
+ - sqlite
+ - tbb >=2021.13.0
+ - tbb-devel
+ - tk >=8.6.13,<8.7.0a0
+ - utfcpp
+ - wslink
+ - zlib
+ constrains:
+ - libboost_headers
+ - paraview ==9999999999
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 36622552
+ timestamp: 1728209037567
+- kind: conda
+ name: vtk-io-ffmpeg
+ version: 9.3.1
+ build: qt_py312h98fac4b_209
+ build_number: 209
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/vtk-io-ffmpeg-9.3.1-qt_py312h98fac4b_209.conda
+ sha256: b568d87890ac6a2cd7457291bdf2d8729913d1600e5b7690c00d039475554479
+ md5: 52a5fe5bd553f2ac1b9c3f14e9eaa314
+ depends:
+ - ffmpeg >=6.1.2,<7.0a0
+ - vtk-base 9.3.1 qt_py312hfd5146d_209
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 70648
+ timestamp: 1728209132800
+- kind: conda
+ name: vtk-io-ffmpeg
+ version: 9.3.1
+ build: qt_py312hc8241c7_209
+ build_number: 209
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/vtk-io-ffmpeg-9.3.1-qt_py312hc8241c7_209.conda
+ sha256: 63220461882a0693797e1d3b1012654a8959a4689fc8401eb6e8088e8344b92c
+ md5: 1354402d09a8614821d6d3c13d826863
+ depends:
+ - ffmpeg >=6.1.2,<7.0a0
+ - vtk-base 9.3.1 qt_py312hc73667e_209
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 81237
+ timestamp: 1728211067908
+- kind: conda
+ name: vtk-io-ffmpeg
+ version: 9.3.1
+ build: qt_py312hf51569e_209
+ build_number: 209
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/vtk-io-ffmpeg-9.3.1-qt_py312hf51569e_209.conda
+ sha256: b28f9357ff5e4db38bdc3f7ceb7d1113071d3171472315d23091cd3d12815b06
+ md5: d88278094c98cefcd2cc53a09641f179
+ depends:
+ - ffmpeg >=6.1.2,<7.0a0
+ - vtk-base 9.3.1 qt_py312hc7336a2_209
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 82057
+ timestamp: 1728216890470
+- kind: conda
+ name: vtk-io-ffmpeg
+ version: 9.3.1
+ build: qt_py312hf99a90b_209
+ build_number: 209
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/vtk-io-ffmpeg-9.3.1-qt_py312hf99a90b_209.conda
+ sha256: 7402d29bd018e879073ce6b6eb3585882d0892ab351ab13e4fed6733e7459642
+ md5: 315d5caf5dbf1002be7ef40070ac9440
+ depends:
+ - ffmpeg >=7.1.0,<8.0a0
+ - vtk-base 9.3.1 qt_py312h679c1d7_209
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 71275
+ timestamp: 1728213888280
+- kind: conda
+ name: wayland
+ version: 1.23.1
+ build: h3e06ad9_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.1-h3e06ad9_0.conda
+ sha256: 0884b2023a32d2620192cf2e2fc6784b8d1e31cf9f137e49e00802d4daf7d1c1
+ md5: 0a732427643ae5e0486a727927791da1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libexpat >=2.6.2,<3.0a0
+ - libffi >=3.4,<4.0a0
+ - libgcc-ng >=13
+ - libstdcxx-ng >=13
+ license: MIT
+ license_family: MIT
+ size: 321561
+ timestamp: 1724530461598
+- kind: conda
+ name: wayland
+ version: 1.23.1
+ build: h698ed42_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/wayland-1.23.1-h698ed42_0.conda
+ sha256: 71c591803459e1f68f9ad206a4f2fa3971147502bad8791e94fd18d8362f8ce6
+ md5: 2661f9252065051914f1cdf5835e7430
+ depends:
+ - libexpat >=2.6.2,<3.0a0
+ - libffi >=3.4,<4.0a0
+ - libgcc-ng >=13
+ - libstdcxx-ng >=13
+ license: MIT
+ license_family: MIT
+ size: 324815
+ timestamp: 1724530528414
+- kind: conda
+ name: wayland-protocols
+ version: '1.37'
+ build: hd8ed1ab_0
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/wayland-protocols-1.37-hd8ed1ab_0.conda
+ sha256: f6cac1efd4d2a6e30c1671f0566d4e6ac3fe2dc34c9ff7f309bbbc916520ebcf
+ md5: 73ec79a77d31eb7e4a3276cd246b776c
+ depends:
+ - wayland
+ license: MIT
+ license_family: MIT
+ size: 95953
+ timestamp: 1725657284103
+- kind: conda
+ name: wheel
+ version: 0.45.1
+ build: pyhd8ed1ab_1
+ build_number: 1
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda
+ sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce
+ md5: 75cb7132eb58d97896e173ef12ac9986
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 62931
+ timestamp: 1733130309598
+- kind: conda
+ name: win32_setctime
+ version: 1.1.0
+ build: pyhd8ed1ab_1
+ build_number: 1
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/win32_setctime-1.1.0-pyhd8ed1ab_1.conda
+ sha256: 6e5a606c9a30b71f4027f479c79a836fef47166f3567281a6d40607cbc753e00
+ md5: 8f74f61d6f2a1a107aa3f58b3b23f670
+ depends:
+ - python >=3.9
+ license: MIT
+ license_family: MIT
+ size: 9386
+ timestamp: 1733125195840
+- kind: conda
+ name: win_inet_pton
+ version: 1.1.0
+ build: pyh7428d3b_8
+ build_number: 8
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda
+ sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f
+ md5: 46e441ba871f524e2b067929da3051c2
+ depends:
+ - __win
+ - python >=3.9
+ license: LicenseRef-Public-Domain
+ size: 9555
+ timestamp: 1733130678956
+- kind: conda
+ name: wslink
+ version: 2.2.1
+ build: pyhd8ed1ab_1
+ build_number: 1
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/wslink-2.2.1-pyhd8ed1ab_1.conda
+ sha256: c5710a9637faf9c1391741f5bbe3445745f758f01575517c6cb403cd2f55f82b
+ md5: af249fc92d1344913ff6c811f5b9096b
+ depends:
+ - aiohttp <4
+ - msgpack-python >=1,<2
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 34575
+ timestamp: 1733083632985
+- kind: conda
+ name: x264
+ version: 1!164.3095
+ build: h166bdaf_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2
+ sha256: 175315eb3d6ea1f64a6ce470be00fa2ee59980108f246d3072ab8b977cb048a5
+ md5: 6c99772d483f566d59e25037fea2c4b1
+ depends:
+ - libgcc-ng >=12
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 897548
+ timestamp: 1660323080555
+- kind: conda
+ name: x264
+ version: 1!164.3095
+ build: h4e544f5_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/x264-1!164.3095-h4e544f5_2.tar.bz2
+ sha256: b48f150db8c052c197691c9d76f59e252d3a7f01de123753d51ebf2eed1cf057
+ md5: 0efaf807a0b5844ce5f605bd9b668281
+ depends:
+ - libgcc-ng >=12
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 1000661
+ timestamp: 1660324722559
+- kind: conda
+ name: x264
+ version: 1!164.3095
+ build: h57fd34a_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/x264-1!164.3095-h57fd34a_2.tar.bz2
+ sha256: debdf60bbcfa6a60201b12a1d53f36736821db281a28223a09e0685edcce105a
+ md5: b1f6dccde5d3a1f911960b6e567113ff
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 717038
+ timestamp: 1660323292329
+- kind: conda
+ name: x264
+ version: 1!164.3095
+ build: h775f41a_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/x264-1!164.3095-h775f41a_2.tar.bz2
+ sha256: de611da29f4ed0733a330402e163f9260218e6ba6eae593a5f945827d0ee1069
+ md5: 23e9c3180e2c0f9449bb042914ec2200
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 937077
+ timestamp: 1660323305349
+- kind: conda
+ name: x264
+ version: 1!164.3095
+ build: h8ffe710_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/x264-1!164.3095-h8ffe710_2.tar.bz2
+ sha256: 97166b318f8c68ffe4d50b2f4bd36e415219eeaef233e7d41c54244dc6108249
+ md5: 19e39905184459760ccb8cf5c75f148b
+ depends:
+ - vc >=14.1,<15
+ - vs2015_runtime >=14.16.27033
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 1041889
+ timestamp: 1660323726084
+- kind: conda
+ name: x265
+ version: '3.5'
+ build: h2d74725_3
+ build_number: 3
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/x265-3.5-h2d74725_3.tar.bz2
+ sha256: 02b9874049112f2b7335c9a3e880ac05d99a08d9a98160c5a98898b2b3ac42b2
+ md5: ca7129a334198f08347fb19ac98a2de9
+ depends:
+ - vc >=14.1,<15
+ - vs2015_runtime >=14.16.27033
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 5517425
+ timestamp: 1646611941216
+- kind: conda
+ name: x265
+ version: '3.5'
+ build: h924138e_3
+ build_number: 3
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2
+ sha256: 76c7405bcf2af639971150f342550484efac18219c0203c5ee2e38b8956fe2a0
+ md5: e7f6ed84d4623d52ee581325c1587a6b
+ depends:
+ - libgcc-ng >=10.3.0
+ - libstdcxx-ng >=10.3.0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 3357188
+ timestamp: 1646609687141
+- kind: conda
+ name: x265
+ version: '3.5'
+ build: hbb4e6a2_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/x265-3.5-hbb4e6a2_3.tar.bz2
+ sha256: 6b6a57710192764d0538f72ea1ccecf2c6174a092e0bc76d790f8ca36bbe90e4
+ md5: a3bf3e95b7795871a6734a784400fcea
+ depends:
+ - libcxx >=12.0.1
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 3433205
+ timestamp: 1646610148268
+- kind: conda
+ name: x265
+ version: '3.5'
+ build: hbc6ce65_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/x265-3.5-hbc6ce65_3.tar.bz2
+ sha256: 2fed6987dba7dee07bd9adc1a6f8e6c699efb851431bcb6ebad7de196e87841d
+ md5: b1f7f2780feffe310b068c021e8ff9b2
+ depends:
+ - libcxx >=12.0.1
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 1832744
+ timestamp: 1646609481185
+- kind: conda
+ name: x265
+ version: '3.5'
+ build: hdd96247_3
+ build_number: 3
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/x265-3.5-hdd96247_3.tar.bz2
+ sha256: cb2227f2441499900bdc0168eb423d7b2056c8fd5a3541df4e2d05509a88c668
+ md5: 786853760099c74a1d4f0da98dd67aea
+ depends:
+ - libgcc-ng >=10.3.0
+ - libstdcxx-ng >=10.3.0
+ license: GPL-2.0-or-later
+ license_family: GPL
+ size: 1018181
+ timestamp: 1646610147365
+- kind: conda
+ name: xcb-util
+ version: 0.4.1
+ build: h5c728e9_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-0.4.1-h5c728e9_2.conda
+ sha256: 59f586defd3c1295a32d8eb587036302ab254300d88e605354e8eaa4a27563ec
+ md5: b4cf8ba6cff9cdf1249bcfe1314222b0
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 20597
+ timestamp: 1718844955591
+- kind: conda
+ name: xcb-util
+ version: 0.4.1
+ build: hb711507_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.1-hb711507_2.conda
+ sha256: 416aa55d946ce4ab173ab338796564893a2f820e80e04e098ff00c25fb981263
+ md5: 8637c3e5821654d0edf97e2b0404b443
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 19965
+ timestamp: 1718843348208
+- kind: conda
+ name: xcb-util-cursor
+ version: 0.1.5
+ build: h86ecc28_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-cursor-0.1.5-h86ecc28_0.conda
+ sha256: c2608dc625c7aacffff938813f985c5f21c6d8a4da3280d57b5287ba1b27ec21
+ md5: d6bb2038d26fa118d5cbc2761116f3e5
+ depends:
+ - libgcc >=13
+ - libxcb >=1.13
+ - libxcb >=1.16,<2.0.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ license: MIT
+ license_family: MIT
+ size: 21123
+ timestamp: 1726125922919
+- kind: conda
+ name: xcb-util-cursor
+ version: 0.1.5
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda
+ sha256: c7b35db96f6e32a9e5346f97adc968ef2f33948e3d7084295baebc0e33abdd5b
+ md5: eb44b3b6deb1cab08d72cb61686fe64c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libxcb >=1.13
+ - libxcb >=1.16,<2.0.0a0
+ - xcb-util-image >=0.4.0,<0.5.0a0
+ - xcb-util-renderutil >=0.3.10,<0.4.0a0
+ license: MIT
+ license_family: MIT
+ size: 20296
+ timestamp: 1726125844850
+- kind: conda
+ name: xcb-util-image
+ version: 0.4.0
+ build: h5c728e9_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-image-0.4.0-h5c728e9_2.conda
+ sha256: a43058edc001e8fb97f9b291028a6ca16a8969d9b56a998c7aecea083323ac97
+ md5: b82e5c78dbbfa931980e8bfe83bce913
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ license: MIT
+ license_family: MIT
+ size: 24910
+ timestamp: 1718880504308
+- kind: conda
+ name: xcb-util-image
+ version: 0.4.0
+ build: hb711507_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda
+ sha256: 94b12ff8b30260d9de4fd7a28cca12e028e572cbc504fd42aa2646ec4a5bded7
+ md5: a0901183f08b6c7107aab109733a3c91
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ - xcb-util >=0.4.1,<0.5.0a0
+ license: MIT
+ license_family: MIT
+ size: 24551
+ timestamp: 1718880534789
+- kind: conda
+ name: xcb-util-keysyms
+ version: 0.4.1
+ build: h5c728e9_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-keysyms-0.4.1-h5c728e9_0.conda
+ sha256: 9d92daa7feb0e14f81bf0d4b3f0b6ff1e8cec3ff514df8a0c06c4d49b518c315
+ md5: 57ca8564599ddf8b633c4ea6afee6f3a
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 14343
+ timestamp: 1718846624153
+- kind: conda
+ name: xcb-util-keysyms
+ version: 0.4.1
+ build: hb711507_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda
+ sha256: 546e3ee01e95a4c884b6401284bb22da449a2f4daf508d038fdfa0712fe4cc69
+ md5: ad748ccca349aec3e91743e08b5e2b50
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 14314
+ timestamp: 1718846569232
+- kind: conda
+ name: xcb-util-renderutil
+ version: 0.3.10
+ build: h5c728e9_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-renderutil-0.3.10-h5c728e9_0.conda
+ sha256: 5827f5617c9741599f72bb7f090726f89c6ef91e4bada621895fdc2bbadfb0f1
+ md5: 7beeda4223c5484ef72d89fb66b7e8c1
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 18139
+ timestamp: 1718849914457
+- kind: conda
+ name: xcb-util-renderutil
+ version: 0.3.10
+ build: hb711507_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda
+ sha256: 2d401dadc43855971ce008344a4b5bd804aca9487d8ebd83328592217daca3df
+ md5: 0e0cbe0564d03a99afd5fd7b362feecd
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 16978
+ timestamp: 1718848865819
+- kind: conda
+ name: xcb-util-wm
+ version: 0.4.2
+ build: h5c728e9_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xcb-util-wm-0.4.2-h5c728e9_0.conda
+ sha256: 3f52cd8783e7d953c54266255fd11886c611c2620545eabc28ec8cf470ae8be7
+ md5: f14dcda6894722e421da2b7dcffb0b78
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 50772
+ timestamp: 1718845072660
+- kind: conda
+ name: xcb-util-wm
+ version: 0.4.2
+ build: hb711507_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda
+ sha256: 31d44f297ad87a1e6510895740325a635dd204556aa7e079194a0034cdd7e66a
+ md5: 608e0ef8256b81d04456e8d211eee3e8
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.16,<2.0.0a0
+ license: MIT
+ license_family: MIT
+ size: 51689
+ timestamp: 1718844051451
+- kind: conda
+ name: xerces-c
+ version: 3.3.0
+ build: h595f43b_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xerces-c-3.3.0-h595f43b_0.conda
+ sha256: 2e46a23e7763b750b074a85cf3df88c44261550306c501de4514d2ae9a4a2439
+ md5: 58602537eb97764dfd262dfddd763cfe
+ depends:
+ - icu >=75.1,<76.0a0
+ - libgcc >=13
+ - libnsl >=2.0.1,<2.1.0a0
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: Apache
+ size: 1629566
+ timestamp: 1728976186820
+- kind: conda
+ name: xerces-c
+ version: 3.3.0
+ build: h988505b_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.3.0-h988505b_0.conda
+ sha256: dbed30e56bea060c8b077773138f388144686c24793172ee3d39b69aa0628165
+ md5: eeecd6ccca69409a39ac99721a72f387
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - icu >=75.1,<76.0a0
+ - libgcc >=13
+ - libnsl >=2.0.1,<2.1.0a0
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: Apache
+ size: 1637176
+ timestamp: 1728975948928
+- kind: conda
+ name: xerces-c
+ version: 3.3.0
+ build: hd0321b6_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/xerces-c-3.3.0-hd0321b6_0.conda
+ sha256: 8769f3f08e78f26fdf6f530efc84a48d05ce7d8dbde405bd81d87e5dc43cb2d9
+ md5: 3ad24748832587b79c7a1f96ca874376
+ depends:
+ - __osx >=10.13
+ - icu >=75.1,<76.0a0
+ - libcxx >=17
+ license: Apache-2.0
+ license_family: Apache
+ size: 1353665
+ timestamp: 1728976213621
+- kind: conda
+ name: xerces-c
+ version: 3.3.0
+ build: hd62221f_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/xerces-c-3.3.0-hd62221f_0.conda
+ sha256: 54e36cb8172675de7f8ce39b5914de602b860c1febb1770b758f0f220836f41e
+ md5: 619c817c693a09599ecb7e864d538f63
+ depends:
+ - __osx >=11.0
+ - icu >=75.1,<76.0a0
+ - libcxx >=17
+ license: Apache-2.0
+ license_family: Apache
+ size: 1277136
+ timestamp: 1728976036185
+- kind: conda
+ name: xerces-c
+ version: 3.3.0
+ build: he0c23c2_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/xerces-c-3.3.0-he0c23c2_0.conda
+ sha256: bba9bc42593fc8e1da32bc8f810c305ab3fd230689c41b59e6fe77ab79cbe7d7
+ md5: 9c600d9aaba64595d0c3561f1b9d700b
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: Apache
+ size: 3560268
+ timestamp: 1728976534703
+- kind: conda
+ name: xkeyboard-config
+ version: '2.43'
+ build: h86ecc28_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xkeyboard-config-2.43-h86ecc28_0.conda
+ sha256: b3f09cc99b6b7707aa8812bbc7556fd431999ad3a48292e4ff82335b5fda976c
+ md5: a809b8e3776fbc05696c82f8cf6f5a92
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 391011
+ timestamp: 1727840308426
+- kind: conda
+ name: xkeyboard-config
+ version: '2.43'
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.43-hb9d3cd8_0.conda
+ sha256: 0d89b5873515a1f05d311f37ea4e087bbccc0418afa38f2f6189e97280db3179
+ md5: f725c7425d6d7c15e31f3b99a88ea02f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 389475
+ timestamp: 1727840188958
+- kind: conda
+ name: xorg-kbproto
+ version: 1.0.7
+ build: hcd874cb_1002
+ build_number: 1002
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/xorg-kbproto-1.0.7-hcd874cb_1002.tar.bz2
+ sha256: 5b16e1ca1ecc0d2907f236bc4d8e6ecfd8417db013c862a01afb7f9d78e48c09
+ md5: 8d11c1dac4756ca57e78c1bfe173bba4
+ depends:
+ - m2w64-gcc-libs
+ license: MIT
+ license_family: MIT
+ size: 28166
+ timestamp: 1610028297505
+- kind: conda
+ name: xorg-libice
+ version: 1.1.1
+ build: h57736b2_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libice-1.1.1-h57736b2_1.conda
+ sha256: 525f197136d0c136dcba68b16d8f3636f27be111d677b2a06d8b99cf3f45ba4a
+ md5: 99a9c8245a1cc6dacd292ffeca39425f
+ depends:
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 60151
+ timestamp: 1727533134400
+- kind: conda
+ name: xorg-libice
+ version: 1.1.1
+ build: hb9d3cd8_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hb9d3cd8_1.conda
+ sha256: ec276da68d1c4a3d34a63195b35ca5b248d4aff0812464dcd843d74649b5cec4
+ md5: 19608a9656912805b2b9a2f6bd257b04
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 58159
+ timestamp: 1727531850109
+- kind: conda
+ name: xorg-libice
+ version: 1.1.1
+ build: hcd874cb_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/xorg-libice-1.1.1-hcd874cb_0.conda
+ sha256: 353e07e311eb10e934f03e0123d0f05d9b3770a70b0c3993e6d11cf74d85689f
+ md5: 5271e3af4791170e2c55d02818366916
+ depends:
+ - m2w64-gcc-libs
+ - m2w64-gcc-libs-core
+ - xorg-libx11 >=1.8.4,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 158086
+ timestamp: 1685308072189
+- kind: conda
+ name: xorg-libsm
+ version: 1.2.4
+ build: hbac51e1_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libsm-1.2.4-hbac51e1_1.conda
+ sha256: 3d3c78a2e2a915d96b8bf8a670ba91e5abba50f55dc3ff699d345c958118e94c
+ md5: 18655ac9fc6624db89b33a89fed51c5f
+ depends:
+ - libgcc >=13
+ - libuuid >=2.38.1,<3.0a0
+ - xorg-libice >=1.1.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 28357
+ timestamp: 1727635998392
+- kind: conda
+ name: xorg-libsm
+ version: 1.2.4
+ build: hcd874cb_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/xorg-libsm-1.2.4-hcd874cb_0.conda
+ sha256: 3a8cc151142c379d3ec3ec4420395d3a273873d3a45a94cd3038d143f5a519e8
+ md5: 25926681339df15918243d9a7cec25a1
+ depends:
+ - m2w64-gcc-libs
+ - m2w64-gcc-libs-core
+ - xorg-libice >=1.1.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 86397
+ timestamp: 1685454296879
+- kind: conda
+ name: xorg-libsm
+ version: 1.2.4
+ build: he73a12e_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-he73a12e_1.conda
+ sha256: 70e903370977d44c9120a5641ab563887bd48446e9ef6fc2a3f5f60531c2cd6c
+ md5: 05a8ea5f446de33006171a7afe6ae857
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libuuid >=2.38.1,<3.0a0
+ - xorg-libice >=1.1.1,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 27516
+ timestamp: 1727634669421
+- kind: conda
+ name: xorg-libx11
+ version: 1.8.9
+ build: h0076a8d_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/xorg-libx11-1.8.9-h0076a8d_1.conda
+ sha256: c378304044321e74c6acd483674f404864a229ab2a8841bf9515bc1a30783e99
+ md5: 0296a4de2235cad9ad3112134f8e4519
+ depends:
+ - libxcb >=1.16,<2.0.0a0
+ - m2w64-gcc-libs
+ - m2w64-gcc-libs-core
+ - xorg-kbproto
+ - xorg-xextproto >=7.3.0,<8.0a0
+ - xorg-xproto
+ license: MIT
+ license_family: MIT
+ size: 814589
+ timestamp: 1718847832308
+- kind: conda
+ name: xorg-libx11
+ version: 1.8.9
+ build: he755bbd_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libx11-1.8.9-he755bbd_2.conda
+ sha256: bcd9ebdd7ca25d8ab1eb4f3f919113e264a8ad84fa713c48e737e9167a82fb4b
+ md5: 7acc45f80415e6ec352b729105dc0375
+ depends:
+ - libgcc >=13
+ - libxcb >=1.17.0,<2.0a0
+ - xorg-xorgproto
+ license: MIT
+ license_family: MIT
+ size: 863528
+ timestamp: 1727352755656
+- kind: conda
+ name: xorg-libx11
+ version: 1.8.10
+ build: h4f16b4b_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.10-h4f16b4b_0.conda
+ sha256: c4650634607864630fb03696474a0535f6fce5fda7d81a6462346e071b53dfa7
+ md5: 0b666058a179b744a622d0a4a0c56353
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libxcb >=1.17.0,<2.0a0
+ - xorg-xorgproto
+ license: MIT
+ license_family: MIT
+ size: 838308
+ timestamp: 1727356837875
+- kind: conda
+ name: xorg-libxau
+ version: 1.0.11
+ build: h00291cd_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.11-h00291cd_1.conda
+ sha256: 96177823ec38336b0f4b7e7c2413da61f8d008d800cc4a5b8ad21f9128fb7de0
+ md5: c6cc91149a08402bbb313c5dc0142567
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 13176
+ timestamp: 1727034772877
+- kind: conda
+ name: xorg-libxau
+ version: 1.0.11
+ build: h86ecc28_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxau-1.0.11-h86ecc28_1.conda
+ sha256: a00c4c6054209c84fb460c5e4ae7193c335a9ee1851645c9ad59312438e853f7
+ md5: c5f72a733c461aa7785518d29b997cc8
+ depends:
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 15690
+ timestamp: 1727036097294
+- kind: conda
+ name: xorg-libxau
+ version: 1.0.11
+ build: hb9d3cd8_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hb9d3cd8_1.conda
+ sha256: 532a046fee0b3a402db867b6ec55c84ba4cdedb91d817147c8feeae9766be3d6
+ md5: 77cbc488235ebbaab2b6e912d3934bae
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 14679
+ timestamp: 1727034741045
+- kind: conda
+ name: xorg-libxau
+ version: 1.0.11
+ build: hcd874cb_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda
+ sha256: 8c5b976e3b36001bdefdb41fb70415f9c07eff631f1f0155f3225a7649320e77
+ md5: c46ba8712093cb0114404ae8a7582e1a
+ depends:
+ - m2w64-gcc-libs
+ - m2w64-gcc-libs-core
+ license: MIT
+ license_family: MIT
+ size: 51297
+ timestamp: 1684638355740
+- kind: conda
+ name: xorg-libxau
+ version: 1.0.11
+ build: hd74edd7_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hd74edd7_1.conda
+ sha256: 7113618021cf6c80831a429b2ebb9d639f3c43cf7fe2257d235dc6ae0ab43289
+ md5: 7e0125f8fb619620a0011dc9297e2493
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 13515
+ timestamp: 1727034783560
+- kind: conda
+ name: xorg-libxcomposite
+ version: 0.4.6
+ build: h86ecc28_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxcomposite-0.4.6-h86ecc28_2.conda
+ sha256: 0cb82160412adb6d83f03cf50e807a8e944682d556b2215992a6fbe9ced18bc0
+ md5: 86051eee0766c3542be24844a9c3cf36
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: MIT
+ license_family: MIT
+ size: 13982
+ timestamp: 1727884626338
+- kind: conda
+ name: xorg-libxcomposite
+ version: 0.4.6
+ build: hb9d3cd8_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda
+ sha256: 753f73e990c33366a91fd42cc17a3d19bb9444b9ca5ff983605fa9e953baf57f
+ md5: d3c295b50f092ab525ffe3c2aa4b7413
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: MIT
+ license_family: MIT
+ size: 13603
+ timestamp: 1727884600744
+- kind: conda
+ name: xorg-libxcursor
+ version: 1.2.3
+ build: h86ecc28_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxcursor-1.2.3-h86ecc28_0.conda
+ sha256: c5d3692520762322a9598e7448492309f5ee9d8f3aff72d787cf06e77c42507f
+ md5: f2054759c2203d12d0007005e1f1296d
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ license: MIT
+ license_family: MIT
+ size: 34596
+ timestamp: 1730908388714
+- kind: conda
+ name: xorg-libxcursor
+ version: 1.2.3
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda
+ sha256: 832f538ade441b1eee863c8c91af9e69b356cd3e9e1350fff4fe36cc573fc91a
+ md5: 2ccd714aa2242315acaf0a67faea780b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ license: MIT
+ license_family: MIT
+ size: 32533
+ timestamp: 1730908305254
+- kind: conda
+ name: xorg-libxdamage
+ version: 1.1.6
+ build: h86ecc28_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdamage-1.1.6-h86ecc28_0.conda
+ sha256: 3afaa2f43eb4cb679fc0c3d9d7c50f0f2c80cc5d3df01d5d5fd60655d0bfa9be
+ md5: d5773c4e4d64428d7ddaa01f6f845dc7
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: MIT
+ license_family: MIT
+ size: 13794
+ timestamp: 1727891406431
+- kind: conda
+ name: xorg-libxdamage
+ version: 1.1.6
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda
+ sha256: 43b9772fd6582bf401846642c4635c47a9b0e36ca08116b3ec3df36ab96e0ec0
+ md5: b5fcc7172d22516e1f965490e65e33a4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: MIT
+ license_family: MIT
+ size: 13217
+ timestamp: 1727891438799
+- kind: conda
+ name: xorg-libxdmcp
+ version: 1.1.3
+ build: hcd874cb_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2
+ sha256: f51205d33c07d744ec177243e5d9b874002910c731954f2c8da82459be462b93
+ md5: 46878ebb6b9cbd8afcf8088d7ef00ece
+ depends:
+ - m2w64-gcc-libs
+ license: MIT
+ license_family: MIT
+ size: 67908
+ timestamp: 1610072296570
+- kind: conda
+ name: xorg-libxdmcp
+ version: 1.1.5
+ build: h00291cd_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.5-h00291cd_0.conda
+ sha256: bb4d1ef9cafef535494adf9296130b6193b3a44375883185b5167de03eb1ac7f
+ md5: 9f438e1b6f4e73fd9e6d78bfe7c36743
+ depends:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ size: 18465
+ timestamp: 1727794980957
+- kind: conda
+ name: xorg-libxdmcp
+ version: 1.1.5
+ build: h57736b2_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.5-h57736b2_0.conda
+ sha256: efcc150da5926cf244f757b8376d96a4db78bc15b8d90ca9f56ac6e75755971f
+ md5: 25a5a7b797fe6e084e04ffe2db02fc62
+ depends:
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 20615
+ timestamp: 1727796660574
+- kind: conda
+ name: xorg-libxdmcp
+ version: 1.1.5
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
+ sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee
+ md5: 8035c64cb77ed555e3f150b7b3972480
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 19901
+ timestamp: 1727794976192
+- kind: conda
+ name: xorg-libxdmcp
+ version: 1.1.5
+ build: hd74edd7_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.5-hd74edd7_0.conda
+ sha256: 9939a166d780700d81023546759102b33fdc2c5f11ef09f5f66c77210fd334c8
+ md5: 77c447f48cab5d3a15ac224edb86a968
+ depends:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ size: 18487
+ timestamp: 1727795205022
+- kind: conda
+ name: xorg-libxext
+ version: 1.3.4
+ build: hcd874cb_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda
+ sha256: 829320f05866ea1cc51924828427f215f4d0db093e748a662e3bb68b764785a4
+ md5: 2aa695ac3c56193fd8d526e3b511e021
+ depends:
+ - m2w64-gcc-libs
+ - xorg-libx11 >=1.7.2,<2.0a0
+ - xorg-xextproto
+ license: MIT
+ license_family: MIT
+ size: 221821
+ timestamp: 1677038179908
+- kind: conda
+ name: xorg-libxext
+ version: 1.3.6
+ build: h57736b2_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxext-1.3.6-h57736b2_0.conda
+ sha256: 8e216b024f52e367463b4173f237af97cf7053c77d9ce3e958bc62473a053f71
+ md5: bd1e86dd8aa3afd78a4bfdb4ef918165
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 50746
+ timestamp: 1727754268156
+- kind: conda
+ name: xorg-libxext
+ version: 1.3.6
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda
+ sha256: da5dc921c017c05f38a38bd75245017463104457b63a1ce633ed41f214159c14
+ md5: febbab7d15033c913d53c7a2c102309d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 50060
+ timestamp: 1727752228921
+- kind: conda
+ name: xorg-libxfixes
+ version: 6.0.1
+ build: h57736b2_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxfixes-6.0.1-h57736b2_0.conda
+ sha256: f5c71e0555681a82a65c483374b91d91b2cb9a9903b3a22ddc00f36719fce549
+ md5: 78f8715c002cc66991d7c11e3cf66039
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 20289
+ timestamp: 1727796500830
+- kind: conda
+ name: xorg-libxfixes
+ version: 6.0.1
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-6.0.1-hb9d3cd8_0.conda
+ sha256: 2fef37e660985794617716eb915865ce157004a4d567ed35ec16514960ae9271
+ md5: 4bdb303603e9821baf5fe5fdff1dc8f8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 19575
+ timestamp: 1727794961233
+- kind: conda
+ name: xorg-libxi
+ version: 1.8.2
+ build: h57736b2_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxi-1.8.2-h57736b2_0.conda
+ sha256: 7b587407ecb9ccd2bbaf0fb94c5dbdde4d015346df063e9502dc0ce2b682fb5e
+ md5: eeee3bdb31c6acde2b81ad1b8c287087
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: MIT
+ license_family: MIT
+ size: 48197
+ timestamp: 1727801059062
+- kind: conda
+ name: xorg-libxi
+ version: 1.8.2
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda
+ sha256: 1a724b47d98d7880f26da40e45f01728e7638e6ec69f35a3e11f92acd05f9e7a
+ md5: 17dcc85db3c7886650b8908b183d6876
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxfixes >=6.0.1,<7.0a0
+ license: MIT
+ license_family: MIT
+ size: 47179
+ timestamp: 1727799254088
+- kind: conda
+ name: xorg-libxpm
+ version: 3.5.17
+ build: hcd874cb_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxpm-3.5.17-hcd874cb_0.conda
+ sha256: d5cc2f026658e8b85679813bff35c16c857f873ba02489e6eb6e30d5865dacc4
+ md5: 029be9b667bf3896fa28bc32adb1bfc3
+ depends:
+ - m2w64-gcc-libs
+ - m2w64-gcc-libs-core
+ - xorg-libx11 >=1.8.6,<2.0a0
+ - xorg-libxext >=1.3.4,<2.0a0
+ - xorg-libxt >=1.3.0,<2.0a0
+ - xorg-xextproto >=7.3.0,<8.0a0
+ - xorg-xproto
+ license: MIT
+ license_family: MIT
+ size: 195881
+ timestamp: 1696449889560
+- kind: conda
+ name: xorg-libxrandr
+ version: 1.5.4
+ build: h86ecc28_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrandr-1.5.4-h86ecc28_0.conda
+ sha256: b2588a2b101d1b0a4e852532c8b9c92c59ef584fc762dd700567bdbf8cd00650
+ md5: dd3e74283a082381aa3860312e3c721e
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ license: MIT
+ license_family: MIT
+ size: 30197
+ timestamp: 1727794957221
+- kind: conda
+ name: xorg-libxrandr
+ version: 1.5.4
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda
+ sha256: ac0f037e0791a620a69980914a77cb6bb40308e26db11698029d6708f5aa8e0d
+ md5: 2de7f99d6581a4a7adbff607b5c278ca
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxrender >=0.9.11,<0.10.0a0
+ license: MIT
+ license_family: MIT
+ size: 29599
+ timestamp: 1727794874300
+- kind: conda
+ name: xorg-libxrender
+ version: 0.9.11
+ build: h57736b2_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxrender-0.9.11-h57736b2_1.conda
+ sha256: 50c000a26e828313b668902c2ae5ff7956d9d34418b4fc6fc15f73cba31b45e0
+ md5: 19fb476dc5cdd51b67719a6342fab237
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-xorgproto
+ license: MIT
+ license_family: MIT
+ size: 38052
+ timestamp: 1727530023529
+- kind: conda
+ name: xorg-libxrender
+ version: 0.9.11
+ build: hb9d3cd8_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.11-hb9d3cd8_1.conda
+ sha256: f1217e902c0b1d8bc5d3ce65e483ebf38b049c823c9117b7198cfb16bd2b9143
+ md5: a7a49a8b85122b49214798321e2e96b4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-xorgproto
+ license: MIT
+ license_family: MIT
+ size: 37780
+ timestamp: 1727529943015
+- kind: conda
+ name: xorg-libxt
+ version: 1.3.0
+ build: hcd874cb_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxt-1.3.0-hcd874cb_1.conda
+ sha256: d513e0c627f098ef6655ce188eca79a672eaf763b0bbf37b228cb46dc82a66ca
+ md5: 511a29edd2ff3d973f63e54f19dcc06e
+ depends:
+ - m2w64-gcc-libs
+ - m2w64-gcc-libs-core
+ - xorg-kbproto
+ - xorg-libice >=1.1.1,<2.0a0
+ - xorg-libsm >=1.2.4,<2.0a0
+ - xorg-libx11 >=1.8.6,<2.0a0
+ - xorg-xproto
+ license: MIT
+ license_family: MIT
+ size: 671704
+ timestamp: 1690289114426
+- kind: conda
+ name: xorg-libxt
+ version: 1.3.1
+ build: h57736b2_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxt-1.3.1-h57736b2_0.conda
+ sha256: 7c109792b60720809a580612aba7f8eb2a0bd425b9fc078748a9d6ffc97cbfa8
+ md5: a9e4852c8e0b68ee783e7240030b696f
+ depends:
+ - libgcc >=13
+ - xorg-libice >=1.1.1,<2.0a0
+ - xorg-libsm >=1.2.4,<2.0a0
+ - xorg-libx11 >=1.8.9,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 384752
+ timestamp: 1731860572314
+- kind: conda
+ name: xorg-libxt
+ version: 1.3.1
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.1-hb9d3cd8_0.conda
+ sha256: a8afba4a55b7b530eb5c8ad89737d60d60bc151a03fbef7a2182461256953f0e
+ md5: 279b0de5f6ba95457190a1c459a64e31
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libice >=1.1.1,<2.0a0
+ - xorg-libsm >=1.2.4,<2.0a0
+ - xorg-libx11 >=1.8.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 379686
+ timestamp: 1731860547604
+- kind: conda
+ name: xorg-libxtst
+ version: 1.2.5
+ build: h57736b2_3
+ build_number: 3
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxtst-1.2.5-h57736b2_3.conda
+ sha256: 6eaffce5a34fc0a16a21ddeaefb597e792a263b1b0c387c1ce46b0a967d558e1
+ md5: c05698071b5c8e0da82a282085845860
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxi >=1.7.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 33786
+ timestamp: 1727964907993
+- kind: conda
+ name: xorg-libxtst
+ version: 1.2.5
+ build: hb9d3cd8_3
+ build_number: 3
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda
+ sha256: 752fdaac5d58ed863bbf685bb6f98092fe1a488ea8ebb7ed7b606ccfce08637a
+ md5: 7bbe9a0cc0df0ac5f5a8ad6d6a11af2f
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ - xorg-libxi >=1.7.10,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 32808
+ timestamp: 1727964811275
+- kind: conda
+ name: xorg-libxxf86vm
+ version: 1.1.5
+ build: h57736b2_4
+ build_number: 4
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxxf86vm-1.1.5-h57736b2_4.conda
+ sha256: db7455e84e3427e800e4830296247e8a465a13f2cd0b389415a5aec989f5fab0
+ md5: 82fa1f5642ef7ac7172e295327ce20e2
+ depends:
+ - libgcc >=13
+ - xorg-libx11 >=1.8.9,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 18392
+ timestamp: 1728920054223
+- kind: conda
+ name: xorg-libxxf86vm
+ version: 1.1.5
+ build: hb9d3cd8_4
+ build_number: 4
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxxf86vm-1.1.5-hb9d3cd8_4.conda
+ sha256: 0b8f062a5b4a2c3833267285b7d41b3542f54d2c935c86ca98504c3e5296354c
+ md5: 7da9007c0582712c4bad4131f89c8372
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-libx11 >=1.8.10,<2.0a0
+ - xorg-libxext >=1.3.6,<2.0a0
+ license: MIT
+ license_family: MIT
+ size: 18072
+ timestamp: 1728920051869
+- kind: conda
+ name: xorg-x11-server-common-cos6-x86_64
+ version: 1.17.4
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/xorg-x11-server-common-cos6-x86_64-1.17.4-h9b0a68f_1105.tar.bz2
+ sha256: dc16f8736d4d2eca76e5aee55fe54fb6e89d199d69a79f2b11801fc0c6a926e1
+ md5: f0d4038619aa27bcb25361a6f84d2668
+ depends:
+ - pixman-cos6-x86_64 >=0.30.0 *_1105
+ - sysroot_linux-64 2.12.*
+ license: MIT
+ license_family: MIT
+ size: 36034
+ timestamp: 1627484163369
+- kind: conda
+ name: xorg-x11-server-common-cos7-aarch64
+ version: 1.20.4
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/xorg-x11-server-common-cos7-aarch64-1.20.4-ha675448_1106.tar.bz2
+ sha256: 098c286c7d396a46a76220c5af8d001df60c200ea9bb8792707b08066da289ec
+ md5: a326ae44054c0bdab5f5554301919398
+ depends:
+ - pixman-cos7-aarch64 >=0.30.0 *_1106
+ - sysroot_linux-aarch64 2.17.*
+ license: MIT
+ license_family: MIT
+ size: 37103
+ timestamp: 1726579230177
+- kind: conda
+ name: xorg-x11-server-xvfb-cos6-x86_64
+ version: 1.17.4
+ build: h9b0a68f_1105
+ build_number: 1105
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/xorg-x11-server-xvfb-cos6-x86_64-1.17.4-h9b0a68f_1105.tar.bz2
+ sha256: 601e3376ebd1f55a8cdc437ac88653c9242e0098b3195c39f2584dbb301e1b6e
+ md5: f1ef25fdcd06ff28d6505b81282d35f3
+ depends:
+ - sysroot_linux-64 2.12.*
+ - xorg-x11-server-common-cos6-x86_64 >=1.17.4 *_1105
+ license: MIT and GPLv2
+ license_family: GPL2
+ size: 881810
+ timestamp: 1627486074557
+- kind: conda
+ name: xorg-x11-server-xvfb-cos7-aarch64
+ version: 1.20.4
+ build: ha675448_1106
+ build_number: 1106
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/xorg-x11-server-xvfb-cos7-aarch64-1.20.4-ha675448_1106.tar.bz2
+ sha256: 67b6a87e18dbf2a6cad85d2f56ab645fcb0587d8eb32c8dc6d2a6974ee04c07d
+ md5: 28c076e3c354d09fd1202fd46d93a164
+ depends:
+ - sysroot_linux-aarch64 2.17.*
+ - xorg-x11-server-common-cos7-aarch64 >=1.20.4 *_1106
+ license: MIT and GPLv2
+ license_family: GPL2
+ size: 914549
+ timestamp: 1726586249979
+- kind: conda
+ name: xorg-xextproto
+ version: 7.3.0
+ build: hcd874cb_1003
+ build_number: 1003
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda
+ sha256: 04c0a08fd34fa33406c20f729e8f9cc40e8fd898072b952a5c14280fcf26f2e6
+ md5: 6e6c2639620e436bddb7c040cd4f3adb
+ depends:
+ - m2w64-gcc-libs
+ license: MIT
+ license_family: MIT
+ size: 31034
+ timestamp: 1677037259999
+- kind: conda
+ name: xorg-xorgproto
+ version: '2024.1'
+ build: h86ecc28_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-xorgproto-2024.1-h86ecc28_1.conda
+ sha256: 3dbbf4cdb5ad82d3479ab2aa68ae67de486a6d57d67f0402d8e55869f6f13aec
+ md5: 91cef7867bf2b47f614597b59705ff56
+ depends:
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 566948
+ timestamp: 1726847598167
+- kind: conda
+ name: xorg-xorgproto
+ version: '2024.1'
+ build: hb9d3cd8_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xorgproto-2024.1-hb9d3cd8_1.conda
+ sha256: 1316680be6edddee0156b86ec1102fc8286f51c1a5440366ed1db596a2dc3731
+ md5: 7c21106b851ec72c037b162c216d8f05
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ size: 565425
+ timestamp: 1726846388217
+- kind: conda
+ name: xorg-xproto
+ version: 7.0.31
+ build: hcd874cb_1007
+ build_number: 1007
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/xorg-xproto-7.0.31-hcd874cb_1007.tar.bz2
+ sha256: b84cacba8479fa14199c9255fb62e005cacc619e90198c53b1653973709ec331
+ md5: 88f3c65d2ad13826a9e0b162063be023
+ depends:
+ - m2w64-gcc-libs
+ license: MIT
+ license_family: MIT
+ size: 75708
+ timestamp: 1607292254607
+- kind: conda
+ name: xz
+ version: 5.2.6
+ build: h166bdaf_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
+ sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162
+ md5: 2161070d867d1b1204ea749c8eec4ef0
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.1 and GPL-2.0
+ size: 418368
+ timestamp: 1660346797927
+- kind: conda
+ name: xz
+ version: 5.2.6
+ build: h57fd34a_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2
+ sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec
+ md5: 39c6b54e94014701dd157f4f576ed211
+ license: LGPL-2.1 and GPL-2.0
+ size: 235693
+ timestamp: 1660346961024
+- kind: conda
+ name: xz
+ version: 5.2.6
+ build: h775f41a_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2
+ sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8
+ md5: a72f9d4ea13d55d745ff1ed594747f10
+ license: LGPL-2.1 and GPL-2.0
+ size: 238119
+ timestamp: 1660346964847
+- kind: conda
+ name: xz
+ version: 5.2.6
+ build: h8d14728_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2
+ sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0
+ md5: 515d77642eaa3639413c6b1bc3f94219
+ depends:
+ - vc >=14.1,<15
+ - vs2015_runtime >=14.16.27033
+ license: LGPL-2.1 and GPL-2.0
+ size: 217804
+ timestamp: 1660346976440
+- kind: conda
+ name: xz
+ version: 5.2.6
+ build: h9cdd2b7_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2
+ sha256: 93f58a7b393adf41fa007ac8c55978765e957e90cd31877ece1e5a343cb98220
+ md5: 83baad393a31d59c20b63ba4da6592df
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.1 and GPL-2.0
+ size: 440555
+ timestamp: 1660348056328
+- kind: conda
+ name: yaml
+ version: 0.2.5
+ build: h0d85af4_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2
+ sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148
+ md5: d7e08fcf8259d742156188e8762b4d20
+ license: MIT
+ license_family: MIT
+ size: 84237
+ timestamp: 1641347062780
+- kind: conda
+ name: yaml
+ version: 0.2.5
+ build: h3422bc3_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2
+ sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7
+ md5: 4bb3f014845110883a3c5ee811fd84b4
+ license: MIT
+ license_family: MIT
+ size: 88016
+ timestamp: 1641347076660
+- kind: conda
+ name: yaml
+ version: 0.2.5
+ build: h7f98852_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2
+ sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535
+ md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae
+ depends:
+ - libgcc-ng >=9.4.0
+ license: MIT
+ license_family: MIT
+ size: 89141
+ timestamp: 1641346969816
+- kind: conda
+ name: yaml
+ version: 0.2.5
+ build: h8ffe710_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2
+ sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5
+ md5: adbfb9f45d1004a26763652246a33764
+ depends:
+ - vc >=14.1,<15.0a0
+ - vs2015_runtime >=14.16.27012
+ license: MIT
+ license_family: MIT
+ size: 63274
+ timestamp: 1641347623319
+- kind: conda
+ name: yaml
+ version: 0.2.5
+ build: hf897c2e_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2
+ sha256: 8bc601d6dbe249eba44b3c456765265cd8f42ef1e778f8df9b0c9c88b8558d7e
+ md5: b853307650cb226731f653aa623936a4
+ depends:
+ - libgcc-ng >=9.4.0
+ license: MIT
+ license_family: MIT
+ size: 92927
+ timestamp: 1641347626613
+- kind: conda
+ name: yaml-cpp
+ version: 0.8.0
+ build: h13dd4ca_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-cpp-0.8.0-h13dd4ca_0.conda
+ sha256: e65a52fb1c9821ba3a7a670d650314f8ff983865e77ba9f69f74e0906844943d
+ md5: e783a232972a5c7dca549111e63a78b2
+ depends:
+ - libcxx >=15.0.7
+ license: MIT
+ license_family: MIT
+ size: 130329
+ timestamp: 1695712959746
+- kind: conda
+ name: yaml-cpp
+ version: 0.8.0
+ build: h2f0025b_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-cpp-0.8.0-h2f0025b_0.conda
+ sha256: 3ca47a7b43f4453e72cfc8333fbffe99b68e936a5e54457afa0a89e39239e251
+ md5: b5da38ee183c1e50e3e7ffb171a2eca5
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 193472
+ timestamp: 1695710254150
+- kind: conda
+ name: yaml-cpp
+ version: 0.8.0
+ build: h59595ed_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.8.0-h59595ed_0.conda
+ sha256: a65bb5284369e548a15a44b14baf1f7ac34fa4718d7d987dd29032caba2ecf20
+ md5: 965eaacd7c18eb8361fd12bb9e7a57d7
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: MIT
+ license_family: MIT
+ size: 204867
+ timestamp: 1695710312002
+- kind: conda
+ name: yaml-cpp
+ version: 0.8.0
+ build: h63175ca_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/yaml-cpp-0.8.0-h63175ca_0.conda
+ sha256: d2e506baddde40388700f2c83586a002b927810d453272065b9e7b69d422fcca
+ md5: 9032e2129ea7afcc1a8e3d85715a931d
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ size: 136608
+ timestamp: 1695710737262
+- kind: conda
+ name: yaml-cpp
+ version: 0.8.0
+ build: he965462_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/yaml-cpp-0.8.0-he965462_0.conda
+ sha256: 6e5e4afa1011a1ad5a734e895b8d2b2ad0fbc9ef6538aac8f852b33b2ebe44a8
+ md5: 1bb3addc859ed1338370da6e2996ef47
+ depends:
+ - libcxx >=15.0.7
+ license: MIT
+ license_family: MIT
+ size: 130328
+ timestamp: 1695710502498
+- kind: conda
+ name: yarl
+ version: 1.18.0
+ build: py312h01d7ebd_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/yarl-1.18.0-py312h01d7ebd_0.conda
+ sha256: 298c1c6f692c6bfb61020e7058a863697d4341e8ff075cbeaf57d1c1a9ad3db9
+ md5: 568eba0c8021ecf4aa5be6e7a42d5d3d
+ depends:
+ - __osx >=10.13
+ - idna >=2.0
+ - multidict >=4.0
+ - propcache >=0.2.0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 139914
+ timestamp: 1732221098939
+- kind: conda
+ name: yarl
+ version: 1.18.0
+ build: py312h4389bb4_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/yarl-1.18.0-py312h4389bb4_0.conda
+ sha256: 5d784a5df4d0a58e5cb665935b3c585311a3eb8f2513477483d49ca09c2731c8
+ md5: 1a39a4322ee5162c4c0defdcb6c99c64
+ depends:
+ - idna >=2.0
+ - multidict >=4.0
+ - propcache >=0.2.0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: Apache
+ size: 140928
+ timestamp: 1732221264363
+- kind: conda
+ name: yarl
+ version: 1.18.0
+ build: py312h66e93f0_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.18.0-py312h66e93f0_0.conda
+ sha256: 8a1e51303ecac64f10dd0ec548d472c49954c3e2f38023ef28899191580795e1
+ md5: 601d2b19a54fd9346ba18c07c2516339
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - idna >=2.0
+ - libgcc >=13
+ - multidict >=4.0
+ - propcache >=0.2.0
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 151247
+ timestamp: 1732220988648
+- kind: conda
+ name: yarl
+ version: 1.18.0
+ build: py312hb2c0f52_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.18.0-py312hb2c0f52_0.conda
+ sha256: 2ead24d5c50a2edd6348be5888677100b12b98921d1b6fe2f4cd980b0b85ffb2
+ md5: 7dbbd950a7f762c2c8ab835932b12001
+ depends:
+ - idna >=2.0
+ - libgcc >=13
+ - multidict >=4.0
+ - propcache >=0.2.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 149149
+ timestamp: 1732221057827
+- kind: conda
+ name: yarl
+ version: 1.18.0
+ build: py312hea69d52_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.18.0-py312hea69d52_0.conda
+ sha256: 4c90de12b1569f85126a12dbbb89f3dc10cee5838335b9c9993ead8bf1594cd3
+ md5: f538709098e1642d50f4a01707e7dfdb
+ depends:
+ - __osx >=11.0
+ - idna >=2.0
+ - multidict >=4.0
+ - propcache >=0.2.0
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ license: Apache-2.0
+ license_family: Apache
+ size: 141452
+ timestamp: 1732221306526
+- kind: conda
+ name: zlib
+ version: 1.3.1
+ build: h2466b09_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/zlib-1.3.1-h2466b09_2.conda
+ sha256: 8c688797ba23b9ab50cef404eca4d004a948941b6ee533ead0ff3bf52012528c
+ md5: be60c4e8efa55fddc17b4131aa47acbd
+ depends:
+ - libzlib 1.3.1 h2466b09_2
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Zlib
+ license_family: Other
+ size: 107439
+ timestamp: 1727963788936
+- kind: conda
+ name: zlib
+ version: 1.3.1
+ build: h8359307_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda
+ sha256: 58f8860756680a4831c1bf4f294e2354d187f2e999791d53b1941834c4b37430
+ md5: e3170d898ca6cb48f1bb567afb92f775
+ depends:
+ - __osx >=11.0
+ - libzlib 1.3.1 h8359307_2
+ license: Zlib
+ license_family: Other
+ size: 77606
+ timestamp: 1727963209370
+- kind: conda
+ name: zlib
+ version: 1.3.1
+ build: h86ecc28_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/zlib-1.3.1-h86ecc28_2.conda
+ sha256: b4f649aa3ecdae384d5dad7074e198bff120edd3dfb816588e31738fc6d627b1
+ md5: bc230abb5d21b63ff4799b0e75204783
+ depends:
+ - libgcc >=13
+ - libzlib 1.3.1 h86ecc28_2
+ license: Zlib
+ license_family: Other
+ size: 95582
+ timestamp: 1727963203597
+- kind: conda
+ name: zlib
+ version: 1.3.1
+ build: hb9d3cd8_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda
+ sha256: 5d7c0e5f0005f74112a34a7425179f4eb6e73c92f5d109e6af4ddeca407c92ab
+ md5: c9f075ab2f33b3bbee9e62d4ad0a6cd8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib 1.3.1 hb9d3cd8_2
+ license: Zlib
+ license_family: Other
+ size: 92286
+ timestamp: 1727963153079
+- kind: conda
+ name: zlib
+ version: 1.3.1
+ build: hd23fc13_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-hd23fc13_2.conda
+ sha256: 219edbdfe7f073564375819732cbf7cc0d7c7c18d3f546a09c2dfaf26e4d69f3
+ md5: c989e0295dcbdc08106fe5d9e935f0b9
+ depends:
+ - __osx >=10.13
+ - libzlib 1.3.1 hd23fc13_2
+ license: Zlib
+ license_family: Other
+ size: 88544
+ timestamp: 1727963189976
+- kind: conda
+ name: zstandard
+ version: 0.23.0
+ build: py312h15fbf35_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py312h15fbf35_1.conda
+ sha256: d00ca25c1e28fd31199b26a94f8c96574475704a825d244d7a6351ad3745eeeb
+ md5: a4cde595509a7ad9c13b1a3809bcfe51
+ depends:
+ - __osx >=11.0
+ - cffi >=1.11
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - zstd >=1.5.6,<1.5.7.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 330788
+ timestamp: 1725305806565
+- kind: conda
+ name: zstandard
+ version: 0.23.0
+ build: py312h7122b0e_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py312h7122b0e_1.conda
+ sha256: 2685dde42478fae0780fba5d1f8a06896a676ae105f215d32c9f9e76f3c6d8fd
+ md5: bd132ba98f3fc0a6067f355f8efe4cb6
+ depends:
+ - __osx >=10.13
+ - cffi >=1.11
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - zstd >=1.5.6,<1.5.7.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 410873
+ timestamp: 1725305688706
+- kind: conda
+ name: zstandard
+ version: 0.23.0
+ build: py312h7606c53_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py312h7606c53_1.conda
+ sha256: 3e0c718aa18dcac7f080844dbe0aea41a9cea75083019ce02e8a784926239826
+ md5: a92cc3435b2fd6f51463f5a4db5c50b1
+ depends:
+ - cffi >=1.11
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zstd >=1.5.6,<1.5.7.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 320624
+ timestamp: 1725305934189
+- kind: conda
+ name: zstandard
+ version: 0.23.0
+ build: py312hb698573_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/zstandard-0.23.0-py312hb698573_1.conda
+ sha256: 2681c2a249752bdc7978e59ee2f34fcdfcbfda80029b84b8e5fec8dbc9e3af25
+ md5: ffcb8e97e62af42075e0e5f46bb9856e
+ depends:
+ - cffi >=1.11
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
+ - python_abi 3.12.* *_cp312
+ - zstd >=1.5.6,<1.5.7.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 392496
+ timestamp: 1725305808244
+- kind: conda
+ name: zstandard
+ version: 0.23.0
+ build: py312hef9b889_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py312hef9b889_1.conda
+ sha256: b97015e146437283f2213ff0e95abdc8e2480150634d81fbae6b96ee09f5e50b
+ md5: 8b7069e9792ee4e5b4919a7a306d2e67
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cffi >=1.11
+ - libgcc >=13
+ - python >=3.12,<3.13.0a0
+ - python_abi 3.12.* *_cp312
+ - zstd >=1.5.6,<1.5.7.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 419552
+ timestamp: 1725305670210
+- kind: conda
+ name: zstd
+ version: 1.5.6
+ build: h02f22dd_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda
+ sha256: 484f9d0722c77685ae379fbff3ccd662af9ead7e59eb39cd6d0c677cdf25ff6c
+ md5: be8d5f8cf21aed237b8b182ea86b3dd6
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 539937
+ timestamp: 1714723130243
+- kind: conda
+ name: zstd
+ version: 1.5.6
+ build: h0ea2cb4_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda
+ sha256: 768e30dc513568491818fb068ee867c57c514b553915536da09e5d10b4ebf3c3
+ md5: 9a17230f95733c04dc40a2b1e5491d74
+ depends:
+ - libzlib >=1.2.13,<2.0.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 349143
+ timestamp: 1714723445995
+- kind: conda
+ name: zstd
+ version: 1.5.6
+ build: h915ae27_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda
+ sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96
+ md5: 4cb2cd56f039b129bb0e491c1164167e
+ depends:
+ - __osx >=10.9
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 498900
+ timestamp: 1714723303098
+- kind: conda
+ name: zstd
+ version: 1.5.6
+ build: ha6fb4c9_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda
+ sha256: c558b9cc01d9c1444031bd1ce4b9cff86f9085765f17627a6cd85fc623c8a02b
+ md5: 4d056880988120e29d75bfff282e0f45
+ depends:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 554846
+ timestamp: 1714722996770
+- kind: conda
+ name: zstd
+ version: 1.5.6
+ build: hb46c0d2_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.6-hb46c0d2_0.conda
+ sha256: 2d4fd1ff7ee79cd954ca8e81abf11d9d49954dd1fef80f27289e2402ae9c2e09
+ md5: d96942c06c3e84bfcc5efb038724a7fd
+ depends:
+ - __osx >=11.0
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 405089
+ timestamp: 1714723101397
diff --git a/pixi.toml b/pixi.toml
new file mode 100644
index 0000000000..331b69c734
--- /dev/null
+++ b/pixi.toml
@@ -0,0 +1,152 @@
+[project]
+name = "FreeCAD"
+version = "0.22.0"
+description = "pixi instructions for FreeCAD"
+authors = ["looooo "]
+channels = ["conda-forge/label/pivy_rc", "conda-forge"]
+platforms = [ "linux-64", "linux-aarch64", "osx-64", "osx-arm64", "win-64" ]
+
+[dependencies]
+ccache = "*"
+cmake = "3.28.3"
+coin3d = "*"
+compilers = "*"
+conda-devenv = "*"
+debugpy = "*"
+doxygen = "*"
+eigen = "*"
+fmt = "*"
+freetype = "*"
+git = "*"
+graphviz = "*"
+hdf5 = "*"
+libboost-devel = "*"
+matplotlib = "*"
+ninja = "*"
+noqt5 = "*"
+numpy = "*"
+occt = "*"
+openssl = "*"
+pcl = "*"
+pip = "*"
+pivy = "*"
+ply = "*"
+pre-commit = "*"
+pybind11 = "*"
+pyside6 = "*"
+python = "3.12"
+pyyaml = "*"
+qt6-main = "*"
+scipy = ">=1.14.1,<2"
+six = "*"
+smesh = "*"
+swig = "*"
+vtk = "*"
+xerces-c = "*"
+yaml-cpp = "*"
+zlib = "*"
+zstd = "*"
+
+## Linux Dependencies (x86-64)
+[target.linux-64.dependencies]
+kernel-headers_linux-64 = "*"
+libdrm-cos6-x86_64 = "*"
+libselinux-cos6-x86_64 = "*"
+libsepol-cos6-x86_64 = "*"
+libspnav = "*"
+libx11-common-cos6-x86_64 = "*"
+libx11-cos6-x86_64 = "*"
+libxau-cos6-x86_64 = "*"
+libxcb-cos6-x86_64 = "*"
+libxdamage-cos6-x86_64 = "*"
+libxext-cos6-x86_64 = "*"
+libxfixes-cos6-x86_64 = "*"
+libxi-cos6-x86_64 = "*"
+libxi-devel-cos6-x86_64 = "*"
+libxxf86vm-cos6-x86_64 = "*"
+mesa-dri-drivers-cos6-x86_64 = "*"
+mesa-dri1-drivers-cos6-x86_64 = "*"
+mesa-libegl-cos6-x86_64 = "*"
+mesa-libegl-devel-cos6-x86_64 = "*"
+mesa-libgl-cos6-x86_64 = "*"
+mesa-libgl-devel-cos6-x86_64 = "*"
+pixman-cos6-x86_64 = "*"
+sed = "*"
+sysroot_linux-64 = "*"
+xorg-x11-server-common-cos6-x86_64 = "*"
+xorg-x11-server-xvfb-cos6-x86_64 = "*"
+
+## Linux Dependencies (aarch64)
+[target.linux-aarch64.dependencies]
+kernel-headers_linux-aarch64 = "*"
+libdrm-cos7-aarch64 = "*"
+libglvnd-cos7-aarch64 = "*"
+libglvnd-glx-cos7-aarch64 = "*"
+libselinux-cos7-aarch64 = "*"
+libsepol-cos7-aarch64 = "*"
+libspnav = "*"
+libx11-common-cos7-aarch64 = "*"
+libx11-cos7-aarch64 = "*"
+libxau-cos7-aarch64 = "*"
+libxcb-cos7-aarch64 = "*"
+libxdamage-cos7-aarch64 = "*"
+libxext-cos7-aarch64 = "*"
+libxfixes-cos7-aarch64 = "*"
+libxi-cos7-aarch64 = "*"
+libxi-devel-cos7-aarch64 = "*"
+libxxf86vm-cos7-aarch64 = "*"
+mesa-dri-drivers-cos7-aarch64 = "*"
+mesa-khr-devel-cos7-aarch64 = "*"
+mesa-libegl-cos7-aarch64 = "*"
+mesa-libegl-devel-cos7-aarch64 = "*"
+mesa-libgbm-cos7-aarch64 = "*"
+mesa-libgl-cos7-aarch64 = "*"
+mesa-libgl-devel-cos7-aarch64 = "*"
+mesa-libglapi-cos7-aarch64 = "*"
+pixman-cos7-aarch64 = "*"
+sed = "*"
+sysroot_linux-aarch64 = "*"
+xorg-x11-server-common-cos7-aarch64 = "*"
+xorg-x11-server-xvfb-cos7-aarch64 = "*"
+
+## macOS Dependencies (Intel)
+[target.osx-64.dependencies]
+sed = "*"
+
+## macOS Dependencies (Apple Silicon)
+[target.osx-arm64.dependencies]
+sed = "*"
+
+## Qt 6 Configuration Presets
+[target.linux-64.tasks]
+configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]}
+configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]}
+configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]}
+
+[target.linux-aarch64.tasks]
+configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on= ["initialize"]}
+configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on= ["initialize"]}
+configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-linux-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on= ["initialize"]}
+
+[target.osx-64.tasks]
+configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]}
+configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]}
+configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]}
+
+[target.osx-arm64.tasks]
+configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]}
+configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]}
+configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-macos-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]}
+
+[target.win-64.tasks]
+configure = { cmd = [ "cmake", "-B", "build", "--preset", "conda-windows-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]}
+configure-debug = { cmd = [ "cmake", "-B", "build", "--preset", "conda-windows-debug", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]}
+configure-release = { cmd = [ "cmake", "-B", "build", "--preset", "conda-windows-release", "-DFREECAD_QT_VERSION=6", "-DBUILD_REVERSEENGINEERING=OFF" ], depends-on = ["initialize"]}
+
+## Tasks
+[tasks]
+initialize = { cmd = ["git", "submodule", "update", "--init", "--recursive"]}
+build = { cmd = [ "cmake", "--build", "build" ] }
+install = { cmd = [ "cmake", "--install", "build" ] }
+test = { cmd = [ "ctest", "--test-dir", "build" ] }
+freecad = "build/bin/FreeCAD"