diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 232db9b..98c9d31 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,11 +22,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 - name: Setup Pixi - uses: prefix-dev/setup-pixi@v0.9.4 + uses: prefix-dev/setup-pixi@v0.9.6 with: - pixi-version: v0.65.0 + pixi-version: v0.69.0 cache: true environments: dev + cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }} - name: Check linters and formatting run: pixi run pre-commit-all - name: Run unit tests diff --git a/NAMESPACE b/NAMESPACE index f809764..2749cd6 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -1,13 +1,20 @@ # Generated by roxygen2: do not edit by hand -S3method(hera::mime_bundle,CommWidget) -S3method(hera::mime_types,CommWidget) -export(CommWidget) +S3method(hera::mime_bundle,CommAttrWidget) +S3method(hera::mime_bundle,CommRootWidget) +S3method(hera::mime_types,CommAttrWidget) +S3method(hera::mime_types,CommRootWidget) +export(CommAttrWidget) +export(CommRootWidget) export(LocalStorage) export(Reactive) +export(RemoteLocalStorage) export(Signal) -export(Widget) -export(YdocStorage) +export(WidgetBase) +export(YAttrStorage) +export(YAttrWidget) +export(YRootStorage) +export(YRootWidget) export(make_comm_widget) export(make_reactive) export(make_widget) diff --git a/R/comm.R b/R/comm.R index 6438786..aa0d4c4 100644 --- a/R/comm.R +++ b/R/comm.R @@ -31,7 +31,7 @@ } #' Thin transport wrapper around a Jupyter Comm: encodes/decodes `yr::Message` -#' buffers so `CommWidget` never touches the raw hera comm API. +#' buffers so `CommAttrWidget` never touches the raw hera comm API. #' @noRd CommProvider <- R6::R6Class( "CommProvider", @@ -83,135 +83,167 @@ CommProvider <- R6::R6Class( ) -#' Widget backed by a Jupyter Comm and a CRDT ydoc +#' Build a Comm-backed widget class with a chosen ydoc parent #' -#' Extends [Widget] by opening a Jupyter Comm and running the Y.js sync -#' protocol over it, mirroring `ypywidgets.CommWidget`: on `SyncStep1` reply -#' with a `SyncStep2` diff; on `SyncStep2` apply the peer's state and (once) -#' start forwarding local changes as `Update`s; on `Update` apply the peer's +#' R6 fixes the parent class at definition time, so we expose a factory that +#' stamps out a Comm-backed class on top of either [YAttrWidget] or +#' [YRootWidget] (or any other [WidgetBase] subclass). The two common bases +#' are pre-built as [CommAttrWidget] and [CommRootWidget]. +#' +#' The generated class opens a Jupyter Comm and runs the Y.js sync protocol +#' over it, mirroring `ypywidgets.CommWidget`: on `SyncStep1` reply with a +#' `SyncStep2` diff; on `SyncStep2` apply the peer's state and (once) start +#' forwarding local changes as `Update`s; on `Update` apply the peer's #' incremental change. #' -#' @export -CommWidget <- R6::R6Class( - "CommWidget", - inherit = Widget, +#' @param inherit Parent R6 class — typically [YAttrWidget] or [YRootWidget]. +#' @param classname Name of the generated R6 class. +#' @return An [R6::R6Class] generator. +#' @noRd +.make_comm_widget_class <- function( + inherit = YAttrWidget, + classname = "CommAttrWidget" +) { + R6::R6Class( + classname, + inherit = inherit, - public = list( - #' @description Open a Comm on the `"ywidget"` target and send `SyncStep1`. - #' @param ydoc Optional existing `yr::Doc` to adopt. - #' @param comm_metadata Overrides the default metadata sent on comm open. - initialize = function(ydoc = NULL, comm_metadata = NULL) { - super$initialize(ydoc) - - model_name <- self$model_name() - - if (is.null(comm_metadata)) { - comm_metadata <- list( - ymodel_name = model_name, - create_ydoc = is.null(ydoc) - ) - } + public = list( + #' @description Open a Comm on the `"ywidget"` target and send `SyncStep1`. + #' @param ydoc Optional existing `yr::Doc` to adopt. + #' @param comm_metadata Overrides the default metadata sent on comm open. + initialize = function(ydoc = NULL, comm_metadata = NULL) { + super$initialize(ydoc) - # hera invokes the CommProvider callback with R6 bindings broken, so we - # capture `self` explicitly and re-enter via `widget$on_remote_message`. - widget <- self - private$.comm_provider <- CommProvider$new( - target_name = "ywidget", - description = model_name, - metadata = comm_metadata, - on_remote_message = function(msg) widget$on_remote_message(msg) - ) + if (is.null(comm_metadata$ymodel_name)) { + comm_metadata$ymodel_name <- class(self)[[1L]] + } + if (is.null(comm_metadata$create_ydoc)) { + comm_metadata$create_ydoc <- is.null(ydoc) + } - state_vector <- self$ydoc$with_transaction(function(trans) { - trans$state_vector() - }) - private$.comm_provider$send( - yr::Message$new(yr::SyncMessage$from_sync_step1(state_vector)) - ) - }, + # hera invokes the CommProvider callback with R6 bindings broken, so we + # capture `self` explicitly and re-enter via `widget$on_remote_message`. + widget <- self + private$.comm_provider <- CommProvider$new( + target_name = "ywidget", + description = comm_metadata$ymodel_name, + metadata = comm_metadata, + on_remote_message = function(msg) widget$on_remote_message(msg) + ) - #' @description Dispatch an incoming `yr::Message` to its sync handler. - #' Public so hera callbacks can re-enter via a captured `self`, where R6 - #' bindings are otherwise broken. - #' @param msg A `yr::Message`. - on_remote_message = function(msg) { - if (msg$is_sync_message()) { - sync_msg <- msg$inner() - if (isTRUE(sync_msg$is_sync_step1())) { - private$.on_sync_step1(sync_msg) - } else if (isTRUE(sync_msg$is_sync_step2())) { - private$.on_sync_step2(sync_msg) - } else if (isTRUE(sync_msg$is_update())) { - private$.on_update(sync_msg) + state_vector <- self$ydoc$with_transaction(function(trans) { + trans$state_vector() + }) + private$.comm_provider$send( + yr::Message$new(yr::SyncMessage$from_sync_step1(state_vector)) + ) + }, + + #' @description Dispatch an incoming `yr::Message` to its sync handler. + #' Public so hera callbacks can re-enter via a captured `self`, where R6 + #' bindings are otherwise broken. + #' @param msg A `yr::Message`. + on_remote_message = function(msg) { + if (msg$is_sync_message()) { + sync_msg <- msg$inner() + if (isTRUE(sync_msg$is_sync_step1())) { + private$.on_sync_step1(sync_msg) + } else if (isTRUE(sync_msg$is_sync_step2())) { + private$.on_sync_step2(sync_msg) + } else if (isTRUE(sync_msg$is_update())) { + private$.on_update(sync_msg) + } + } else { + # Only sync message are handled for now + return(invisible()) } - } else { - # Only sync message are handled for now - return(invisible()) - } - }, + }, - #' @description The underlying comm id (used to build the display payload). - comm_id = function() private$.comm_provider$comm_id() - ), + #' @description The underlying comm id (used to build the display payload). + comm_id = function() private$.comm_provider$comm_id() + ), - private = list( - .comm_provider = NULL, - .observer_registered = FALSE, - - .apply_remote = function(update_bytes) { - self$ydoc$with_transaction( - function(trans) trans$apply_update_v1(update_bytes), - mutable = TRUE, - origin = REMOTE_ORIGIN - ) - }, + private = list( + .comm_provider = NULL, + .observer_registered = FALSE, - .on_sync_step1 = function(sync_msg) { - diff <- self$ydoc$with_transaction(function(trans) { - trans$encode_diff_v1(sync_msg$state_vector()) - }) - msg <- yr::Message$new(yr::SyncMessage$from_sync_step2(diff)) - private$.comm_provider$send(msg) - }, + .apply_remote = function(update_bytes) { + self$ydoc$with_transaction( + function(trans) trans$apply_update_v1(update_bytes), + mutable = TRUE, + origin = REMOTE_ORIGIN + ) + }, - .on_sync_step2 = function(sync_msg) { - private$.apply_remote(sync_msg$data()) - if (private$.observer_registered) { - return() - } - private$.observer_registered <- TRUE - # Capture provider directly — extendr may break R6 bindings in callbacks. - provider <- private$.comm_provider - self$ydoc$observe_transaction_cleanup( - function(trans, event) { - origin <- trans$origin() - if (is.null(origin) || !origin$equal(LOCAL_ORIGIN)) { - return() - } - diff <- trans$encode_diff_v1(event$before_state()) - if (length(diff) == 0L) { - return() - } - msg <- yr::Message$new(yr::SyncMessage$from_update(diff)) - provider$send(msg) - }, - key = 1L - ) - }, + .on_sync_step1 = function(sync_msg) { + diff <- self$ydoc$with_transaction(function(trans) { + trans$encode_diff_v1(sync_msg$state_vector()) + }) + msg <- yr::Message$new(yr::SyncMessage$from_sync_step2(diff)) + private$.comm_provider$send(msg) + }, - .on_update = function(sync_msg) { - private$.apply_remote(sync_msg$data()) - } + .on_sync_step2 = function(sync_msg) { + private$.apply_remote(sync_msg$data()) + if (private$.observer_registered) { + return() + } + private$.observer_registered <- TRUE + # Capture provider directly — extendr may break R6 bindings in callbacks. + provider <- private$.comm_provider + self$ydoc$observe_transaction_cleanup( + function(trans, event) { + origin <- trans$origin() + if (is.null(origin) || !origin$equal(LOCAL_ORIGIN)) { + return() + } + diff <- trans$encode_diff_v1(event$before_state()) + if (length(diff) == 0L) { + return() + } + msg <- yr::Message$new(yr::SyncMessage$from_update(diff)) + provider$send(msg) + }, + key = 1L + ) + }, + + .on_update = function(sync_msg) { + private$.apply_remote(sync_msg$data()) + } + ) ) +} + +#' Widget backed by a Jupyter Comm and a CRDT ydoc, with map-attr storage +#' +#' Opens a Jupyter Comm on the `"ywidget"` target and runs the Y.js sync +#' protocol on top of [YAttrWidget]'s map-attr storage. Constructor: +#' `CommAttrWidget$new(ydoc = NULL, comm_metadata = NULL)`. +#' @export +CommAttrWidget <- R6::R6Class( + "CommAttrWidget", + inherit = .make_comm_widget_class(YAttrWidget, ".CommAttrWidgetBase") +) + +#' Widget backed by a Jupyter Comm and a CRDT ydoc, with root-CRDT storage +#' +#' Like [CommAttrWidget] but on top of [YRootWidget]'s per-root storage. +#' Constructor: `CommRootWidget$new(ydoc = NULL, comm_metadata = NULL)`. +#' @export +CommRootWidget <- R6::R6Class( + "CommRootWidget", + inherit = .make_comm_widget_class(YRootWidget, ".CommRootWidgetBase") ) #' @exportS3Method hera::mime_types -mime_types.CommWidget <- function(x) { +mime_types.CommAttrWidget <- function(x) { c("text/plain", "application/vnd.jupyter.ywidget-view+json") } #' @exportS3Method hera::mime_bundle -mime_bundle.CommWidget <- function(x, mimetypes = mime_types(x), ...) { +mime_bundle.CommAttrWidget <- function(x, mimetypes = mime_types(x), ...) { list( data = list( "text/plain" = "", @@ -226,14 +258,36 @@ mime_bundle.CommWidget <- function(x, mimetypes = mime_types(x), ...) { ) } -#' Generate a CommWidget subclass with named CRDT-backed attributes +#' @exportS3Method hera::mime_types +mime_types.CommRootWidget <- mime_types.CommAttrWidget + +#' @exportS3Method hera::mime_bundle +mime_bundle.CommRootWidget <- mime_bundle.CommAttrWidget + +#' Generate a Comm-backed widget subclass with named CRDT-backed attributes #' -#' Like [make_widget()], but the generated class inherits from [CommWidget], +#' Like [make_widget()], but the generated class inherits from a Comm-backed +#' base (default [CommAttrWidget]; pass [CommRootWidget] for root storage), #' so each instance opens a Jupyter Comm and syncs its ydoc over it. #' #' @inheritParams make_widget -#' @return An [R6::R6Class] generator producing [CommWidget] subclasses. +#' @return An [R6::R6Class] generator producing Comm-backed widget subclasses. #' @export -make_comm_widget <- function(classname, ..., inherit = CommWidget) { - make_widget(classname, ..., inherit = inherit) +make_comm_widget <- function( + classname, + ..., + comm_metadata = NULL, + inherit = CommAttrWidget +) { + md <- comm_metadata + wrapper <- R6::R6Class( + paste0(classname, "Base"), + inherit = inherit, + public = list( + initialize = function(ydoc = NULL) { + super$initialize(ydoc = ydoc, comm_metadata = md) + } + ) + ) + make_widget(classname, ..., inherit = wrapper) } diff --git a/R/reactive.R b/R/reactive.R index 38250d9..9f1063f 100644 --- a/R/reactive.R +++ b/R/reactive.R @@ -54,10 +54,36 @@ LocalStorage <- R6::R6Class( ) ) +#' Storage backend with a remote-change [Signal]. +#' +#' Extends [LocalStorage] with a public `remote_changed` signal fired when the +#' value changes for reasons outside of `update()`. The in-memory backend has +#' no external source, so `remote_changed` never fires; subclasses backed by +#' shared state emit on it when they observe remote updates. +#' +#' @export +RemoteLocalStorage <- R6::R6Class( + "RemoteLocalStorage", + inherit = LocalStorage, + public = list( + #' @field remote_changed [Signal] fired on remote changes to the value. + remote_changed = NULL, + + #' @description Create the backend. + #' @param value Initial value. + initialize = function(value = NULL) { + super$initialize(value) + self$remote_changed <- Signal$new() + } + ) +) + #' Reactive value #' #' Wraps a storage backend and a [Signal]. `set()` writes the value and emits -#' on `$signal`, but only when it differs from the current value. +#' on `$local_changed`, but only when it differs from the current value. If +#' the storage exposes a `remote_changed` signal, it is re-exposed as +#' `$remote_changed`; otherwise that field is `NULL`. #' #' @export Reactive <- R6::R6Class( @@ -67,8 +93,12 @@ Reactive <- R6::R6Class( ), public = list( - #' @field signal [Signal] fired when the value changes. - signal = NULL, + #' @field local_changed [Signal] fired when the value is changed via `set()`. + local_changed = NULL, + + #' @field remote_changed [Signal] from the storage backend, or `NULL` if + #' the backend does not expose one. + remote_changed = NULL, #' @description Create a reactive value. #' @param value Initial value. @@ -80,7 +110,10 @@ Reactive <- R6::R6Class( } else { storage } - self$signal <- Signal$new() + self$local_changed <- Signal$new() + if (!is.null(private$storage$remote_changed)) { + self$remote_changed <- private$storage$remote_changed + } }, #' @description Return the current value without triggering any signal. @@ -88,12 +121,12 @@ Reactive <- R6::R6Class( private$storage$read() }, - #' @description Set a new value. Emits via `$signal` only if the storage - #' reports that the value changed. + #' @description Set a new value. Emits via `$local_changed` only if the + #' storage reports that the value changed. #' @param value The new value. set = function(value) { if (private$storage$update(value)) { - self$signal$emit(value) + self$local_changed$emit(value) } } ) @@ -135,7 +168,7 @@ make_reactive <- function(classname, ...) { connect_fn <- function(...) { args <- list(...) for (nm in names(args)) { - private[[paste0(".", nm)]]$signal$connect(args[[nm]]) + private[[paste0(".", nm)]]$local_changed$connect(args[[nm]]) } invisible(self) } diff --git a/R/widget.R b/R/widget.R index fc164c2..4f6431b 100644 --- a/R/widget.R +++ b/R/widget.R @@ -10,27 +10,107 @@ REMOTE_ORIGIN <- NULL REMOTE_ORIGIN <<- yr::Origin$new(1L) } -#' `Reactive` storage backed by a Y.js `_attrs` map entry. Writes use -#' `LOCAL_ORIGIN` so the ydoc observer does not echo them back as remote -#' changes. +# Coerce arbitrary R values to a yr::Prelim, wrapping non-Prelims as Any. +.as_prelim <- function(value) { + if (inherits(value, "Prelim")) value else yr::Prelim$any(value) +} + +#' Shared base for `YAttrWidget` and `YRootWidget` +#' +#' Owns the `yr::Doc` and the per-attribute storage registry, and provides +#' the common `connect(name = fn, ...)` subscription method. Subclasses +#' override `register_storage()` to materialize their flavor of storage. +#' +#' @export +WidgetBase <- R6::R6Class( + "WidgetBase", + public = list( + #' @field ydoc The underlying `yr::Doc`. + ydoc = NULL, + + #' @description Create a new `WidgetBase`. + #' @param ydoc An existing `yr::Doc` to adopt, or `NULL` to create a fresh one. + initialize = function(ydoc = NULL) { + self$ydoc <- if (is.null(ydoc)) yr::Doc$new() else ydoc + private$.storages <- list() + }, + + #' @description Subscribe callbacks to attribute changes by name. Each + #' callback fires on both local writes and remote-peer updates (root- + #' backed attributes do not emit local-changed signals). + #' @param ... Named callbacks: `attr_name = function(value_or_event) {}`. + #' @return `invisible(self)`. + connect = function(...) { + args <- list(...) + for (nm in names(args)) { + r <- private[[paste0(".", nm)]] + r$local_changed$connect(args[[nm]]) + r$remote_changed$connect(args[[nm]]) + } + invisible(self) + }, + + #' @description Abstract — overridden by subclasses to materialize a + #' storage backend for one attribute and register it under `name`. + #' @param name Attribute name. + #' @param ... Subclass-specific arguments (e.g. `default` or `prelim`). + register_storage = function(name, ...) { + stop("register_storage() must be implemented by a subclass.") + } + ), + + private = list( + .storages = NULL + ) +) + +#' `Reactive` storage backed by a Y.js `attrs` map entry. +#' +#' Implements the same protocol as [RemoteLocalStorage] (`read()`, `update()`, +#' and a public `remote_changed` [Signal]). Writes via `update()` use +#' `LOCAL_ORIGIN`; the owning [YAttrWidget] runs the `_attrs` observer and emits on +#' `remote_changed` when a peer changes this key. #' #' @export -YdocStorage <- R6::R6Class( - "YdocStorage", +YAttrStorage <- R6::R6Class( + "YAttrStorage", private = list( ydoc = NULL, - attrs = NULL, + attrs = "_attrs", key = NULL ), public = list( - #' @description Bind the backend to one `_attrs` key. + #' @field remote_changed [Signal] fired on remote changes to the value. + remote_changed = NULL, + + #' @description Bind the backend to one `attrs` key. If `default` is + #' non-NULL and the key is currently absent, `default` is written under + #' it (a non-Prelim is wrapped as `yr::Prelim$any`). #' @param ydoc The `yr::Doc`. - #' @param attrs Its `_attrs` map. + #' @param attrs Its attribute map. #' @param key Attribute key to read/write. - initialize = function(ydoc, attrs, key) { + #' @param default Default value (Prelim or any R value), or `NULL` to + #' skip the initial write entirely. + initialize = function(ydoc, attrs, key, default = NULL) { private$ydoc <- ydoc private$attrs <- attrs private$key <- key + self$remote_changed <- Signal$new() + + # If default is given initialize it when not present in the ydoc. + # It may already be present if joining another widget. + if (!is.null(default)) { + prelim_default <- .as_prelim(default) + private$ydoc$with_transaction( + function(trans) { + if (is.null(private$attrs$get(trans, private$key))) { + private$attrs$insert(trans, private$key, prelim_default) + } + }, + mutable = TRUE, + origin = LOCAL_ORIGIN + ) + } }, #' @description Return the value stored under `key`. @@ -49,9 +129,7 @@ YdocStorage <- R6::R6Class( if (identical(private$attrs$get(trans, private$key), value)) { return(FALSE) } - # TODO should not insert anything unconditionally but allow for setting recursive - # struct such as Text, Array... - private$attrs$insert_any(trans, private$key, value) + private$attrs$insert(trans, private$key, .as_prelim(value)) TRUE }, mutable = TRUE, @@ -61,40 +139,24 @@ YdocStorage <- R6::R6Class( ) ) + #' Base class for CRDT-backed widgets #' -#' Owns a `yr::Doc` and a [Signal] that fires on remote attribute changes. -#' Use [make_widget()] to generate subclasses with named CRDT-backed -#' attributes. +#' Owns a `yr::Doc`, its `_attrs` map, and the per-attribute [YAttrStorage]s. +#' A single `_attrs` observer dispatches remote changes to each storage's +#' `remote_changed` signal. Use [make_widget()] to generate subclasses. #' #' @export -Widget <- R6::R6Class( - "Widget", +YAttrWidget <- R6::R6Class( + "YAttrWidget", + inherit = WidgetBase, public = list( - #' @field ydoc The underlying `yr::Doc`. - ydoc = NULL, - - #' @field remote_changed [Signal] emitting `(key, value)` on remote changes. - remote_changed = NULL, - - #' @description Read the model name registered in the ydoc `_model_name` text. - #' @return The class name string stored in the ydoc. - model_name = function() private$get_model_name(), - - #' @description Create a new `Widget`. + #' @description Create a new `YAttrWidget`. #' @param ydoc An existing `yr::Doc` to adopt, or `NULL` to create a fresh one. initialize = function(ydoc = NULL) { - self$ydoc <- if (is.null(ydoc)) yr::Doc$new() else ydoc - self$remote_changed <- Signal$new() - - # Define the root types of the Ydoc + super$initialize(ydoc) private$.attrs <- self$ydoc$get_or_insert_map("_attrs") - # Only write the model name if it is not already registered. - if (!nzchar(private$get_model_name())) { - private$set_model_name(class(self)[[1L]]) - } - # Remote changes fire the local signal with the updated values. private$.attrs$observe( function(trans, event) { origin <- trans$origin() @@ -103,64 +165,162 @@ Widget <- R6::R6Class( } keys_info <- event$keys(trans) for (k in names(keys_info)) { + storage <- private$.storages[[k]] + if (is.null(storage)) { + next + } new_val <- keys_info[[k]][["inserted"]] - if (!is.null(new_val)) self$remote_changed$emit(k, new_val) + if (!is.null(new_val)) storage$remote_changed$emit(new_val) } }, key = 1L ) + }, + + #' @description Build and register a [YAttrStorage] for an attribute key. + #' `default` is written under `name` only if the key is currently absent + #' (so joining from an existing doc preserves remote state). Remote + #' changes to this key are dispatched to the storage's `remote_changed` + #' signal. + #' @param name Attribute key. + #' @param default Default value (Prelim or any R value). + #' @return The newly created [YAttrStorage]. + register_storage = function(name, default) { + storage <- YAttrStorage$new(self$ydoc, private$.attrs, name, default) + private$.storages[[name]] <- storage + storage } ), private = list( - .attrs = NULL, + .attrs = NULL + ) +) + +#' `Reactive`-shaped storage backed by a root CRDT type on a `yr::Doc`. +#' +#' Each attribute is its own top-level Text/Map/Array root. The kind is +#' inferred from a [yr::Prelim] passed at construction (only its `is_*()` +#' type is consulted; the Prelim's content is not written). `read()` returns +#' the ref; `update()` is unsupported — callers mutate the ref directly. +#' Remote (non-`LOCAL_ORIGIN`) changes fire `remote_changed`. +#' +#' @export +YRootStorage <- R6::R6Class( + "YRootStorage", + private = list( + ref = NULL, - y_model_name = function() { - self$ydoc$get_or_insert_text("_model_name") - }, + insert_root = function(ydoc, name, prelim) { + if (prelim$is_text()) { + ydoc$get_or_insert_text(name) + } else if (prelim$is_map()) { + ydoc$get_or_insert_map(name) + } else if (prelim$is_array()) { + ydoc$get_or_insert_array(name) + } else { + stop("YRootStorage requires a Text/Map/Array Prelim for '", name, "'.") + } + } + ), - set_model_name = function(name) { - model_text <- private$y_model_name() - self$ydoc$with_transaction( - function(trans) model_text$push(trans, name), - mutable = TRUE, - origin = LOCAL_ORIGIN + public = list( + #' @field remote_changed [Signal] fired with the event on remote changes. + remote_changed = NULL, + + #' @description Materialize the root ref for `name` from `prelim`'s type. + #' @param ydoc The `yr::Doc`. + #' @param name Root name on the doc. + #' @param prelim A `yr::Prelim` whose `is_text/is_map/is_array` selects + #' the root kind. Content is ignored. + initialize = function(ydoc, name, prelim) { + if (!inherits(prelim, "Prelim")) { + stop("YRootStorage requires a yr::Prelim for '", name, "'.") + } + private$ref <- private$insert_root(ydoc, name, prelim) + self$remote_changed <- Signal$new() + sig <- self$remote_changed + private$ref$observe( + function(trans, event) { + origin <- trans$origin() + if (is.null(origin) || !origin$equal(REMOTE_ORIGIN)) { + return() + } + sig$emit(event) + }, + key = 1L ) }, - get_model_name = function() { - model_text <- private$y_model_name() - self$ydoc$with_transaction(function(trans) model_text$get_string(trans)) + #' @description Return the underlying root ref. + read = function() private$ref, + + #' @description Unsupported — root storage is read-only at this layer. + #' @param value Ignored. + update = function(value) { + stop( + "YRootStorage does not support update(); ", + "mutate the ref returned by read() directly." + ) } ) ) -#' Generate a Widget subclass with CRDT-backed attributes -#' -#' Each named attribute becomes an active binding whose reads and writes go -#' through the widget's ydoc `_attrs` map, and which emits its [Signal] when a -#' remote peer changes the value. -#' -#' @param classname Name of the generated R6 class. -#' @param ... Named default values, one per attribute. -#' @param inherit Parent R6 class. -#' @return An [R6::R6Class] generator. Generated classes add a static -#' `$join(widget)` constructor that mirrors another widget's ydoc state, -#' alongside the standard `$new(...)`. + +#' Base class for root-type-backed widgets #' -#' @examples -#' MyWidget <- make_widget("MyWidget", foo = "", bar = 0L) -#' w <- MyWidget$new(foo = "hello") -#' w2 <- MyWidget$join(w) # joins from w's current ydoc state -#' w$foo # reads from ydoc -#' w$foo <- "hi" # writes to ydoc -#' w$connect(foo = function(v) cat("foo changed:", v, "\n")) +#' Owns a `yr::Doc` and one CRDT root per attribute (Text/Map/Array). Each +#' root carries its own observer that emits the attribute's +#' [YRootStorage]`$remote_changed` signal on non-`LOCAL_ORIGIN` events. Use +#' [make_widget()] with `inherit = YRootWidget` to generate subclasses. #' #' @export -make_widget <- function(classname, ..., inherit = Widget) { - fields <- list(...) - nms <- names(fields) +YRootWidget <- R6::R6Class( + "YRootWidget", + inherit = WidgetBase, + public = list( + #' @description Build and register a [YRootStorage] for an attribute name. + #' The root kind is selected from `prelim`'s `is_text/is_map/is_array`. + #' The storage installs its own per-root observer that filters to + #' non-`LOCAL_ORIGIN` events and emits on `remote_changed`. + #' @param name Root name on the doc. + #' @param prelim A `yr::Prelim` whose kind selects the root type. + #' @return The newly created [YRootStorage]. + register_storage = function(name, prelim) { + storage <- YRootStorage$new(self$ydoc, name, prelim) + private$.storages[[name]] <- storage + storage + } + ) +) + +# Build a new instance of `cls` mirroring another widget's ydoc state. +# The diff is applied with LOCAL_ORIGIN so observers stay quiet during the +# initial load; existing keys/roots are then preserved by register_storage's +# idempotent write. +.join_widget <- function(cls, widget, version = "v1") { + empty_sv <- yr::Doc$new()$with_transaction(function(t) t$state_vector()) + encode_diff <- paste0("encode_diff_", version) + state <- widget$ydoc$with_transaction( + function(t) t[[encode_diff]](empty_sv) + ) + apply_update <- paste0("apply_update_", version) + doc <- yr::Doc$new() + doc$with_transaction( + function(t) t[[apply_update]](state), + mutable = TRUE, + origin = LOCAL_ORIGIN + ) + cls$new(ydoc = doc) +} +# Shared factory backing make_widget. The flavor (map-attr vs root-CRDT) +# is selected by the `inherit` parent class, which dispatches what kind of +# storage `register_storage()` materializes. Everything else — active +# bindings, per-instance defaults that override class-level defaults, +# idempotent seeding on a fresh ydoc, and a uniform $join — is uniform. +.make_widget_class <- function(classname, fields, inherit) { + nms <- names(fields) private_list <- setNames(rep(list(NULL), length(nms)), paste0(".", nms)) active_list <- setNames( @@ -179,62 +339,75 @@ make_widget <- function(classname, ..., inherit = Widget) { nms ) - init_fn <- function(ydoc = NULL, .skip_defaults = FALSE) { + init_fn <- function(ydoc = NULL) { super$initialize(ydoc) - invisible(lapply(nms, function(nm) { - val <- get(nm, envir = parent.env(environment())) - pnm <- paste0(".", nm) - private[[pnm]] <- Reactive$new( - storage = YdocStorage$new(self$ydoc, private$.attrs, nm) + for (nm in nms) { + val <- get(nm, envir = environment()) + private[[paste0(".", nm)]] <- Reactive$new( + storage = self$register_storage(nm, val) ) - if (!.skip_defaults) private[[pnm]]$set(val) - })) - # Remote ydoc change: emit the field signal directly — the value is already - # in the ydoc so there is nothing to write back. - self$remote_changed$connect(function(key, value) { - if (key %in% nms) private[[paste0(".", key)]]$signal$emit(value) - }) - } - formals(init_fn) <- c(fields, list(ydoc = NULL, .skip_defaults = FALSE)) - - # connect(name = fn, ...): subscribe callbacks to attribute signals by name. - connect_fn <- function(...) { - args <- list(...) - for (nm in names(args)) { - private[[paste0(".", nm)]]$signal$connect(args[[nm]]) } - invisible(self) } + formals(init_fn) <- c(fields, list(ydoc = NULL)) cls <- R6::R6Class( classname, inherit = inherit, private = private_list, active = active_list, - public = list(initialize = init_fn, connect = connect_fn) + public = list(initialize = init_fn) ) - # join(widget, version = "v1"|"v2"): build an instance mirroring another - # widget's ydoc state. The diff is applied with LOCAL_ORIGIN so the observer - # stays quiet during the initial load. cls$join <- function(widget, version = "v1") { - empty_sv <- yr::Doc$new()$with_transaction(function(t) t$state_vector()) - encode_diff <- paste0("encode_diff_", version) - state <- widget$ydoc$with_transaction( - function(t) t[[encode_diff]](empty_sv) - ) - apply_update <- paste0("apply_update_", version) - doc <- yr::Doc$new() - # Apply before constructing the instance so that the model name (and field - # defaults) are already present and the instance does not re-write them - # under its own client id, which would create ops the source peer lacks. - doc$with_transaction( - function(t) t[[apply_update]](state), - mutable = TRUE, - origin = LOCAL_ORIGIN - ) - cls$new(ydoc = doc, .skip_defaults = TRUE) + .join_widget(cls, widget, version) } cls } + +#' Generate a Widget subclass with CRDT-backed attributes +#' +#' Each named attribute becomes an active binding backed by the parent +#' class's storage. With `inherit = YAttrWidget` (the default), reads and +#' writes go through the ydoc's `_attrs` map and `connect()` callbacks fire +#' on both local writes and remote-peer updates. With `inherit = YRootWidget`, each +#' attribute is its own top-level Text/Map/Array root; defaults must be +#' [yr::Prelim]s (only their kind is used — content is not written) and +#' `connect()` fires on remote-peer updates only. +#' +#' @param classname Name of the generated R6 class. +#' @param ... Named default values, one per attribute. For +#' `inherit = YAttrWidget`, any R value (Prelims are passed through, others +#' are wrapped as `yr::Prelim$any`). For `inherit = YRootWidget`, a +#' [yr::Prelim] whose kind selects the root type. Each default may be +#' overridden per-instance via `$new( = ...)`; the override seeds a +#' fresh ydoc and is ignored when joining an existing one. +#' @param inherit Parent R6 class — [YAttrWidget] or [YRootWidget]. +#' @return An [R6::R6Class] generator. Generated classes add a static +#' `$join(widget)` constructor that mirrors another widget's ydoc state, +#' alongside the standard `$new(...)`. +#' +#' @examples +#' MyWidget <- make_widget("MyWidget", foo = "", bar = 0L) +#' w <- MyWidget$new(foo = "hello") +#' w2 <- MyWidget$join(w) # joins from w's current ydoc state +#' w$foo # reads from ydoc +#' w$foo <- "hi" # writes to ydoc +#' w$connect(foo = function(v) cat("foo changed:", v, "\n")) +#' +#' \dontrun{ +#' MyDoc <- make_widget( +#' "MyDoc", +#' title = yr::Prelim$text(""), +#' items = yr::Prelim$array(list(), recursive = FALSE), +#' inherit = YRootWidget +#' ) +#' d <- MyDoc$new() +#' d$ydoc$with_transaction(function(t) d$title$push(t, "hi"), mutable = TRUE) +#' d$connect(title = function(event) cat("title changed\n")) +#' } +#' +#' @export +make_widget <- function(classname, ..., inherit = YAttrWidget) { + .make_widget_class(classname, list(...), inherit) +} diff --git a/man/CommAttrWidget.Rd b/man/CommAttrWidget.Rd new file mode 100644 index 0000000..9fe77d2 --- /dev/null +++ b/man/CommAttrWidget.Rd @@ -0,0 +1,48 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/comm.R +\name{CommAttrWidget} +\alias{CommAttrWidget} +\title{Widget backed by a Jupyter Comm and a CRDT ydoc, with map-attr storage} +\description{ +Opens a Jupyter Comm on the `"ywidget"` target and runs the Y.js sync +protocol on top of [YAttrWidget]'s map-attr storage. Constructor: +`CommAttrWidget$new(ydoc = NULL, comm_metadata = NULL)`. +} +\section{Super classes}{ +\code{WidgetBase} -> \code{YAttrWidget} -> \code{.CommAttrWidgetBase} -> \code{CommAttrWidget} +} +\section{Methods}{ +\subsection{Public methods}{ + \itemize{ + \item \href{#method-CommAttrWidget-clone}{\code{CommAttrWidget$clone()}} + } +} +\if{html}{\out{
Inherited methods + +
}} +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-CommAttrWidget-clone}{}}} +\subsection{\code{CommAttrWidget$clone()}}{ + The objects of this class are cloneable with this method. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{CommAttrWidget$clone(deep = FALSE)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{deep}}{Whether to make a deep clone.} + } + \if{html}{\out{
}} + } +} + +} diff --git a/man/CommRootWidget.Rd b/man/CommRootWidget.Rd new file mode 100644 index 0000000..1f1cf9d --- /dev/null +++ b/man/CommRootWidget.Rd @@ -0,0 +1,47 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/comm.R +\name{CommRootWidget} +\alias{CommRootWidget} +\title{Widget backed by a Jupyter Comm and a CRDT ydoc, with root-CRDT storage} +\description{ +Like [CommAttrWidget] but on top of [YRootWidget]'s per-root storage. +Constructor: `CommRootWidget$new(ydoc = NULL, comm_metadata = NULL)`. +} +\section{Super classes}{ +\code{WidgetBase} -> \code{YRootWidget} -> \code{.CommRootWidgetBase} -> \code{CommRootWidget} +} +\section{Methods}{ +\subsection{Public methods}{ + \itemize{ + \item \href{#method-CommRootWidget-clone}{\code{CommRootWidget$clone()}} + } +} +\if{html}{\out{
Inherited methods + +
}} +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-CommRootWidget-clone}{}}} +\subsection{\code{CommRootWidget$clone()}}{ + The objects of this class are cloneable with this method. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{CommRootWidget$clone(deep = FALSE)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{deep}}{Whether to make a deep clone.} + } + \if{html}{\out{
}} + } +} + +} diff --git a/man/CommWidget.Rd b/man/CommWidget.Rd deleted file mode 100644 index 5e41d3b..0000000 --- a/man/CommWidget.Rd +++ /dev/null @@ -1,102 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/comm.R -\name{CommWidget} -\alias{CommWidget} -\title{Widget backed by a Jupyter Comm and a CRDT ydoc} -\description{ -Extends [Widget] by opening a Jupyter Comm and running the Y.js sync -protocol over it, mirroring `ypywidgets.CommWidget`: on `SyncStep1` reply -with a `SyncStep2` diff; on `SyncStep2` apply the peer's state and (once) -start forwarding local changes as `Update`s; on `Update` apply the peer's -incremental change. -} -\section{Super class}{ -\code{\link[ywidgets:Widget]{Widget}} -> \code{CommWidget} -} -\section{Methods}{ -\subsection{Public methods}{ - \itemize{ - \item \href{#method-CommWidget-initialize}{\code{CommWidget$new()}} - \item \href{#method-CommWidget-on_remote_message}{\code{CommWidget$on_remote_message()}} - \item \href{#method-CommWidget-comm_id}{\code{CommWidget$comm_id()}} - \item \href{#method-CommWidget-clone}{\code{CommWidget$clone()}} - } -} -\if{html}{\out{
Inherited methods - -
}} -\if{html}{\out{
}} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-CommWidget-initialize}{}}} -\subsection{\code{CommWidget$new()}}{ - Open a Comm on the `"ywidget"` target and send `SyncStep1`. - \subsection{Usage}{ - \if{html}{\out{
}} - \preformatted{CommWidget$new(ydoc = NULL, comm_metadata = NULL)} - \if{html}{\out{
}} - } - \subsection{Arguments}{ - \if{html}{\out{
}} - \describe{ - \item{\code{ydoc}}{Optional existing `yr::Doc` to adopt.} - \item{\code{comm_metadata}}{Overrides the default metadata sent on comm open.} - } - \if{html}{\out{
}} - } -} - -\if{html}{\out{
}} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-CommWidget-on_remote_message}{}}} -\subsection{\code{CommWidget$on_remote_message()}}{ - Dispatch an incoming `yr::Message` to its sync handler. - Public so hera callbacks can re-enter via a captured `self`, where R6 - bindings are otherwise broken. - \subsection{Usage}{ - \if{html}{\out{
}} - \preformatted{CommWidget$on_remote_message(msg)} - \if{html}{\out{
}} - } - \subsection{Arguments}{ - \if{html}{\out{
}} - \describe{ - \item{\code{msg}}{A `yr::Message`.} - } - \if{html}{\out{
}} - } -} - -\if{html}{\out{
}} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-CommWidget-comm_id}{}}} -\subsection{\code{CommWidget$comm_id()}}{ - The underlying comm id (used to build the display payload). - \subsection{Usage}{ - \if{html}{\out{
}} - \preformatted{CommWidget$comm_id()} - \if{html}{\out{
}} - } -} - -\if{html}{\out{
}} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-CommWidget-clone}{}}} -\subsection{\code{CommWidget$clone()}}{ - The objects of this class are cloneable with this method. - \subsection{Usage}{ - \if{html}{\out{
}} - \preformatted{CommWidget$clone(deep = FALSE)} - \if{html}{\out{
}} - } - \subsection{Arguments}{ - \if{html}{\out{
}} - \describe{ - \item{\code{deep}}{Whether to make a deep clone.} - } - \if{html}{\out{
}} - } -} - -} diff --git a/man/Reactive.Rd b/man/Reactive.Rd index ad5520b..76048c9 100644 --- a/man/Reactive.Rd +++ b/man/Reactive.Rd @@ -5,12 +5,17 @@ \title{Reactive value} \description{ Wraps a storage backend and a [Signal]. `set()` writes the value and emits -on `$signal`, but only when it differs from the current value. +on `$local_changed`, but only when it differs from the current value. If +the storage exposes a `remote_changed` signal, it is re-exposed as +`$remote_changed`; otherwise that field is `NULL`. } \section{Public fields}{ \if{html}{\out{
}} \describe{ - \item{\code{signal}}{[Signal] fired when the value changes.} + \item{\code{local_changed}}{[Signal] fired when the value is changed via `set()`.} + + \item{\code{remote_changed}}{[Signal] from the storage backend, or `NULL` if +the backend does not expose one.} } \if{html}{\out{
}} } @@ -60,8 +65,8 @@ defaults to in-memory storage.} \if{html}{\out{}} \if{latex}{\out{\hypertarget{method-Reactive-set}{}}} \subsection{\code{Reactive$set()}}{ - Set a new value. Emits via `$signal` only if the storage - reports that the value changed. + Set a new value. Emits via `$local_changed` only if the + storage reports that the value changed. \subsection{Usage}{ \if{html}{\out{
}} \preformatted{Reactive$set(value)} diff --git a/man/RemoteLocalStorage.Rd b/man/RemoteLocalStorage.Rd new file mode 100644 index 0000000..4439636 --- /dev/null +++ b/man/RemoteLocalStorage.Rd @@ -0,0 +1,73 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/reactive.R +\name{RemoteLocalStorage} +\alias{RemoteLocalStorage} +\title{Storage backend with a remote-change [Signal].} +\description{ +Extends [LocalStorage] with a public `remote_changed` signal fired when the +value changes for reasons outside of `update()`. The in-memory backend has +no external source, so `remote_changed` never fires; subclasses backed by +shared state emit on it when they observe remote updates. +} +\section{Super class}{ +\code{LocalStorage} -> \code{RemoteLocalStorage} +} +\section{Public fields}{ + \if{html}{\out{
}} + \describe{ + \item{\code{remote_changed}}{[Signal] fired on remote changes to the value.} + } + \if{html}{\out{
}} +} +\section{Methods}{ +\subsection{Public methods}{ + \itemize{ + \item \href{#method-RemoteLocalStorage-initialize}{\code{RemoteLocalStorage$new()}} + \item \href{#method-RemoteLocalStorage-clone}{\code{RemoteLocalStorage$clone()}} + } +} +\if{html}{\out{
Inherited methods +
    +
  • LocalStorage$read()
  • +
  • LocalStorage$update()
  • +
+
}} +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-RemoteLocalStorage-initialize}{}}} +\subsection{\code{RemoteLocalStorage$new()}}{ + Create the backend. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{RemoteLocalStorage$new(value = NULL)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{value}}{Initial value.} + } + \if{html}{\out{
}} + } +} + +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-RemoteLocalStorage-clone}{}}} +\subsection{\code{RemoteLocalStorage$clone()}}{ + The objects of this class are cloneable with this method. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{RemoteLocalStorage$clone(deep = FALSE)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{deep}}{Whether to make a deep clone.} + } + \if{html}{\out{
}} + } +} + +} diff --git a/man/Widget.Rd b/man/Widget.Rd deleted file mode 100644 index 40eb69a..0000000 --- a/man/Widget.Rd +++ /dev/null @@ -1,81 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/widget.R -\name{Widget} -\alias{Widget} -\title{Base class for CRDT-backed widgets} -\description{ -Owns a `yr::Doc` and a [Signal] that fires on remote attribute changes. -Use [make_widget()] to generate subclasses with named CRDT-backed -attributes. -} -\section{Public fields}{ - \if{html}{\out{
}} - \describe{ - \item{\code{ydoc}}{The underlying `yr::Doc`.} - - \item{\code{remote_changed}}{[Signal] emitting `(key, value)` on remote changes.} - } - \if{html}{\out{
}} -} -\section{Methods}{ -\subsection{Public methods}{ - \itemize{ - \item \href{#method-Widget-model_name}{\code{Widget$model_name()}} - \item \href{#method-Widget-initialize}{\code{Widget$new()}} - \item \href{#method-Widget-clone}{\code{Widget$clone()}} - } -} -\if{html}{\out{
}} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-Widget-model_name}{}}} -\subsection{\code{Widget$model_name()}}{ - Read the model name registered in the ydoc `_model_name` text. - \subsection{Usage}{ - \if{html}{\out{
}} - \preformatted{Widget$model_name()} - \if{html}{\out{
}} - } - \subsection{Returns}{ - The class name string stored in the ydoc. - } -} - -\if{html}{\out{
}} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-Widget-initialize}{}}} -\subsection{\code{Widget$new()}}{ - Create a new `Widget`. - \subsection{Usage}{ - \if{html}{\out{
}} - \preformatted{Widget$new(ydoc = NULL)} - \if{html}{\out{
}} - } - \subsection{Arguments}{ - \if{html}{\out{
}} - \describe{ - \item{\code{ydoc}}{An existing `yr::Doc` to adopt, or `NULL` to create a fresh one.} - } - \if{html}{\out{
}} - } -} - -\if{html}{\out{
}} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-Widget-clone}{}}} -\subsection{\code{Widget$clone()}}{ - The objects of this class are cloneable with this method. - \subsection{Usage}{ - \if{html}{\out{
}} - \preformatted{Widget$clone(deep = FALSE)} - \if{html}{\out{
}} - } - \subsection{Arguments}{ - \if{html}{\out{
}} - \describe{ - \item{\code{deep}}{Whether to make a deep clone.} - } - \if{html}{\out{
}} - } -} - -} diff --git a/man/WidgetBase.Rd b/man/WidgetBase.Rd new file mode 100644 index 0000000..913935d --- /dev/null +++ b/man/WidgetBase.Rd @@ -0,0 +1,110 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/widget.R +\name{WidgetBase} +\alias{WidgetBase} +\title{Shared base for `YAttrWidget` and `YRootWidget`} +\description{ +Owns the `yr::Doc` and the per-attribute storage registry, and provides +the common `connect(name = fn, ...)` subscription method. Subclasses +override `register_storage()` to materialize their flavor of storage. +} +\section{Public fields}{ + \if{html}{\out{
}} + \describe{ + \item{\code{ydoc}}{The underlying `yr::Doc`.} + } + \if{html}{\out{
}} +} +\section{Methods}{ +\subsection{Public methods}{ + \itemize{ + \item \href{#method-WidgetBase-initialize}{\code{WidgetBase$new()}} + \item \href{#method-WidgetBase-connect}{\code{WidgetBase$connect()}} + \item \href{#method-WidgetBase-register_storage}{\code{WidgetBase$register_storage()}} + \item \href{#method-WidgetBase-clone}{\code{WidgetBase$clone()}} + } +} +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-WidgetBase-initialize}{}}} +\subsection{\code{WidgetBase$new()}}{ + Create a new `WidgetBase`. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{WidgetBase$new(ydoc = NULL)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{ydoc}}{An existing `yr::Doc` to adopt, or `NULL` to create a fresh one.} + } + \if{html}{\out{
}} + } +} + +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-WidgetBase-connect}{}}} +\subsection{\code{WidgetBase$connect()}}{ + Subscribe callbacks to attribute changes by name. Each + callback fires on both local writes and remote-peer updates (root- + backed attributes do not emit local-changed signals). + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{WidgetBase$connect(...)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{...}}{Named callbacks: `attr_name = function(value_or_event) {}`.} + } + \if{html}{\out{
}} + } + \subsection{Returns}{ + `invisible(self)`. + } +} + +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-WidgetBase-register_storage}{}}} +\subsection{\code{WidgetBase$register_storage()}}{ + Abstract — overridden by subclasses to materialize a + storage backend for one attribute and register it under `name`. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{WidgetBase$register_storage(name, ...)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{name}}{Attribute name.} + \item{\code{...}}{Subclass-specific arguments (e.g. `default` or `prelim`).} + } + \if{html}{\out{
}} + } +} + +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-WidgetBase-clone}{}}} +\subsection{\code{WidgetBase$clone()}}{ + The objects of this class are cloneable with this method. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{WidgetBase$clone(deep = FALSE)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{deep}}{Whether to make a deep clone.} + } + \if{html}{\out{
}} + } +} + +} diff --git a/man/YAttrStorage.Rd b/man/YAttrStorage.Rd new file mode 100644 index 0000000..40825ef --- /dev/null +++ b/man/YAttrStorage.Rd @@ -0,0 +1,106 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/widget.R +\name{YAttrStorage} +\alias{YAttrStorage} +\title{`Reactive` storage backed by a Y.js `attrs` map entry.} +\description{ +Implements the same protocol as [RemoteLocalStorage] (`read()`, `update()`, +and a public `remote_changed` [Signal]). Writes via `update()` use +`LOCAL_ORIGIN`; the owning [YAttrWidget] runs the `_attrs` observer and emits on +`remote_changed` when a peer changes this key. +} +\section{Public fields}{ + \if{html}{\out{
}} + \describe{ + \item{\code{remote_changed}}{[Signal] fired on remote changes to the value.} + } + \if{html}{\out{
}} +} +\section{Methods}{ +\subsection{Public methods}{ + \itemize{ + \item \href{#method-YAttrStorage-initialize}{\code{YAttrStorage$new()}} + \item \href{#method-YAttrStorage-read}{\code{YAttrStorage$read()}} + \item \href{#method-YAttrStorage-update}{\code{YAttrStorage$update()}} + \item \href{#method-YAttrStorage-clone}{\code{YAttrStorage$clone()}} + } +} +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-YAttrStorage-initialize}{}}} +\subsection{\code{YAttrStorage$new()}}{ + Bind the backend to one `attrs` key. If `default` is + non-NULL and the key is currently absent, `default` is written under + it (a non-Prelim is wrapped as `yr::Prelim$any`). + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{YAttrStorage$new(ydoc, attrs, key, default = NULL)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{ydoc}}{The `yr::Doc`.} + \item{\code{attrs}}{Its attribute map.} + \item{\code{key}}{Attribute key to read/write.} + \item{\code{default}}{Default value (Prelim or any R value), or `NULL` to +skip the initial write entirely.} + } + \if{html}{\out{
}} + } +} + +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-YAttrStorage-read}{}}} +\subsection{\code{YAttrStorage$read()}}{ + Return the value stored under `key`. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{YAttrStorage$read()} + \if{html}{\out{
}} + } +} + +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-YAttrStorage-update}{}}} +\subsection{\code{YAttrStorage$update()}}{ + Write `value` under `key`; no-op when unchanged. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{YAttrStorage$update(value)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{value}}{New value.} + } + \if{html}{\out{
}} + } + \subsection{Returns}{ + `TRUE` iff the value was written. + } +} + +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-YAttrStorage-clone}{}}} +\subsection{\code{YAttrStorage$clone()}}{ + The objects of this class are cloneable with this method. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{YAttrStorage$clone(deep = FALSE)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{deep}}{Whether to make a deep clone.} + } + \if{html}{\out{
}} + } +} + +} diff --git a/man/YAttrWidget.Rd b/man/YAttrWidget.Rd new file mode 100644 index 0000000..5c082b9 --- /dev/null +++ b/man/YAttrWidget.Rd @@ -0,0 +1,92 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/widget.R +\name{YAttrWidget} +\alias{YAttrWidget} +\title{Base class for CRDT-backed widgets} +\description{ +Owns a `yr::Doc`, its `_attrs` map, and the per-attribute [YAttrStorage]s. +A single `_attrs` observer dispatches remote changes to each storage's +`remote_changed` signal. Use [make_widget()] to generate subclasses. +} +\section{Super class}{ +\code{WidgetBase} -> \code{YAttrWidget} +} +\section{Methods}{ +\subsection{Public methods}{ + \itemize{ + \item \href{#method-YAttrWidget-initialize}{\code{YAttrWidget$new()}} + \item \href{#method-YAttrWidget-register_storage}{\code{YAttrWidget$register_storage()}} + \item \href{#method-YAttrWidget-clone}{\code{YAttrWidget$clone()}} + } +} +\if{html}{\out{
Inherited methods +
    +
  • WidgetBase$connect()
  • +
+
}} +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-YAttrWidget-initialize}{}}} +\subsection{\code{YAttrWidget$new()}}{ + Create a new `YAttrWidget`. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{YAttrWidget$new(ydoc = NULL)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{ydoc}}{An existing `yr::Doc` to adopt, or `NULL` to create a fresh one.} + } + \if{html}{\out{
}} + } +} + +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-YAttrWidget-register_storage}{}}} +\subsection{\code{YAttrWidget$register_storage()}}{ + Build and register a [YAttrStorage] for an attribute key. + `default` is written under `name` only if the key is currently absent + (so joining from an existing doc preserves remote state). Remote + changes to this key are dispatched to the storage's `remote_changed` + signal. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{YAttrWidget$register_storage(name, default)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{name}}{Attribute key.} + \item{\code{default}}{Default value (Prelim or any R value).} + } + \if{html}{\out{
}} + } + \subsection{Returns}{ + The newly created [YAttrStorage]. + } +} + +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-YAttrWidget-clone}{}}} +\subsection{\code{YAttrWidget$clone()}}{ + The objects of this class are cloneable with this method. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{YAttrWidget$clone(deep = FALSE)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{deep}}{Whether to make a deep clone.} + } + \if{html}{\out{
}} + } +} + +} diff --git a/man/YRootStorage.Rd b/man/YRootStorage.Rd new file mode 100644 index 0000000..f6eed21 --- /dev/null +++ b/man/YRootStorage.Rd @@ -0,0 +1,101 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/widget.R +\name{YRootStorage} +\alias{YRootStorage} +\title{`Reactive`-shaped storage backed by a root CRDT type on a `yr::Doc`.} +\description{ +Each attribute is its own top-level Text/Map/Array root. The kind is +inferred from a [yr::Prelim] passed at construction (only its `is_*()` +type is consulted; the Prelim's content is not written). `read()` returns +the ref; `update()` is unsupported — callers mutate the ref directly. +Remote (non-`LOCAL_ORIGIN`) changes fire `remote_changed`. +} +\section{Public fields}{ + \if{html}{\out{
}} + \describe{ + \item{\code{remote_changed}}{[Signal] fired with the event on remote changes.} + } + \if{html}{\out{
}} +} +\section{Methods}{ +\subsection{Public methods}{ + \itemize{ + \item \href{#method-YRootStorage-initialize}{\code{YRootStorage$new()}} + \item \href{#method-YRootStorage-read}{\code{YRootStorage$read()}} + \item \href{#method-YRootStorage-update}{\code{YRootStorage$update()}} + \item \href{#method-YRootStorage-clone}{\code{YRootStorage$clone()}} + } +} +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-YRootStorage-initialize}{}}} +\subsection{\code{YRootStorage$new()}}{ + Materialize the root ref for `name` from `prelim`'s type. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{YRootStorage$new(ydoc, name, prelim)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{ydoc}}{The `yr::Doc`.} + \item{\code{name}}{Root name on the doc.} + \item{\code{prelim}}{A `yr::Prelim` whose `is_text/is_map/is_array` selects +the root kind. Content is ignored.} + } + \if{html}{\out{
}} + } +} + +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-YRootStorage-read}{}}} +\subsection{\code{YRootStorage$read()}}{ + Return the underlying root ref. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{YRootStorage$read()} + \if{html}{\out{
}} + } +} + +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-YRootStorage-update}{}}} +\subsection{\code{YRootStorage$update()}}{ + Unsupported — root storage is read-only at this layer. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{YRootStorage$update(value)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{value}}{Ignored.} + } + \if{html}{\out{
}} + } +} + +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-YRootStorage-clone}{}}} +\subsection{\code{YRootStorage$clone()}}{ + The objects of this class are cloneable with this method. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{YRootStorage$clone(deep = FALSE)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{deep}}{Whether to make a deep clone.} + } + \if{html}{\out{
}} + } +} + +} diff --git a/man/YRootWidget.Rd b/man/YRootWidget.Rd new file mode 100644 index 0000000..224a98b --- /dev/null +++ b/man/YRootWidget.Rd @@ -0,0 +1,73 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/widget.R +\name{YRootWidget} +\alias{YRootWidget} +\title{Base class for root-type-backed widgets} +\description{ +Owns a `yr::Doc` and one CRDT root per attribute (Text/Map/Array). Each +root carries its own observer that emits the attribute's +[YRootStorage]`$remote_changed` signal on non-`LOCAL_ORIGIN` events. Use +[make_widget()] with `inherit = YRootWidget` to generate subclasses. +} +\section{Super class}{ +\code{WidgetBase} -> \code{YRootWidget} +} +\section{Methods}{ +\subsection{Public methods}{ + \itemize{ + \item \href{#method-YRootWidget-register_storage}{\code{YRootWidget$register_storage()}} + \item \href{#method-YRootWidget-clone}{\code{YRootWidget$clone()}} + } +} +\if{html}{\out{
Inherited methods +
    +
  • WidgetBase$connect()
  • +
  • WidgetBase$initialize()
  • +
+
}} +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-YRootWidget-register_storage}{}}} +\subsection{\code{YRootWidget$register_storage()}}{ + Build and register a [YRootStorage] for an attribute name. + The root kind is selected from `prelim`'s `is_text/is_map/is_array`. + The storage installs its own per-root observer that filters to + non-`LOCAL_ORIGIN` events and emits on `remote_changed`. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{YRootWidget$register_storage(name, prelim)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{name}}{Root name on the doc.} + \item{\code{prelim}}{A `yr::Prelim` whose kind selects the root type.} + } + \if{html}{\out{
}} + } + \subsection{Returns}{ + The newly created [YRootStorage]. + } +} + +\if{html}{\out{
}} +\if{html}{\out{}} +\if{latex}{\out{\hypertarget{method-YRootWidget-clone}{}}} +\subsection{\code{YRootWidget$clone()}}{ + The objects of this class are cloneable with this method. + \subsection{Usage}{ + \if{html}{\out{
}} + \preformatted{YRootWidget$clone(deep = FALSE)} + \if{html}{\out{
}} + } + \subsection{Arguments}{ + \if{html}{\out{
}} + \describe{ + \item{\code{deep}}{Whether to make a deep clone.} + } + \if{html}{\out{
}} + } +} + +} diff --git a/man/YdocStorage.Rd b/man/YdocStorage.Rd deleted file mode 100644 index 2995e9b..0000000 --- a/man/YdocStorage.Rd +++ /dev/null @@ -1,96 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/widget.R -\name{YdocStorage} -\alias{YdocStorage} -\title{`Reactive` storage backed by a Y.js `_attrs` map entry. Writes use -`LOCAL_ORIGIN` so the ydoc observer does not echo them back as remote -changes.} -\description{ -`Reactive` storage backed by a Y.js `_attrs` map entry. Writes use -`LOCAL_ORIGIN` so the ydoc observer does not echo them back as remote -changes. -} -\section{Methods}{ -\subsection{Public methods}{ - \itemize{ - \item \href{#method-YdocStorage-initialize}{\code{YdocStorage$new()}} - \item \href{#method-YdocStorage-read}{\code{YdocStorage$read()}} - \item \href{#method-YdocStorage-update}{\code{YdocStorage$update()}} - \item \href{#method-YdocStorage-clone}{\code{YdocStorage$clone()}} - } -} -\if{html}{\out{
}} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-YdocStorage-initialize}{}}} -\subsection{\code{YdocStorage$new()}}{ - Bind the backend to one `_attrs` key. - \subsection{Usage}{ - \if{html}{\out{
}} - \preformatted{YdocStorage$new(ydoc, attrs, key)} - \if{html}{\out{
}} - } - \subsection{Arguments}{ - \if{html}{\out{
}} - \describe{ - \item{\code{ydoc}}{The `yr::Doc`.} - \item{\code{attrs}}{Its `_attrs` map.} - \item{\code{key}}{Attribute key to read/write.} - } - \if{html}{\out{
}} - } -} - -\if{html}{\out{
}} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-YdocStorage-read}{}}} -\subsection{\code{YdocStorage$read()}}{ - Return the value stored under `key`. - \subsection{Usage}{ - \if{html}{\out{
}} - \preformatted{YdocStorage$read()} - \if{html}{\out{
}} - } -} - -\if{html}{\out{
}} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-YdocStorage-update}{}}} -\subsection{\code{YdocStorage$update()}}{ - Write `value` under `key`; no-op when unchanged. - \subsection{Usage}{ - \if{html}{\out{
}} - \preformatted{YdocStorage$update(value)} - \if{html}{\out{
}} - } - \subsection{Arguments}{ - \if{html}{\out{
}} - \describe{ - \item{\code{value}}{New value.} - } - \if{html}{\out{
}} - } - \subsection{Returns}{ - `TRUE` iff the value was written. - } -} - -\if{html}{\out{
}} -\if{html}{\out{}} -\if{latex}{\out{\hypertarget{method-YdocStorage-clone}{}}} -\subsection{\code{YdocStorage$clone()}}{ - The objects of this class are cloneable with this method. - \subsection{Usage}{ - \if{html}{\out{
}} - \preformatted{YdocStorage$clone(deep = FALSE)} - \if{html}{\out{
}} - } - \subsection{Arguments}{ - \if{html}{\out{
}} - \describe{ - \item{\code{deep}}{Whether to make a deep clone.} - } - \if{html}{\out{
}} - } -} - -} diff --git a/man/make_comm_widget.Rd b/man/make_comm_widget.Rd index ac200a7..999517e 100644 --- a/man/make_comm_widget.Rd +++ b/man/make_comm_widget.Rd @@ -2,21 +2,32 @@ % Please edit documentation in R/comm.R \name{make_comm_widget} \alias{make_comm_widget} -\title{Generate a CommWidget subclass with named CRDT-backed attributes} +\title{Generate a Comm-backed widget subclass with named CRDT-backed attributes} \usage{ -make_comm_widget(classname, ..., inherit = CommWidget) +make_comm_widget( + classname, + ..., + comm_metadata = NULL, + inherit = CommAttrWidget +) } \arguments{ \item{classname}{Name of the generated R6 class.} -\item{...}{Named default values, one per attribute.} +\item{...}{Named default values, one per attribute. For +`inherit = YAttrWidget`, any R value (Prelims are passed through, others +are wrapped as `yr::Prelim$any`). For `inherit = YRootWidget`, a +[yr::Prelim] whose kind selects the root type. Each default may be +overridden per-instance via `$new( = ...)`; the override seeds a +fresh ydoc and is ignored when joining an existing one.} -\item{inherit}{Parent R6 class.} +\item{inherit}{Parent R6 class — [YAttrWidget] or [YRootWidget].} } \value{ -An [R6::R6Class] generator producing [CommWidget] subclasses. +An [R6::R6Class] generator producing Comm-backed widget subclasses. } \description{ -Like [make_widget()], but the generated class inherits from [CommWidget], +Like [make_widget()], but the generated class inherits from a Comm-backed +base (default [CommAttrWidget]; pass [CommRootWidget] for root storage), so each instance opens a Jupyter Comm and syncs its ydoc over it. } diff --git a/man/make_widget.Rd b/man/make_widget.Rd index 3f7f280..6f0e3bc 100644 --- a/man/make_widget.Rd +++ b/man/make_widget.Rd @@ -4,14 +4,19 @@ \alias{make_widget} \title{Generate a Widget subclass with CRDT-backed attributes} \usage{ -make_widget(classname, ..., inherit = Widget) +make_widget(classname, ..., inherit = YAttrWidget) } \arguments{ \item{classname}{Name of the generated R6 class.} -\item{...}{Named default values, one per attribute.} +\item{...}{Named default values, one per attribute. For +`inherit = YAttrWidget`, any R value (Prelims are passed through, others +are wrapped as `yr::Prelim$any`). For `inherit = YRootWidget`, a +[yr::Prelim] whose kind selects the root type. Each default may be +overridden per-instance via `$new( = ...)`; the override seeds a +fresh ydoc and is ignored when joining an existing one.} -\item{inherit}{Parent R6 class.} +\item{inherit}{Parent R6 class — [YAttrWidget] or [YRootWidget].} } \value{ An [R6::R6Class] generator. Generated classes add a static @@ -19,9 +24,13 @@ An [R6::R6Class] generator. Generated classes add a static alongside the standard `$new(...)`. } \description{ -Each named attribute becomes an active binding whose reads and writes go -through the widget's ydoc `_attrs` map, and which emits its [Signal] when a -remote peer changes the value. +Each named attribute becomes an active binding backed by the parent +class's storage. With `inherit = YAttrWidget` (the default), reads and +writes go through the ydoc's `_attrs` map and `connect()` callbacks fire +on both local writes and remote-peer updates. With `inherit = YRootWidget`, each +attribute is its own top-level Text/Map/Array root; defaults must be +[yr::Prelim]s (only their kind is used — content is not written) and +`connect()` fires on remote-peer updates only. } \examples{ MyWidget <- make_widget("MyWidget", foo = "", bar = 0L) @@ -31,4 +40,16 @@ w$foo # reads from ydoc w$foo <- "hi" # writes to ydoc w$connect(foo = function(v) cat("foo changed:", v, "\n")) +\dontrun{ +MyDoc <- make_widget( + "MyDoc", + title = yr::Prelim$text(""), + items = yr::Prelim$array(list(), recursive = FALSE), + inherit = YRootWidget +) +d <- MyDoc$new() +d$ydoc$with_transaction(function(t) d$title$push(t, "hi"), mutable = TRUE) +d$connect(title = function(event) cat("title changed\n")) +} + } diff --git a/pixi.lock b/pixi.lock index 7ef50e5..2d104d5 100644 --- a/pixi.lock +++ b/pixi.lock @@ -1,28 +1,23 @@ -version: 6 +version: 7 +platforms: +- name: linux-64 +- name: osx-64 +- name: osx-arm64 +- name: win-64 environments: default: channels: - url: https://conda.anaconda.org/conda-forge/ - options: - pypi-prerelease-mode: if-necessary-or-explicit packages: linux-64: - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/_r-mutex-1.0.1-anacondar_1.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_102.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/bwidget-1.10.1-ha770c72_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-hbd8a1cb_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.4-he90730b_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/curl-8.20.0-hcf29cc6_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.17.1-h27c8c51_0.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-hc364b38_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.16-hb03c661_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he0086c7_19.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-15.2.0-h281d09f_19.conda @@ -31,7 +26,6 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-15.2.0-hda75c37_19.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-14.2.0-h6083320_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.22.2-ha1258a1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda @@ -42,12 +36,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.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.8.0-hecca717_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.8.1-hecca717_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.14.3-ha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.14.3-h73754d4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-hcc6f6b0_119.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_19.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_19.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.2.0-h69a702a_19.conda @@ -62,19 +55,17 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.33-pthreads_h94d23a6_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.58-h421ea60_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_19.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.21-h280c20c_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.22-h280c20c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_119.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_19.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.1-h9d88235_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.42-h5347b49_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.42.1-h5347b49_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/make-4.4.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.6-hdb14827_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.2-h35e630c_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pango-1.56.4-hda50119_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.47-haa7fec5_0.conda @@ -83,30 +74,21 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/r-base-4.5.3-h15dba0b_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-base64enc-0.1_6-r45h54b55ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-cli-3.6.6-r45h3697838_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-digest-0.6.39-r45h3697838_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-ellipsis-0.3.3-r45h54b55ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-fansi-1.0.7-r45h54b55ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-fastmap-1.2.0-r45h3697838_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-glue-1.8.1-r45h54b55ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-htmltools-0.5.9-r45h3697838_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-jsonlite-2.0.0-r45h54b55ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-rlang-1.2.0-r45h3697838_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-utf8-1.2.6-r45h54b55ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-vctrs-0.7.3-r45h3697838_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/r-yr-0.1.2-r45h5a63543_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/r-yr-0.1.4-r45h5a63543_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.3-h853b02a_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/sed-4.10-h19d0853_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tktable-2.10-h5a7a40f_8.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-6.0.5-hbf34205_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-r-0.11.0-r45h92b7d08_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-zmq-4.0.0-ha280ed4_0.conda @@ -118,15 +100,56 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.7-hb03c661_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.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/zeromq-4.3.5-h41580af_10.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h09e67af_11.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/_r-mutex-1.0.1-anacondar_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.5.20-hbd8a1cb_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/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-hc364b38_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-hcc6f6b0_119.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_119.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda osx-64: - - conda: https://conda.anaconda.org/conda-forge/osx-64/_openmp_mutex-4.5-7_kmp_llvm.conda - conda: https://conda.anaconda.org/conda-forge/noarch/_r-mutex-1.0.1-anacondar_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.5.20-hbd8a1cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_osx-64-22.1.5-hcf80936_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-22.1.5-h694c41f_1.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/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-hc364b38_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-22.1.6-h707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-64-14.3.0-h660b60f_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-64-26.0-h62b880e_7.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/_openmp_mutex-4.5-7_kmp_llvm.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/bwidget-1.10.1-h694c41f_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_9.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.6-hb5e19a0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-hbd8a1cb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.4-h7656bdc_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1030.6.3-llvm22_1_h0a1bb1c_4.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_impl_osx-64-1030.6.3-llvm22_1_h8fe25a2_4.conda @@ -140,16 +163,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-22.1.5-h0037788_31.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-22.1.5-h694c41f_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt22-22.1.5-h1637cdf_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_osx-64-22.1.5-hcf80936_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-22.1.5-h694c41f_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/curl-8.20.0-h8f0b9e4_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.17.1-h7a4440b_0.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-hc364b38_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.16-h8616949_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/gfortran_impl_osx-64-14.3.0-h94fe04d_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/gfortran_osx-64-14.3.0-h3223c34_0.conda @@ -170,20 +185,18 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-22.1.5-default_h2429e1b_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libcompiler-rt-22.1.5-h1637cdf_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.20.0-h8f0b9e4_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-22.1.5-h19cb2f5_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-22.1.5-h7c275be_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-22.1.5-h707e725_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-22.1.6-h19cb2f5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-22.1.6-h7c275be_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.25-h517ebb2_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda - 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.8.0-hcc62823_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.8.1-hcc62823_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.5.2-hd1f9c09_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype-2.14.3-h694c41f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype6-2.14.3-h58fbd8d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libgcc-15.2.0-h08519bb_19.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-0.25.1-h3184127_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-15.2.0-h7e5c614_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-64-14.3.0-h660b60f_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-15.2.0-hd16e46c_19.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.88.1-hf28f236_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.18-h57a12c2_2.conda @@ -196,21 +209,20 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.33-openmp_h9e49c7b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.58-he930e7c_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libsigtool-0.1.3-hc0f2934_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.21-hc6ced15_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.22-ha3d0635_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-hed3591d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.7.1-ha0a348c_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.6.0-hb807250_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.3-h7a90416_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.3-h953d39d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.2-hbb4bfdb_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-22.1.5-h0d3cbff_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-22.1.6-h0d3cbff_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-22-22.1.5-hc181bea_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-22.1.5-h1637cdf_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/make-4.4.1-h00291cd_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.4.0-h31caf2d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.2-h31caf2d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.6-hcc0dc9a_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.6.2-hc881268_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/pango-1.56.4-hf280016_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.47-h13923f0_0.conda @@ -218,44 +230,55 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/r-base-4.5.3-h6422bf8_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/r-base64enc-0.1_6-r45hdab4d57_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/r-cli-3.6.6-r45h384437d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/r-digest-0.6.39-r45ha730edb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/r-ellipsis-0.3.3-r45h8eed41d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/r-fansi-1.0.7-r45h735ac91_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/r-fastmap-1.2.0-r45ha730edb_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/r-glue-1.8.1-r45h8eed41d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/r-htmltools-0.5.9-r45ha730edb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/r-jsonlite-2.0.0-r45h735ac91_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/r-rlang-1.2.0-r45h384437d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/r-utf8-1.2.6-r45h735ac91_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/r-vctrs-0.7.3-r45h384437d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-yr-0.1.2-r45he03009a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-yr-0.1.4-r45he03009a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.3-h68b038d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-64-26.0-h62b880e_7.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-codesign-0.1.3-hc0f2934_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1600.0.11.8-h8d8e812_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h7142dee_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tktable-2.10-h8925a82_8.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-6.0.5-hebe015c_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-r-0.11.0-r45h45edcf1_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-zmq-4.0.0-h695af4d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-h27d9b8f_10.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-h84953be_11.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.2-hbb4bfdb_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.7-h3eecb57_6.conda osx-arm64: - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/_openmp_mutex-4.5-7_kmp_llvm.conda - conda: https://conda.anaconda.org/conda-forge/noarch/_r-mutex-1.0.1-anacondar_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.5.20-hbd8a1cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_osx-arm64-22.1.5-h7e67a1e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-22.1.5-hce30654_1.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/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-hc364b38_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-22.1.6-h707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-arm64-14.3.0-hc965647_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-arm64-26.0-ha3f98da_7.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/_openmp_mutex-4.5-7_kmp_llvm.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bwidget-1.10.1-hce30654_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_9.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.6-hc919400_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-hbd8a1cb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.4-he0f2337_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-1030.6.3-llvm22_1_hbe26303_4.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_impl_osx-arm64-1030.6.3-llvm22_1_hb5e89dc_4.conda @@ -269,16 +292,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-22.1.5-h1bea106_31.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-22.1.5-hce30654_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt22-22.1.5-hd34ed20_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_osx-arm64-22.1.5-h7e67a1e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-22.1.5-hce30654_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/curl-8.20.0-hd5a2499_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.17.1-h2b252f5_0.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-hc364b38_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.16-hc919400_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_impl_osx-arm64-14.3.0-h6d03799_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_osx-arm64-14.3.0-h3c33bd0_0.conda @@ -299,20 +314,18 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-22.1.5-default_h6dd9417_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcompiler-rt-22.1.5-hd34ed20_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.20.0-hd5a2499_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-22.1.5-h55c6f16_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-22.1.5-h6dc3340_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-22.1.5-h707e725_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-22.1.6-h55c6f16_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-22.1.6-h6dc3340_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.25-hc11a715_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda - 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.8.0-hf6b4638_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.8.1-hf6b4638_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-hcf2aa1b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype-2.14.3-hce30654_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype6-2.14.3-hdfa99f5_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgcc-15.2.0-hcbb3090_19.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-0.25.1-h493aca8_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-15.2.0-h07b0088_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-arm64-14.3.0-hc965647_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-15.2.0-hdae7583_19.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.88.1-ha08bb59_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.18-h23cfdf5_2.conda @@ -325,21 +338,20 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.33-openmp_he657e61_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.58-h132b30e_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsigtool-0.1.3-h98dc951_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.21-h1a92334_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.22-h1a92334_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h1590b86_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.1-h4030677_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.6.0-h07db88b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-16-2.15.3-h5ef1a60_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.15.3-h5654f7c_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.2-h8088a28_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-22.1.5-hc7d1edf_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-22.1.6-hc7d1edf_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-22-22.1.5-hb545844_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-22.1.5-hd34ed20_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/make-4.4.1-hc9fafa5_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.4.0-h169892a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.2.2-h6bc93b0_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.6-h1d4f5a5_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.2-hd24854e_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.56.4-hf80efc4_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.47-h30297fc_0.conda @@ -347,53 +359,60 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base-4.5.3-h35b0bb1_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base64enc-0.1_6-r45hbe92478_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-cli-3.6.6-r45h1380947_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-digest-0.6.39-r45hc1cd577_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ellipsis-0.3.3-r45hbe92478_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fansi-1.0.7-r45h6168396_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fastmap-1.2.0-r45hc1cd577_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-glue-1.8.1-r45hbe92478_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-htmltools-0.5.9-r45hc1cd577_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-jsonlite-2.0.0-r45h6168396_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rlang-1.2.0-r45h1380947_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-utf8-1.2.6-r45h6168396_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-vctrs-0.7.3-r45h1380947_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-yr-0.1.2-r45h4bc8d99_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-yr-0.1.4-r45h4bc8d99_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.3-h46df422_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-arm64-26.0-ha3f98da_7.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-codesign-0.1.3-h98dc951_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1600.0.11.8-h997e182_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h010d191_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tktable-2.10-h28d2b5e_8.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-6.0.5-h3feff0a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-r-0.11.0-r45he709540_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-zmq-4.0.0-h5cc99d8_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-h4818236_10.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-h10816f8_11.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.3.2-h8088a28_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.7-hbf9d68e_6.conda win-64: - - conda: https://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-20_gnu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/_r-mutex-1.0.1-anacondar_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/binutils_impl_win-64-2.45.1-default_ha84baeb_102.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/bwidget-1.10.1-h57928b3_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_9.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-h4c7d964_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.4-h477c42c_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/curl-8.20.0-h8206538_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.5.20-h4c7d964_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.17.1-hd47e2ca_0.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-hc364b38_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_win-64-15.2.0-hbb59886_119.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_win-64-15.2.0-h0a72980_119.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/m2w64-sysroot_win-64-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-crt-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-headers-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-windows-default-manifest-6.4-he206cdd_7.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-winpthreads-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-20_gnu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/binutils_impl_win-64-2.45.1-default_ha84baeb_102.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/bwidget-1.10.1-h57928b3_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_9.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.4-h477c42c_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/curl-8.20.0-h8206538_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.17.1-hd47e2ca_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/gcc_impl_win-64-15.2.0-h062b9a2_19.conda - conda: https://conda.anaconda.org/conda-forge/win-64/gfortran_impl_win-64-15.2.0-h0e079bb_19.conda - conda: https://conda.anaconda.org/conda-forge/win-64/gsl-2.7-hdfb1a43_0.tar.bz2 @@ -406,12 +425,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.11.0-7_h2a3cdd5_mkl.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.20.0-h8206538_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.25-h51727cc_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.8.0-hac47afa_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.8.1-hac47afa_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.5.2-h3d046cb_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libfreetype-2.14.3-h57928b3_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_win-64-15.2.0-hbb59886_119.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libgfortran-15.2.0-h719f0c7_19.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libgfortran5-15.2.0-h44d81a7_19.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libglib-2.88.1-h7ce1215_2.conda @@ -423,159 +441,76 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.11.0-7_hf9ab0e9_mkl.conda - conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.3-hfd05255_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.58-h7351971_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.21-h6a83c73_3.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.22-h6a83c73_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libstdcxx-15.2.0-hae5796f_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_win-64-15.2.0-h0a72980_119.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.1-h8f73337_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.2-hfd05255_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-22.1.5-h4fa8253_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-22.1.6-h4fa8253_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/m2-conda-epoch-20250515-0_x86_64.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/m2w64-sysroot_win-64-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-crt-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-headers-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-windows-default-manifest-6.4-he206cdd_7.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-winpthreads-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2026.0.0-hac47afa_906.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/onemkl-license-2026.0.0-h57928b3_906.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2026.0.0-hac47afa_908.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/onemkl-license-2026.0.0-h57928b3_908.conda - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.6.2-hf411b9b_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.47-hd2b5f0e_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/pixman-0.46.4-h5112557_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/r-base-4.5.3-h9c56521_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/r-base64enc-0.1_6-r45heceb674_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/r-cli-3.6.6-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/r-digest-0.6.39-r45hd8a2815_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/r-ellipsis-0.3.3-r45heceb674_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/r-fansi-1.0.7-r45heceb674_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/r-fastmap-1.2.0-r45hd8a2815_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/r-glue-1.8.1-r45heceb674_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/r-htmltools-0.5.9-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda - conda: https://conda.anaconda.org/conda-forge/win-64/r-jsonlite-2.0.0-r45heceb674_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/r-rlang-1.2.0-r45hd8a2815_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/r-utf8-1.2.6-r45heceb674_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/r-vctrs-0.7.3-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-yr-0.1.2-r45hc352b38_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-yr-0.1.4-r45hc352b38_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2023.0.0-hd3d4ead_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h6ed50ae_3.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tktable-2.10-h2df95b8_8.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.5-h1b7c187_36.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_36.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_36.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.51.36231-h84cd919_36.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.5-h1b7c187_37.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_37.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_37.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.51.36231-h84cd919_37.conda - conda: https://conda.anaconda.org/conda-forge/win-64/xeus-6.0.5-h477610d_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/xeus-r-0.11.0-r45h72f11de_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/xeus-zmq-4.0.0-hecdc818_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-h507cc87_10.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-h3a581c9_11.conda - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.7-h534d264_6.conda dev: channels: - url: https://conda.anaconda.org/conda-forge/ - options: - pypi-prerelease-mode: if-necessary-or-explicit packages: linux-64: - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/_r-mutex-1.0.1-anacondar_1.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/air-0.9.0-hb17b654_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.13.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-25.1.0-py314h5bd0f2a_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.4.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.3.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-26.1.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.18.0-pyhcf101f3_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/backports.zstd-1.5.0-py314h680f03e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.3-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_102.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.3.0-pyhcf101f3_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.3.0-hbca2aae_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.2.0-py314h3de4e8d_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/bwidget-1.10.1-ha770c72_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-hbd8a1cb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.4-he90730b_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2026.4.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-2.0.0-py314h4a8dc5f_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.5.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.4-py314hd8ed1ab_100.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/curl-8.20.0-hcf29cc6_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.20-py314h42812f9_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.3.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.29.0-pyhd8ed1ab_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.17.1-h27c8c51_0.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-hc364b38_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.16-hb03c661_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he0086c7_19.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-15.2.0-h281d09f_19.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.14-hecca717_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gsl-2.7-he838d99_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-15.2.0-hda75c37_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhcf101f3_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-14.2.0-h6083320_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.19-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.13-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.8.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.2.0-pyha191276_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.13.0-pyh53cf698_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.14.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpointer-3.1.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.26.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.26.0-hcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.3.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.8.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.18.2-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.4-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.5.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-kernelspy-4.0.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.28.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.22.2-ha1258a1_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/lark-1.3.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.1.0-hdb68285_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.11.0-7_h4a7cf45_openblas.conda @@ -584,12 +519,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.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.8.0-hecca717_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.8.1-hecca717_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.14.3-ha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.14.3-h73754d4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-hcc6f6b0_119.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_19.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_19.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.2.0-h69a702a_19.conda @@ -606,14 +540,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.33-pthreads_h94d23a6_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.58-h421ea60_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_19.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.21-h280c20c_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.22-h280c20c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.53.1-h0c1763c_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_119.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_19.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.1-h9d88235_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.42-h5347b49_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.42.1-h5347b49_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.51.0-hb03c661_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda @@ -622,191 +555,74 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/make-4.4.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.3-py314h67df5f8_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.2.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.17.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.6-hdb14827_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.2-h35e630c_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.9.0.2-ha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/pango-1.56.4-hda50119_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.7-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.47-haa7fec5_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.46.4-h54a6638_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.9.6-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.6.0-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.25.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.2.2-py314h0f05182_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.14.4-habeac84_100_cp314.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-discovery-1.3.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.4-h4df99d1_100.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-3.2.1-pyh332efcf_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2026.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.14.5-habeac84_100_cp314.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.3-py314h67df5f8_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-27.1.0-py312hda471dd_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-askpass-1.2.1-r44h54b55ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-assertthat-0.2.1-r44hc72bb7e_6.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-base-4.4.3-h15dba0b_9.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-base64enc-0.1_6-r44h54b55ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-brew-1.0_10-r44hc72bb7e_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-brio-1.1.5-r44h54b55ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-bslib-0.11.0-r44hc72bb7e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-cachem-1.1.0-r44h54b55ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-callr-3.7.6-r44hc72bb7e_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-cli-3.6.6-r44h3697838_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-cliapp-0.1.2-r44hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-clipr-0.8.0-r44hc72bb7e_4.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-commonmark-2.0.0-r44h54b55ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-cpp11-0.5.5-r44h785f33e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r44hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-credentials-2.0.3-r44hc72bb7e_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-curl-7.1.0-r44h10955f1_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-desc-1.4.3-r44hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-devtools-2.5.2-r44hc72bb7e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-diffobj-0.3.6-r44h54b55ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-digest-0.6.39-r44h3697838_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-downlit-0.4.5-r44hc72bb7e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-ellipsis-0.3.3-r44h54b55ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r44hc72bb7e_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-fansi-1.0.7-r44h54b55ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-fastmap-1.2.0-r44h3697838_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-filelock-1.0.3-r44h54b55ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-fontawesome-0.5.3-r44hc72bb7e_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-fs-2.1.0-r44h3697838_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-gert-2.3.1-r44h5e22a44_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-gh-1.5.0-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-gitcreds-0.1.2-r44hc72bb7e_4.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-glue-1.8.1-r44h54b55ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-highr-0.12-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-hms-1.1.4-r44hc72bb7e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-htmltools-0.5.9-r44h3697838_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-htmlwidgets-1.6.4-r44h785f33e_4.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-httpuv-1.6.17-r44h6d565e7_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-httr2-1.2.2-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-ini-0.3.1-r44hc72bb7e_1007.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r44hd8ed1ab_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-jquerylib-0.1.4-r44hc72bb7e_4.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-jsonlite-2.0.0-r44h54b55ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-knitr-1.51-r44hc72bb7e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-later-1.4.8-r44h3697838_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r44hc72bb7e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-lpsolve-5.6.23-r44h54b55ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-magrittr-2.0.5-r44h54b55ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-memoise-2.0.1-r44hc72bb7e_4.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-mime-0.13-r44h54b55ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-miniui-0.1.2-r44hc72bb7e_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-openssl-2.4.1-r44h68c19f5_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-otel-0.2.0-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pak-0.9.5-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgbuild-1.4.8-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgcache-2.2.4-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgconfig-2.0.3-r44hc72bb7e_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgdown-2.2.0-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgload-1.5.2-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-praise-1.0.0-r44hc72bb7e_1009.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettycode-1.1.0-r44hc72bb7e_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettyunits-1.2.0-r44hc72bb7e_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-processx-3.9.0-r44h54b55ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-profvis-0.4.0-r44h54b55ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-progress-1.2.3-r44hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-promises-1.5.0-r44hc72bb7e_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-ps-1.9.3-r44h54b55ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-purrr-1.2.2-r44h54b55ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r44hc72bb7e_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-ragg-1.5.2-r44h9f1dc4d_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-rappdirs-0.3.4-r44h54b55ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rcmdcheck-1.4.0-r44h785f33e_4.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-rcpp-1.1.1_1.1-r44h3697838_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rematch2-2.1.2-r44hc72bb7e_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r44h785f33e_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-rlang-1.2.0-r44h3697838_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rmarkdown-2.31-r44hc72bb7e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-roxygen2-8.0.0-r44h3697838_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rprojroot-2.1.1-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rstudioapi-0.18.0-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rversions-3.0.0-r44hc72bb7e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-sass-0.4.10-r44h3697838_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-selectr-0.5_1-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-sessioninfo-1.2.3-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-shiny-1.13.0-r44h785f33e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-sourcetools-0.1.7_2-r44h3697838_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-stringi-1.8.7-r44h3d52c89_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-stringr-1.6.0-r44h785f33e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-sys-3.4.3-r44h54b55ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-systemfonts-1.3.2-r44h74f4acd_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-testthat-3.3.2-r44h3697838_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-textshaping-1.0.5-r44h74f4acd_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-tibble-3.3.1-r44h54b55ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-tinytex-0.59-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-urlchecker-1.0.1-r44hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-usethis-3.2.1-r44hc72bb7e_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-utf8-1.2.6-r44h54b55ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-vctrs-0.7.3-r44h3697838_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-waldo-0.6.2-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-whisker-0.4.1-r44hc72bb7e_3.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-withr-3.0.2-r44hc72bb7e_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-xfun-0.57-r44h3697838_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-xml2-1.5.2-r44he78afff_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-xopen-1.0.1-r44hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-xtable-1.8_8-r44hc72bb7e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-yaml-2.3.12-r44h54b55ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/r-yr-0.1.2-r44h0f53718_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/r-yr-0.1.4-r44h0f53718_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/r-zip-2.3.3-r44h54b55ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.3-h853b02a_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.34.2-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3987-syntax-1.1.0-pyhe01879c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.30.0-py314h2e6c369_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/sed-4.10-h19d0853_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-2.1.0-pyha191276_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyhc90fa1f_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tktable-2.10-h5a7a40f_8.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.4.1-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.5.5-py314h5bd0f2a_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.15.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/typos-1.46.2-hb17b654_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.1.0-py314h9891dd4_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-21.3.3-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-25.10.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.9.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-6.0.5-hbf34205_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-r-0.11.0-r44h55ad566_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-zmq-4.0.0-ha280ed4_0.conda @@ -819,20 +635,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.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/yaml-0.2.5-h280c20c_3.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/yjs-widgets-0.5.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/yjs-widgets-collection-0.5.1-pyh09b8992_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h41580af_10.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h09e67af_11.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda - osx-64: - - conda: https://conda.anaconda.org/conda-forge/osx-64/_openmp_mutex-4.5-7_kmp_llvm.conda - conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/_r-mutex-1.0.1-anacondar_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/air-0.9.0-h19f9e61_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.13.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/argon2-cffi-bindings-25.1.0-py314h6482030_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.4.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.3.0-pyhcf101f3_0.conda @@ -842,36 +650,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.3-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.3.0-pyhcf101f3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.3.0-hbca2aae_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.2.0-py314h3262eb8_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/bwidget-1.10.1-h694c41f_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_9.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.6-hb5e19a0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-hbd8a1cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.5.20-hbd8a1cb_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.4-h7656bdc_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1030.6.3-llvm22_1_h0a1bb1c_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_impl_osx-64-1030.6.3-llvm22_1_h8fe25a2_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1030.6.3-llvm22_1_h0a1bb1c_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2026.4.22-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-2.0.0-py314h8ca4d5a_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.5.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-22-22.1.5-default_h3b8fe2e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-22.1.5-default_nocfg_ha939c3f_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-scan-deps-22.1.5-default_h9399c5b_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-22.1.5-default_hb18168d_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-22.1.5-h0037788_31.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-22.1.5-default_hb18168d_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-22.1.5-h0037788_31.conda - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-22.1.5-h694c41f_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt22-22.1.5-h1637cdf_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_osx-64-22.1.5-hcf80936_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-22.1.5-h694c41f_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.4-py314hd8ed1ab_100.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/curl-8.20.0-h8f0b9e4_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.20-py314h2f9fc56_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.5-py314hd8ed1ab_100.conda - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.3.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda @@ -882,31 +668,21 @@ environments: - 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.17.1-h7a4440b_0.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-hc364b38_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.16-h8616949_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gfortran_impl_osx-64-14.3.0-h94fe04d_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gfortran_osx-64-14.3.0-h3223c34_0.conda - - 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.14-h21dd04a_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/gsl-2.7-h93259b0_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhcf101f3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-14.2.0-hf0bc557_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-78.3-h25d91c4_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.19-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.13-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.15-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.8.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.2.0-pyh5552912_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.2.0-pyha191276_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.13.0-pyh53cf698_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_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/isoduration-20.11.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda @@ -925,242 +701,120 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-kernelspy-4.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.28.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.22.2-h207b36a_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda - conda: https://conda.anaconda.org/conda-forge/noarch/lark-1.3.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-956.6-llvm22_1_hc399b6d_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-956.6-llvm22_1_h163eae7_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.1.0-h35c7297_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libasprintf-0.25.1-h3184127_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.11.0-7_he492b99_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.11.0-7_h9b27e0a_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp22.1-22.1.5-default_h9399c5b_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-22.1.5-default_h2429e1b_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libcompiler-rt-22.1.5-h1637cdf_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.20.0-h8f0b9e4_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-22.1.5-h19cb2f5_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-22.1.5-h7c275be_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-22.1.5-h707e725_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.25-h517ebb2_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda - - 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.8.0-hcc62823_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.5.2-hd1f9c09_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype-2.14.3-h694c41f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype6-2.14.3-h58fbd8d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgcc-15.2.0-h08519bb_19.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-0.25.1-h3184127_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-15.2.0-h7e5c614_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-64-14.3.0-h660b60f_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-15.2.0-hd16e46c_19.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libgit2-1.9.3-h415d65b_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.88.1-hf28f236_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.18-h57a12c2_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.25.1-h3184127_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.1.4.1-ha1e9b39_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.11.0-7_h859234e_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm22-22.1.5-hab754da_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.8.3-hbb4bfdb_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libmpdec-4.0.0-hf3981d6_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.68.1-h70048d4_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.33-openmp_h9e49c7b_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.58-he930e7c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libsigtool-0.1.3-hc0f2934_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.21-hc6ced15_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.53.1-h8f8c405_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-hed3591d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.7.1-ha0a348c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.51.0-h58003a5_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.6.0-hb807250_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.3-h7a90416_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.3-h953d39d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.2-hbb4bfdb_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-22.1.5-h0d3cbff_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-22-22.1.5-hc181bea_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-22.1.5-h1637cdf_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/make-4.4.1-h00291cd_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-3.0.3-py314h77fa6c7_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-hcc6f6b0_119.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_119.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.2.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.4.0-h31caf2d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.2-h31caf2d_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.17.1-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.6-hcc0dc9a_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.10.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.6.2-hc881268_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.9.0.2-h694c41f_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-64/pango-1.56.4-hf280016_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.7-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.47-h13923f0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.46.4-ha059160_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.9.6-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.6.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.25.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-7.2.2-py314hd330473_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-3.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-core-12.1-py314h681fd4f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-framework-cocoa-12.1-py314h9720295_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.14.4-h7c6738f_100_cp314.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-discovery-1.3.1-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.4-h4df99d1_100.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.5-h4df99d1_100.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-3.2.1-pyh332efcf_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2026.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.3-py314h10d0514_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-27.1.0-py312h2ac7433_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-askpass-1.2.1-r45h735ac91_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-assertthat-0.2.1-r45hc72bb7e_6.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-base-4.5.3-h6422bf8_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-base64enc-0.1_6-r45hdab4d57_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-brew-1.0_10-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-brio-1.1.5-r45h735ac91_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-bslib-0.11.0-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-cachem-1.1.0-r45h735ac91_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-callr-3.7.6-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-cli-3.6.6-r45h384437d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-cliapp-0.1.2-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-clipr-0.8.0-r45hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-commonmark-2.0.0-r45h735ac91_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-cpp11-0.5.5-r45h785f33e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-credentials-2.0.3-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-curl-7.1.0-r45h2ef87c2_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-desc-1.4.3-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-devtools-2.5.2-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-diffobj-0.3.6-r45h735ac91_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-digest-0.6.39-r45ha730edb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-downlit-0.4.5-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-ellipsis-0.3.3-r45h8eed41d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-fansi-1.0.7-r45h735ac91_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-fastmap-1.2.0-r45ha730edb_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-filelock-1.0.3-r45h735ac91_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-fontawesome-0.5.3-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-fs-2.1.0-r45h384437d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-gert-2.3.1-r45h5979426_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-gh-1.5.0-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-gitcreds-0.1.2-r45hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-glue-1.8.1-r45h8eed41d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-highr-0.12-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-hms-1.1.4-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-htmltools-0.5.9-r45ha730edb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-htmlwidgets-1.6.4-r45h785f33e_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-httpuv-1.6.16-r45hbf875fd_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-httr2-1.2.2-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-ini-0.3.1-r45hc72bb7e_1007.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-jquerylib-0.1.4-r45hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-jsonlite-2.0.0-r45h735ac91_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-knitr-1.51-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-later-1.4.8-r45h384437d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-lpsolve-5.6.23-r45h735ac91_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-magrittr-2.0.5-r45h8eed41d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-memoise-2.0.1-r45hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-mime-0.13-r45h735ac91_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-miniui-0.1.2-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-openssl-2.4.1-r45h7679fe8_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-otel-0.2.0-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pak-0.9.5-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgbuild-1.4.8-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgcache-2.2.4-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgconfig-2.0.3-r45hc72bb7e_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgdown-2.2.0-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgload-1.5.2-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-praise-1.0.0-r45hc72bb7e_1009.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettycode-1.1.0-r45hc72bb7e_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettyunits-1.2.0-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-processx-3.9.0-r45h8eed41d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-profvis-0.4.0-r45h735ac91_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-progress-1.2.3-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-promises-1.5.0-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-ps-1.9.3-r45h8eed41d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-purrr-1.2.2-r45h8eed41d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-ragg-1.5.2-r45hfe6cf39_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-rappdirs-0.3.4-r45hdab4d57_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rcmdcheck-1.4.0-r45h785f33e_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-rcpp-1.1.1_1.1-r45h384437d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rematch2-2.1.2-r45hc72bb7e_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-rlang-1.2.0-r45h384437d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rmarkdown-2.31-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-roxygen2-8.0.0-r45h384437d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rprojroot-2.1.1-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rstudioapi-0.18.0-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rversions-3.0.0-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-sass-0.4.10-r45ha730edb_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-selectr-0.5_1-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-sessioninfo-1.2.3-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-shiny-1.13.0-r45h785f33e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-sourcetools-0.1.7_2-r45h384437d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-stringi-1.8.7-r45h64d3038_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-stringr-1.6.0-r45h785f33e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-sys-3.4.3-r45h735ac91_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-systemfonts-1.3.2-r45h50b51c1_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-testthat-3.3.2-r45hed9a748_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-textshaping-1.0.5-r45h50b51c1_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-tibble-3.3.1-r45hdab4d57_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-tinytex-0.59-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-urlchecker-1.0.1-r45hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-usethis-3.2.1-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-utf8-1.2.6-r45h735ac91_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-vctrs-0.7.3-r45h384437d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-waldo-0.6.2-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-whisker-0.4.1-r45hc72bb7e_3.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-withr-3.0.2-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-xfun-0.57-r45h384437d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-xml2-1.5.2-r45h2546f75_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-xopen-1.0.1-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-xtable-1.8_8-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-yaml-2.3.12-r45h735ac91_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-yr-0.1.2-r45he03009a_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/r-zip-2.3.3-r45h735ac91_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.3-h68b038d_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-assertthat-0.2.1-r44hc72bb7e_6.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-brew-1.0_10-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-bslib-0.11.0-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-callr-3.7.6-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-cliapp-0.1.2-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-clipr-0.8.0-r44hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-cpp11-0.5.5-r44h785f33e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-credentials-2.0.3-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-desc-1.4.3-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-devtools-2.5.2-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-downlit-0.4.5-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-fontawesome-0.5.3-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-gh-1.5.0-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-gitcreds-0.1.2-r44hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-highr-0.12-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-hms-1.1.4-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-htmlwidgets-1.6.4-r44h785f33e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-httr2-1.2.2-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-ini-0.3.1-r44hc72bb7e_1007.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r44hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-jquerylib-0.1.4-r44hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-knitr-1.51-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-memoise-2.0.1-r44hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-miniui-0.1.2-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-otel-0.2.0-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pak-0.9.5-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgbuild-1.4.8-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgcache-2.2.4-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgconfig-2.0.3-r44hc72bb7e_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgdown-2.2.0-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgload-1.5.2-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-praise-1.0.0-r44hc72bb7e_1009.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettycode-1.1.0-r44hc72bb7e_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettyunits-1.2.0-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-progress-1.2.3-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-promises-1.5.0-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rcmdcheck-1.4.0-r44h785f33e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rematch2-2.1.2-r44hc72bb7e_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r44h785f33e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rmarkdown-2.31-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rprojroot-2.1.1-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rstudioapi-0.18.0-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rversions-3.0.0-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-selectr-0.5_1-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-sessioninfo-1.2.3-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-shiny-1.13.0-r44h785f33e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-stringr-1.6.0-r44h785f33e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-tinytex-0.59-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-urlchecker-1.0.1-r44hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-usethis-3.2.1-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-waldo-0.6.2-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-whisker-0.4.1-r44hc72bb7e_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-withr-3.0.2-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-xopen-1.0.1-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-xtable-1.8_8-r44hc72bb7e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.34.2-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3987-syntax-1.1.0-pyhe01879c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.30.0-py314ha7b6dee_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-64-26.0-h62b880e_7.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-2.1.0-pyh5552912_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-2.1.0-pyha191276_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-codesign-0.1.3-hc0f2934_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1600.0.11.8-h8d8e812_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyhc90fa1f_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h7142dee_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/tktable-2.10-h8925a82_8.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.4.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.5.5-py314h217eccc_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.15.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/typos-1.46.2-h19f9e61_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.1.0-py314h473ef84_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-21.3.3-pyhcf101f3_0.conda @@ -1168,25 +822,15 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-25.10.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-6.0.5-hebe015c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-r-0.11.0-r45h45edcf1_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-zmq-4.0.0-h695af4d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h4132b18_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/yjs-widgets-0.5.1-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/yjs-widgets-collection-0.5.1-pyh09b8992_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-h27d9b8f_10.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.2-hbb4bfdb_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.7-h3eecb57_6.conda - osx-arm64: - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/_openmp_mutex-4.5-7_kmp_llvm.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-4.1.0-pyhcf101f3_0.conda + osx-64: - conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/_r-mutex-1.0.1-anacondar_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/air-0.9.0-h6fdd925_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.13.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/argon2-cffi-bindings-25.1.0-py314h0612a62_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.4.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.3.0-pyhcf101f3_0.conda @@ -1196,36 +840,16 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.3-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.3.0-pyhcf101f3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.3.0-hbca2aae_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.2.0-py314h3daef5d_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bwidget-1.10.1-hce30654_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_9.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.6-hc919400_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-hbd8a1cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.5.20-hbd8a1cb_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.4-he0f2337_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-1030.6.3-llvm22_1_hbe26303_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_impl_osx-arm64-1030.6.3-llvm22_1_hb5e89dc_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1030.6.3-llvm22_1_hbe26303_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2026.4.22-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-2.0.0-py314h44086f9_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.5.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-22-22.1.5-default_hd632d02_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-22.1.5-default_cfg_hb78b91e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-scan-deps-22.1.5-default_h8e162e0_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-22.1.5-default_h17d1ed9_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-22.1.5-h1bea106_31.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-22.1.5-default_h17d1ed9_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-22.1.5-h1bea106_31.conda - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-22.1.5-hce30654_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt22-22.1.5-hd34ed20_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_osx-arm64-22.1.5-h7e67a1e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-22.1.5-hce30654_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.4-py314hd8ed1ab_100.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/curl-8.20.0-hd5a2499_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.20-py314he609de1_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_osx-64-22.1.5-hcf80936_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-22.1.5-h694c41f_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.5-py314hd8ed1ab_100.conda - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.3.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda @@ -1236,31 +860,21 @@ environments: - 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.17.1-h2b252f5_0.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-hc364b38_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.16-hc919400_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_impl_osx-arm64-14.3.0-h6d03799_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_osx-arm64-14.3.0-h3c33bd0_0.conda - - 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.14-hec049ff_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gsl-2.7-h6e638da_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhcf101f3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-14.2.0-h3103d1b_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-78.3-hef89b57_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.19-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.13-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.15-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.8.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.2.0-pyh5552912_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.13.0-pyh53cf698_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_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/isoduration-20.11.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda @@ -1279,242 +893,119 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-kernelspy-4.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.28.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.22.2-h385eeb1_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/lark-1.3.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-956.6-llvm22_1_h5b97f1b_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-956.6-llvm22_1_h692d5aa_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.1.0-h1eee2c3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-0.25.1-h493aca8_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.11.0-7_h51639a9_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.11.0-7_hb0561ab_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp22.1-22.1.5-default_h8e162e0_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-22.1.5-default_h6dd9417_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcompiler-rt-22.1.5-hd34ed20_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.20.0-hd5a2499_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-22.1.5-h55c6f16_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-22.1.5-h6dc3340_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-22.1.5-h707e725_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.25-hc11a715_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda - - 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.8.0-hf6b4638_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-hcf2aa1b_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype-2.14.3-hce30654_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype6-2.14.3-hdfa99f5_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgcc-15.2.0-hcbb3090_19.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-0.25.1-h493aca8_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-15.2.0-h07b0088_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-arm64-14.3.0-hc965647_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-15.2.0-hdae7583_19.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgit2-1.9.3-h9a1894c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.88.1-ha08bb59_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.18-h23cfdf5_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.25.1-h493aca8_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.1.4.1-h84a0fba_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.11.0-7_hd9741b5_openblas.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm22-22.1.5-h89af1be_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.3-h8088a28_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h84a0fba_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.68.1-h8f3e76b_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.33-openmp_he657e61_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.58-h132b30e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsigtool-0.1.3-h98dc951_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.21-h1a92334_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.53.1-h1b79a29_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h1590b86_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.1-h4030677_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.51.0-h6caf38d_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.6.0-h07db88b_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-16-2.15.3-h5ef1a60_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.15.3-h5654f7c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.2-h8088a28_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-22.1.5-hc7d1edf_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-22-22.1.5-hb545844_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-22.1.5-hd34ed20_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/make-4.4.1-hc9fafa5_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.3-py314h6e9b3f0_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-22.1.6-h707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-64-14.3.0-h660b60f_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.2.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.4.0-h169892a_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.2.2-h6bc93b0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.17.1-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.6-h1d4f5a5_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.10.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.2-hd24854e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-3.9.0.2-hce30654_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.56.4-hf80efc4_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.7-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.47-h30297fc_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.46.4-h81086ad_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.9.6-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.6.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.25.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-7.2.2-py314ha14b1ff_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-3.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-core-12.1-py314h3a4d195_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-framework-cocoa-12.1-py314h36abed7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.14.4-h4c637c5_100_cp314.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-discovery-1.3.1-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.4-h4df99d1_100.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.5-h4df99d1_100.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-3.2.1-pyh332efcf_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2026.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.3-py314h6e9b3f0_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-27.1.0-py312h022ad19_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-askpass-1.2.1-r44h6168396_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-assertthat-0.2.1-r44hc72bb7e_6.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base-4.4.3-h35b0bb1_9.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base64enc-0.1_6-r44hbe92478_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-brew-1.0_10-r44hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-brio-1.1.5-r44h6168396_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-bslib-0.11.0-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-cachem-1.1.0-r44h6168396_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-callr-3.7.6-r44hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-cli-3.6.6-r44h1380947_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-cliapp-0.1.2-r44hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-clipr-0.8.0-r44hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-commonmark-2.0.0-r44h6168396_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-cpp11-0.5.5-r44h785f33e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r44hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-credentials-2.0.3-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-curl-7.1.0-r44h090641b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-desc-1.4.3-r44hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-devtools-2.5.2-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-diffobj-0.3.6-r44h6168396_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-digest-0.6.39-r44hc1cd577_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-downlit-0.4.5-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ellipsis-0.3.3-r44hbe92478_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fansi-1.0.7-r44h6168396_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fastmap-1.2.0-r44hc1cd577_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-filelock-1.0.3-r44h6168396_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-fontawesome-0.5.3-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fs-2.1.0-r44h45a6d21_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-gert-2.3.1-r44hc9f24b7_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-gh-1.5.0-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-gitcreds-0.1.2-r44hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-glue-1.8.1-r44hbe92478_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-highr-0.12-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-hms-1.1.4-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-htmltools-0.5.9-r44hc1cd577_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-htmlwidgets-1.6.4-r44h785f33e_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-httpuv-1.6.17-r44h1b96ac6_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-httr2-1.2.2-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-ini-0.3.1-r44hc72bb7e_1007.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r44hd8ed1ab_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-jquerylib-0.1.4-r44hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-jsonlite-2.0.0-r44h6168396_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-knitr-1.51-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-later-1.4.8-r44h1380947_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-lpsolve-5.6.23-r44h6168396_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-magrittr-2.0.5-r44hbe92478_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-memoise-2.0.1-r44hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-mime-0.13-r44h6168396_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-miniui-0.1.2-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-openssl-2.4.1-r44h3dca6d3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-otel-0.2.0-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pak-0.9.5-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgbuild-1.4.8-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgcache-2.2.4-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgconfig-2.0.3-r44hc72bb7e_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgdown-2.2.0-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgload-1.5.2-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-praise-1.0.0-r44hc72bb7e_1009.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettycode-1.1.0-r44hc72bb7e_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettyunits-1.2.0-r44hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-processx-3.9.0-r44hbe92478_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-profvis-0.4.0-r44h6168396_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-progress-1.2.3-r44hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-promises-1.5.0-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ps-1.9.3-r44hbe92478_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-purrr-1.2.2-r44hbe92478_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ragg-1.5.2-r44hdc8ef2b_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rappdirs-0.3.4-r44hbe92478_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rcmdcheck-1.4.0-r44h785f33e_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rcpp-1.1.1_1.1-r44h1380947_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rematch2-2.1.2-r44hc72bb7e_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r44h785f33e_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rlang-1.2.0-r44h1380947_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rmarkdown-2.31-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-roxygen2-8.0.0-r44h1380947_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rprojroot-2.1.1-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rstudioapi-0.18.0-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rversions-3.0.0-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-sass-0.4.10-r44hc1cd577_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-selectr-0.5_1-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-sessioninfo-1.2.3-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-shiny-1.13.0-r44h785f33e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-sourcetools-0.1.7_2-r44h1380947_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-stringi-1.8.7-r44h76ca873_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-stringr-1.6.0-r44h785f33e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-sys-3.4.3-r44h6168396_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-systemfonts-1.3.2-r44hff64bdd_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-testthat-3.3.2-r44h1380947_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-textshaping-1.0.5-r44hff64bdd_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-tibble-3.3.1-r44hbe92478_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-tinytex-0.59-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-urlchecker-1.0.1-r44hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-usethis-3.2.1-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-utf8-1.2.6-r44h6168396_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-vctrs-0.7.3-r44h1380947_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-waldo-0.6.2-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-whisker-0.4.1-r44hc72bb7e_3.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-withr-3.0.2-r44hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-xfun-0.57-r44h45a6d21_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-xml2-1.5.2-r44h46c16c0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-xopen-1.0.1-r44hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-xtable-1.8_8-r44hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-yaml-2.3.12-r44h6168396_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-yr-0.1.2-r44h9cfc220_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-zip-2.3.3-r44h6168396_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.3-h46df422_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-assertthat-0.2.1-r45hc72bb7e_6.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-brew-1.0_10-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-bslib-0.11.0-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-callr-3.7.6-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-cliapp-0.1.2-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-clipr-0.8.0-r45hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-cpp11-0.5.5-r45h785f33e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-credentials-2.0.3-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-desc-1.4.3-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-devtools-2.5.2-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-downlit-0.4.5-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-fontawesome-0.5.3-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-gh-1.5.0-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-gitcreds-0.1.2-r45hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-highr-0.12-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-hms-1.1.4-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-htmlwidgets-1.6.4-r45h785f33e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-httr2-1.2.2-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-ini-0.3.1-r45hc72bb7e_1007.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-jquerylib-0.1.4-r45hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-knitr-1.51-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-memoise-2.0.1-r45hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-miniui-0.1.2-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-otel-0.2.0-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pak-0.9.5-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgbuild-1.4.8-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgcache-2.2.4-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgconfig-2.0.3-r45hc72bb7e_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgdown-2.2.0-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgload-1.5.2-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-praise-1.0.0-r45hc72bb7e_1009.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettycode-1.1.0-r45hc72bb7e_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettyunits-1.2.0-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-progress-1.2.3-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-promises-1.5.0-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rcmdcheck-1.4.0-r45h785f33e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rematch2-2.1.2-r45hc72bb7e_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rmarkdown-2.31-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rprojroot-2.1.1-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rstudioapi-0.18.0-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rversions-3.0.0-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-selectr-0.5_1-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-sessioninfo-1.2.3-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-shiny-1.13.0-r45h785f33e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-stringr-1.6.0-r45h785f33e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-tinytex-0.59-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-urlchecker-1.0.1-r45hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-usethis-3.2.1-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-waldo-0.6.2-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-whisker-0.4.1-r45hc72bb7e_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-withr-3.0.2-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-xopen-1.0.1-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-xtable-1.8_8-r45hc72bb7e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.34.2-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3987-syntax-1.1.0-pyhe01879c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.30.0-py314haad56a0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-arm64-26.0-ha3f98da_7.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-64-26.0-h62b880e_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-2.1.0-pyh5552912_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-codesign-0.1.3-h98dc951_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1600.0.11.8-h997e182_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyhc90fa1f_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h010d191_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tktable-2.10-h28d2b5e_8.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.4.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.5.5-py314h6c2aa35_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.15.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/typos-1.46.2-h6fdd925_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.1.0-py314h6cfcd04_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-21.3.3-pyhcf101f3_0.conda @@ -1522,152 +1013,245 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-25.10.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.9.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-6.0.5-h3feff0a_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-r-0.11.0-r44he0f44cb_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-zmq-4.0.0-h5cc99d8_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h925e9cb_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/yjs-widgets-0.5.1-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/yjs-widgets-collection-0.5.1-pyh09b8992_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-h4818236_10.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.3.2-h8088a28_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.7-hbf9d68e_6.conda - win-64: - - conda: https://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-20_gnu.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/_r-mutex-1.0.1-anacondar_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/air-0.9.0-h18a1a76_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.13.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-25.1.0-py314h5a2d7ad_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.4.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.3.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-26.1.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.18.0-pyhcf101f3_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/backports.zstd-1.5.0-py314h680f03e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.3-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/binutils_impl_win-64-2.45.1-default_ha84baeb_102.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.3.0-pyhcf101f3_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.3.0-hbca2aae_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.2.0-py314he701e3d_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/bwidget-1.10.1-h57928b3_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_9.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-h4c7d964_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.4-h477c42c_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2026.4.22-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-2.0.0-py314h5a2d7ad_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.5.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.4-py314hd8ed1ab_100.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/curl-8.20.0-h8206538_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.20-py314hb98de8c_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.3.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.29.0-pyhd8ed1ab_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.17.1-hd47e2ca_0.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-hc364b38_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/fribidi-1.0.16-hfd05255_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/gcc_impl_win-64-15.2.0-h062b9a2_19.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/gfortran_impl_win-64-15.2.0-h0e079bb_19.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.14-hac47afa_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/gsl-2.7-hdfb1a43_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/gxx_impl_win-64-15.2.0-h22fd5bf_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhcf101f3_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/harfbuzz-14.2.0-h5a1b470_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/icu-78.3-h637d24d_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.19-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.13-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.8.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.2.0-pyh6dadd2b_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.13.0-pyhe2676ad_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.14.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpointer-3.1.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.26.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.26.0-hcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.3.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.8.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyh6dadd2b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.18.2-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.4-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.5.7-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-kernelspy-4.0.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.28.0-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.22.2-h0ea6238_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/lark-1.3.1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ld_impl_win-64-2.45.1-default_hfd38196_102.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/lerc-4.1.0-hd936e49_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.11.0-7_h8455456_mkl.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.11.0-7_h2a3cdd5_mkl.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.20.0-h8206538_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.25-h51727cc_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.8.0-hac47afa_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.5.2-h3d046cb_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libfreetype-2.14.3-h57928b3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_win-64-15.2.0-hbb59886_119.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libgfortran-15.2.0-h719f0c7_19.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libgfortran5-15.2.0-h44d81a7_19.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libgit2-1.9.3-hce7164d_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libglib-2.88.1-h7ce1215_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_19.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.13.0-default_h049141e_1000.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.18-hc1393d2_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.1.4.1-hfd05255_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.11.0-7_hf9ab0e9_mkl.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.3-hfd05255_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libmpdec-4.0.0-hfd05255_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libnghttp2-1.68.1-hac47afa_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.58-h7351971_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.21-h6a83c73_3.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.53.1-hf5d6505_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libstdcxx-15.2.0-hae5796f_19.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_win-64-15.2.0-h0a72980_119.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.1-h8f73337_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libuv-1.51.0-hfd05255_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.2-hfd05255_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-22.1.5-h4fa8253_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/m2-conda-epoch-20250515-0_x86_64.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/m2w64-sysroot_win-64-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.3-py314h2359020_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-4.1.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/_openmp_mutex-4.5-7_kmp_llvm.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/air-0.9.0-h19f9e61_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/argon2-cffi-bindings-25.1.0-py314h6482030_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.2.0-py314h3262eb8_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/bwidget-1.10.1-h694c41f_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_9.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.6-hb5e19a0_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.4-h7656bdc_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1030.6.3-llvm22_1_h0a1bb1c_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_impl_osx-64-1030.6.3-llvm22_1_h8fe25a2_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1030.6.3-llvm22_1_h0a1bb1c_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-2.0.0-py314h8ca4d5a_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-22-22.1.5-default_h3b8fe2e_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-22.1.5-default_nocfg_ha939c3f_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-scan-deps-22.1.5-default_h9399c5b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-22.1.5-default_hb18168d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-22.1.5-h0037788_31.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-22.1.5-default_hb18168d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-22.1.5-h0037788_31.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-22.1.5-h694c41f_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt22-22.1.5-h1637cdf_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/curl-8.20.0-h8f0b9e4_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.20-py314h2f9fc56_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.17.1-h7a4440b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.16-h8616949_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/gfortran_impl_osx-64-14.3.0-h94fe04d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/gfortran_osx-64-14.3.0-h3223c34_0.conda + - 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.14-h21dd04a_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/gsl-2.7-h93259b0_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-14.2.0-hf0bc557_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/icu-78.3-h25d91c4_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/osx-64/krb5-1.22.2-h207b36a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-956.6-llvm22_1_hc399b6d_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-956.6-llvm22_1_h163eae7_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.1.0-h35c7297_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libasprintf-0.25.1-h3184127_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.11.0-7_he492b99_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.11.0-7_h9b27e0a_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp22.1-22.1.5-default_h9399c5b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-22.1.5-default_h2429e1b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcompiler-rt-22.1.5-h1637cdf_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.20.0-h8f0b9e4_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-22.1.6-h19cb2f5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-22.1.6-h7c275be_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.25-h517ebb2_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda + - 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.8.1-hcc62823_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.5.2-hd1f9c09_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype-2.14.3-h694c41f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype6-2.14.3-h58fbd8d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libgcc-15.2.0-h08519bb_19.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-0.25.1-h3184127_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-15.2.0-h7e5c614_19.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-15.2.0-hd16e46c_19.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libgit2-1.9.3-h415d65b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.88.1-hf28f236_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.18-h57a12c2_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.25.1-h3184127_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.1.4.1-ha1e9b39_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.11.0-7_h859234e_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm22-22.1.5-hab754da_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.8.3-hbb4bfdb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libmpdec-4.0.0-hf3981d6_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.68.1-h70048d4_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.33-openmp_h9e49c7b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.58-he930e7c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsigtool-0.1.3-hc0f2934_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.22-ha3d0635_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.53.1-h8f8c405_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-hed3591d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.7.1-ha0a348c_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.51.0-h58003a5_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.6.0-hb807250_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.3-h7a90416_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.3-h953d39d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.2-hbb4bfdb_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-22.1.6-h0d3cbff_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-22-22.1.5-hc181bea_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-22.1.5-h1637cdf_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/make-4.4.1-h00291cd_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-3.0.3-py314h77fa6c7_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.4.0-h31caf2d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.2-h31caf2d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.6-hcc0dc9a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.6.2-hc881268_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.9.0.2-h694c41f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pango-1.56.4-hf280016_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.47-h13923f0_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.46.4-ha059160_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-7.2.2-py314hd330473_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-core-12.1-py314h681fd4f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-framework-cocoa-12.1-py314h9720295_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.14.5-h7c6738f_100_cp314.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.3-py314h10d0514_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-27.1.0-py312h2ac7433_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-askpass-1.2.1-r45h735ac91_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-base-4.5.3-h6422bf8_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-base64enc-0.1_6-r45hdab4d57_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-brio-1.1.5-r45h735ac91_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-cachem-1.1.0-r45h735ac91_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-cli-3.6.6-r45h384437d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-commonmark-2.0.0-r45h735ac91_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-curl-7.1.0-r45h2ef87c2_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-diffobj-0.3.6-r45h735ac91_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-digest-0.6.39-r45ha730edb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-ellipsis-0.3.3-r45h8eed41d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-fansi-1.0.7-r45h735ac91_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-fastmap-1.2.0-r45ha730edb_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-filelock-1.0.3-r45h735ac91_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-fs-2.1.0-r45h384437d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-gert-2.3.1-r45h5979426_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-glue-1.8.1-r45h8eed41d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-htmltools-0.5.9-r45ha730edb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-httpuv-1.6.16-r45hbf875fd_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-jsonlite-2.0.0-r45h735ac91_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-later-1.4.8-r45h384437d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-lpsolve-5.6.23-r45h735ac91_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-magrittr-2.0.5-r45h8eed41d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-mime-0.13-r45h735ac91_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-openssl-2.4.1-r45h7679fe8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-processx-3.9.0-r45h8eed41d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-profvis-0.4.0-r45h735ac91_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-ps-1.9.3-r45h8eed41d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-purrr-1.2.2-r45h8eed41d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-ragg-1.5.2-r45hfe6cf39_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-rappdirs-0.3.4-r45hdab4d57_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-rcpp-1.1.1_1.1-r45h384437d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-rlang-1.2.0-r45h384437d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-roxygen2-8.0.0-r45h384437d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-sass-0.4.10-r45ha730edb_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-sourcetools-0.1.7_2-r45h384437d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-stringi-1.8.7-r45h64d3038_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-sys-3.4.3-r45h735ac91_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-systemfonts-1.3.2-r45h50b51c1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-testthat-3.3.2-r45hed9a748_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-textshaping-1.0.5-r45h50b51c1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-tibble-3.3.1-r45hdab4d57_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-utf8-1.2.6-r45h735ac91_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-vctrs-0.7.3-r45h384437d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-xfun-0.57-r45h384437d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-xml2-1.5.2-r45h2546f75_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-yaml-2.3.12-r45h735ac91_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-yr-0.1.4-r45he03009a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/r-zip-2.3.3-r45h735ac91_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.3-h68b038d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.30.0-py314ha7b6dee_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-codesign-0.1.3-hc0f2934_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1600.0.11.8-h8d8e812_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h7142dee_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/tktable-2.10-h8925a82_8.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.5.5-py314h217eccc_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/typos-1.46.2-h19f9e61_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.1.0-py314h473ef84_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-6.0.5-hebe015c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-r-0.11.0-r45h45edcf1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-zmq-4.0.0-h695af4d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h4132b18_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-h84953be_11.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.2-hbb4bfdb_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.7-h3eecb57_6.conda + osx-arm64: + - conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/_r-mutex-1.0.1-anacondar_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.13.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.4.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.3.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-26.1.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.18.0-pyhcf101f3_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/backports.zstd-1.5.0-py314h680f03e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.3.0-pyhcf101f3_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.3.0-hbca2aae_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.5.20-hbd8a1cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_osx-arm64-22.1.5-h7e67a1e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-22.1.5-hce30654_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.5-py314hd8ed1ab_100.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.3.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.29.0-pyhd8ed1ab_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/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-hc364b38_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhcf101f3_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.19-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.15-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.8.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.2.0-pyh5552912_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.13.0-pyh53cf698_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.14.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpointer-3.1.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.26.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.26.0-hcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.3.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.8.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.18.2-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.4-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.5.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-kernelspy-4.0.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.28.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/lark-1.3.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-22.1.6-h707e725_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-arm64-14.3.0-hc965647_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-crt-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-headers-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-windows-default-manifest-6.4-he206cdd_7.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-winpthreads-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.2.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2026.0.0-hac47afa_906.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.17.1-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda @@ -1675,470 +1259,650 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.10.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/onemkl-license-2026.0.0-h57928b3_906.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.6.2-hf411b9b_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.9.0.2-h57928b3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.7-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.47-hd2b5f0e_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pixman-0.46.4-h5112557_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.9.6-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.6.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.25.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/psutil-7.2.2-py314hc5dbbe4_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-3.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.14.4-h4b44e0e_100_cp314.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-discovery-1.3.1-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.4-h4df99d1_100.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.5-h4df99d1_100.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-3.2.1-pyh332efcf_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2026.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pywin32-311-py314h8f8f202_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.15-py314h51f0985_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.3-py314h2359020_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/pyzmq-27.1.0-py312h343a6d4_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-askpass-1.2.1-r45heceb674_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-assertthat-0.2.1-r45hc72bb7e_6.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-base-4.5.3-h9c56521_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-base64enc-0.1_6-r45heceb674_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-brew-1.0_10-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-brio-1.1.5-r45h2a2a84f_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-bslib-0.11.0-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-cachem-1.1.0-r45heceb674_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-callr-3.7.6-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-cli-3.6.6-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-cliapp-0.1.2-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-clipr-0.8.0-r45hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-commonmark-2.0.0-r45heceb674_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-cpp11-0.5.5-r45h785f33e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-credentials-2.0.3-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-curl-7.1.0-r45h2d9cb95_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-desc-1.4.3-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-devtools-2.5.2-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-diffobj-0.3.6-r45heceb674_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-digest-0.6.39-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-downlit-0.4.5-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-ellipsis-0.3.3-r45heceb674_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-fansi-1.0.7-r45heceb674_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-fastmap-1.2.0-r45hd8a2815_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-filelock-1.0.3-r45heceb674_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-fontawesome-0.5.3-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-fs-2.1.0-r45h225bc52_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-gert-2.3.1-r45hedacc9e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-gh-1.5.0-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-gitcreds-0.1.2-r45hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-glue-1.8.1-r45heceb674_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-highr-0.12-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-hms-1.1.4-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-htmltools-0.5.9-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-htmlwidgets-1.6.4-r45h785f33e_4.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-httpuv-1.6.17-r45h68b42e3_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-httr2-1.2.2-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-ini-0.3.1-r45hc72bb7e_1007.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-jquerylib-0.1.4-r45hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-jsonlite-2.0.0-r45heceb674_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-knitr-1.51-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-later-1.4.8-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-lpsolve-5.6.23-r45heceb674_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-magrittr-2.0.5-r45heceb674_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-memoise-2.0.1-r45hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-mime-0.13-r45heceb674_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-miniui-0.1.2-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-openssl-2.4.1-r45h2f70138_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-otel-0.2.0-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pak-0.9.5-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgbuild-1.4.8-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgcache-2.2.4-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgconfig-2.0.3-r45hc72bb7e_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgdown-2.2.0-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgload-1.5.2-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-praise-1.0.0-r45hc72bb7e_1009.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettycode-1.1.0-r45hc72bb7e_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettyunits-1.2.0-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-processx-3.9.0-r45heceb674_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-profvis-0.4.0-r45heceb674_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-progress-1.2.3-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-promises-1.5.0-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-ps-1.9.3-r45heceb674_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-purrr-1.2.2-r45heceb674_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-ragg-1.5.2-r45h8a73c72_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-rappdirs-0.3.4-r45heceb674_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rcmdcheck-1.4.0-r45h785f33e_4.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-rcpp-1.1.1_1.1-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rematch2-2.1.2-r45hc72bb7e_5.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-rlang-1.2.0-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rmarkdown-2.31-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-roxygen2-8.0.0-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rprojroot-2.1.1-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rstudioapi-0.18.0-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-rversions-3.0.0-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-sass-0.4.10-r45hd8a2815_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-selectr-0.5_1-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-sessioninfo-1.2.3-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-shiny-1.13.0-r45h785f33e_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-sourcetools-0.1.7_2-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-stringi-1.8.7-r45hd8a2815_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-stringr-1.6.0-r45h785f33e_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-sys-3.4.3-r45heceb674_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-systemfonts-1.3.2-r45h295cb35_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-testthat-3.3.2-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-textshaping-1.0.5-r45h295cb35_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-tibble-3.3.1-r45heceb674_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-tinytex-0.59-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-urlchecker-1.0.1-r45hc72bb7e_4.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-usethis-3.2.1-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-utf8-1.2.6-r45heceb674_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-vctrs-0.7.3-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-waldo-0.6.2-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-whisker-0.4.1-r45hc72bb7e_3.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-withr-3.0.2-r45hc72bb7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-xfun-0.57-r45hd8a2815_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-xml2-1.5.2-r45h1e5fb1b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-xopen-1.0.1-r45hc72bb7e_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/r-xtable-1.8_8-r45hc72bb7e_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-yaml-2.3.12-r45heceb674_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-yr-0.1.2-r45hc352b38_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/r-zip-2.3.3-r45heceb674_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-assertthat-0.2.1-r44hc72bb7e_6.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-brew-1.0_10-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-bslib-0.11.0-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-callr-3.7.6-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-cliapp-0.1.2-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-clipr-0.8.0-r44hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-cpp11-0.5.5-r44h785f33e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-credentials-2.0.3-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-desc-1.4.3-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-devtools-2.5.2-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-downlit-0.4.5-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-fontawesome-0.5.3-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-gh-1.5.0-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-gitcreds-0.1.2-r44hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-highr-0.12-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-hms-1.1.4-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-htmlwidgets-1.6.4-r44h785f33e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-httr2-1.2.2-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-ini-0.3.1-r44hc72bb7e_1007.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r44hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-jquerylib-0.1.4-r44hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-knitr-1.51-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-memoise-2.0.1-r44hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-miniui-0.1.2-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-otel-0.2.0-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pak-0.9.5-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgbuild-1.4.8-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgcache-2.2.4-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgconfig-2.0.3-r44hc72bb7e_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgdown-2.2.0-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgload-1.5.2-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-praise-1.0.0-r44hc72bb7e_1009.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettycode-1.1.0-r44hc72bb7e_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettyunits-1.2.0-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-progress-1.2.3-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-promises-1.5.0-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rcmdcheck-1.4.0-r44h785f33e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rematch2-2.1.2-r44hc72bb7e_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r44h785f33e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rmarkdown-2.31-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rprojroot-2.1.1-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rstudioapi-0.18.0-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rversions-3.0.0-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-selectr-0.5_1-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-sessioninfo-1.2.3-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-shiny-1.13.0-r44h785f33e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-stringr-1.6.0-r44h785f33e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-tinytex-0.59-r44hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-urlchecker-1.0.1-r44hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-usethis-3.2.1-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-waldo-0.6.2-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-whisker-0.4.1-r44hc72bb7e_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-withr-3.0.2-r44hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-xopen-1.0.1-r44hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-xtable-1.8_8-r44hc72bb7e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.34.2-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3987-syntax-1.1.0-pyhe01879c_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.30.0-py314h9f07db2_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-2.1.0-pyh6dadd2b_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-arm64-26.0-ha3f98da_7.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-2.1.0-pyh5552912_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2023.0.0-hd3d4ead_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh6dadd2b_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyhc90fa1f_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h6ed50ae_3.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/tktable-2.10-h2df95b8_8.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.4.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/tornado-6.5.5-py314h5a2d7ad_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.15.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/typos-1.46.2-h18a1a76_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.1.0-py314h909e829_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.5-h1b7c187_36.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_36.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_36.conda - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-21.3.3-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.51.36231-h84cd919_36.conda - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-25.10.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.9.0-pyhd8ed1ab_0.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/win-64/winpty-0.4.3-4.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/win-64/xeus-6.0.5-h477610d_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/xeus-r-0.11.0-r45h72f11de_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/xeus-zmq-4.0.0-hecdc818_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h6a83c73_3.conda - conda: https://conda.anaconda.org/conda-forge/noarch/yjs-widgets-0.5.1-pyhcf101f3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/yjs-widgets-collection-0.5.1-pyh09b8992_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-h507cc87_10.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.1-pyhcf101f3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.7-h534d264_6.conda -packages: -- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda - build_number: 20 - sha256: 1dd3fffd892081df9726d7eb7e0dea6198962ba775bd88842135a4ddb4deb3c9 - md5: a9f577daf3de00bca7c3c76c0ecbd1de - depends: - - __glibc >=2.17,<3.0.a0 - - libgomp >=7.5.0 - constrains: - - openmp_impl <0.0a0 - license: BSD-3-Clause - license_family: BSD - size: 28948 - timestamp: 1770939786096 -- conda: https://conda.anaconda.org/conda-forge/osx-64/_openmp_mutex-4.5-7_kmp_llvm.conda - build_number: 7 - sha256: 30006902a9274de8abdad5a9f02ef7c8bb3d69a503486af0c1faee30b023e5b7 - md5: eaac87c21aff3ed21ad9656697bb8326 - depends: - - llvm-openmp >=9.0.1 - license: BSD-3-Clause - license_family: BSD - size: 8328 - timestamp: 1764092562779 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/_openmp_mutex-4.5-7_kmp_llvm.conda - build_number: 7 - sha256: 7acaa2e0782cad032bdaf756b536874346ac1375745fb250e9bdd6a48a7ab3cd - md5: a44032f282e7d2acdeb1c240308052dd - depends: - - llvm-openmp >=9.0.1 - license: BSD-3-Clause - license_family: BSD - size: 8325 - timestamp: 1764092507920 -- conda: https://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-20_gnu.conda - build_number: 20 - sha256: 8a1cee28bd0ee7451ada1cd50b64720e57e17ff994fc62dd8329bef570d382e4 - md5: 1626967b574d1784b578b52eaeb071e7 - depends: - - libgomp >=7.5.0 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - constrains: - - openmp_impl <0.0a0 - - msys2-conda-epoch <0.0a0 - license: BSD-3-Clause - license_family: BSD - size: 52252 - timestamp: 1770943776666 -- conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda - sha256: a3967b937b9abf0f2a99f3173fa4630293979bd1644709d89580e7c62a544661 - md5: aaa2a381ccc56eac91d63b6c1240312f - depends: - - cpython - - python-gil - license: MIT - license_family: MIT - size: 8191 - timestamp: 1744137672556 -- conda: https://conda.anaconda.org/conda-forge/noarch/_r-mutex-1.0.1-anacondar_1.tar.bz2 - sha256: e58f9eeb416b92b550e824bcb1b9fb1958dee69abfe3089dfd1a9173e3a0528a - md5: 19f9db5f4f1b7f5ef5f6d67207f25f38 - license: BSD - size: 3566 - timestamp: 1562343890778 -- conda: https://conda.anaconda.org/conda-forge/linux-64/air-0.9.0-hb17b654_2.conda - sha256: 4fc17c53e6bda44fded36f9dde719f1b35efecc8150dddba1bbee605fe236323 - md5: be89fa499143a3a3d6c6102c8b815364 - depends: - - libgcc >=14 - - __glibc >=2.17,<3.0.a0 - constrains: - - __glibc >=2.17 - license: MIT - license_family: MIT - size: 2548198 - timestamp: 1775342459701 -- conda: https://conda.anaconda.org/conda-forge/osx-64/air-0.9.0-h19f9e61_2.conda - sha256: 773e317e02477e7b62a2319ce9edf9d3a69a76d3708139b517cab07679d07482 - md5: 807516096a21e75980751fec6a15c11c - depends: - - __osx >=11.0 - constrains: - - __osx >=10.13 - license: MIT - license_family: MIT - size: 2503600 - timestamp: 1775342631568 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/air-0.9.0-h6fdd925_2.conda - sha256: 3f5d80dba001e14f4a515797c3d16e7a8d7227aba9bdbba3c565816cf45402b9 - md5: 2a25e53538025a4589fb7e4ecd2f0a27 - depends: - - __osx >=11.0 - constrains: - - __osx >=11.0 - license: MIT - license_family: MIT - size: 2349516 - timestamp: 1775342540778 -- conda: https://conda.anaconda.org/conda-forge/win-64/air-0.9.0-h18a1a76_2.conda - sha256: f4e412fa3800cd6dd7d696cc65360026695d2eb4e7c8f4f30d07bcae673e9479 - md5: 897a4d6c1368c3942b5e9df45487c130 - depends: - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 2635166 - timestamp: 1775342514863 -- conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.13.0-pyhcf101f3_0.conda - sha256: f09aed24661cd45ba54a43772504f05c0698248734f9ae8cd289d314ac89707e - md5: af2df4b9108808da3dc76710fe50eae2 - depends: - - exceptiongroup >=1.0.2 - - idna >=2.8 - - python >=3.10 - - typing_extensions >=4.5 - - python - constrains: - - trio >=0.32.0 - - uvloop >=0.22.1 - - winloop >=0.2.3 - license: MIT - license_family: MIT - size: 146764 - timestamp: 1774359453364 -- conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_1.conda - sha256: 8f032b140ea4159806e4969a68b4a3c0a7cab1ad936eb958a2b5ffe5335e19bf - md5: 54898d0f524c9dee622d44bbb081a8ab - depends: - - python >=3.9 - license: BSD-2-Clause - license_family: BSD - size: 10076 - timestamp: 1733332433806 -- conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda - sha256: bea62005badcb98b1ae1796ec5d70ea0fc9539e7d59708ac4e7d41e2f4bb0bad - md5: 8ac12aff0860280ee0cff7fa2cf63f3b - depends: - - argon2-cffi-bindings - - python >=3.9 - - typing-extensions - constrains: - - argon2_cffi ==999 - license: MIT - license_family: MIT - size: 18715 - timestamp: 1749017288144 -- conda: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-25.1.0-py314h5bd0f2a_2.conda - sha256: 39234a99df3d2e3065383808ed8bfda36760de5ef590c54c3692bb53571ef02b - md5: 3cca1b74b2752917b5b65b81f61f0553 + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-4.1.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/_openmp_mutex-4.5-7_kmp_llvm.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/air-0.9.0-h6fdd925_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/argon2-cffi-bindings-25.1.0-py314h0612a62_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.2.0-py314h3daef5d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bwidget-1.10.1-hce30654_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_9.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.6-hc919400_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.4-he0f2337_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-1030.6.3-llvm22_1_hbe26303_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_impl_osx-arm64-1030.6.3-llvm22_1_hb5e89dc_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1030.6.3-llvm22_1_hbe26303_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-2.0.0-py314h44086f9_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-22-22.1.5-default_hd632d02_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-22.1.5-default_cfg_hb78b91e_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-scan-deps-22.1.5-default_h8e162e0_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-22.1.5-default_h17d1ed9_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-22.1.5-h1bea106_31.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-22.1.5-default_h17d1ed9_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-22.1.5-h1bea106_31.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-22.1.5-hce30654_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt22-22.1.5-hd34ed20_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/curl-8.20.0-hd5a2499_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.20-py314he609de1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.17.1-h2b252f5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.16-hc919400_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_impl_osx-arm64-14.3.0-h6d03799_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_osx-arm64-14.3.0-h3c33bd0_0.conda + - 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.14-hec049ff_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gsl-2.7-h6e638da_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-14.2.0-h3103d1b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-78.3-hef89b57_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/osx-arm64/krb5-1.22.2-h385eeb1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-956.6-llvm22_1_h5b97f1b_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-956.6-llvm22_1_h692d5aa_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.1.0-h1eee2c3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-0.25.1-h493aca8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.11.0-7_h51639a9_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.11.0-7_hb0561ab_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp22.1-22.1.5-default_h8e162e0_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-22.1.5-default_h6dd9417_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcompiler-rt-22.1.5-hd34ed20_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.20.0-hd5a2499_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-22.1.6-h55c6f16_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-22.1.6-h6dc3340_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.25-hc11a715_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda + - 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.8.1-hf6b4638_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-hcf2aa1b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype-2.14.3-hce30654_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype6-2.14.3-hdfa99f5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgcc-15.2.0-hcbb3090_19.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-0.25.1-h493aca8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-15.2.0-h07b0088_19.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-15.2.0-hdae7583_19.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgit2-1.9.3-h9a1894c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.88.1-ha08bb59_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.18-h23cfdf5_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.25.1-h493aca8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.1.4.1-h84a0fba_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.11.0-7_hd9741b5_openblas.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm22-22.1.5-h89af1be_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.3-h8088a28_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h84a0fba_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.68.1-h8f3e76b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.33-openmp_he657e61_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.58-h132b30e_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsigtool-0.1.3-h98dc951_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.22-h1a92334_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.53.1-h1b79a29_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h1590b86_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.1-h4030677_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.51.0-h6caf38d_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.6.0-h07db88b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-16-2.15.3-h5ef1a60_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.15.3-h5654f7c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.2-h8088a28_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-22.1.6-hc7d1edf_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-22-22.1.5-hb545844_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-22.1.5-hd34ed20_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/make-4.4.1-hc9fafa5_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.3-py314h6e9b3f0_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.4.0-h169892a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.2.2-h6bc93b0_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.6-h1d4f5a5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.2-hd24854e_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-3.9.0.2-hce30654_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.56.4-hf80efc4_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.47-h30297fc_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.46.4-h81086ad_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-7.2.2-py314ha14b1ff_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-core-12.1-py314h3a4d195_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-framework-cocoa-12.1-py314h36abed7_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.14.5-h4c637c5_100_cp314.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.3-py314h6e9b3f0_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-27.1.0-py312h022ad19_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-askpass-1.2.1-r44h6168396_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base-4.4.3-h35b0bb1_9.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base64enc-0.1_6-r44hbe92478_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-brio-1.1.5-r44h6168396_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-cachem-1.1.0-r44h6168396_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-cli-3.6.6-r44h1380947_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-commonmark-2.0.0-r44h6168396_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-curl-7.1.0-r44h090641b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-diffobj-0.3.6-r44h6168396_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-digest-0.6.39-r44hc1cd577_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ellipsis-0.3.3-r44hbe92478_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fansi-1.0.7-r44h6168396_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fastmap-1.2.0-r44hc1cd577_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-filelock-1.0.3-r44h6168396_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fs-2.1.0-r44h45a6d21_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-gert-2.3.1-r44hc9f24b7_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-glue-1.8.1-r44hbe92478_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-htmltools-0.5.9-r44hc1cd577_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-httpuv-1.6.17-r44h1b96ac6_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-jsonlite-2.0.0-r44h6168396_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-later-1.4.8-r44h1380947_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-lpsolve-5.6.23-r44h6168396_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-magrittr-2.0.5-r44hbe92478_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-mime-0.13-r44h6168396_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-openssl-2.4.1-r44h3dca6d3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-processx-3.9.0-r44hbe92478_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-profvis-0.4.0-r44h6168396_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ps-1.9.3-r44hbe92478_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-purrr-1.2.2-r44hbe92478_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ragg-1.5.2-r44hdc8ef2b_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rappdirs-0.3.4-r44hbe92478_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rcpp-1.1.1_1.1-r44h1380947_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rlang-1.2.0-r44h1380947_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-roxygen2-8.0.0-r44h1380947_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-sass-0.4.10-r44hc1cd577_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-sourcetools-0.1.7_2-r44h1380947_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-stringi-1.8.7-r44h76ca873_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-sys-3.4.3-r44h6168396_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-systemfonts-1.3.2-r44hff64bdd_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-testthat-3.3.2-r44h1380947_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-textshaping-1.0.5-r44hff64bdd_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-tibble-3.3.1-r44hbe92478_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-utf8-1.2.6-r44h6168396_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-vctrs-0.7.3-r44h1380947_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-xfun-0.57-r44h45a6d21_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-xml2-1.5.2-r44h46c16c0_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-yaml-2.3.12-r44h6168396_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-yr-0.1.4-r44h9cfc220_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-zip-2.3.3-r44h6168396_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.3-h46df422_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.30.0-py314haad56a0_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-codesign-0.1.3-h98dc951_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1600.0.11.8-h997e182_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h010d191_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tktable-2.10-h28d2b5e_8.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.5.5-py314h6c2aa35_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/typos-1.46.2-h6fdd925_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.1.0-py314h6cfcd04_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-6.0.5-h3feff0a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-r-0.11.0-r44he0f44cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-zmq-4.0.0-h5cc99d8_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h925e9cb_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-h10816f8_11.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.3.2-h8088a28_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.7-hbf9d68e_6.conda + win-64: + - conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/_r-mutex-1.0.1-anacondar_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.13.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.4.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.3.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-26.1.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.18.0-pyhcf101f3_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/backports.zstd-1.5.0-py314h680f03e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.3-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.3.0-pyhcf101f3_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.3.0-hbca2aae_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.5.20-h4c7d964_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.5.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.5-py314hd8ed1ab_100.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.3.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.29.0-pyhd8ed1ab_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/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-hc364b38_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhcf101f3_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.19-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.15-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.8.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.2.0-pyh6dadd2b_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.13.0-pyhe2676ad_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.14.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpointer-3.1.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.26.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.26.0-hcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.3.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.8.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyh6dadd2b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.18.2-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.4-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.5.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-kernelspy-4.0.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.28.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/lark-1.3.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_win-64-15.2.0-hbb59886_119.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_win-64-15.2.0-h0a72980_119.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/m2w64-sysroot_win-64-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-crt-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-headers-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-windows-default-manifest-6.4-he206cdd_7.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-winpthreads-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.2.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.17.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.7-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.9.6-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.6.0-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.25.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-3.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-discovery-1.3.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.5-h4df99d1_100.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-3.2.1-pyh332efcf_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2026.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-assertthat-0.2.1-r45hc72bb7e_6.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-brew-1.0_10-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-bslib-0.11.0-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-callr-3.7.6-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-cliapp-0.1.2-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-clipr-0.8.0-r45hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-cpp11-0.5.5-r45h785f33e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-credentials-2.0.3-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-desc-1.4.3-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-devtools-2.5.2-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-downlit-0.4.5-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-fontawesome-0.5.3-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-gh-1.5.0-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-gitcreds-0.1.2-r45hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-highr-0.12-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-hms-1.1.4-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-htmlwidgets-1.6.4-r45h785f33e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-httr2-1.2.2-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-ini-0.3.1-r45hc72bb7e_1007.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-jquerylib-0.1.4-r45hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-knitr-1.51-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-memoise-2.0.1-r45hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-miniui-0.1.2-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-otel-0.2.0-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pak-0.9.5-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgbuild-1.4.8-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgcache-2.2.4-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgconfig-2.0.3-r45hc72bb7e_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgdown-2.2.0-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgload-1.5.2-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-praise-1.0.0-r45hc72bb7e_1009.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettycode-1.1.0-r45hc72bb7e_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-prettyunits-1.2.0-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-progress-1.2.3-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-promises-1.5.0-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rcmdcheck-1.4.0-r45h785f33e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rematch2-2.1.2-r45hc72bb7e_5.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rmarkdown-2.31-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rprojroot-2.1.1-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rstudioapi-0.18.0-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-rversions-3.0.0-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-selectr-0.5_1-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-sessioninfo-1.2.3-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-shiny-1.13.0-r45h785f33e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-stringr-1.6.0-r45h785f33e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-tinytex-0.59-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-urlchecker-1.0.1-r45hc72bb7e_4.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-usethis-3.2.1-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-waldo-0.6.2-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-whisker-0.4.1-r45hc72bb7e_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-withr-3.0.2-r45hc72bb7e_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-xopen-1.0.1-r45hc72bb7e_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/r-xtable-1.8_8-r45hc72bb7e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.34.2-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3987-syntax-1.1.0-pyhe01879c_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-2.1.0-pyh6dadd2b_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_2.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh6dadd2b_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.4.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.15.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-21.3.3-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.7.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-25.10.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.9.0-pyhd8ed1ab_0.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/yjs-widgets-0.5.1-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/yjs-widgets-collection-0.5.1-pyh09b8992_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-4.1.0-pyhcf101f3_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-20_gnu.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/air-0.9.0-h18a1a76_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-25.1.0-py314h5a2d7ad_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/binutils_impl_win-64-2.45.1-default_ha84baeb_102.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.2.0-py314he701e3d_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/bwidget-1.10.1-h57928b3_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_9.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.4-h477c42c_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-2.0.0-py314h5a2d7ad_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/curl-8.20.0-h8206538_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.20-py314hb98de8c_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.17.1-hd47e2ca_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/fribidi-1.0.16-hfd05255_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/gcc_impl_win-64-15.2.0-h062b9a2_19.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/gfortran_impl_win-64-15.2.0-h0e079bb_19.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.14-hac47afa_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/gsl-2.7-hdfb1a43_0.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/gxx_impl_win-64-15.2.0-h22fd5bf_19.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/harfbuzz-14.2.0-h5a1b470_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/icu-78.3-h637d24d_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.22.2-h0ea6238_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ld_impl_win-64-2.45.1-default_hfd38196_102.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/lerc-4.1.0-hd936e49_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.11.0-7_h8455456_mkl.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.11.0-7_h2a3cdd5_mkl.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.20.0-h8206538_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.25-h51727cc_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.8.1-hac47afa_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.5.2-h3d046cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libfreetype-2.14.3-h57928b3_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_19.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libgfortran-15.2.0-h719f0c7_19.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libgfortran5-15.2.0-h44d81a7_19.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libgit2-1.9.3-hce7164d_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libglib-2.88.1-h7ce1215_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_19.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.13.0-default_h049141e_1000.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.18-hc1393d2_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.1.4.1-hfd05255_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.11.0-7_hf9ab0e9_mkl.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.3-hfd05255_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libmpdec-4.0.0-hfd05255_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libnghttp2-1.68.1-hac47afa_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.58-h7351971_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.22-h6a83c73_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.53.1-hf5d6505_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libstdcxx-15.2.0-hae5796f_19.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.1-h8f73337_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libuv-1.51.0-hfd05255_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.2-hfd05255_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-22.1.6-h4fa8253_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/m2-conda-epoch-20250515-0_x86_64.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.3-py314h2359020_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2026.0.0-hac47afa_908.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/onemkl-license-2026.0.0-h57928b3_908.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.6.2-hf411b9b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.9.0.2-h57928b3_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.47-hd2b5f0e_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pixman-0.46.4-h5112557_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/psutil-7.2.2-py314hc5dbbe4_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.14.5-h4b44e0e_100_cp314.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pywin32-311-py314hcaaf0b2_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.15-py314h51f0985_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.3-py314h2359020_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/pyzmq-27.1.0-py312h343a6d4_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-askpass-1.2.1-r45heceb674_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-base-4.5.3-h9c56521_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-base64enc-0.1_6-r45heceb674_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-brio-1.1.5-r45h2a2a84f_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-cachem-1.1.0-r45heceb674_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-cli-3.6.6-r45hd8a2815_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-commonmark-2.0.0-r45heceb674_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-curl-7.1.0-r45h2d9cb95_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-diffobj-0.3.6-r45heceb674_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-digest-0.6.39-r45hd8a2815_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-ellipsis-0.3.3-r45heceb674_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-fansi-1.0.7-r45heceb674_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-fastmap-1.2.0-r45hd8a2815_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-filelock-1.0.3-r45heceb674_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-fs-2.1.0-r45h225bc52_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-gert-2.3.1-r45hedacc9e_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-glue-1.8.1-r45heceb674_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-htmltools-0.5.9-r45hd8a2815_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-httpuv-1.6.17-r45h68b42e3_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-jsonlite-2.0.0-r45heceb674_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-later-1.4.8-r45hd8a2815_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-lpsolve-5.6.23-r45heceb674_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-magrittr-2.0.5-r45heceb674_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-mime-0.13-r45heceb674_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-openssl-2.4.1-r45h2f70138_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-processx-3.9.0-r45heceb674_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-profvis-0.4.0-r45heceb674_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-ps-1.9.3-r45heceb674_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-purrr-1.2.2-r45heceb674_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-ragg-1.5.2-r45h8a73c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-rappdirs-0.3.4-r45heceb674_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-rcpp-1.1.1_1.1-r45hd8a2815_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-rlang-1.2.0-r45hd8a2815_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-roxygen2-8.0.0-r45hd8a2815_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-sass-0.4.10-r45hd8a2815_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-sourcetools-0.1.7_2-r45hd8a2815_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-stringi-1.8.7-r45hd8a2815_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-sys-3.4.3-r45heceb674_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-systemfonts-1.3.2-r45h295cb35_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-testthat-3.3.2-r45hd8a2815_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-textshaping-1.0.5-r45h295cb35_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-tibble-3.3.1-r45heceb674_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-utf8-1.2.6-r45heceb674_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-vctrs-0.7.3-r45hd8a2815_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-xfun-0.57-r45hd8a2815_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-xml2-1.5.2-r45h1e5fb1b_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-yaml-2.3.12-r45heceb674_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-yr-0.1.4-r45hc352b38_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/r-zip-2.3.3-r45heceb674_1.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.30.0-py314h9f07db2_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2023.0.0-hd3d4ead_2.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h6ed50ae_3.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/tktable-2.10-h2df95b8_8.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/tornado-6.5.5-py314h5a2d7ad_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/typos-1.46.2-h18a1a76_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.1.0-py314h909e829_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.5-h1b7c187_37.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_37.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_37.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.51.36231-h84cd919_37.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 + - conda: https://conda.anaconda.org/conda-forge/win-64/xeus-6.0.5-h477610d_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/xeus-r-0.11.0-r45h72f11de_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/xeus-zmq-4.0.0-hecdc818_0.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h6a83c73_3.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-h3a581c9_11.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.7-h534d264_6.conda +packages: +- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda + build_number: 20 + sha256: 1dd3fffd892081df9726d7eb7e0dea6198962ba775bd88842135a4ddb4deb3c9 + md5: a9f577daf3de00bca7c3c76c0ecbd1de depends: - __glibc >=2.17,<3.0.a0 - - cffi >=2.0.0b1 - - libgcc >=14 - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - license: MIT - license_family: MIT - size: 35598 - timestamp: 1762509505285 -- conda: https://conda.anaconda.org/conda-forge/osx-64/argon2-cffi-bindings-25.1.0-py314h6482030_2.conda - sha256: ee1e2c4b12ab8bf4e8970341f6d8a8fd1dfbdb01786f3f6cb2441e1cafdad8a5 - md5: 64f7576ac6bb5308bd930e35016758db - depends: - - __osx >=10.13 - - cffi >=2.0.0b1 - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - license: MIT - license_family: MIT - size: 33641 - timestamp: 1762509686527 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/argon2-cffi-bindings-25.1.0-py314h0612a62_2.conda - sha256: aab60bbaea5cc49dff37438d1ad469d64025cda2ce58103cf68da61701ed2075 - md5: a240a79a49a95b388ef81ccda27a5e51 - depends: - - __osx >=11.0 - - cffi >=2.0.0b1 - - python >=3.14,<3.15.0a0 - - python >=3.14,<3.15.0a0 *_cp314 - - python_abi 3.14.* *_cp314 - license: MIT - license_family: MIT - size: 34218 - timestamp: 1762509977830 -- conda: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-25.1.0-py314h5a2d7ad_2.conda - sha256: a742e7cd0d5534bfff3fd550a0c1e430411fad60a24f88930d261056ab08096f - md5: ffa247e46f47e157851dc547f4c513e4 - depends: - - cffi >=2.0.0b1 - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: MIT - license_family: MIT - size: 38653 - timestamp: 1762509771011 -- conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.4.0-pyhcf101f3_0.conda - sha256: 792da8131b1b53ff667bd6fc617ea9087b570305ccb9913deb36b8e12b3b5141 - md5: 85c4f19f377424eafc4ed7911b291642 - depends: - - python >=3.10 - - python-dateutil >=2.7.0 - - python-tzdata - - python - license: Apache-2.0 - license_family: APACHE - size: 113854 - timestamp: 1760831179410 -- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.1-pyhd8ed1ab_0.conda - sha256: ee4da0f3fe9d59439798ee399ef3e482791e48784873d546e706d0935f9ff010 - md5: 9673a61a297b00016442e022d689faa6 - depends: - - python >=3.10 - constrains: - - astroid >=2,<5 - license: Apache-2.0 - license_family: Apache - size: 28797 - timestamp: 1763410017955 -- conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.3.0-pyhcf101f3_0.conda - sha256: ea8486637cfb89dc26dc9559921640cd1d5fd37e5e02c33d85c94572139f2efe - md5: b85e84cb64c762569cc1a760c2327e0a - depends: - - python >=3.10 - - typing_extensions >=4.0.0 - - python - license: MIT - license_family: MIT - size: 22949 - timestamp: 1773926359134 -- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-26.1.0-pyhcf101f3_0.conda - sha256: 1b6124230bb4e571b1b9401537ecff575b7b109cc3a21ee019f65e083b8399ab - md5: c6b0543676ecb1fb2d7643941fe375f2 - depends: - - python >=3.10 - - python - license: MIT - license_family: MIT - size: 64927 - timestamp: 1773935801332 -- conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.18.0-pyhcf101f3_1.conda - sha256: a14a9ad02101aab25570543a59c5193043b73dc311a25650134ed9e6cb691770 - md5: f1976ce927373500cc19d3c0b2c85177 - depends: - - python >=3.10 - - python + - libgomp >=7.5.0 constrains: - - pytz >=2015.7 + - openmp_impl <0.0a0 license: BSD-3-Clause license_family: BSD - size: 7684321 - timestamp: 1772555330347 -- conda: https://conda.anaconda.org/conda-forge/noarch/backports.zstd-1.5.0-py314h680f03e_0.conda - noarch: generic - sha256: a1c97297e867776760489537bc5ae36fa83a154be30e3b79385a39ca4cb058fe - md5: 1133126d840e75287d83947be3fc3e71 + size: 28948 + timestamp: 1770939786096 +- conda: https://conda.anaconda.org/conda-forge/linux-64/air-0.9.0-hb17b654_2.conda + sha256: 4fc17c53e6bda44fded36f9dde719f1b35efecc8150dddba1bbee605fe236323 + md5: be89fa499143a3a3d6c6102c8b815364 depends: - - python >=3.14 - license: BSD-3-Clause AND MIT AND EPL-2.0 - size: 7533 - timestamp: 1778594057496 -- conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.3-pyha770c72_0.conda - sha256: bf1e71c3c0a5b024e44ff928225a0874fc3c3356ec1a0b6fe719108e6d1288f6 - md5: 5267bef8efea4127aacd1f4e1f149b6e + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + constrains: + - __glibc >=2.17 + license: MIT + license_family: MIT + size: 2548198 + timestamp: 1775342459701 +- conda: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-25.1.0-py314h5bd0f2a_2.conda + sha256: 39234a99df3d2e3065383808ed8bfda36760de5ef590c54c3692bb53571ef02b + md5: 3cca1b74b2752917b5b65b81f61f0553 depends: - - python >=3.10 - - soupsieve >=1.2 - - typing-extensions + - __glibc >=2.17,<3.0.a0 + - cffi >=2.0.0b1 + - libgcc >=14 + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 license: MIT license_family: MIT - size: 90399 - timestamp: 1764520638652 + size: 35598 + timestamp: 1762509505285 - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_102.conda sha256: 0a7d405064f53b9d91d92515f1460f7906ee5e8523f3cd8973430e81219f4917 md5: 8165352fdce2d2025bf884dc0ee85700 @@ -2150,38 +1914,6 @@ packages: license_family: GPL size: 3661455 timestamp: 1774197460085 -- conda: https://conda.anaconda.org/conda-forge/win-64/binutils_impl_win-64-2.45.1-default_ha84baeb_102.conda - sha256: 9123bf592bca01e226eeaf7ad70853a54eaae30d7585be5751eed2d6624bc39a - md5: 74d89550a0a593e67a32fd1d2509a85a - depends: - - ld_impl_win-64 2.45.1 default_hfd38196_102 - - m2w64-sysroot_win-64 >=12.0.0.r0 - - zstd >=1.5.7,<1.6.0a0 - license: GPL-3.0-only - license_family: GPL - size: 6121562 - timestamp: 1774198074938 -- conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.3.0-pyhcf101f3_1.conda - sha256: f8ff1f98423674278964a46c93a1766f9e91960d44efd91c6c3ed56a33813f46 - md5: 7c5ebdc286220e8021bf55e6384acd67 - depends: - - python >=3.10 - - webencodings - - python - constrains: - - tinycss2 >=1.1.0,<1.5 - license: Apache-2.0 AND MIT - size: 142008 - timestamp: 1770719370680 -- conda: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.3.0-hbca2aae_1.conda - sha256: 7c07a865e5e4cca233cc4e0eb3f0f5ff6c90776461687b4fb0b1764133e1fd61 - md5: f11a319b9700b203aa14c295858782b6 - depends: - - bleach ==6.3.0 pyhcf101f3_1 - - tinycss2 - license: Apache-2.0 AND MIT - size: 4409 - timestamp: 1770719370682 - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.2.0-py314h3de4e8d_1.conda sha256: 3ad3500bff54a781c29f16ce1b288b36606e2189d0b0ef2f67036554f47f12b0 md5: 8910d2c46f7e7b519129f486e0fe927a @@ -2197,50 +1929,6 @@ packages: license_family: MIT size: 367376 timestamp: 1764017265553 -- conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.2.0-py314h3262eb8_1.conda - sha256: 2e34922abda4ac5726c547887161327b97c3bbd39f1204a5db162526b8b04300 - md5: 389d75a294091e0d7fa5a6fc683c4d50 - depends: - - __osx >=10.13 - - libcxx >=19 - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - constrains: - - libbrotlicommon 1.2.0 h8616949_1 - license: MIT - license_family: MIT - size: 390153 - timestamp: 1764017784596 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.2.0-py314h3daef5d_1.conda - sha256: 5c2e471fd262fcc3c5a9d5ea4dae5917b885e0e9b02763dbd0f0d9635ed4cb99 - md5: f9501812fe7c66b6548c7fcaa1c1f252 - depends: - - __osx >=11.0 - - libcxx >=19 - - python >=3.14,<3.15.0a0 - - python >=3.14,<3.15.0a0 *_cp314 - - python_abi 3.14.* *_cp314 - constrains: - - libbrotlicommon 1.2.0 hc919400_1 - license: MIT - license_family: MIT - size: 359854 - timestamp: 1764018178608 -- conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.2.0-py314he701e3d_1.conda - sha256: 6854ee7675135c57c73a04849c29cbebc2fb6a3a3bfee1f308e64bf23074719b - md5: 1302b74b93c44791403cbeee6a0f62a3 - depends: - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - constrains: - - libbrotlicommon 1.2.0 hfd05255_1 - license: MIT - license_family: MIT - size: 335782 - timestamp: 1764018443683 - conda: https://conda.anaconda.org/conda-forge/linux-64/bwidget-1.10.1-ha770c72_1.conda sha256: c88dd33c89b33409ebcd558d78fdc66a63c18f8b06e04d170668ffb6c8ecfabd md5: 983b92277d78c0d0ec498e460caa0e6d @@ -2249,30 +1937,6 @@ packages: license: TCL size: 129594 timestamp: 1750261567920 -- conda: https://conda.anaconda.org/conda-forge/osx-64/bwidget-1.10.1-h694c41f_1.conda - sha256: 3c942fbc1d960caa5cc630f3ed4b575b3ae33e70d6476e2feccd3162edc98f1f - md5: 42abba4764f9d776456ca566e07d8d3a - depends: - - tk - license: TCL - size: 130154 - timestamp: 1750261608744 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bwidget-1.10.1-hce30654_1.conda - sha256: 66ccefd46364f1ef536c42e7ee24d0377c2ece073734df614c6509b08e2bdf62 - md5: c42706e35f3bb26537b065a5f9ae764d - depends: - - tk - license: TCL - size: 129989 - timestamp: 1750261536876 -- conda: https://conda.anaconda.org/conda-forge/win-64/bwidget-1.10.1-h57928b3_1.conda - sha256: 539b9df7e02288e0a978f59616abe87c973debc1d65fee3caab3586c0d961547 - md5: f99aeb077e200ba813e2096d56efb4ae - depends: - - tk - license: TCL - size: 126266 - timestamp: 1750261570600 - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6 md5: d2ffd7602c02f2b316fd921d39876885 @@ -2283,35 +1947,6 @@ packages: license_family: BSD size: 260182 timestamp: 1771350215188 -- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_9.conda - sha256: 9f242f13537ef1ce195f93f0cc162965d6cc79da578568d6d8e50f70dd025c42 - md5: 4173ac3b19ec0a4f400b4f782910368b - depends: - - __osx >=10.13 - license: bzip2-1.0.6 - license_family: BSD - size: 133427 - timestamp: 1771350680709 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_9.conda - sha256: 540fe54be35fac0c17feefbdc3e29725cce05d7367ffedfaaa1bdda234b019df - md5: 620b85a3f45526a8bc4d23fd78fc22f0 - depends: - - __osx >=11.0 - license: bzip2-1.0.6 - license_family: BSD - size: 124834 - timestamp: 1771350416561 -- conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_9.conda - sha256: 76dfb71df5e8d1c4eded2dbb5ba15bb8fb2e2b0fe42d94145d5eed4c75c35902 - md5: 4cb8e6b48f67de0b018719cdf1136306 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: bzip2-1.0.6 - license_family: BSD - size: 56115 - timestamp: 1771350256444 - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e md5: 920bb03579f15389b9e512095ad995b7 @@ -2322,59 +1957,6 @@ packages: license_family: MIT size: 207882 timestamp: 1765214722852 -- conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.6-hb5e19a0_0.conda - sha256: 2f5bc0292d595399df0d168355b4e9820affc8036792d6984bd751fdda2bcaea - md5: fc9a153c57c9f070bebaa7eef30a8f17 - depends: - - __osx >=10.13 - license: MIT - license_family: MIT - size: 186122 - timestamp: 1765215100384 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.6-hc919400_0.conda - sha256: 2995f2aed4e53725e5efbc28199b46bf311c3cab2648fc4f10c2227d6d5fa196 - md5: bcb3cba70cf1eec964a03b4ba7775f01 - depends: - - __osx >=11.0 - license: MIT - license_family: MIT - size: 180327 - timestamp: 1765215064054 -- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-h4c7d964_0.conda - sha256: 6f4ff81534c19e76acf52fcabf4a258088a932b8f1ac56e9a59e98f6051f8e46 - md5: 56fb2c6c73efc627b40c77d14caecfba - depends: - - __win - license: ISC - size: 131388 - timestamp: 1776865633471 -- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-hbd8a1cb_0.conda - sha256: c9dbcc8039a52023660d6d1bbf87594a93dd69c6ac5a2a44323af2c92976728d - md5: e18ad67cf881dcadee8b8d9e2f8e5f73 - depends: - - __unix - license: ISC - size: 131039 - timestamp: 1776865545798 -- conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 - noarch: python - sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 - md5: 9b347a7ec10940d3f7941ff6c460b551 - depends: - - cached_property >=1.5.2,<1.5.3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 4134 - timestamp: 1615209571450 -- conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 - sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 - md5: 576d629e47797577ab0f1b351297ef4a - depends: - - python >=3.6 - license: BSD-3-Clause - license_family: BSD - size: 11065 - timestamp: 1615209567874 - conda: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.4-he90730b_1.conda sha256: 06525fa0c4e4f56e771a3b986d0fdf0f0fc5a3270830ee47e127a5105bde1b9a md5: bb6c4808bfa69d6f7f6b07e5846ced37 @@ -2386,2589 +1968,3030 @@ packages: - libexpat >=2.7.3,<3.0a0 - libfreetype >=2.14.1 - libfreetype6 >=2.14.1 - - libgcc >=14 - - libglib >=2.86.3,<3.0a0 - - libpng >=1.6.53,<1.7.0a0 - - libstdcxx >=14 - - libxcb >=1.17.0,<2.0a0 - - libzlib >=1.3.1,<2.0a0 - - pixman >=0.46.4,<1.0a0 - - xorg-libice >=1.1.2,<2.0a0 - - xorg-libsm >=1.2.6,<2.0a0 - - xorg-libx11 >=1.8.12,<2.0a0 - - xorg-libxext >=1.3.6,<2.0a0 - - xorg-libxrender >=0.9.12,<0.10.0a0 - license: LGPL-2.1-only or MPL-1.1 - size: 989514 - timestamp: 1766415934926 -- conda: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.4-h7656bdc_1.conda - sha256: 88e7e1efb6a0f6b1477e617338e0ed3d27d4572a3283f8341ce6143b7118e31a - md5: 9917add2ab43df894b9bb6f5bf485975 - depends: - - __osx >=10.13 - - fontconfig >=2.15.0,<3.0a0 - - fonts-conda-ecosystem - - icu >=78.1,<79.0a0 - - libcxx >=19 - - libexpat >=2.7.3,<3.0a0 - - libfreetype >=2.14.1 - - libfreetype6 >=2.14.1 - - libglib >=2.86.3,<3.0a0 - - libpng >=1.6.53,<1.7.0a0 - - libzlib >=1.3.1,<2.0a0 - - pixman >=0.46.4,<1.0a0 - license: LGPL-2.1-only or MPL-1.1 - size: 896676 - timestamp: 1766416262450 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.4-he0f2337_1.conda - sha256: cde9b79ee206fe3ba6ca2dc5906593fb7a1350515f85b2a1135a4ce8ec1539e3 - md5: 36200ecfbbfbcb82063c87725434161f - depends: - - __osx >=11.0 - - fontconfig >=2.15.0,<3.0a0 - - fonts-conda-ecosystem - - icu >=78.1,<79.0a0 - - libcxx >=19 - - libexpat >=2.7.3,<3.0a0 - - libfreetype >=2.14.1 - - libfreetype6 >=2.14.1 - - libglib >=2.86.3,<3.0a0 - - libpng >=1.6.53,<1.7.0a0 - - libzlib >=1.3.1,<2.0a0 - - pixman >=0.46.4,<1.0a0 - license: LGPL-2.1-only or MPL-1.1 - size: 900035 - timestamp: 1766416416791 -- conda: https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.4-h477c42c_1.conda - sha256: 9ee4ad706c5d3e1c6c469785d60e3c2b263eec569be0eac7be33fbaef978bccc - md5: 52ea1beba35b69852d210242dd20f97d - depends: - - fontconfig >=2.15.0,<3.0a0 - - fonts-conda-ecosystem - - icu >=78.1,<79.0a0 - - libexpat >=2.7.3,<3.0a0 - - libfreetype >=2.14.1 - - libfreetype6 >=2.14.1 + - libgcc >=14 - libglib >=2.86.3,<3.0a0 - libpng >=1.6.53,<1.7.0a0 + - libstdcxx >=14 + - libxcb >=1.17.0,<2.0a0 - libzlib >=1.3.1,<2.0a0 - pixman >=0.46.4,<1.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrender >=0.9.12,<0.10.0a0 license: LGPL-2.1-only or MPL-1.1 - size: 1537783 - timestamp: 1766416059188 -- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1030.6.3-llvm22_1_h0a1bb1c_4.conda - sha256: e0b732ed52bcfa98f90fe61ef87fc47cb39222351ab2e730c05f262d29621b51 - md5: 257743cb85eb6cb4808f5f1fc18a94c8 + size: 989514 + timestamp: 1766415934926 +- conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-2.0.0-py314h4a8dc5f_1.conda + sha256: c6339858a0aaf5d939e00d345c98b99e4558f285942b27232ac098ad17ac7f8e + md5: cf45f4278afd6f4e6d03eda0f435d527 depends: - - cctools_impl_osx-64 1030.6.3 llvm22_1_h8fe25a2_4 - - ld64 956.6 llvm22_1_hc399b6d_4 - - libllvm22 >=22.1.0,<22.2.0a0 - license: APSL-2.0 - license_family: Other - size: 24426 - timestamp: 1772019098551 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-1030.6.3-llvm22_1_hbe26303_4.conda - sha256: a8d8f9a6ae4c149d2174f8f52c61da079cc793b87e2f76441a43daf7f394631f - md5: aea08dd508f71d6ca3cfa4e8694e7953 + - __glibc >=2.17,<3.0.a0 + - libffi >=3.5.2,<3.6.0a0 + - libgcc >=14 + - pycparser + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + license: MIT + license_family: MIT + size: 300271 + timestamp: 1761203085220 +- conda: https://conda.anaconda.org/conda-forge/linux-64/curl-8.20.0-hcf29cc6_0.conda + sha256: 24b6ccc111388df77c65c68b3f3cad9f066e11741469fa60052ad0773f941c6e + md5: cc1a446bff91be88b2fa1d629e4f348b depends: - - cctools_impl_osx-arm64 1030.6.3 llvm22_1_hb5e89dc_4 - - ld64 956.6 llvm22_1_h5b97f1b_4 - - libllvm22 >=22.1.0,<22.2.0a0 - license: APSL-2.0 - license_family: Other - size: 24551 - timestamp: 1772019751097 -- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_impl_osx-64-1030.6.3-llvm22_1_h8fe25a2_4.conda - sha256: 9e003c254b6c1880e6c8f2d777b20d837db2b7aff161454d857693692fd862dd - md5: 5d0b3b0b085354afc3b53c424e40121b + - __glibc >=2.17,<3.0.a0 + - krb5 >=1.22.2,<1.23.0a0 + - libcurl 8.20.0 hcf29cc6_0 + - libgcc >=14 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + - openssl >=3.5.6,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl + license_family: MIT + size: 191489 + timestamp: 1777461498522 +- conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.20-py314h42812f9_0.conda + sha256: d9e89e351d7189c41615cfceca76b3bcacaa9c81d9945ac1caa6fb9e5184f610 + md5: 57e6fad901c05754d5256fe3ab9f277b depends: - - __osx >=11.0 - - ld64_osx-64 >=956.6,<956.7.0a0 - - libcxx - - libllvm22 >=22.1.0,<22.2.0a0 - - libzlib >=1.3.1,<2.0a0 - - llvm-tools 22.1.* - - sigtool-codesign - constrains: - - clang 22.1.* - - cctools 1030.6.3.* - - ld64 956.6.* - license: APSL-2.0 - license_family: Other - size: 744001 - timestamp: 1772019049683 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_impl_osx-arm64-1030.6.3-llvm22_1_hb5e89dc_4.conda - sha256: 97075a1afeac8a7a4dca258ac10efb70638e3c734cbf5a6328ca1e0718e09c41 - md5: 97768bb89683757d7e535f9b7dcba39d + - python + - libgcc >=14 + - libstdcxx >=14 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.14.* *_cp314 + license: MIT + license_family: MIT + size: 2886804 + timestamp: 1769744977998 +- conda: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.17.1-h27c8c51_0.conda + sha256: aa4a44dba97151221100a637c7f4bde619567afade9c0265f8e1c8eed8d7bd8c + md5: 867127763fbe935bab59815b6e0b7b5c depends: - - __osx >=11.0 - - ld64_osx-arm64 >=956.6,<956.7.0a0 - - libcxx - - libllvm22 >=22.1.0,<22.2.0a0 + - __glibc >=2.17,<3.0.a0 + - libexpat >=2.7.4,<3.0a0 + - libfreetype >=2.14.1 + - libfreetype6 >=2.14.1 + - libgcc >=14 + - libuuid >=2.41.3,<3.0a0 - libzlib >=1.3.1,<2.0a0 - - llvm-tools 22.1.* - - sigtool-codesign - constrains: - - clang 22.1.* - - ld64 956.6.* - - cctools 1030.6.3.* - license: APSL-2.0 - license_family: Other - size: 749166 - timestamp: 1772019681419 -- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1030.6.3-llvm22_1_h0a1bb1c_4.conda - sha256: e0eefd2d7b4c8434b1b97ddf51780601e4ea5c964bb053775213868412367bbe - md5: d97b4a7d3a90d1cd45ff42ee353efadc + license: MIT + license_family: MIT + size: 270705 + timestamp: 1771382710863 +- conda: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.16-hb03c661_0.conda + sha256: 858283ff33d4c033f4971bf440cebff217d5552a5222ba994c49be990dacd40d + md5: f9f81ea472684d75b9dd8d0b328cf655 depends: - - cctools_impl_osx-64 1030.6.3 llvm22_1_h8fe25a2_4 - - ld64_osx-64 956.6 llvm22_1_h163eae7_4 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + license: LGPL-2.1-or-later + size: 61244 + timestamp: 1757438574066 +- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he0086c7_19.conda + sha256: a48400ec4b73369c1c59babe4ad35821b63a88bba0ec40a80cea5f8c53a26b83 + md5: e3be72048d3c4a78b8e27ec48ba06252 + depends: + - binutils_impl_linux-64 >=2.45 + - libgcc >=15.2.0 + - libgcc-devel_linux-64 15.2.0 hcc6f6b0_119 + - libgomp >=15.2.0 + - libsanitizer 15.2.0 h90f66d4_19 + - libstdcxx >=15.2.0 + - libstdcxx-devel_linux-64 15.2.0 hd446a21_119 + - sysroot_linux-64 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 81180457 + timestamp: 1778269124617 +- conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-15.2.0-h281d09f_19.conda + sha256: 2f6a962bfcb74b8262dc0af5cf0716acbd96f769a0443dd231d1041c222b0ca6 + md5: 5d4fdb7935b8aa1cdb2e22ef8958101e + depends: + - gcc_impl_linux-64 >=15.2.0 + - libgcc >=15.2.0 + - libgfortran5 >=15.2.0 + - libstdcxx >=15.2.0 + - sysroot_linux-64 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 20041854 + timestamp: 1778269291096 +- conda: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.14-hecca717_2.conda + sha256: 25ba37da5c39697a77fce2c9a15e48cf0a84f1464ad2aafbe53d8357a9f6cc8c + md5: 2cd94587f3a401ae05e03a6caf09539d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + license: LGPL-2.0-or-later + license_family: LGPL + size: 99596 + timestamp: 1755102025473 +- conda: https://conda.anaconda.org/conda-forge/linux-64/gsl-2.7-he838d99_0.tar.bz2 + sha256: 132a918b676dd1f533d7c6f95e567abf7081a6ea3251c3280de35ef600e0da87 + md5: fec079ba39c9cca093bf4c00001825de + depends: + - libblas >=3.8.0,<4.0a0 + - libcblas >=3.8.0,<4.0a0 + - libgcc-ng >=9.3.0 + license: GPL-3.0-or-later + license_family: GPL + size: 3376423 + timestamp: 1626369596591 +- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-15.2.0-hda75c37_19.conda + sha256: 3f5288346b9fe233352443b3c2e31f1fde845e39d3e96475fc05ec2e782af158 + md5: 9d41f3899b512199af0a4bb939b83e21 + depends: + - gcc_impl_linux-64 15.2.0 he0086c7_19 + - libstdcxx-devel_linux-64 15.2.0 hd446a21_119 + - sysroot_linux-64 + - tzdata + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 16356816 + timestamp: 1778269332159 +- conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-14.2.0-h6083320_0.conda + sha256: 232c95b56d16d33d8256026a3b1ad34f7f9a75c179d388854be0fd624ddba9e3 + md5: e194f6a2f498f0c7b1e6498bd0b12645 + depends: + - __glibc >=2.17,<3.0.a0 + - cairo >=1.18.4,<2.0a0 + - graphite2 >=1.3.14,<2.0a0 + - icu >=78.3,<79.0a0 + - libexpat >=2.7.5,<3.0a0 + - libfreetype >=2.14.3 + - libfreetype6 >=2.14.3 + - libgcc >=14 + - libglib >=2.86.4,<3.0a0 + - libstdcxx >=14 + - libzlib >=1.3.2,<2.0a0 + license: MIT + license_family: MIT + size: 2333599 + timestamp: 1776778392713 +- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda + sha256: fbf86c4a59c2ed05bbffb2ba25c7ed94f6185ec30ecb691615d42342baa1a16a + md5: c80d8a3b84358cb967fa81e7075fbc8a + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + license: MIT + license_family: MIT + size: 12723451 + timestamp: 1773822285671 +- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda + sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4 + md5: b38117a3c920364aff79f870c984b4a3 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: LGPL-2.1-or-later + size: 134088 + timestamp: 1754905959823 +- conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.22.2-ha1258a1_0.conda + sha256: 3e307628ca3527448dd1cb14ad7bb9d04d1d28c7d4c5f97ba196ae984571dd25 + md5: fb53fb07ce46a575c5d004bbc96032c2 + depends: + - __glibc >=2.17,<3.0.a0 + - keyutils >=1.6.3,<2.0a0 + - libedit >=3.1.20250104,<3.2.0a0 + - libedit >=3.1.20250104,<4.0a0 + - libgcc >=14 + - libstdcxx >=14 + - openssl >=3.5.5,<4.0a0 + license: MIT + license_family: MIT + size: 1386730 + timestamp: 1769769569681 +- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda + sha256: 3d584956604909ff5df353767f3a2a2f60e07d070b328d109f30ac40cd62df6c + md5: 18335a698559cdbcd86150a48bf54ba6 + depends: + - __glibc >=2.17,<3.0.a0 + - zstd >=1.5.7,<1.6.0a0 constrains: - - cctools 1030.6.3.* - license: APSL-2.0 - license_family: Other - size: 23441 - timestamp: 1772019105060 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1030.6.3-llvm22_1_hbe26303_4.conda - sha256: c90c927dd77afb7d8115a3777b567d9ab84169ab797436d79789d75d0bd1a399 - md5: a08c9f61e81b5d4a0a653495545ec2b8 + - binutils_impl_linux-64 2.45.1 + license: GPL-3.0-only + license_family: GPL + size: 728002 + timestamp: 1774197446916 +- conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.1.0-hdb68285_0.conda + sha256: f84cb54782f7e9cea95e810ea8fef186e0652d0fa73d3009914fa2c1262594e1 + md5: a752488c68f2e7c456bcbd8f16eec275 depends: - - cctools_impl_osx-arm64 1030.6.3 llvm22_1_hb5e89dc_4 - - ld64_osx-arm64 956.6 llvm22_1_h692d5aa_4 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + license: Apache-2.0 + license_family: Apache + size: 261513 + timestamp: 1773113328888 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.11.0-7_h4a7cf45_openblas.conda + build_number: 7 + sha256: 081c850f99bc355821fac9c6e3727d40b3f8ce3beb50a5437cf03726b611ff39 + md5: 955b44e8b00b7f7ef4ce0130cef12394 + depends: + - libopenblas >=0.3.33,<0.3.34.0a0 + - libopenblas >=0.3.33,<1.0a0 constrains: - - cctools 1030.6.3.* - license: APSL-2.0 - license_family: Other - size: 23468 - timestamp: 1772019757885 -- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2026.4.22-pyhd8ed1ab_0.conda - sha256: 989db6e5957c4b44fa600c68c681ec2f36a55e48f7c7f1c073d5e91caa8cd878 - md5: 929471569c93acefb30282a22060dcd5 + - libcblas 3.11.0 7*_openblas + - blas 2.307 openblas + - liblapack 3.11.0 7*_openblas + - liblapacke 3.11.0 7*_openblas + - mkl <2027 + license: BSD-3-Clause + license_family: BSD + size: 18716 + timestamp: 1778489854108 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.11.0-7_h0358290_openblas.conda + build_number: 7 + sha256: 956ae0bb1ec8b0c3663d75b151aceb0521b54e513bf97f621a035f9c87037970 + md5: 0675639dc24cb0032f199e7ff68e4633 depends: - - python >=3.10 - license: ISC - size: 135656 - timestamp: 1776866680878 -- conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-2.0.0-py314h4a8dc5f_1.conda - sha256: c6339858a0aaf5d939e00d345c98b99e4558f285942b27232ac098ad17ac7f8e - md5: cf45f4278afd6f4e6d03eda0f435d527 + - libblas 3.11.0 7_h4a7cf45_openblas + constrains: + - liblapacke 3.11.0 7*_openblas + - blas 2.307 openblas + - liblapack 3.11.0 7*_openblas + license: BSD-3-Clause + license_family: BSD + size: 18675 + timestamp: 1778489861559 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.20.0-hcf29cc6_0.conda + sha256: 75963a5dd913311f59a35dbd307592f4fa754c4808aff9c33edb430c415e38eb + md5: c3cc2864f82a944bc90a7beb4d3b0e88 depends: - __glibc >=2.17,<3.0.a0 - - libffi >=3.5.2,<3.6.0a0 + - krb5 >=1.22.2,<1.23.0a0 - libgcc >=14 - - pycparser - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - license: MIT + - libnghttp2 >=1.68.1,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + - openssl >=3.5.6,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl license_family: MIT - size: 300271 - timestamp: 1761203085220 -- conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-2.0.0-py314h8ca4d5a_1.conda - sha256: e2c58cc2451cc96db2a3c8ec34e18889878db1e95cc3e32c85e737e02a7916fb - md5: 71c2caaa13f50fe0ebad0f961aee8073 + size: 468706 + timestamp: 1777461492876 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda + sha256: aa8e8c4be9a2e81610ddf574e05b64ee131fab5e0e3693210c9d6d2fba32c680 + md5: 6c77a605a7a689d17d4819c0f8ac9a00 depends: - - __osx >=10.13 - - libffi >=3.5.2,<3.6.0a0 - - pycparser - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 license: MIT license_family: MIT - size: 293633 - timestamp: 1761203106369 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-2.0.0-py314h44086f9_1.conda - sha256: 5b5ee5de01eb4e4fd2576add5ec9edfc654fbaf9293e7b7ad2f893a67780aa98 - md5: 10dd19e4c797b8f8bdb1ec1fbb6821d7 + size: 73490 + timestamp: 1761979956660 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 + md5: c277e0a4d549b03ac1e9d6cbbe3d017b depends: - - __osx >=11.0 - - libffi >=3.5.2,<3.6.0a0 - - pycparser - - python >=3.14,<3.15.0a0 - - python >=3.14,<3.15.0a0 *_cp314 - - python_abi 3.14.* *_cp314 - license: MIT - license_family: MIT - size: 292983 - timestamp: 1761203354051 -- conda: https://conda.anaconda.org/conda-forge/win-64/cffi-2.0.0-py314h5a2d7ad_1.conda - sha256: 924f2f01fa7a62401145ef35ab6fc95f323b7418b2644a87fea0ea68048880ed - md5: c360170be1c9183654a240aadbedad94 + - ncurses + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ncurses >=6.5,<7.0a0 + license: BSD-2-Clause + license_family: BSD + size: 134676 + timestamp: 1738479519902 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda + sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 + md5: 172bf1cd1ff8629f2b1179945ed45055 depends: - - pycparser - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: MIT - license_family: MIT - size: 294731 - timestamp: 1761203441365 -- conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.5.0-pyhd8ed1ab_0.conda - sha256: aa589352e61bb221351a79e5946d56916e3c595783994884accdb3b97fe9d449 - md5: 381bd45fb7aa032691f3063aff47e3a1 + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 112766 + timestamp: 1702146165126 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.8.1-hecca717_0.conda + sha256: 363018b25fdb5534c79783d912bd4b685a3547f4fc5996357ad548899b0ee8e7 + md5: 93764a5ca80616e9c10106cdaec92f74 depends: - - python >=3.10 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + constrains: + - expat 2.8.1.* license: MIT license_family: MIT - size: 13589 - timestamp: 1763607964133 -- conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda - sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457 - md5: a9167b9571f3baa9d448faa2139d1089 + size: 77294 + timestamp: 1779278686680 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda + sha256: 31f19b6a88ce40ebc0d5a992c131f57d919f73c0b92cd1617a5bec83f6e961e6 + md5: a360c33a5abe61c07959e449fa1453eb depends: - - python >=3.10 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 license: MIT license_family: MIT - size: 58872 - timestamp: 1775127203018 -- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-22.1.5-default_nocfg_ha939c3f_1.conda - sha256: a3608b54f6fdceb3eb5725893d2fed86d34a05c033916ed05f27d6f37644b7a2 - md5: c0e89d4e2f7fc9f9efc882d314bf1c94 - depends: - - cctools - - clang-22 22.1.5 default_h3b8fe2e_1 - - clang_impl_osx-64 22.1.5 default_hb18168d_1 - - ld64 - - ld64_osx-64 * llvm22_1_* - - llvm-openmp >=22.1.5 - - llvm-tools 22.1.5.* - track_features: - - clang_nocfg - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 28266 - timestamp: 1778482229734 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-22.1.5-default_cfg_hb78b91e_1.conda - sha256: 7861600cd2506d2945c4254c089fe1083b4643146b93f98df58e4dc8d5bbf586 - md5: df62aad1251047d963da339efbc495ad + size: 58592 + timestamp: 1769456073053 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.14.3-ha770c72_0.conda + sha256: 38f014a7129e644636e46064ecd6b1945e729c2140e21d75bb476af39e692db2 + md5: e289f3d17880e44b633ba911d57a321b depends: - - cctools - - clang-22 22.1.5 default_hd632d02_1 - - clang_impl_osx-arm64 22.1.5 default_h17d1ed9_1 - - ld64 - - ld64_osx-arm64 * llvm22_1_* - - llvm-openmp >=22.1.5 - - llvm-tools 22.1.5.* - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 28682 - timestamp: 1778476413617 -- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-22-22.1.5-default_h3b8fe2e_1.conda - sha256: 507be37986b4f5e4d7ce0e167d0065f6cf269449f4748243ac749ba206f6adfe - md5: b8d67341091d9467449c775fb12ed114 + - libfreetype6 >=2.14.3 + license: GPL-2.0-only OR FTL + size: 8049 + timestamp: 1774298163029 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.14.3-h73754d4_0.conda + sha256: 16f020f96da79db1863fcdd8f2b8f4f7d52f177dd4c58601e38e9182e91adf1d + md5: fb16b4b69e3f1dcfe79d80db8fd0c55d depends: - - __osx >=11.0 - - compiler-rt22 22.1.5.* - - libclang-cpp22.1 22.1.5 default_h9399c5b_1 - - libcxx >=22.1.5 - - libllvm22 >=22.1.5,<22.2.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 820698 - timestamp: 1778481969997 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-22-22.1.5-default_hd632d02_1.conda - sha256: 661be9d7e197ac2eeeff52a18f5e2c385497fb523fd91a3e50cf62c792ce3d06 - md5: d440f7fc2d44b55cd806e5a033dcf0a1 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libpng >=1.6.55,<1.7.0a0 + - libzlib >=1.3.2,<2.0a0 + constrains: + - freetype >=2.14.3 + license: GPL-2.0-only OR FTL + size: 384575 + timestamp: 1774298162622 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda + sha256: 8e0a3b5e41272e5678499b5dfc4cddb673f9e935de01eb0767ce857001229f46 + md5: 57736f29cc2b0ec0b6c2952d3f101b6a depends: - - __osx >=11.0 - - compiler-rt22 22.1.5.* - - libclang-cpp22.1 22.1.5 default_h8e162e0_1 - - libcxx >=22.1.5 - - libllvm22 >=22.1.5,<22.2.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 825331 - timestamp: 1778476335771 -- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-scan-deps-22.1.5-default_h9399c5b_1.conda - sha256: ac1b62a5a0dabf12a986b429ee16ceeaed76b9f035586c94a3dbe76564ea888b - md5: 4e44e29212bc0129e645c40820f01558 + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + constrains: + - libgcc-ng ==15.2.0=*_19 + - libgomp 15.2.0 he0feb66_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1041084 + timestamp: 1778269013026 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_19.conda + sha256: 9dcf54adfaa5e861123c2da4f2f0451a685464ea7e5a41ad91cf67b31d658d98 + md5: 331ee9b72b9dff570d56b1302c5ab37d depends: - - __osx >=11.0 - - libclang-cpp22.1 >=22.1.5,<22.2.0a0 - - libclang13 >=22.1.5 - - libcxx >=22.1.5 - - libllvm22 >=22.1.5,<22.2.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 109796 - timestamp: 1778482893079 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-scan-deps-22.1.5-default_h8e162e0_1.conda - sha256: 1348683f1bb903e9a63e3ad003e2530291884fd7a3127f695ea622f86effa32c - md5: ff91dfd45cffd50b06d22d7df575821e + - libgcc 15.2.0 he0feb66_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 27694 + timestamp: 1778269016987 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_19.conda + sha256: 561a42758ef25b9ce308c4e2cf56daee4f06138385a17e29a492cd928e00be6f + md5: 42bf7eca1a951735fa06c0e3c0d5c8e6 depends: - - __osx >=11.0 - - libclang-cpp22.1 >=22.1.5,<22.2.0a0 - - libclang13 >=22.1.5 - - libcxx >=22.1.5 - - libllvm22 >=22.1.5,<22.2.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 102846 - timestamp: 1778476581308 -- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-22.1.5-default_hb18168d_1.conda - sha256: 8b3746d694f6cdaf4817b3eaf4011f8a1d6f81666f711e8773089a84c7185bd7 - md5: 68e92341039e81309c906a88c7e22b41 + - libgfortran5 15.2.0 h68bc16d_19 + constrains: + - libgfortran-ng ==15.2.0=*_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 27655 + timestamp: 1778269042954 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.2.0-h69a702a_19.conda + sha256: 9ca1d254a3e44e608abec6186b18d372cec21e5253e6da9750f4a8f4780ea0bb + md5: 35d07243abf828674d273aecd1dd537e depends: - - cctools_impl_osx-64 - - clang-22 22.1.5 default_h3b8fe2e_1 - - compiler-rt 22.1.5.* - - compiler-rt_osx-64 - - ld64_osx-64 * llvm22_1_* - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 28227 - timestamp: 1778482180492 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-22.1.5-default_h17d1ed9_1.conda - sha256: 05a2d99ba55f4b401c11a750fac9bee879b3f09a16c1df2415836c46c9fd629f - md5: 743068a5a4061084f22a5f8b6675a3e8 + - libgfortran 15.2.0 h69a702a_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 27727 + timestamp: 1778269220455 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_19.conda + sha256: 057978bb69fea29ed715a9b98adf71015c31baecc4aeb2bfc20d4fd5d83579d4 + md5: 85072b0ad177c966294f129b7c04a2d5 depends: - - cctools_impl_osx-arm64 - - clang-22 22.1.5 default_hd632d02_1 - - compiler-rt 22.1.5.* - - compiler-rt_osx-arm64 - - ld64_osx-arm64 * llvm22_1_* - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 28091 - timestamp: 1778476400908 -- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-22.1.5-h0037788_31.conda - sha256: 1854076fc4c8354b02e0cd9ecbbbc6658f0add80e0c462e845694cbe5ccfd855 - md5: 819fdd9c98622b0b7326c5b02a58032c + - __glibc >=2.17,<3.0.a0 + - libgcc >=15.2.0 + constrains: + - libgfortran 15.2.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 2483673 + timestamp: 1778269025089 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgit2-1.9.3-hc20babb_0.conda + sha256: 0836cacf512a448fad067067c50afdff8f5d55aae30056750524a3e1426643e2 + md5: 895217aaa8320719b27be9fdb0d82000 depends: - - cctools_osx-64 - - clang_impl_osx-64 22.1.5.* - - sdkroot_env_osx-64 - license: BSD-3-Clause - license_family: BSD - size: 21096 - timestamp: 1778479585704 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-22.1.5-h1bea106_31.conda - sha256: 7ac336271f3a7a2d7c469bc1fa90508e893f2185ec380f179bd23674bd110b9a - md5: d39a13545913a5dba1b0b72e8d93c595 + - libgcc >=14 + - libstdcxx >=14 + - __glibc >=2.17,<3.0.a0 + - openssl >=3.5.6,<4.0a0 + - pcre2 >=10.47,<10.48.0a0 + - libzlib >=1.3.2,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + license: GPL-2.0-only WITH GCC-exception-2.0 + license_family: GPL + size: 1038249 + timestamp: 1777944398119 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.88.1-h0d30a3d_2.conda + sha256: 33eb5d5310a5c2c0a4707a0afa644801c2e08c8f70c45e1f62f354116dfe0970 + md5: 17d484ab9c8179c6a6e5b7dbb5065afc depends: - - cctools_osx-arm64 - - clang_impl_osx-arm64 22.1.5.* - - sdkroot_env_osx-arm64 - license: BSD-3-Clause - license_family: BSD - size: 21173 - timestamp: 1778479644737 -- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-22.1.5-default_hb18168d_1.conda - sha256: 4ae05e814f77119cc08301def3f7abcc49495852773296ee9147bf6cdb92b8d7 - md5: 798e48aa624be1bf083599a5cd894cd1 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libffi >=3.5.2,<3.6.0a0 + - pcre2 >=10.47,<10.48.0a0 + - libzlib >=1.3.2,<2.0a0 + - libiconv >=1.18,<2.0a0 + constrains: + - glib >2.66 + license: LGPL-2.1-or-later + size: 4754097 + timestamp: 1778508800134 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-he0feb66_19.conda + sha256: 5abe4ab9d93f6c9757d654f1969ae2267d4505315c1f2f8fe705fd60af084f1b + md5: faac990cb7aedc7f3a2224f2c9b0c26c depends: - - clang-22 22.1.5 default_h3b8fe2e_1 - - clang-scan-deps 22.1.5 default_h9399c5b_1 - - clang_impl_osx-64 22.1.5 default_hb18168d_1 - - libcxx-devel 22.1.* - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 28169 - timestamp: 1778482953015 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-22.1.5-default_h17d1ed9_1.conda - sha256: adfc5fa04aecf4a5229d4975bf375aa0cb9f82c7264d45ddab6b4b58443b6718 - md5: c557ba34549e137502e0a59b8715d730 + - __glibc >=2.17,<3.0.a0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 603817 + timestamp: 1778268942614 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda + sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f + md5: 915f5995e94f60e9a4826e0b0920ee88 depends: - - clang-22 22.1.5 default_hd632d02_1 - - clang-scan-deps 22.1.5 default_h8e162e0_1 - - clang_impl_osx-arm64 22.1.5 default_h17d1ed9_1 - - libcxx-devel 22.1.* - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 28111 - timestamp: 1778476592829 -- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-22.1.5-h0037788_31.conda - sha256: eda703a2386c840bb7f22d03f6942ad1c4305b7c9532fedae21305ee30895dbc - md5: a95e1d9fc34279a4075839335fd7df83 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + license: LGPL-2.1-only + size: 790176 + timestamp: 1754908768807 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.4.1-hb03c661_0.conda + sha256: 10056646c28115b174de81a44e23e3a0a3b95b5347d2e6c45cc6d49d35294256 + md5: 6178c6f2fb254558238ef4e6c56fb782 depends: - - cctools_osx-64 - - clang_osx-64 22.1.5 h0037788_31 - - clangxx_impl_osx-64 22.1.5.* - - sdkroot_env_osx-64 - license: BSD-3-Clause - license_family: BSD - size: 19967 - timestamp: 1778479591489 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-22.1.5-h1bea106_31.conda - sha256: e1ed629fc642b1a61196537307f237f1cf47bb53a0b707bc675b5784851fc995 - md5: 57d299a9d388428f7fa450452ada183a + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 633831 + timestamp: 1775962768273 +- conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.11.0-7_h47877c9_openblas.conda + build_number: 7 + sha256: 96962084921f197c9ad13fb7f8b324f2351d50ff3d8d962148751ad532f54a01 + md5: 6569b4f273740e25dc0dc7e3232c2a6c depends: - - cctools_osx-arm64 - - clang_osx-arm64 22.1.5 h1bea106_31 - - clangxx_impl_osx-arm64 22.1.5.* - - sdkroot_env_osx-arm64 + - libblas 3.11.0 7_h4a7cf45_openblas + constrains: + - liblapacke 3.11.0 7*_openblas + - libcblas 3.11.0 7*_openblas + - blas 2.307 openblas license: BSD-3-Clause license_family: BSD - size: 20043 - timestamp: 1778479650737 -- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda - sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 - md5: 962b9857ee8e7018c22f2776ffa0b2d7 + size: 18694 + timestamp: 1778489869038 +- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.3-hb03c661_0.conda + sha256: ec30e52a3c1bf7d0425380a189d209a52baa03f22fb66dd3eb587acaa765bd6d + md5: b88d90cad08e6bc8ad540cb310a761fb depends: - - python >=3.9 - license: BSD-3-Clause + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + constrains: + - xz 5.8.3.* + license: 0BSD + size: 113478 + timestamp: 1775825492909 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb03c661_1.conda + sha256: fe171ed5cf5959993d43ff72de7596e8ac2853e9021dec0344e583734f1e0843 + md5: 2c21e66f50753a083cbe6b80f38268fa + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + license: BSD-2-Clause license_family: BSD - size: 27011 - timestamp: 1733218222191 -- conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda - sha256: 576a44729314ad9e4e5ebe055fbf48beb8116b60e58f9070278985b2b634f212 - md5: 2da13f2b299d8e1995bafbbe9689a2f7 + size: 92400 + timestamp: 1769482286018 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.68.1-h877daf1_0.conda + sha256: 663444d77a42f2265f54fb8b48c5450bfff4388d9c0f8253dd7855f0d993153f + md5: 2a45e7f8af083626f009645a6481f12d + depends: + - __glibc >=2.17,<3.0.a0 + - c-ares >=1.34.6,<2.0a0 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libgcc >=14 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.5,<4.0a0 + license: MIT + license_family: MIT + size: 663344 + timestamp: 1773854035739 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.33-pthreads_h94d23a6_0.conda + sha256: 3d9aa85648e5e18a6d66db98b8c4317cc426721ad7a220aa86330d1ccedc8903 + md5: 2d3278b721e40468295ca755c3b84070 depends: - - python >=3.9 - - python + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libgfortran + - libgfortran5 >=14.3.0 + constrains: + - openblas >=0.3.33,<0.3.34.0a0 license: BSD-3-Clause license_family: BSD - size: 14690 - timestamp: 1753453984907 -- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-22.1.5-h694c41f_1.conda - sha256: bd1b70a7469e771376b2045445a14f555805c34cfd9e38e0ef4edcec34a72a02 - md5: a343d2e123a5145103d3f9182c7a4f76 + size: 5931919 + timestamp: 1776993658641 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.58-h421ea60_0.conda + sha256: 377cfe037f3eeb3b1bf3ad333f724a64d32f315ee1958581fc671891d63d3f89 + md5: eba48a68a1a2b9d3c0d9511548db85db depends: - - compiler-rt22 22.1.5 h1637cdf_1 - - libcompiler-rt 22.1.5 h1637cdf_1 - constrains: - - clang 22.1.5 - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 16522 - timestamp: 1778194994864 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-22.1.5-hce30654_1.conda - sha256: a442d55ea02f8615e74b3763b3621598fe432f973bcd6f4cf876704d7e854203 - md5: 98d56b1f4f0ded3a5fc68a22f7b168cc + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libzlib >=1.3.2,<2.0a0 + license: zlib-acknowledgement + size: 317729 + timestamp: 1776315175087 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_19.conda + sha256: 7a58892a52739ce4c0f7109de9e91b4353104748eb04fc6441d88e8af444ba99 + md5: 67eef12ce33f7ff99900c212d7076fc2 depends: - - compiler-rt22 22.1.5 hd34ed20_1 - - libcompiler-rt 22.1.5 hd34ed20_1 - constrains: - - clang 22.1.5 - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 16462 - timestamp: 1778193616563 -- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt22-22.1.5-h1637cdf_1.conda - sha256: 2bd338dff6d2f7a089b5f3d569d1d7193b1a97da841f86c51820de25d6e59fcc - md5: 11fa30c82000ee5b3a0c9de68f2ee14a + - __glibc >=2.17,<3.0.a0 + - libgcc >=15.2.0 + - libstdcxx >=15.2.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 7930689 + timestamp: 1778269054623 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.22-h280c20c_1.conda + sha256: b677bbf1c339d894757c3dcfbb2f88649e499e4991d70ae09a1466da9a6c92d6 + md5: 965e4d531b588b2e42f66fd8e48b056c depends: - - __osx >=11.0 - - compiler-rt22_osx-64 22.1.5.* - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 99227 - timestamp: 1778194990435 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt22-22.1.5-hd34ed20_1.conda - sha256: 96478509ecb21e4882034351565f756fcc15f7200032539d37baba9bd290c3e5 - md5: 211e29460c00fa540f34f7710d01c2d4 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + license: ISC + size: 269272 + timestamp: 1779163468406 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.53.1-h0c1763c_0.conda + sha256: 54cdcd3214313b62c2a8ee277e6f42150d9b748264c1b70d958bf735e420ef8d + md5: 7dc38adcbf71e6b38748e919e16e0dce depends: - - __osx >=11.0 - - compiler-rt22_osx-arm64 22.1.5.* - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 99528 - timestamp: 1778193615341 -- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_osx-64-22.1.5-hcf80936_1.conda - sha256: 35f5b1d556215b4ebe6a810de2118d612ce0868e3bf15e69c47672252e057e86 - md5: b0a06100f6fad477e1d6570b7da4236b - constrains: - - compiler-rt >=9.0.1 - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 10973170 - timestamp: 1778194905655 -- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_osx-arm64-22.1.5-h7e67a1e_1.conda - sha256: 8fd9c06368cf109359b5790dd52bb2c567649eea4ac803003e8bc10e49e8ef24 - md5: 6b4aa1f07476cdefbd872f38df71b3e2 - constrains: - - compiler-rt >=9.0.1 - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 10867797 - timestamp: 1778193575528 -- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-22.1.5-h694c41f_1.conda - sha256: c094ba939da9b77812724e22355692bcb16e8a1960454e36cb9a63b16f2d544e - md5: f9b0cdfd4b1d21f0b76970ecacfb10ce + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libzlib >=1.3.2,<2.0a0 + license: blessing + size: 954962 + timestamp: 1777986471789 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda + sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 + md5: eecce068c7e4eddeb169591baac20ac4 depends: - - compiler-rt22_osx-64 22.1.5 hcf80936_1 - constrains: - - clang 22.1.5 - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 16659 - timestamp: 1778194993003 -- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-22.1.5-hce30654_1.conda - sha256: b8d2ac6246cef588054a267979ce67298faa695830341bf17a1f8e8b466bc9d2 - md5: 55b5854d13383c8ab1e467dba3cd5373 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 304790 + timestamp: 1745608545575 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda + sha256: dff1058c76ec6b8759e41cefa2508162d00e4a5e6721aa68ec3fd10094e702dc + md5: 5794b3bdc38177caf969dabd3af08549 depends: - - compiler-rt22_osx-arm64 22.1.5 h7e67a1e_1 + - __glibc >=2.17,<3.0.a0 + - libgcc 15.2.0 he0feb66_19 constrains: - - clang 22.1.5 - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 16629 - timestamp: 1778193616082 -- conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.4-py314hd8ed1ab_100.conda - noarch: generic - sha256: 40dc224f2b718e5f034efd2332bc315a719063235f63673468d26a24770094ee - md5: f111d4cfaf1fe9496f386bc98ae94452 + - libstdcxx-ng ==15.2.0=*_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 5852044 + timestamp: 1778269036376 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_19.conda + sha256: 0672b6b6e1791c92e8eccad58081a99d614fcf82bca5841f9dfa3c3e658f83b9 + md5: e5ce228e579726c07255dbf90dc62101 depends: - - python >=3.14,<3.15.0a0 - - python_abi * *_cp314 - license: Python-2.0 - size: 49809 - timestamp: 1775614256655 -- conda: https://conda.anaconda.org/conda-forge/linux-64/curl-8.20.0-hcf29cc6_0.conda - sha256: 24b6ccc111388df77c65c68b3f3cad9f066e11741469fa60052ad0773f941c6e - md5: cc1a446bff91be88b2fa1d629e4f348b + - libstdcxx 15.2.0 h934c35e_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 27776 + timestamp: 1778269074600 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.1-h9d88235_1.conda + sha256: e5f8c38625aa6d567809733ae04bb71c161a42e44a9fa8227abe61fa5c60ebe0 + md5: cd5a90476766d53e901500df9215e927 depends: - __glibc >=2.17,<3.0.a0 - - krb5 >=1.22.2,<1.23.0a0 - - libcurl 8.20.0 hcf29cc6_0 + - lerc >=4.0.0,<5.0a0 + - libdeflate >=1.25,<1.26.0a0 - libgcc >=14 - - libssh2 >=1.11.1,<2.0a0 - - libzlib >=1.3.2,<2.0a0 - - openssl >=3.5.6,<4.0a0 - - zstd >=1.5.7,<1.6.0a0 - license: curl - license_family: MIT - size: 191489 - timestamp: 1777461498522 -- conda: https://conda.anaconda.org/conda-forge/osx-64/curl-8.20.0-h8f0b9e4_0.conda - sha256: caba0869bb0d18de3ce8eeda0ae4a0b988ff907faa9b5d94aea38d703d09413d - md5: af6b1246193c8db5da3c91594336293b - depends: - - __osx >=11.0 - - krb5 >=1.22.2,<1.23.0a0 - - libcurl 8.20.0 h8f0b9e4_0 - - libssh2 >=1.11.1,<2.0a0 - - libzlib >=1.3.2,<2.0a0 - - openssl >=3.5.6,<4.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libstdcxx >=14 + - libwebp-base >=1.6.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 - zstd >=1.5.7,<1.6.0a0 - license: curl - license_family: MIT - size: 182564 - timestamp: 1777462268628 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/curl-8.20.0-hd5a2499_0.conda - sha256: 2e531e953f62c6703ab9ea8bd6e62011a1760be0fa808b97ef5f3156956b421e - md5: 88cce35a3cb20623c1bc5be5e4dca9a5 + license: HPND + size: 435273 + timestamp: 1762022005702 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.42.1-h5347b49_0.conda + sha256: 3f0edf1280e2f6684a986f821eaa3e123d2694a00b31b96ca0d4a4c12c129231 + md5: 7d0a66598195ef00b6efc55aefc7453b depends: - - __osx >=11.0 - - krb5 >=1.22.2,<1.23.0a0 - - libcurl 8.20.0 hd5a2499_0 - - libssh2 >=1.11.1,<2.0a0 - - libzlib >=1.3.2,<2.0a0 - - openssl >=3.5.6,<4.0a0 - - zstd >=1.5.7,<1.6.0a0 - license: curl - license_family: MIT - size: 179176 - timestamp: 1777462274250 -- conda: https://conda.anaconda.org/conda-forge/win-64/curl-8.20.0-h8206538_0.conda - sha256: 4d14e99627c35eb13261d930f6f58c4a295cbbdc90ec2e624a3cb13822078018 - md5: fdee2c425c3876a2fb3ba8a361e7ad2c + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + license: BSD-3-Clause + license_family: BSD + size: 40163 + timestamp: 1779118517630 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.51.0-hb03c661_1.conda + sha256: c180f4124a889ac343fc59d15558e93667d894a966ec6fdb61da1604481be26b + md5: 0f03292cc56bf91a077a134ea8747118 depends: - - krb5 >=1.22.2,<1.23.0a0 - - libcurl 8.20.0 h8206538_0 - - libssh2 >=1.11.1,<2.0a0 - - libzlib >=1.3.2,<2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: curl + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + license: MIT license_family: MIT - size: 186081 - timestamp: 1777461642598 -- conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.20-py314h42812f9_0.conda - sha256: d9e89e351d7189c41615cfceca76b3bcacaa9c81d9945ac1caa6fb9e5184f610 - md5: 57e6fad901c05754d5256fe3ab9f277b + size: 895108 + timestamp: 1753948278280 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda + sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b + md5: aea31d2e5b1091feca96fcfe945c3cf9 depends: - - python + - __glibc >=2.17,<3.0.a0 - libgcc >=14 - - libstdcxx >=14 + constrains: + - libwebp 1.6.0 + license: BSD-3-Clause + license_family: BSD + size: 429011 + timestamp: 1752159441324 +- conda: 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 - - python_abi 3.14.* *_cp314 + - libgcc >=13 + - pthread-stubs + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp license: MIT license_family: MIT - size: 2886804 - timestamp: 1769744977998 -- conda: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.20-py314h2f9fc56_0.conda - sha256: ca2a3ac34b771d3d12c3f40d5dc87a1813cdeae362e9b68d49400901541a07bc - md5: 72ccc87f91848ee624a37347f7059d0f + size: 395888 + timestamp: 1727278577118 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-16-2.15.3-hca6bf5a_0.conda + sha256: 3d44f737c5ae52d5af32682cc1530df433f401f8e58a7533926536244127572a + md5: e79d2c2f24b027aa8d5ab1b1ba3061e7 depends: - - python - - libcxx >=19 - - __osx >=10.13 - - python_abi 3.14.* *_cp314 + - __glibc >=2.17,<3.0.a0 + - icu >=78.3,<79.0a0 + - libgcc >=14 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.3,<6.0a0 + - libzlib >=1.3.2,<2.0a0 + constrains: + - libxml2 2.15.3 license: MIT license_family: MIT - size: 2787671 - timestamp: 1769744993256 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.20-py314he609de1_0.conda - sha256: 7736a82ebe75c0f3ea6991298363d1f2edb34291f8616c1d3719862881c3a167 - md5: 407c74dc27356ba6bf3a0191070e3ac0 + size: 559775 + timestamp: 1776376739004 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.15.3-h49c6c72_0.conda + sha256: 3bc5551720c58591f6ea1146f7d1539c734ed1c40e7b9f5cb8cb7e900c509aba + md5: 995d8c8bad2a3cc8db14675a153dec2b depends: - - python - - python 3.14.* *_cp314 - - __osx >=11.0 - - libcxx >=19 - - python_abi 3.14.* *_cp314 + - __glibc >=2.17,<3.0.a0 + - icu >=78.3,<79.0a0 + - libgcc >=14 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.3,<6.0a0 + - libxml2-16 2.15.3 hca6bf5a_0 + - libzlib >=1.3.2,<2.0a0 license: MIT license_family: MIT - size: 2778080 - timestamp: 1769745040206 -- conda: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.20-py314hb98de8c_0.conda - sha256: ece1d8299ad081edaf1e5279f2a900bdedddb2c795ac029a06401543cd7610ad - md5: 48ae8370a4562f7049d587d017792a3a + size: 46810 + timestamp: 1776376751152 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda + sha256: 55044c403570f0dc26e6364de4dc5368e5f3fc7ff103e867c487e2b5ab2bcda9 + md5: d87ff7921124eccd67248aa483c23fec depends: - - python - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - ucrt >=10.0.20348.0 - - python_abi 3.14.* *_cp314 - license: MIT - license_family: MIT - size: 4026404 - timestamp: 1769745008861 -- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.3.1-pyhd8ed1ab_0.conda - sha256: 430bd9d731b265f0bedb3183ac3ecfaa1656390c092b6e864ff8cc1229843c8c - md5: 61dcf784d59ef0bd62c57d982b154ace + - __glibc >=2.17,<3.0.a0 + constrains: + - zlib 1.3.2 *_2 + license: Zlib + license_family: Other + size: 63629 + timestamp: 1774072609062 +- conda: https://conda.anaconda.org/conda-forge/linux-64/make-4.4.1-hb9d3cd8_2.conda + sha256: d652c7bd4d3b6f82b0f6d063b0d8df6f54cc47531092d7ff008e780f3261bdda + md5: 33405d2a66b1411db9f7242c8b97c9e7 depends: - - python >=3.10 - license: BSD-2-Clause - size: 16102 - timestamp: 1779115228886 -- conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be - md5: 961b3a227b437d82ad7054484cfa71b2 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: GPL-3.0-or-later + license_family: GPL + size: 513088 + timestamp: 1727801714848 +- conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.3-py314h67df5f8_1.conda + sha256: c279be85b59a62d5c52f5dd9a4cd43ebd08933809a8416c22c3131595607d4cf + md5: 9a17c4307d23318476d7fbf0fedc0cde depends: - - python >=3.6 - license: PSF-2.0 - license_family: PSF - size: 24062 - timestamp: 1615232388757 -- conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda - sha256: 6d977f0b2fc24fee21a9554389ab83070db341af6d6f09285360b2e09ef8b26e - md5: 003b8ba0a94e2f1e117d0bd46aebc901 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 27424 + timestamp: 1772445227915 +- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.6-hdb14827_0.conda + sha256: fc89f74bbe362fb29fa3c037697a89bec140b346a2469a90f7936d1d7ea4d8a3 + md5: fc21868a1a5aacc937e7a18747acb8a5 depends: - - python >=3.9 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + license: X11 AND BSD-3-Clause + size: 918956 + timestamp: 1777422145199 +- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.2-h35e630c_0.conda + sha256: c0ef482280e38c71a08ad6d71448194b719630345b0c9c60744a2010e8a8e0cb + md5: da1b85b6a87e141f5140bb9924cecab0 + depends: + - __glibc >=2.17,<3.0.a0 + - ca-certificates + - libgcc >=14 license: Apache-2.0 - license_family: APACHE - size: 275642 - timestamp: 1752823081585 -- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda - sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144 - md5: 8e662bd460bda79b1ea39194e3c4c9ab + license_family: Apache + size: 3167099 + timestamp: 1775587756857 +- conda: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.9.0.2-ha770c72_0.conda + sha256: d46f76ed09396e3bd1dc11030b3d0d222c25ba8d92f3cde08bc6fbd1eec4f9e0 + md5: de8ccf9ffba55bd20ee56301cfc7e6db + license: GPL-2.0-or-later + license_family: GPL + size: 22364689 + timestamp: 1773933354952 +- conda: https://conda.anaconda.org/conda-forge/linux-64/pango-1.56.4-hda50119_1.conda + sha256: 315b52bfa6d1a820f4806f6490d472581438a28e21df175290477caec18972b0 + md5: d53ffc0edc8eabf4253508008493c5bc depends: - - python >=3.10 - - typing_extensions >=4.6.0 - license: MIT and PSF-2.0 - size: 21333 - timestamp: 1763918099466 -- conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda - sha256: 210c8165a58fdbf16e626aac93cc4c14dbd551a01d1516be5ecad795d2422cad - md5: ff9efb7f7469aed3c4a8106ffa29593c + - __glibc >=2.17,<3.0.a0 + - cairo >=1.18.4,<2.0a0 + - fontconfig >=2.17.1,<3.0a0 + - fonts-conda-ecosystem + - fribidi >=1.0.16,<2.0a0 + - harfbuzz >=13.2.1 + - libexpat >=2.7.4,<3.0a0 + - libfreetype >=2.14.2 + - libfreetype6 >=2.14.2 + - libgcc >=14 + - libglib >=2.86.4,<3.0a0 + - libpng >=1.6.55,<1.7.0a0 + - libzlib >=1.3.2,<2.0a0 + license: LGPL-2.1-or-later + size: 458036 + timestamp: 1774281947855 +- conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.47-haa7fec5_0.conda + sha256: 5e6f7d161356fefd981948bea5139c5aa0436767751a6930cb1ca801ebb113ff + md5: 7a3bff861a6583f1889021facefc08b1 depends: - - python >=3.10 + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - libgcc >=14 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1222481 + timestamp: 1763655398280 +- conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.46.4-h54a6638_1.conda + sha256: 43d37bc9ca3b257c5dd7bf76a8426addbdec381f6786ff441dc90b1a49143b6a + md5: c01af13bdc553d1a8fbfff6e8db075f0 + depends: + - libgcc >=14 + - libstdcxx >=14 + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 license: MIT license_family: MIT - size: 30753 - timestamp: 1756729456476 -- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.29.0-pyhd8ed1ab_0.conda - sha256: 6b471a18372bbd52bdf32fc965f71de3bc1b5219418b8e6b3875a67a7b08c483 - md5: 8fa8358d022a3a9bd101384a808044c6 + size: 450960 + timestamp: 1754665235234 +- conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.2.2-py314h0f05182_0.conda + sha256: f15574ed6c8c8ed8c15a0c5a00102b1efe8b867c0bd286b498cd98d95bd69ae5 + md5: 4f225a966cfee267a79c5cb6382bd121 depends: - - python >=3.10 - license: Unlicense - size: 34211 - timestamp: 1776621506566 -- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 - sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b - md5: 0c96522c6bdaed4b1566d11387caaf45 + - python + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.14.* *_cp314 license: BSD-3-Clause license_family: BSD - size: 397370 - timestamp: 1566932522327 -- conda: 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 -- conda: 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 -- conda: 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 -- conda: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.17.1-h27c8c51_0.conda - sha256: aa4a44dba97151221100a637c7f4bde619567afade9c0265f8e1c8eed8d7bd8c - md5: 867127763fbe935bab59815b6e0b7b5c + size: 231303 + timestamp: 1769678156552 +- conda: 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 +- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.14.5-habeac84_100_cp314.conda + build_number: 100 + sha256: 55eed9bf2a3f6e90311276f0834737fe7c2d9ec3e5e2e557507858df4c7521e6 + md5: da92e59ff92f2d5ede4f612af20f583f + depends: + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 + - libexpat >=2.8.0,<3.0a0 + - libffi >=3.5.2,<3.6.0a0 + - libgcc >=14 + - liblzma >=5.8.3,<6.0a0 + - libmpdec >=4.0.0,<5.0a0 + - libsqlite >=3.53.1,<4.0a0 + - libuuid >=2.42.1,<3.0a0 + - libzlib >=1.3.2,<2.0a0 + - ncurses >=6.6,<7.0a0 + - openssl >=3.5.6,<4.0a0 + - python_abi 3.14.* *_cp314 + - readline >=8.3,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - zstd >=1.5.7,<1.6.0a0 + license: Python-2.0 + size: 36745188 + timestamp: 1779236923603 + python_site_packages_path: lib/python3.14/site-packages +- conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.3-py314h67df5f8_1.conda + sha256: b318fb070c7a1f89980ef124b80a0b5ccf3928143708a85e0053cde0169c699d + md5: 2035f68f96be30dc60a5dfd7452c7941 depends: - __glibc >=2.17,<3.0.a0 - - libexpat >=2.7.4,<3.0a0 - - libfreetype >=2.14.1 - - libfreetype6 >=2.14.1 - libgcc >=14 - - libuuid >=2.41.3,<3.0a0 - - libzlib >=1.3.1,<2.0a0 + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + - yaml >=0.2.5,<0.3.0a0 license: MIT license_family: MIT - size: 270705 - timestamp: 1771382710863 -- conda: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.17.1-h7a4440b_0.conda - sha256: a972a114e618891bb50e50d8b13f5accb0085847f3aab1cf208e4552c1ab9c24 - md5: 4646a20e8bbb54903d6b8e631ceb550d + size: 202391 + timestamp: 1770223462836 +- conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-27.1.0-py312hda471dd_2.conda + noarch: python + sha256: be66c1f85c3b48137200d62c12d918f4f8ad329423daef04fed292818efd3c28 + md5: 082985717303dab433c976986c674b35 depends: - - __osx >=11.0 - - libexpat >=2.7.4,<3.0a0 - - libfreetype >=2.14.1 - - libfreetype6 >=2.14.1 - - libzlib >=1.3.1,<2.0a0 + - python + - libgcc >=14 + - libstdcxx >=14 + - __glibc >=2.17,<3.0.a0 + - zeromq >=4.3.5,<4.4.0a0 + - _python_abi3_support 1.* + - cpython >=3.12 + license: BSD-3-Clause + license_family: BSD + size: 211567 + timestamp: 1771716961404 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-askpass-1.2.1-r44h54b55ab_1.conda + sha256: 39a8bdb086df98cfeeedadeeafdbfcd8a5b90a3c266229d1ab7a2b25fc1db2b3 + md5: ae87c9a5af5a2ebfa5412037825f4dd2 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + - r-sys >=2.1 license: MIT license_family: MIT - size: 237866 - timestamp: 1771382969241 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.17.1-h2b252f5_0.conda - sha256: 851e9c778bfc54645dcab7038c0383445cbebf16f6bb2d3f62ce422b1605385a - md5: d06ae1a11b46cc4c74177ecd28de7c7a + size: 32088 + timestamp: 1758383484942 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-base-4.4.3-h15dba0b_9.conda + sha256: c42274eff622bb169d2cb6c7897b9425b361e0483d0a42dc72b50806dd10ba4d + md5: 4a385786dcfd15bc9c408dd38a57694e depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + - _r-mutex 1.* anacondar_1 + - bwidget + - bzip2 >=1.0.8,<2.0a0 + - cairo >=1.18.4,<2.0a0 + - curl + - gcc_impl_linux-64 >=10 + - gfortran_impl_linux-64 + - gsl >=2.7,<2.8.0a0 + - gxx_impl_linux-64 >=10 + - icu >=78.2,<79.0a0 + - libblas >=3.9.0,<4.0a0 + - libcurl >=8.19.0,<9.0a0 + - libdeflate >=1.25,<1.26.0a0 - libexpat >=2.7.4,<3.0a0 - - libfreetype >=2.14.1 - - libfreetype6 >=2.14.1 + - libgcc + - libgcc-ng >=12 + - libgfortran + - libgfortran-ng + - libgfortran5 >=10.4.0 + - libglib >=2.86.4,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libjpeg-turbo >=3.1.2,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblzma >=5.8.2,<6.0a0 + - libpng >=1.6.55,<1.7.0a0 + - libstdcxx + - libstdcxx-ng >=12 + - libtiff >=4.7.1,<4.8.0a0 + - libuuid >=2.41.3,<3.0a0 - libzlib >=1.3.1,<2.0a0 - license: MIT - license_family: MIT - size: 237308 - timestamp: 1771382999247 -- conda: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.17.1-hd47e2ca_0.conda - sha256: ff2db9d305711854de430f946dc59bd40167940a1de38db29c5a78659f219d9c - md5: a0b1b87e871011ca3b783bbf410bc39f + - make + - pango >=1.56.4,<2.0a0 + - pcre2 >=10.47,<10.48.0a0 + - readline >=8.3,<9.0a0 + - sed + - tk >=8.6.13,<8.7.0a0 + - tktable + - tzdata >=2024a + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.6,<2.0a0 + - xorg-libx11 >=1.8.13,<2.0a0 + - xorg-libxt >=1.3.1,<2.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 27113409 + timestamp: 1773746018573 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-base-4.5.3-h15dba0b_1.conda + sha256: eb21b72dfa6cc767cebc0b348b8da3dc762a7e85627fc7a5afee72cc75e8f89c + md5: 0356c81af70570e685acc134ac740014 depends: + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + - _r-mutex 1.* anacondar_1 + - bwidget + - bzip2 >=1.0.8,<2.0a0 + - cairo >=1.18.4,<2.0a0 + - curl + - gcc_impl_linux-64 >=10 + - gfortran_impl_linux-64 + - gsl >=2.7,<2.8.0a0 + - gxx_impl_linux-64 >=10 + - icu >=78.2,<79.0a0 + - libblas >=3.9.0,<4.0a0 + - libcurl >=8.19.0,<9.0a0 + - libdeflate >=1.25,<1.26.0a0 - libexpat >=2.7.4,<3.0a0 - - libfreetype >=2.14.1 - - libfreetype6 >=2.14.1 + - libgcc + - libgcc-ng >=12 + - libgfortran + - libgfortran-ng + - libgfortran5 >=10.4.0 + - libglib >=2.86.4,<3.0a0 - libiconv >=1.18,<2.0a0 + - libjpeg-turbo >=3.1.2,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblzma >=5.8.2,<6.0a0 + - libpng >=1.6.55,<1.7.0a0 + - libstdcxx + - libstdcxx-ng >=12 + - libtiff >=4.7.1,<4.8.0a0 + - libuuid >=2.41.3,<3.0a0 - libzlib >=1.3.1,<2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: MIT - license_family: MIT - size: 195332 - timestamp: 1771382820659 -- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 - sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 - md5: fee5683a3f04bd15cbd8318b096a27ab + - make + - pango >=1.56.4,<2.0a0 + - pcre2 >=10.47,<10.48.0a0 + - readline >=8.3,<9.0a0 + - sed + - tk >=8.6.13,<8.7.0a0 + - tktable + - tzdata >=2024a + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.6,<2.0a0 + - xorg-libx11 >=1.8.13,<2.0a0 + - xorg-libxt >=1.3.1,<2.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 27333030 + timestamp: 1773746047753 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-base64enc-0.1_6-r44h54b55ab_0.conda + sha256: 07f1380e2ad8fd9a8bc43b04ec944728e04a9673b9844caa2f1fa1f422d39c4f + md5: ab87845469cfada7bae36f17b3dd9681 depends: - - fonts-conda-forge - license: BSD-3-Clause - license_family: BSD - size: 3667 - timestamp: 1566974674465 -- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-hc364b38_1.conda - sha256: 54eea8469786bc2291cc40bca5f46438d3e062a399e8f53f013b6a9f50e98333 - md5: a7970cd949a077b7cb9696379d338681 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: GPL-2.0-or-later + license_family: GPL3 + size: 48614 + timestamp: 1770027792092 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-base64enc-0.1_6-r45h54b55ab_0.conda + sha256: 7a3751a340766ee25380a51df70c8356a64cfeb6ac3d982a86e92eb99fec2943 + md5: e573dc135976197e7f819eec202c93f1 depends: - - font-ttf-ubuntu - - font-ttf-inconsolata - - font-ttf-dejavu-sans-mono - - font-ttf-source-code-pro - license: BSD-3-Clause - license_family: BSD - size: 4059 - timestamp: 1762351264405 -- conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda - sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 - md5: d3549fd50d450b6d9e7dddff25dd2110 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.5,<4.6.0a0 + license: GPL-2.0-or-later + license_family: GPL3 + size: 48616 + timestamp: 1770027796335 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-brio-1.1.5-r44h54b55ab_2.conda + sha256: 978484617257c31d7ea2977e970069a0f6c1456f315b95f946d81d6012dec527 + md5: 740449b857685bb63ffd29f10643f126 depends: - - cached-property >=1.3.0 - - python >=3.9,<4 - license: MPL-2.0 - license_family: MOZILLA - size: 16705 - timestamp: 1733327494780 -- conda: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.16-hb03c661_0.conda - sha256: 858283ff33d4c033f4971bf440cebff217d5552a5222ba994c49be990dacd40d - md5: f9f81ea472684d75b9dd8d0b328cf655 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 44540 + timestamp: 1757421410587 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-cachem-1.1.0-r44h54b55ab_2.conda + sha256: 1a68b04169a635a3890573cd3f07a791ca1b27b1a1171109b0402a2f8787162d + md5: 9e798e9474af81b679133429db82de66 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + - r-fastmap + - r-rlang + license: MIT + license_family: MIT + size: 76618 + timestamp: 1757441491774 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-cli-3.6.6-r44h3697838_0.conda + sha256: 158a5ffe707dfa11bde1ede789ee9dc6521e8eebc5b8278f83b9e9f787180d68 + md5: 13cca7c3f7d182bf222f3c70303c91be depends: - __glibc >=2.17,<3.0.a0 - libgcc >=14 - license: LGPL-2.1-or-later - size: 61244 - timestamp: 1757438574066 -- conda: https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.16-h8616949_0.conda - sha256: 53dd0a6c561cf31038633aaa0d52be05da1f24e86947f06c4e324606c72c7413 - md5: 4422491d30462506b9f2d554ab55e33d - depends: - - __osx >=10.13 - license: LGPL-2.1-or-later - size: 60923 - timestamp: 1757438791418 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.16-hc919400_0.conda - sha256: d856dc6744ecfba78c5f7df3378f03a75c911aadac803fa2b41a583667b4b600 - md5: 04bdce8d93a4ed181d1d726163c2d447 - depends: - - __osx >=11.0 - license: LGPL-2.1-or-later - size: 59391 - timestamp: 1757438897523 -- conda: https://conda.anaconda.org/conda-forge/win-64/fribidi-1.0.16-hfd05255_0.conda - sha256: 15011071ee56c216ffe276c8d734427f1f893f275ef733f728d13f610ed89e6e - md5: c27bd87e70f970010c1c6db104b88b18 - depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: LGPL-2.1-or-later - size: 64394 - timestamp: 1757438741305 -- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he0086c7_19.conda - sha256: a48400ec4b73369c1c59babe4ad35821b63a88bba0ec40a80cea5f8c53a26b83 - md5: e3be72048d3c4a78b8e27ec48ba06252 + - libstdcxx >=14 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 1322870 + timestamp: 1775733707285 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-cli-3.6.6-r45h3697838_0.conda + sha256: a894e558a680a31444090de217b73f8fc06a3f4c07746d2cde4b6f86acdae0b1 + md5: ed8dcbbe9d66e9093ba58891e3b6065a depends: - - binutils_impl_linux-64 >=2.45 - - libgcc >=15.2.0 - - libgcc-devel_linux-64 15.2.0 hcc6f6b0_119 - - libgomp >=15.2.0 - - libsanitizer 15.2.0 h90f66d4_19 - - libstdcxx >=15.2.0 - - libstdcxx-devel_linux-64 15.2.0 hd446a21_119 - - sysroot_linux-64 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 81180457 - timestamp: 1778269124617 -- conda: https://conda.anaconda.org/conda-forge/win-64/gcc_impl_win-64-15.2.0-h062b9a2_19.conda - sha256: 9a1087fc15253a923d6c4f3a313285b1ad7f5e8c849f24086bc0696b9383313b - md5: 04354147d91b3ac936a4f410af5e1d0f + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.5,<4.6.0a0 + license: MIT + license_family: MIT + size: 1323795 + timestamp: 1775733704549 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-commonmark-2.0.0-r44h54b55ab_1.conda + sha256: 3476f88b4aad66847acaf674739abb8d382129e85272e24667887424c0d47934 + md5: 9aed52e98aeac71945621364047ab682 depends: - - binutils_impl_win-64 >=2.45 - - libgcc >=15.2.0 - - libgcc-devel_win-64 15.2.0 hbb59886_119 - - libgomp >=15.2.0 - - libstdcxx >=15.2.0 - - libstdcxx-devel_win-64 15.2.0 h0a72980_119 - - m2w64-sysroot_win-64 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 62130152 - timestamp: 1778273122806 -- conda: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-15.2.0-h281d09f_19.conda - sha256: 2f6a962bfcb74b8262dc0af5cf0716acbd96f769a0443dd231d1041c222b0ca6 - md5: 5d4fdb7935b8aa1cdb2e22ef8958101e + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: BSD-2-Clause + license_family: BSD + size: 139988 + timestamp: 1757422083741 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-curl-7.1.0-r44h10955f1_0.conda + sha256: 86e47ff305f8cfdd4e9a50c892160598d7e97ff651ebbe2b700da7f3a6adb097 + md5: 553cca12312f999e00113332cf31c4ae depends: - - gcc_impl_linux-64 >=15.2.0 - - libgcc >=15.2.0 - - libgfortran5 >=15.2.0 - - libstdcxx >=15.2.0 - - sysroot_linux-64 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 20041854 - timestamp: 1778269291096 -- conda: https://conda.anaconda.org/conda-forge/osx-64/gfortran_impl_osx-64-14.3.0-h94fe04d_1.conda - sha256: 7a2a952ffee0349147768c1d6482cb0933349017056210118ebd5f0fb688f5d5 - md5: 1a81d1a0cb7f241144d9f10e55a66379 + - __glibc >=2.17,<3.0.a0 + - libcurl >=8.19.0,<9.0a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 474055 + timestamp: 1777147714103 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-diffobj-0.3.6-r44h54b55ab_1.conda + sha256: 63bb9d1cef7ab68992fdc18023114211b5d1fc5363651063afecc5f6dee3c7fd + md5: ba81c2468035b1215f239423ec1217bd depends: - - __osx >=10.13 - - cctools_osx-64 - - clang - - gmp >=6.3.0,<7.0a0 - - isl 0.26.* - - libcxx >=17 - - libgfortran-devel_osx-64 14.3.0.* - - libgfortran5 >=14.3.0 - - libiconv >=1.18,<2.0a0 - - libzlib >=1.3.1,<2.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: 23083852 - timestamp: 1759709470800 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_impl_osx-arm64-14.3.0-h6d03799_1.conda - sha256: c05c634388e180f79c70a5989d2b25977716b7f6d5e395119ad0007cf4a7bcbf - md5: 1e9ec88ecc684d92644a45c6df2399d0 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + - r-crayon >=1.3.2 + license: GPL-2.0-or-later + license_family: GPL2 + size: 1012323 + timestamp: 1757459178042 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-digest-0.6.39-r44h3697838_0.conda + sha256: 829b5a49aa497c7cab48915ee3e5ffb4f651160027961faefe412166202b9ca1 + md5: c09d9af7929f64611137e83de28db915 depends: - - __osx >=11.0 - - cctools_osx-arm64 - - clang - - gmp >=6.3.0,<7.0a0 - - isl 0.26.* - - libcxx >=17 - - libgfortran-devel_osx-arm64 14.3.0.* - - libgfortran5 >=14.3.0 - - libiconv >=1.18,<2.0a0 - - libzlib >=1.3.1,<2.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: 20286770 - timestamp: 1759712171482 -- conda: https://conda.anaconda.org/conda-forge/win-64/gfortran_impl_win-64-15.2.0-h0e079bb_19.conda - sha256: 0204002c214622bb701e643723c4ea4fb4417e9a59415fac804747289dafb446 - md5: f87fbb8ca50927f218328fcc8767130d + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.4,<4.5.0a0 + license: GPL-2.0-or-later + license_family: GPL2 + size: 218462 + timestamp: 1763566657101 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-digest-0.6.39-r45h3697838_0.conda + sha256: 33ce40552bc1810252c4445082392638ff2fb883147cf36c3e4017e9b0dc5474 + md5: a0e856537aa7d62a6835e3a528d29517 depends: - - gcc_impl_win-64 >=15.2.0 - - libgcc >=15.2.0 - - libgfortran5 >=15.2.0 - - libstdcxx >=15.2.0 - - m2w64-sysroot_win-64 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 17264590 - timestamp: 1778273342581 -- conda: https://conda.anaconda.org/conda-forge/osx-64/gfortran_osx-64-14.3.0-h3223c34_0.conda - sha256: 14014ad4d46e894645979cbad42dd509482172095c756bdb5474918e0638bd57 - md5: 979b3c36c57d31e1112fa1b1aec28e02 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.5,<4.6.0a0 + license: GPL-2.0-or-later + license_family: GPL2 + size: 218412 + timestamp: 1763566744987 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-ellipsis-0.3.3-r44h54b55ab_0.conda + sha256: ac44b0472993c0b620b71a0356545242ea853a894dab21add2964b7f2d924f19 + md5: 309df67a7a2f04427edfed0c88732fd4 depends: - - cctools_osx-64 - - clang - - clang_osx-64 - - gfortran_impl_osx-64 14.3.0 - - ld64_osx-64 - - libgfortran - - libgfortran-devel_osx-64 14.3.0 - - libgfortran5 >=14.3.0 - license: GPL-3.0-or-later WITH GCC-exception-3.1 - license_family: GPL - size: 35767 - timestamp: 1751220493617 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_osx-arm64-14.3.0-h3c33bd0_0.conda - sha256: 2644e5f4b4eed171b12afb299e2413be5877db92f30ec03690621d1ae648502c - md5: 8db8c0061c0f3701444b7b9cc9966511 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + - r-rlang >=0.3.0 + license: MIT + license_family: MIT + size: 33480 + timestamp: 1775287245091 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-ellipsis-0.3.3-r45h54b55ab_0.conda + sha256: 19d03273f9d5e1aa41302e1cf080dcb95ced5b955bc978df39eee71a9686a86c + md5: e43b3e7101a90ac57f58a21da67c99a4 depends: - - cctools_osx-arm64 - - clang - - clang_osx-arm64 - - gfortran_impl_osx-arm64 14.3.0 - - ld64_osx-arm64 - - libgfortran - - libgfortran-devel_osx-arm64 14.3.0 - - libgfortran5 >=14.3.0 - license: GPL-3.0-or-later WITH GCC-exception-3.1 - license_family: GPL - size: 35951 - timestamp: 1751220424258 -- conda: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda - sha256: 75aa5e7a875afdcf4903b7dc98577672a3dc17b528ac217b915f9528f93c85fc - md5: 427101d13f19c4974552a4e5b072eef1 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.5,<4.6.0a0 + - r-rlang >=0.3.0 + license: MIT + license_family: MIT + size: 33411 + timestamp: 1775287239478 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-fansi-1.0.7-r44h54b55ab_0.conda + sha256: f738c07d48dabdf29ffb228f5eb752e00abe8f2a025c3032eb3b2974224d369c + md5: cb8edd5978ccf005e53ae370ae1b15d0 depends: - - __osx >=10.13 - - libcxx >=16 - license: GPL-2.0-or-later OR LGPL-3.0-or-later - size: 428919 - timestamp: 1718981041839 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda - sha256: 76e222e072d61c840f64a44e0580c2503562b009090f55aa45053bf1ccb385dd - md5: eed7278dfbab727b56f2c0b64330814b + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: GPL-2.0-or-later + license_family: GPL3 + size: 329490 + timestamp: 1763566093770 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-fansi-1.0.7-r45h54b55ab_0.conda + sha256: 68dcc5aa6fc4408f9cac5aeaa03a7e6a5d127a949fc72b3fed31fd1af3bbeee5 + md5: 309740f1b6a2d4cb16d395be786c85c5 depends: - - __osx >=11.0 - - libcxx >=16 - license: GPL-2.0-or-later OR LGPL-3.0-or-later - size: 365188 - timestamp: 1718981343258 -- conda: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.14-hecca717_2.conda - sha256: 25ba37da5c39697a77fce2c9a15e48cf0a84f1464ad2aafbe53d8357a9f6cc8c - md5: 2cd94587f3a401ae05e03a6caf09539d + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.5,<4.6.0a0 + license: GPL-2.0-or-later + license_family: GPL3 + size: 329435 + timestamp: 1763566090233 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-fastmap-1.2.0-r44h3697838_2.conda + sha256: 202cbae1f393f944f3465141a78ffce056d3109b21d6437955f4e8a9af8b30e6 + md5: 734e73555e5c0962c40c89e6aa7cf1a8 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=14 - libstdcxx >=14 - license: LGPL-2.0-or-later - license_family: LGPL - size: 99596 - timestamp: 1755102025473 -- conda: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.14-h21dd04a_2.conda - sha256: c356eb7a42775bd2bae243d9987436cd1a442be214b1580251bb7fdc136d804b - md5: ba63822087afc37e01bf44edcc2479f3 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 74279 + timestamp: 1757421564828 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-fastmap-1.2.0-r45h3697838_2.conda + sha256: bfec10cec03b434d9010690c61d43a0be79418f67a0713ce31da207a40e1570c + md5: 245526991ad3b8a1dc97f2dcb5031065 depends: - - __osx >=10.13 - - libcxx >=19 - license: LGPL-2.0-or-later - license_family: LGPL - size: 85465 - timestamp: 1755102182985 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.14-hec049ff_2.conda - sha256: c507ae9989dbea7024aa6feaebb16cbf271faac67ac3f0342ef1ab747c20475d - md5: 0fc46fee39e88bbcf5835f71a9d9a209 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.5,<4.6.0a0 + license: MIT + license_family: MIT + size: 73870 + timestamp: 1757421441326 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-filelock-1.0.3-r44h54b55ab_2.conda + sha256: 7bf1c09b71554b0bc4a1ddaeea0c24790c36983048ca06807b4510b2aa6be5d0 + md5: 7c6896398f42a9657f0ef5d4b65da270 depends: - - __osx >=11.0 - - libcxx >=19 - license: LGPL-2.0-or-later - license_family: LGPL - size: 81202 - timestamp: 1755102333712 -- conda: https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.14-hac47afa_2.conda - sha256: 5f1714b07252f885a62521b625898326ade6ca25fbc20727cfe9a88f68a54bfd - md5: b785694dd3ec77a011ccf0c24725382b + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 33925 + timestamp: 1757575999387 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-fs-2.1.0-r44h3697838_0.conda + sha256: 0c1e4f774db77e4ee5b46de3266835f009cade13174d5a0dae04585641d8753e + md5: 36e7df839c01c17b2c3dbf79147f70de depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: LGPL-2.0-or-later - license_family: LGPL - size: 96336 - timestamp: 1755102441729 -- conda: https://conda.anaconda.org/conda-forge/linux-64/gsl-2.7-he838d99_0.tar.bz2 - sha256: 132a918b676dd1f533d7c6f95e567abf7081a6ea3251c3280de35ef600e0da87 - md5: fec079ba39c9cca093bf4c00001825de + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - libuv >=1.51.0,<2.0a0 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 243769 + timestamp: 1777152730611 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-gert-2.3.1-r44h5e22a44_0.conda + sha256: c222d68a8f654084bbb48a32a9f12576ffa416c5f737d4c6510d87868fc210db + md5: 29809d2fa096af0f59e21b5bb2fd586e depends: - - libblas >=3.8.0,<4.0a0 - - libcblas >=3.8.0,<4.0a0 - - libgcc-ng >=9.3.0 - license: GPL-3.0-or-later - license_family: GPL - size: 3376423 - timestamp: 1626369596591 -- conda: https://conda.anaconda.org/conda-forge/osx-64/gsl-2.7-h93259b0_0.tar.bz2 - sha256: 8550d64004810fa0b5f552d1f21f9fe51483cd30d2d3200d7b0c5e324f7e6995 - md5: b4942b1ee2a52fd67f446074488d774d + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libgit2 >=1.9.2,<1.10.0a0 + - r-askpass + - r-base >=4.4,<4.5.0a0 + - r-credentials >=1.2.1 + - r-openssl >=2.0.3 + - r-rstudioapi >=0.11 + - r-zip >=2.1.0 + license: MIT + license_family: MIT + size: 281073 + timestamp: 1768193985729 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-glue-1.8.1-r44h54b55ab_0.conda + sha256: f35d216e9961d3c8b092b7a77418d2acc2c1597229211f244b2e073465555110 + md5: b89f52d1c0cab3a259ef35834eb0a0d9 depends: - - libblas >=3.8.0,<4.0a0 - - libcblas >=3.8.0,<4.0a0 - license: GPL-3.0-or-later - license_family: GPL - size: 3221488 - timestamp: 1626369980688 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gsl-2.7-h6e638da_0.tar.bz2 - sha256: 979c2976adcfc70be997abeab2ed8395f9ac2b836bdcd25ed5d2efbf1fed226b - md5: 2a2126a940e033e7225a5dc7215eea9a + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 170945 + timestamp: 1776413606623 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-glue-1.8.1-r45h54b55ab_0.conda + sha256: c2760270ffabd95e9d0a0caa9cc705c5a0370ad119ace5495acc043b1a35d198 + md5: 65911c2e9cac35ea0235d3d6d4aa9625 depends: - - libblas >=3.9.0,<4.0a0 - - libcblas >=3.9.0,<4.0a0 - license: GPL-3.0-or-later - license_family: GPL - size: 2734398 - timestamp: 1626369562748 -- conda: https://conda.anaconda.org/conda-forge/win-64/gsl-2.7-hdfb1a43_0.tar.bz2 - sha256: 4bb43ff81eca1631a3738dee073763cbff2d27a47ac3c60d7b7233941d7ab202 - md5: ca5c581b3659140455cf6ae00f6a2ea9 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.5,<4.6.0a0 + license: MIT + license_family: MIT + size: 171639 + timestamp: 1776413601349 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-htmltools-0.5.9-r44h3697838_0.conda + sha256: 01a5040c5fdfd6f9a180d1f679342131b062e0f97feef9a3cdfa8af890c4e1bb + md5: fe46047f03af99174b444665dc12bcee depends: - - libblas >=3.8.0,<4.0a0 - - libcblas >=3.8.0,<4.0a0 - - vc >=14.1,<15.0a0 - - vs2015_runtime >=14.16.27012 - license: GPL-3.0-or-later - license_family: GPL - size: 1739909 - timestamp: 1626371462874 -- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-15.2.0-hda75c37_19.conda - sha256: 3f5288346b9fe233352443b3c2e31f1fde845e39d3e96475fc05ec2e782af158 - md5: 9d41f3899b512199af0a4bb939b83e21 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.4,<4.5.0a0 + - r-base64enc + - r-digest + - r-ellipsis + - r-fastmap >=1.1.0 + - r-rlang >=0.4.10 + license: GPL-2.0-or-later + license_family: GPL3 + size: 366967 + timestamp: 1764860680530 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-htmltools-0.5.9-r45h3697838_0.conda + sha256: 1fa1fcdf980d0da17a583e41810da190eb9caf586c3fdf36312d045d9bb812e7 + md5: 2a2297687ae137e7fa90d3c996895e61 depends: - - gcc_impl_linux-64 15.2.0 he0086c7_19 - - libstdcxx-devel_linux-64 15.2.0 hd446a21_119 - - sysroot_linux-64 - - tzdata - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 16356816 - timestamp: 1778269332159 -- conda: https://conda.anaconda.org/conda-forge/win-64/gxx_impl_win-64-15.2.0-h22fd5bf_19.conda - sha256: 2f3b16794653b12a4aebe9e8073f51dd5f8ff1c82b40585434d1a7f32ff0a558 - md5: 816b9049907b42a6a4ec655aebe67d3c + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.5,<4.6.0a0 + - r-base64enc + - r-digest + - r-ellipsis + - r-fastmap >=1.1.0 + - r-rlang >=0.4.10 + license: GPL-2.0-or-later + license_family: GPL3 + size: 367095 + timestamp: 1764860550376 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-httpuv-1.6.17-r44h6d565e7_0.conda + sha256: 05fc8b945a8d7e8c6a52b156a4b823fdfe37d504da4cd897b02a1a5c430847fb + md5: 274bdd8ada4d78fe9279f4daf284a706 depends: - - gcc_impl_win-64 15.2.0 h062b9a2_19 - - libstdcxx-devel_win-64 15.2.0 h0a72980_119 - - m2w64-sysroot_win-64 - - tzdata - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 14813951 - timestamp: 1778273408391 -- conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhcf101f3_1.conda - sha256: 96cac6573fd35ae151f4d6979bab6fbc90cb6b1fb99054ba19eb075da9822fcb - md5: b8993c19b0c32a2f7b66cbb58ca27069 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - libuv >=1.51.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - r-base >=4.4,<4.5.0a0 + - r-later >=0.8.0 + - r-promises + - r-r6 + - r-rcpp >=1.0.7 + license: GPL-2.0-or-later + license_family: GPL3 + size: 558237 + timestamp: 1773825455133 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-jsonlite-2.0.0-r44h54b55ab_1.conda + sha256: faff2faef7e73c5fd02fea6bbe8aa9e444fabf7f56e8d932c7babc51ee76a290 + md5: 26de9e385370e6bf7d0ca13a3e630d7f depends: - - python >=3.10 - - typing_extensions - - python + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 license: MIT license_family: MIT - size: 39069 - timestamp: 1767729720872 -- conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda - sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 - md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 + size: 639260 + timestamp: 1757419504603 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-jsonlite-2.0.0-r45h54b55ab_1.conda + sha256: bd24c57226192b0decdcddd6fd5fa74db1f29685904e4aff87f2c16eb6493416 + md5: 026c72026f431daf8a5719e09e704faa depends: - - python >=3.10 - - hyperframe >=6.1,<7 - - hpack >=4.1,<5 - - python + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.5,<4.6.0a0 license: MIT license_family: MIT - size: 95967 - timestamp: 1756364871835 -- conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-14.2.0-h6083320_0.conda - sha256: 232c95b56d16d33d8256026a3b1ad34f7f9a75c179d388854be0fd624ddba9e3 - md5: e194f6a2f498f0c7b1e6498bd0b12645 + size: 638574 + timestamp: 1757419590757 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-later-1.4.8-r44h3697838_0.conda + sha256: daada7549cf07a0da6bafc41a8c02365b34b333671aab85ca0478ff57812f1b4 + md5: bdf7f2670f423c68c2f851bfd45c3cba depends: - __glibc >=2.17,<3.0.a0 - - cairo >=1.18.4,<2.0a0 - - graphite2 >=1.3.14,<2.0a0 - - icu >=78.3,<79.0a0 - - libexpat >=2.7.5,<3.0a0 - - libfreetype >=2.14.3 - - libfreetype6 >=2.14.3 - libgcc >=14 - - libglib >=2.86.4,<3.0a0 - libstdcxx >=14 - - libzlib >=1.3.2,<2.0a0 + - r-base >=4.4,<4.5.0a0 + - r-rcpp >=0.12.9 + - r-rlang license: MIT license_family: MIT - size: 2333599 - timestamp: 1776778392713 -- conda: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-14.2.0-hf0bc557_0.conda - sha256: ab070b8961569fbdd3e414bee89887f1ca97522c73afb0fa2f055ad775c7dd20 - md5: e7fd9056aa65f6dac6558b39c332c907 + size: 153587 + timestamp: 1772707291730 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-lpsolve-5.6.23-r44h54b55ab_1.conda + sha256: 71093079c31fcba8665f0fff6c1eab5c473bee2459a01810d666bd6d13859973 + md5: 4bc7fd5dbe3cda23aa4024771c938796 depends: - - __osx >=11.0 - - cairo >=1.18.4,<2.0a0 - - graphite2 >=1.3.14,<2.0a0 - - icu >=78.3,<79.0a0 - - libcxx >=19 - - libexpat >=2.7.5,<3.0a0 - - libfreetype >=2.14.3 - - libfreetype6 >=2.14.3 - - libglib >=2.86.4,<3.0a0 - - libzlib >=1.3.2,<2.0a0 - license: MIT - license_family: MIT - size: 2148344 - timestamp: 1776778909454 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-14.2.0-h3103d1b_0.conda - sha256: 40ccd6a589c60a4cedb2f9921dfa60ea5845b5ce323477b042b6f90218b239f6 - md5: ea75b03886981362d93bb4708ee14811 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: LGPL-2.0-only + license_family: LGPL + size: 378284 + timestamp: 1757495637197 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-magrittr-2.0.5-r44h54b55ab_0.conda + sha256: a827edd45d915ca2e5a950a940cdc0e0f5288c3de6d63d7e6f887e9e8ec0d8e3 + md5: 6ff0837b78eb1c0d443eab95c7255089 depends: - - __osx >=11.0 - - cairo >=1.18.4,<2.0a0 - - graphite2 >=1.3.14,<2.0a0 - - icu >=78.3,<79.0a0 - - libcxx >=19 - - libexpat >=2.7.5,<3.0a0 - - libfreetype >=2.14.3 - - libfreetype6 >=2.14.3 - - libglib >=2.86.4,<3.0a0 - - libzlib >=1.3.2,<2.0a0 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 license: MIT license_family: MIT - size: 2023669 - timestamp: 1776779039314 -- conda: https://conda.anaconda.org/conda-forge/win-64/harfbuzz-14.2.0-h5a1b470_0.conda - sha256: 82abc468768c5130b45e4025fe289e0c84ea015d7fa23059503da212c89097cb - md5: b8862b83b5c899f5b65bcba0298b8478 + size: 211764 + timestamp: 1775298614193 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-mime-0.13-r44h54b55ab_1.conda + sha256: 42f450eed2f6b97ff219c8e97885ee982101392f2a5a888e0469d771f74afe6c + md5: d8865c99150c4b51a50292a3c5bc52dd depends: - - cairo >=1.18.4,<2.0a0 - - graphite2 >=1.3.14,<2.0a0 - - icu >=78.3,<79.0a0 - - libexpat >=2.7.5,<3.0a0 - - libfreetype >=2.14.3 - - libfreetype6 >=2.14.3 - - libglib >=2.86.4,<3.0a0 - - libzlib >=1.3.2,<2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 64976 + timestamp: 1757441391748 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-openssl-2.4.1-r44h68c19f5_0.conda + sha256: a5718a6a09a510963e5987cc37f79f4a74802aea002e01261218f5c78a6eb698 + md5: 18e9cbc7004690f969a2d5e93d0b1009 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - openssl >=3.5.6,<4.0a0 + - r-askpass + - r-base >=4.4,<4.5.0a0 license: MIT license_family: MIT - size: 1322557 - timestamp: 1776778816190 -- conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda - sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba - md5: 0a802cb9888dd14eeefc611f05c40b6e + size: 685617 + timestamp: 1778775536216 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-processx-3.9.0-r44h54b55ab_0.conda + sha256: a5709a9eac9b91090b4602b0159ed94c0328d904349d39f08735dad1cf90e368 + md5: a514fa73c8a7b0bec2d1c6bc0913f813 depends: - - python >=3.9 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + - r-ps >=1.2.0 + - r-r6 license: MIT license_family: MIT - size: 30731 - timestamp: 1737618390337 -- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda - sha256: 04d49cb3c42714ce533a8553986e1642d0549a05dc5cc48e0d43ff5be6679a5b - md5: 4f14640d58e2cc0aa0819d9d8ba125bb + size: 410728 + timestamp: 1776865710444 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-profvis-0.4.0-r44h54b55ab_1.conda + sha256: 9dba8142fbbcec66203cc883d9504542fe71a7d226d7a66de9b212b9102eeb85 + md5: 6dfa35e198d2db0370f3ba6819ea5745 depends: - - python >=3.9 - - h11 >=0.16 - - h2 >=3,<5 - - sniffio 1.* - - anyio >=4.0,<5.0 - - certifi - - python - license: BSD-3-Clause - license_family: BSD - size: 49483 - timestamp: 1745602916758 -- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda - sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 - md5: d6989ead454181f4f9bc987d3dc4e285 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + - r-htmlwidgets >=0.3.2 + - r-purrr + - r-rlang >=0.4.9 + - r-stringr + - r-vctrs + license: GPL-3.0-only + license_family: GPL3 + size: 229816 + timestamp: 1757585446968 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-ps-1.9.3-r44h54b55ab_0.conda + sha256: 8a3560c71204ba5dd72643c0c06efb626b45f26f55e12d38a4fc854cbce58edd + md5: f9a8ca27e2f6ba95cd8f4f185b8f4f54 depends: - - anyio - - certifi - - httpcore 1.* - - idna - - python >=3.9 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 license: BSD-3-Clause license_family: BSD - size: 63082 - timestamp: 1733663449209 -- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda - sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 - md5: 8e6923fc12f1fe8f8c4e5c9f343256ac + size: 414055 + timestamp: 1777148026559 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-purrr-1.2.2-r44h54b55ab_0.conda + sha256: 3a9dec6181e7077520b2c86654ea613f86b1875f98ff5e20b072133ae26a289c + md5: bb8a0c5371d5881cbfac7fd503c907ba depends: - - python >=3.9 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + - r-cli >=3.4 + - r-lifecycle >=1.0.3 + - r-magrittr >=1.5 + - r-rlang >=0.4.10 + - r-vctrs >=0.5 license: MIT license_family: MIT - size: 17397 - timestamp: 1737618427549 -- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda - sha256: fbf86c4a59c2ed05bbffb2ba25c7ed94f6185ec30ecb691615d42342baa1a16a - md5: c80d8a3b84358cb967fa81e7075fbc8a + size: 547801 + timestamp: 1775853620724 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-ragg-1.5.2-r44h9f1dc4d_0.conda + sha256: c17d0736822035b6b4bcd3da4ce08133b1d261e5f75797acbcb5c01ce2b736b1 + md5: 703283d95499342e45debb5d0dff6020 + depends: + - __glibc >=2.17,<3.0.a0 + - libfreetype >=2.14.2 + - libfreetype6 >=2.14.2 + - libgcc >=14 + - libjpeg-turbo >=3.1.2,<4.0a0 + - libpng >=1.6.55,<1.7.0a0 + - libstdcxx >=14 + - libtiff >=4.7.1,<4.8.0a0 + - libzlib >=1.3.2,<2.0a0 + - r-base >=4.4,<4.5.0a0 + - r-systemfonts >=1.0.3 + - r-textshaping >=0.3.0 + license: MIT + license_family: MIT + size: 597977 + timestamp: 1774267937122 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-rappdirs-0.3.4-r44h54b55ab_0.conda + sha256: 31c3077610a8cfd3439aa5536b9cf88ee828f78d7256ed1faaca5ba71c2e156f + md5: 8943834285f6f65c857c9f3bf020afed + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 54189 + timestamp: 1768747307308 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-rcpp-1.1.1_1.1-r44h3697838_0.conda + sha256: e163b875b3cacf1d7b91dca6342964b906db03d04a7120cab94b99caefcc27d1 + md5: 022b6d161815bd672368f5fc75175b75 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=14 - libstdcxx >=14 - license: MIT - license_family: MIT - size: 12723451 - timestamp: 1773822285671 -- conda: https://conda.anaconda.org/conda-forge/osx-64/icu-78.3-h25d91c4_0.conda - sha256: 1294117122d55246bb83ad5b589e2a031aacdf2d0b1f99fd338aa4394f881735 - md5: 627eca44e62e2b665eeec57a984a7f00 + - r-base >=4.4,<4.5.0a0 + license: GPL-2.0-or-later + license_family: GPL2 + size: 2109454 + timestamp: 1777184201153 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-rlang-1.2.0-r44h3697838_0.conda + sha256: a40c0775bae9e3d011f42531e23aced9a80e6aa1b9c8f8cfc60c090afdc81bef + md5: 9790e1f5faafdd83f41d2b0562093322 depends: - - __osx >=11.0 - license: MIT - license_family: MIT - size: 12273764 - timestamp: 1773822733780 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-78.3-hef89b57_0.conda - sha256: 3a7907a17e9937d3a46dfd41cffaf815abad59a569440d1e25177c15fd0684e5 - md5: f1182c91c0de31a7abd40cedf6a5ebef + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.4,<4.5.0a0 + license: GPL-3.0-only + license_family: GPL3 + size: 1588910 + timestamp: 1775483702902 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-rlang-1.2.0-r45h3697838_0.conda + sha256: d311a9320326f46ec7372aa4944fcbfaa62f9d976dec6be32f3e44f9bc1c720c + md5: f4fb1a80e2e11b92cfc654e9871dc2b7 depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.5,<4.6.0a0 + license: GPL-3.0-only + license_family: GPL3 + size: 1590688 + timestamp: 1775483709345 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-roxygen2-8.0.0-r44h3697838_0.conda + sha256: 4087b34ed6400777468d569e3b043f575fdbd8352f470ebbe134cd0c287e39fe + md5: 02b6639fb85246f7544b721f1bb57ba4 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.4,<4.5.0a0 + - r-brew + - r-commonmark + - r-cpp11 + - r-desc >=1.2.0 + - r-digest + - r-knitr + - r-pkgload >=1.0.2 + - r-purrr >=0.3.3 + - r-r6 >=2.1.2 + - r-rlang + - r-stringi + - r-stringr >=1.0.0 + - r-xml2 license: MIT - license_family: MIT - size: 12361647 - timestamp: 1773822915649 -- conda: https://conda.anaconda.org/conda-forge/win-64/icu-78.3-h637d24d_0.conda - sha256: 1bda728d70a619731b278c859eda364146cb5b4b8c739a64da8128353d81d1c4 - md5: 0097b24800cb696915c3dbd1f5335d3f + license_family: GPL3 + size: 838383 + timestamp: 1777663238876 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-sass-0.4.10-r44h3697838_1.conda + sha256: 5aa378f547b9d77810f2c466a6a2715809e78af700e078d04ad839eb1f2f6e39 + md5: 523ee1e398b97b5369e9f457c6fabf45 depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.4,<4.5.0a0 + - r-digest + - r-fs + - r-htmltools + - r-r6 + - r-rappdirs + - r-rlang license: MIT license_family: MIT - size: 14954024 - timestamp: 1773822508646 -- conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.19-pyhd8ed1ab_0.conda - sha256: 381cedccf0866babfc135d65ee40b778bd20e927d2a5ec810f750c5860a7c5b8 - md5: 84a3233b709a289a4ddd7a2fd27dd988 + size: 2316643 + timestamp: 1757464686244 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-sourcetools-0.1.7_2-r44h3697838_0.conda + sha256: 6b81e212540d34adf1b51a91fb5ae4aed7340aea63d53b4fa789846d52b1d735 + md5: c7add8a0c4502dcc748bf3386541c224 depends: - - python >=3.10 - - ukkonen + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.4,<4.5.0a0 license: MIT license_family: MIT - size: 79757 - timestamp: 1776455344188 -- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.13-pyhcf101f3_0.conda - sha256: 9ab620e6f64bb67737bd7bc1ad6f480770124e304c6710617aba7fe60b089f48 - md5: fb7130c190f9b4ec91219840a05ba3ac - depends: - - python >=3.10 - - python - license: BSD-3-Clause - license_family: BSD - size: 59038 - timestamp: 1776947141407 -- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.8.0-pyhcf101f3_0.conda - sha256: 82ab2a0d91ca1e7e63ab6a4939356667ef683905dea631bc2121aa534d347b16 - md5: 080594bf4493e6bae2607e65390c520a - depends: - - python >=3.10 - - zipp >=3.20 - - python - license: Apache-2.0 - license_family: APACHE - size: 34387 - timestamp: 1773931568510 -- conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.2.0-pyh5552912_1.conda - sha256: 5c1f3e874adaf603449f2b135d48f168c5d510088c78c229bda0431268b43b27 - md5: 4b53d436f3fbc02ce3eeaf8ae9bebe01 - depends: - - appnope - - __osx - - comm >=0.1.1 - - debugpy >=1.6.5 - - ipython >=7.23.1 - - jupyter_client >=8.8.0 - - jupyter_core >=5.1,!=6.0.* - - matplotlib-inline >=0.1 - - nest-asyncio >=1.4 - - packaging >=22 - - psutil >=5.7 - - python >=3.10 - - pyzmq >=25 - - tornado >=6.4.1 - - traitlets >=5.4.0 - - python - constrains: - - appnope >=0.1.2 - license: BSD-3-Clause - license_family: BSD - size: 132260 - timestamp: 1770566135697 -- conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.2.0-pyh6dadd2b_1.conda - sha256: 9cdadaeef5abadca4113f92f5589db19f8b7df5e1b81cb0225f7024a3aedefa3 - md5: b3a7d5842f857414d9ae831a799444dd - depends: - - __win - - comm >=0.1.1 - - debugpy >=1.6.5 - - ipython >=7.23.1 - - jupyter_client >=8.8.0 - - jupyter_core >=5.1,!=6.0.* - - matplotlib-inline >=0.1 - - nest-asyncio >=1.4 - - packaging >=22 - - psutil >=5.7 - - python >=3.10 - - pyzmq >=25 - - tornado >=6.4.1 - - traitlets >=5.4.0 - - python - constrains: - - appnope >=0.1.2 - license: BSD-3-Clause - license_family: BSD - size: 132382 - timestamp: 1770566174387 -- conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.2.0-pyha191276_1.conda - sha256: b77ed58eb235e5ad80e742b03caeed4bbc2a2ef064cb9a2deee3b75dfae91b2a - md5: 8b267f517b81c13594ed68d646fd5dcb - depends: - - __linux - - comm >=0.1.1 - - debugpy >=1.6.5 - - ipython >=7.23.1 - - jupyter_client >=8.8.0 - - jupyter_core >=5.1,!=6.0.* - - matplotlib-inline >=0.1 - - nest-asyncio >=1.4 - - packaging >=22 - - psutil >=5.7 - - python >=3.10 - - pyzmq >=25 - - tornado >=6.4.1 - - traitlets >=5.4.0 - - python - constrains: - - appnope >=0.1.2 - license: BSD-3-Clause - license_family: BSD - size: 133644 - timestamp: 1770566133040 -- conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.13.0-pyh53cf698_0.conda - sha256: a0af49948a1842dfd15a0b0b2fd56c94ddbd07e07a6c8b4bc70d43015eafaff0 - md5: 73e9657cd19605740d21efb14d8d0cb9 - depends: - - __unix - - decorator >=5.1.0 - - ipython_pygments_lexers >=1.0.0 - - jedi >=0.18.2 - - matplotlib-inline >=0.1.6 - - prompt-toolkit >=3.0.41,<3.1.0 - - psutil >=7 - - pygments >=2.14.0 - - python >=3.11 - - stack_data >=0.6.0 - - traitlets >=5.13.0 - - typing_extensions >=4.6 - - pexpect >4.6 - - python - license: BSD-3-Clause - license_family: BSD - size: 651632 - timestamp: 1777038396606 -- conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.13.0-pyhe2676ad_0.conda - sha256: f252ec33597115ff21cbb31051f6f9be34ca36cbbbf3d266b597660d8d8edde9 - md5: 5631ab99e902463d9dd4221e5b4eab6d + size: 54863 + timestamp: 1774682292501 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-stringi-1.8.7-r44h3d52c89_2.conda + sha256: b2c0e9fe8d2973e8f550a6a4bcc877d5bddaf6aa4633efc8d0dc0cd02579f518 + md5: 716a7c37c2e2b12b4f844d986c55aee3 depends: - - __win - - decorator >=5.1.0 - - ipython_pygments_lexers >=1.0.0 - - jedi >=0.18.2 - - matplotlib-inline >=0.1.6 - - prompt-toolkit >=3.0.41,<3.1.0 - - psutil >=7 - - pygments >=2.14.0 - - python >=3.11 - - stack_data >=0.6.0 - - traitlets >=5.13.0 - - typing_extensions >=4.6 - - colorama >=0.4.4 - - python - license: BSD-3-Clause - license_family: BSD - size: 650593 - timestamp: 1777038425499 -- conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda - sha256: 894682a42a7d659ae12878dbcb274516a7031bbea9104e92f8e88c1f2765a104 - md5: bd80ba060603cc228d9d81c257093119 + - __glibc >=2.17,<3.0.a0 + - icu >=78.2,<79.0a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.4,<4.5.0a0 + license: FOSS + license_family: OTHER + size: 939815 + timestamp: 1772032520166 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-sys-3.4.3-r44h54b55ab_1.conda + sha256: fb66890ea18fb2cc36ed1349cda0d5da831cdb186344ee7a781adc18ad29ffe1 + md5: 52483832668bfe9a097ce5c438751fee depends: - - pygments - - python >=3.9 - license: BSD-3-Clause - license_family: BSD - size: 13993 - timestamp: 1737123723464 -- conda: https://conda.anaconda.org/conda-forge/osx-64/isl-0.26-imath32_h2e86a7b_101.conda - sha256: d39bf147cb9958f197dafa0b8ad8c039b7374778edac05b5c78b712786e305c7 - md5: d06222822a9144918333346f145b68c6 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 50068 + timestamp: 1757441775859 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-systemfonts-1.3.2-r44h74f4acd_0.conda + sha256: f9360850ff6fd066611cbe12d2e03d30c78dc73248b6ea9b118824cc1ab2fcdc + md5: 96fa109c591c3a36b233118064d90f2e depends: - - libcxx >=14.0.6 - track_features: - - isl_imath-32 + - __glibc >=2.17,<3.0.a0 + - libfreetype >=2.14.2 + - libfreetype6 >=2.14.2 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.4,<4.5.0a0 + - r-base64enc + - r-cpp11 >=0.2.1 + - r-jsonlite + - r-lifecycle license: MIT license_family: MIT - size: 894410 - timestamp: 1680649639107 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/isl-0.26-imath32_h347afa1_101.conda - sha256: fc9272371750c56908b8e535755b1e23cf7803a2cc4a7d9ae539347baa14f740 - md5: e80e44a3f4862b1da870dc0557f8cf3b + size: 709551 + timestamp: 1772797918598 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-testthat-3.3.2-r44h3697838_0.conda + sha256: e5eb7862965a8e8293641367eecc6fc48b9d57958b50b3d1ae7980315064b913 + md5: 023ba33273b38b9c3ec1f7b88d1fe057 depends: - - libcxx >=14.0.6 - track_features: - - isl_imath-32 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.4,<4.5.0a0 + - r-brio >=1.1.3 + - r-callr >=3.7.3 + - r-cli >=3.6.1 + - r-desc >=1.4.2 + - r-digest >=0.6.33 + - r-evaluate >=1.0.1 + - r-jsonlite >=1.8.7 + - r-lifecycle >=1.0.3 + - r-magrittr >=2.0.3 + - r-pkgload >=1.3.2.1 + - r-praise >=1.0.0 + - r-processx >=3.8.2 + - r-ps >=1.7.5 + - r-r6 >=2.5.1 + - r-rlang >=1.1.1 + - r-waldo >=0.6.0 + - r-withr >=3.0.2 license: MIT license_family: MIT - size: 819937 - timestamp: 1680649567633 -- conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda - sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed - md5: 0b0154421989637d424ccf0f104be51a + size: 1845818 + timestamp: 1768138291423 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-textshaping-1.0.5-r44h74f4acd_0.conda + sha256: cea854352390c0812f1ef07b6543fb686ba2f0af6245d9fcd4a7484fcc199782 + md5: 9ef6dfccbb04a1487ba71aad719174c4 depends: - - arrow >=0.15.0 - - python >=3.9 + - __glibc >=2.17,<3.0.a0 + - fribidi >=1.0.16,<2.0a0 + - harfbuzz >=12.3.2 + - libfreetype >=2.14.2 + - libfreetype6 >=2.14.2 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.4,<4.5.0a0 + - r-cpp11 >=0.2.1 + - r-lifecycle + - r-stringi + - r-systemfonts >=1.3.0 license: MIT license_family: MIT - size: 19832 - timestamp: 1733493720346 -- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda - sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 - md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 + size: 190495 + timestamp: 1772816658774 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-tibble-3.3.1-r44h54b55ab_0.conda + sha256: 2c9351a0390512341bd1e03352728e176912fabacbe44e8912a0d42d262f1351 + md5: 4896d527628b3637c7e5bd2132a4c6a1 depends: - - parso >=0.8.3,<0.9.0 - - python >=3.9 - license: Apache-2.0 AND MIT - size: 843646 - timestamp: 1733300981994 -- conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda - sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b - md5: 04558c96691bed63104678757beb4f8d + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + - r-fansi >=0.4.0 + - r-lifecycle >=1.0.0 + - r-magrittr + - r-pillar >=1.8.1 + - r-pkgconfig + - r-rlang >=1.0.2 + - r-vctrs >=0.4.2 + license: MIT + license_family: MIT + size: 590155 + timestamp: 1768139123115 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-utf8-1.2.6-r44h54b55ab_1.conda + sha256: 8baeb9d46c17ce6578155af0f2dce665267eb8a16fa263659ad33e5005c3ed3f + md5: c7bce6987e0f5aaf9bdf5296dd3693c4 depends: - - markupsafe >=2.0 - - python >=3.10 - - python - license: BSD-3-Clause - license_family: BSD - size: 120685 - timestamp: 1764517220861 -- conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.14.0-pyhd8ed1ab_0.conda - sha256: 9daa95bd164c8fa23b3ab196e906ef806141d749eddce2a08baa064f722d25fa - md5: 1269891272187518a0a75c286f7d0bbf + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: Apache-2.0 + license_family: APACHE + size: 147724 + timestamp: 1757424747047 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-utf8-1.2.6-r45h54b55ab_1.conda + sha256: 97186abdf7c29872e012c9fe05ec16c019b58c43ac7b778baa480a8acae9c914 + md5: 75cb2540ac930ea879e92d99e00e97c3 depends: - - python >=3.10 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.5,<4.6.0a0 license: Apache-2.0 license_family: APACHE - size: 34731 - timestamp: 1774655440045 -- conda: https://conda.anaconda.org/conda-forge/noarch/jsonpointer-3.1.1-pyhcf101f3_0.conda - sha256: a3d10301b6ff399ba1f3d39e443664804a3d28315a4fb81e745b6817845f70ae - md5: 89bf346df77603055d3c8fe5811691e6 + size: 147244 + timestamp: 1757424673681 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-vctrs-0.7.3-r44h3697838_0.conda + sha256: b3e9ab33e1b23036f628307a6ffd440276895292929ee9dfd916ed74db64cf6f + md5: 77dedc64b9fe9f8452c57b503d231f96 depends: - - python >=3.10 - - python - license: BSD-3-Clause - license_family: BSD - size: 14190 - timestamp: 1774311356147 -- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.26.0-pyhcf101f3_0.conda - sha256: db973a37d75db8e19b5f44bbbdaead0c68dde745407f281e2a7fe4db74ec51d7 - md5: ada41c863af263cc4c5fcbaff7c3e4dc + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.4,<4.5.0a0 + - r-cli >=3.4.0 + - r-glue + - r-lifecycle >=1.0.3 + - r-rlang >=1.0.6 + license: MIT + license_family: MIT + size: 1807489 + timestamp: 1775897992371 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-vctrs-0.7.3-r45h3697838_0.conda + sha256: 73b0cdea9f85496b80e75ffa20f94aa4ab746f4b7af566742e22381bffa6772d + md5: 372cefc1b05a567d1fbe19633766ab0c depends: - - attrs >=22.2.0 - - jsonschema-specifications >=2023.3.6 - - python >=3.10 - - referencing >=0.28.4 - - rpds-py >=0.25.0 - - python + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.5,<4.6.0a0 + - r-cli >=3.4.0 + - r-glue + - r-lifecycle >=1.0.3 + - r-rlang >=1.0.6 license: MIT license_family: MIT - size: 82356 - timestamp: 1767839954256 -- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda - sha256: 0a4f3b132f0faca10c89fdf3b60e15abb62ded6fa80aebfc007d05965192aa04 - md5: 439cd0f567d697b20a8f45cb70a1005a + size: 1805012 + timestamp: 1775897999712 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-xfun-0.57-r44h3697838_0.conda + sha256: 54f85063e1ac8b1552be55bab4b617652eb579cc417957238416a659f1cc1134 + md5: fdaaee96389d978ddc44c53928d9b175 depends: - - python >=3.10 - - referencing >=0.31.0 - - python + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 596539 + timestamp: 1774807154852 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-xml2-1.5.2-r44he78afff_0.conda + sha256: 86a21951791b81df7c9ed32efcc3420bcb3dcb9aa126f3e6a08141c357eefec8 + md5: 743b5f2542598b875d89620bbedb23c1 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - liblzma >=5.8.2,<6.0a0 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - r-base >=4.4,<4.5.0a0 + - r-cli + - r-rlang >=1.1.0 + license: GPL-2.0-or-later + license_family: GPL2 + size: 355197 + timestamp: 1768764917147 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-yaml-2.3.12-r44h54b55ab_0.conda + sha256: 0d6afd319e16f755fc5b47a12878a5cf12357810511b5d68bc7f826f54c07713 + md5: 27e45fcad46b1607f16e8d5f2655a370 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: BSD-3-Clause + license_family: BSD + size: 124898 + timestamp: 1765372811440 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-yr-0.1.4-r44h0f53718_0.conda + sha256: 9bf0730c039028103462e1b013ca6504e634948c5ba6460b4ef123d8f85bbc37 + md5: cda0531188e17e7ad3a14e5aedfa9bc8 + depends: + - r-base + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + - r-base >=4.4,<4.5.0a0 + constrains: + - __glibc >=2.17 license: MIT - license_family: MIT - size: 19236 - timestamp: 1757335715225 -- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.26.0-hcf101f3_0.conda - sha256: 6886fc61e4e4edd38fd38729976b134e8bd2143f7fce56cc80d7ac7bac99bce1 - md5: 8368d58342d0825f0843dc6acdd0c483 + size: 2057888 + timestamp: 1779354934247 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-yr-0.1.4-r45h5a63543_0.conda + sha256: b2c45db4ac88172ed2bacaed27e5e357d9d28a9fec76ec284397db58e934da8d + md5: ae35098e3336101113c5cea63f2263c0 depends: - - jsonschema >=4.26.0,<4.26.1.0a0 - - fqdn - - idna - - isoduration - - jsonpointer >1.13 - - rfc3339-validator - - rfc3986-validator >0.1.0 - - rfc3987-syntax >=1.1.0 - - uri-template - - webcolors >=24.6.0 + - r-base + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.5,<4.6.0a0 + constrains: + - __glibc >=2.17 license: MIT - license_family: MIT - size: 4740 - timestamp: 1767839954258 -- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.3.1-pyhcf101f3_0.conda - sha256: 3766e2ae59641c172cec8a821528bfa6bf9543ffaaeb8b358bfd5259dcf18e4e - md5: 0c3b465ceee138b9c39279cc02e5c4a0 + size: 2057844 + timestamp: 1779354937896 +- conda: https://conda.anaconda.org/conda-forge/linux-64/r-zip-2.3.3-r44h54b55ab_1.conda + sha256: 4ab80520dedd0043b132df9b2cdbf8d3a789902e389bccaa10d0a3f9b16585c4 + md5: 24fa0d0ad4b69d842e6ff62356c81128 depends: - - importlib-metadata >=4.8.3 - - jupyter_server >=1.1.2 - - python >=3.10 - - python - license: BSD-3-Clause - license_family: BSD - size: 61633 - timestamp: 1775136333147 -- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.8.0-pyhcf101f3_0.conda - sha256: e402bd119720862a33229624ec23645916a7d47f30e1711a4af9e005162b84f3 - md5: 8a3d6d0523f66cf004e563a50d9392b3 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: CC + size: 156936 + timestamp: 1757447522903 +- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.3-h853b02a_0.conda + sha256: 12ffde5a6f958e285aa22c191ca01bbd3d6e710aa852e00618fa6ddc59149002 + md5: d7d95fc8287ea7bf33e0e7116d2b95ec depends: - - jupyter_core >=5.1 - - python >=3.10 - - python-dateutil >=2.8.2 - - pyzmq >=25.0 - - tornado >=6.4.1 - - traitlets >=5.3 - - python - license: BSD-3-Clause - license_family: BSD - size: 112785 - timestamp: 1767954655912 -- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyh6dadd2b_0.conda - sha256: ed709a6c25b731e01563521ef338b93986cd14b5bc17f35e9382000864872ccc - md5: a8db462b01221e9f5135be466faeb3e0 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - ncurses >=6.5,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 345073 + timestamp: 1765813471974 +- conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.30.0-py314h2e6c369_0.conda + sha256: e53b0cbf3b324eaa03ca1fe1a688fdf4ab42cea9c25270b0a7307d8aaaa4f446 + md5: c1c368b5437b0d1a68f372ccf01cb133 depends: - - __win - - pywin32 - - platformdirs >=2.5 - - python >=3.10 - - traitlets >=5.3 - python + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.14.* *_cp314 constrains: - - pywin32 >=300 - license: BSD-3-Clause - license_family: BSD - size: 64679 - timestamp: 1760643889625 -- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda - sha256: 1d34b80e5bfcd5323f104dbf99a2aafc0e5d823019d626d0dce5d3d356a2a52a - md5: b38fe4e78ee75def7e599843ef4c1ab0 + - __glibc >=2.17 + license: MIT + license_family: MIT + size: 376121 + timestamp: 1764543122774 +- conda: https://conda.anaconda.org/conda-forge/linux-64/sed-4.10-h19d0853_0.conda + sha256: b013d2085ce4ac01daec7b30472e9f3b6c2d69eb3a3a85a6cee3e01a3cb4f61a + md5: e4a1ff2e59a5d9b38be71d15c93cf1bd depends: - - __unix - - python - - platformdirs >=2.5 - - python >=3.10 - - traitlets >=5.3 - - python + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + license: GPL-3.0-only + license_family: GPL + size: 268482 + timestamp: 1776859422619 +- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda + sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac + md5: cffd3bdd58090148f4cfcd831f4b26ab + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libzlib >=1.3.1,<2.0a0 constrains: - - pywin32 >=300 - license: BSD-3-Clause + - xorg-libx11 >=1.8.12,<2.0a0 + license: TCL license_family: BSD - size: 65503 - timestamp: 1760643864586 -- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.1-pyhcf101f3_0.conda - sha256: c7edb5682c6316a95ad781dccb1b6589cd2ec0bf94f23c21152974eb0363b5d7 - md5: bf42ee94c750c0b2e7e998b79ac299ea + size: 3301196 + timestamp: 1769460227866 +- conda: https://conda.anaconda.org/conda-forge/linux-64/tktable-2.10-h5a7a40f_8.conda + sha256: 3e20b2f2902a1f402ef2420ce2b9e8c91f9e02748d55530894ac1f640561fdd0 + md5: 72628f56d7a99b86efa435a0b97a4b47 depends: - - jsonschema-with-format-nongpl >=4.18.0 - - packaging - - python >=3.10 - - python-json-logger >=2.0.4 - - pyyaml >=5.3 - - referencing - - rfc3339-validator - - rfc3986-validator >=0.1.1 - - traitlets >=5.3 - - python - license: BSD-3-Clause - license_family: BSD - size: 24002 - timestamp: 1776861872237 -- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.18.2-pyhcf101f3_0.conda - sha256: 04fb8ea7749f67abaf76df6257bf86688e1389ceed55eb4fb0176fd2e882dbd6 - md5: 5ee7945accf0f215ddd6055d25d7cd83 + - tk + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - tk >=8.6.13,<8.7.0a0 + - xorg-libx11 >=1.8.13,<2.0a0 + license: TCL + size: 102544 + timestamp: 1773732786017 +- conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.5.5-py314h5bd0f2a_0.conda + sha256: ed8d06093ff530a2dae9ed1e51eb6f908fbfd171e8b62f4eae782d67b420be5a + md5: dc1ff1e915ab35a06b6fa61efae73ab5 depends: - - anyio >=3.1.0 - - argon2-cffi >=21.1 - - jinja2 >=3.0.3 - - jupyter_client >=7.4.4 - - jupyter_core >=4.12,!=5.0.* - - jupyter_events >=0.11.0 - - jupyter_server_terminals >=0.4.4 - - nbconvert-core >=6.4.4 - - nbformat >=5.3.0 - - overrides >=5.0 - - packaging >=22.0 - - prometheus_client >=0.9 - - python >=3.10 - - pyzmq >=24 - - send2trash >=1.8.2 - - terminado >=0.8.3 - - tornado >=6.2.0 - - traitlets >=5.6.0 - - websocket-client >=1.7 - - python - license: BSD-3-Clause - license_family: BSD - size: 360522 - timestamp: 1778060967727 -- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.4-pyhcf101f3_0.conda - sha256: 5eda79ed9f53f590031d29346abd183051263227dd9ee667b5ca1133ce297654 - md5: 7b8bace4943e0dc345fc45938826f2b8 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + license: Apache-2.0 + license_family: Apache + size: 912476 + timestamp: 1774358032579 +- conda: https://conda.anaconda.org/conda-forge/linux-64/typos-1.46.2-hb17b654_0.conda + sha256: 5a557b74e31e9cfd34f63c619de196faee556e0f41118fbc72812c1b996c6dab + md5: 98aaa371a09257ab9a554d2b355350fc depends: - - python >=3.10 - - terminado >=0.8.3 - - python - license: BSD-3-Clause - license_family: BSD - size: 22052 - timestamp: 1768574057200 -- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.5.7-pyhd8ed1ab_0.conda - sha256: b85befad5ba1f50c0cc042a2ffb26441d13ffc2f18572dc20d3541476da0c7b9 - md5: 2ffe77234070324e763a6eddabb5f467 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + constrains: + - __glibc >=2.17 + license: MIT OR Apache-2.0 + size: 3359334 + timestamp: 1778960855880 +- conda: https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.1.0-py314h9891dd4_0.conda + sha256: c84034056dc938c853e4f61e72e5bd37e2ec91927a661fb9762f678cbea52d43 + md5: 5d3c008e54c7f49592fca9c32896a76f depends: - - async-lru >=1.0.0 - - httpx >=0.25.0,<1 - - ipykernel >=6.5.0,!=6.30.0 - - jinja2 >=3.0.3 - - jupyter-lsp >=2.0.0 - - jupyter_core - - jupyter_server >=2.4.0,<3 - - jupyterlab_server >=2.28.0,<3 - - notebook-shim >=0.2 - - packaging - - python >=3.10 - - setuptools >=41.1.0 - - tomli >=1.2.2 - - tornado >=6.2.0 - - traitlets - license: BSD-3-Clause - license_family: BSD - size: 8861204 - timestamp: 1777483115382 -- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-kernelspy-4.0.0-pyhd8ed1ab_1.conda - sha256: 6aa4e30d3ef1489d784c61ea7cfa98c16351005fdc47c92a1628ae6c4c96ad1b - md5: 54e5db4153f106e8c763bcafcb974f15 + - __glibc >=2.17,<3.0.a0 + - cffi + - libgcc >=14 + - libstdcxx >=14 + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + license: MIT + license_family: MIT + size: 15004 + timestamp: 1769438727085 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-6.0.5-hbf34205_0.conda + sha256: 8ec1b66ae38f285c7ffb189e0f833079c88aee7334223b1cba45a5210b021621 + md5: de79fb0836ea2840cca7719ec94a9958 depends: - - python >=3.9 - constrains: - - jupyterlab >=4,<5 + - libstdcxx >=14 + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + - nlohmann_json-abi ==3.12.0 + - libuuid >=2.42,<3.0a0 license: BSD-3-Clause license_family: BSD - size: 34832 - timestamp: 1736694325403 -- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda - sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 - md5: fd312693df06da3578383232528c468d + size: 411232 + timestamp: 1776328566268 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-r-0.11.0-r44h55ad566_0.conda + sha256: 4be045f74c226fc2bf52bb2b7e6a8acbba4be08c7d04ccf2cc0f29c17c1c9503 + md5: 299bfb1a34e6da9f68955de259c4acf7 depends: - - pygments >=2.4.1,<3 - - python >=3.9 - constrains: - - jupyterlab >=4.0.8,<5.0.0 - license: BSD-3-Clause - license_family: BSD - size: 18711 - timestamp: 1733328194037 -- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.28.0-pyhcf101f3_0.conda - sha256: 381d2d6a259a3be5f38a69463e0f6c5dcf1844ae113058007b51c3bef13a7cee - md5: a63877cb23de826b1620d3adfccc4014 + - r-base + - r-cli + - r-evaluate + - r-glue + - r-irdisplay + - r-jsonlite + - r-r6 + - r-repr + - r-rlang + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=14 + - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + - xeus-zmq >=4.0.0,<4.1.0a0 + - nlohmann_json-abi ==3.12.0 + - xeus >=6.0.5,<6.1.0a0 + license: GPL-3.0-only + license_family: GPL + size: 353846 + timestamp: 1778071256541 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-r-0.11.0-r45h92b7d08_0.conda + sha256: cf228de66d3349fa4903e3df1ae5c4ab49725e3226dedde980cce339995a80ae + md5: ec4be10699652501db1563293492a3ab depends: - - babel >=2.10 - - jinja2 >=3.0.3 - - json5 >=0.9.0 - - jsonschema >=4.18 - - jupyter_server >=1.21,<3 - - packaging >=21.3 - - python >=3.10 - - requests >=2.31 - - python + - r-base + - r-cli + - r-evaluate + - r-glue + - r-irdisplay + - r-jsonlite + - r-r6 + - r-repr + - r-rlang + - libstdcxx >=14 + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + - nlohmann_json-abi ==3.12.0 + - xeus-zmq >=4.0.0,<4.1.0a0 + - xeus >=6.0.5,<6.1.0a0 + - r-base >=4.5,<4.6.0a0 + license: GPL-3.0-only + license_family: GPL + size: 353722 + timestamp: 1778071249166 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-zmq-4.0.0-ha280ed4_0.conda + sha256: 440a9c83c432bfc8ffb55f3764d9e31325a8b912acc17ba3bf0ad8e86748c5a3 + md5: 1d7280c6f786768194eeaa6da2013c74 + depends: + - libstdcxx >=14 + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + - zeromq >=4.3.5,<4.4.0a0 + - nlohmann_json-abi ==3.12.0 + - openssl >=3.6.1,<4.0a0 + - xeus >=6.0.1,<6.1.0a0 + - libuuid >=2.41.3,<3.0a0 license: BSD-3-Clause license_family: BSD - size: 51621 - timestamp: 1761145478692 -- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda - sha256: 41557eeadf641de6aeae49486cef30d02a6912d8da98585d687894afd65b356a - md5: 86d9cba083cd041bfbf242a01a7a1999 - constrains: - - sysroot_linux-64 ==2.28 - license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later - license_family: GPL - size: 1278712 - timestamp: 1765578681495 -- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda - sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4 - md5: b38117a3c920364aff79f870c984b4a3 + size: 508540 + timestamp: 1772664288344 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda + sha256: c12396aabb21244c212e488bbdc4abcdef0b7404b15761d9329f5a4a39113c4b + md5: fb901ff28063514abb6046c9ec2c4a45 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - license: LGPL-2.1-or-later - size: 134088 - timestamp: 1754905959823 -- conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.22.2-ha1258a1_0.conda - sha256: 3e307628ca3527448dd1cb14ad7bb9d04d1d28c7d4c5f97ba196ae984571dd25 - md5: fb53fb07ce46a575c5d004bbc96032c2 + license: MIT + license_family: MIT + size: 58628 + timestamp: 1734227592886 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda + sha256: 277841c43a39f738927145930ff963c5ce4c4dacf66637a3d95d802a64173250 + md5: 1c74ff8c35dcadf952a16f752ca5aa49 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libuuid >=2.38.1,<3.0a0 + - xorg-libice >=1.1.2,<2.0a0 + license: MIT + license_family: MIT + size: 27590 + timestamp: 1741896361728 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.13-he1eb515_0.conda + sha256: 516d4060139dbb4de49a4dcdc6317a9353fb39ebd47789c14e6fe52de0deee42 + md5: 861fb6ccbc677bb9a9fb2468430b9c6a depends: - __glibc >=2.17,<3.0.a0 - - keyutils >=1.6.3,<2.0a0 - - libedit >=3.1.20250104,<3.2.0a0 - - libedit >=3.1.20250104,<4.0a0 - libgcc >=14 - - libstdcxx >=14 - - openssl >=3.5.5,<4.0a0 + - libxcb >=1.17.0,<2.0a0 license: MIT license_family: MIT - size: 1386730 - timestamp: 1769769569681 -- conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.22.2-h207b36a_0.conda - sha256: df009385e8262c234c0dae9016540b86dad3d299f0d9366d08e327e8e7731634 - md5: e66e2c52d2fdddcf314ad750fb4ebb4a + size: 839652 + timestamp: 1770819209719 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda + sha256: 6bc6ab7a90a5d8ac94c7e300cc10beb0500eeba4b99822768ca2f2ef356f731b + md5: b2895afaf55bf96a8c8282a2e47a5de0 depends: - - __osx >=10.13 - - libcxx >=19 - - libedit >=3.1.20250104,<3.2.0a0 - - libedit >=3.1.20250104,<4.0a0 - - openssl >=3.5.5,<4.0a0 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 license: MIT license_family: MIT - size: 1193620 - timestamp: 1769770267475 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.22.2-h385eeb1_0.conda - sha256: c0a0bf028fe7f3defcdcaa464e536cf1b202d07451e18ad83fdd169d15bef6ed - md5: e446e1822f4da8e5080a9de93474184d + size: 15321 + timestamp: 1762976464266 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda + sha256: 25d255fb2eef929d21ff660a0c687d38a6d2ccfbcbf0cc6aa738b12af6e9d142 + md5: 1dafce8548e38671bea82e3f5c6ce22f depends: - - __osx >=11.0 - - libcxx >=19 - - libedit >=3.1.20250104,<3.2.0a0 - - libedit >=3.1.20250104,<4.0a0 - - openssl >=3.5.5,<4.0a0 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 license: MIT license_family: MIT - size: 1160828 - timestamp: 1769770119811 -- conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.22.2-h0ea6238_0.conda - sha256: eb60f1ad8b597bcf95dee11bc11fe71a8325bc1204cf51d2bb1f2120ffd77761 - md5: 4432f52dc0c8eb6a7a6abc00a037d93c + size: 20591 + timestamp: 1762976546182 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.7-hb03c661_0.conda + sha256: 79c60fc6acfd3d713d6340d3b4e296836a0f8c51602327b32794625826bd052f + md5: 34e54f03dfea3e7a2dcf1453a85f1085 depends: - - openssl >=3.5.5,<4.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - xorg-libx11 >=1.8.12,<2.0a0 + license: MIT + license_family: MIT + size: 50326 + timestamp: 1769445253162 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda + sha256: 044c7b3153c224c6cedd4484dd91b389d2d7fd9c776ad0f4a34f099b3389f4a1 + md5: 96d57aba173e878a2089d5638016dc5e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 33005 + timestamp: 1734229037766 +- conda: 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 +- conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda + sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad + md5: a77f85f77be52ff59391544bfe73390a + depends: + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + license: MIT + license_family: MIT + size: 85189 + timestamp: 1753484064210 +- conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h09e67af_11.conda + sha256: dc9f28dedcb5f35a127fad2d847674d2833369dd616d294e423b8997df31d8a8 + md5: 96b08867e21d4694fa5c2c226e6581b0 + depends: + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=14 + - krb5 >=1.22.2,<1.23.0a0 + - libsodium >=1.0.22,<1.0.23.0a0 + license: MPL-2.0 + license_family: MOZILLA + size: 311184 + timestamp: 1779123989774 +- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda + sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7 + md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829 + depends: + - __glibc >=2.17,<3.0.a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 601375 + timestamp: 1764777111296 +- conda: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda + sha256: a3967b937b9abf0f2a99f3173fa4630293979bd1644709d89580e7c62a544661 + md5: aaa2a381ccc56eac91d63b6c1240312f + depends: + - cpython + - python-gil license: MIT license_family: MIT - size: 751055 - timestamp: 1769769688841 -- conda: https://conda.anaconda.org/conda-forge/noarch/lark-1.3.1-pyhd8ed1ab_0.conda - sha256: 49570840fb15f5df5d4b4464db8ee43a6d643031a2bc70ef52120a52e3809699 - md5: 9b965c999135d43a3d0f7bd7d024e26a + size: 8191 + timestamp: 1744137672556 +- conda: https://conda.anaconda.org/conda-forge/noarch/_r-mutex-1.0.1-anacondar_1.tar.bz2 + sha256: e58f9eeb416b92b550e824bcb1b9fb1958dee69abfe3089dfd1a9173e3a0528a + md5: 19f9db5f4f1b7f5ef5f6d67207f25f38 + license: BSD + size: 3566 + timestamp: 1562343890778 +- conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.13.0-pyhcf101f3_0.conda + sha256: f09aed24661cd45ba54a43772504f05c0698248734f9ae8cd289d314ac89707e + md5: af2df4b9108808da3dc76710fe50eae2 depends: + - exceptiongroup >=1.0.2 + - idna >=2.8 - python >=3.10 + - typing_extensions >=4.5 + - python + constrains: + - trio >=0.32.0 + - uvloop >=0.22.1 + - winloop >=0.2.3 license: MIT license_family: MIT - size: 94312 - timestamp: 1761596921009 -- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-956.6-llvm22_1_hc399b6d_4.conda - sha256: a4ac125329e14d407ecb2c074412a0af6f78256989db82d83c4a02e93912c88e - md5: 3d56483ae79e9c75e32e913e94b520da - depends: - - ld64_osx-64 956.6 llvm22_1_h163eae7_4 - - libllvm22 >=22.1.0,<22.2.0a0 - constrains: - - cctools 1030.6.3.* - - cctools_osx-64 1030.6.3.* - license: APSL-2.0 - license_family: Other - size: 21781 - timestamp: 1772019075404 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-956.6-llvm22_1_h5b97f1b_4.conda - sha256: 405f08540aedb58fa070b097143b3fe0fcb2b92e3b4aca723780e2f3d754803b - md5: 8254e40b35e6c3159de53275801a6ebc - depends: - - ld64_osx-arm64 956.6 llvm22_1_h692d5aa_4 - - libllvm22 >=22.1.0,<22.2.0a0 - constrains: - - cctools_osx-arm64 1030.6.3.* - - cctools 1030.6.3.* - license: APSL-2.0 - license_family: Other - size: 21907 - timestamp: 1772019717408 -- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-956.6-llvm22_1_h163eae7_4.conda - sha256: e49272192003e0e30edd6877197db3c220bb374a78d5b255d18c7a029cd33c1e - md5: 9e6646598daf11bd8ebc60d690162ebd - depends: - - __osx >=11.0 - - libcxx - - libllvm22 >=22.1.0,<22.2.0a0 - - sigtool-codesign - - tapi >=1600.0.11.8,<1601.0a0 - constrains: - - clang 22.1.* - - cctools 1030.6.3.* - - cctools_impl_osx-64 1030.6.3.* - - ld64 956.6.* - license: APSL-2.0 - license_family: Other - size: 1110951 - timestamp: 1772018988810 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-956.6-llvm22_1_h692d5aa_4.conda - sha256: e4ae2ef85672c094aa3467d466f932ccdc1dda9bd4adac64f4252cc796149091 - md5: 4c2255bf859bff6c52ed38960e3bc963 - depends: - - __osx >=11.0 - - libcxx - - libllvm22 >=22.1.0,<22.2.0a0 - - sigtool-codesign - - tapi >=1600.0.11.8,<1601.0a0 - constrains: - - clang 22.1.* - - ld64 956.6.* - - cctools_impl_osx-arm64 1030.6.3.* - - cctools 1030.6.3.* - license: APSL-2.0 - license_family: Other - size: 1038027 - timestamp: 1772019602406 -- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda - sha256: 3d584956604909ff5df353767f3a2a2f60e07d070b328d109f30ac40cd62df6c - md5: 18335a698559cdbcd86150a48bf54ba6 + size: 146764 + timestamp: 1774359453364 +- conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_1.conda + sha256: 8f032b140ea4159806e4969a68b4a3c0a7cab1ad936eb958a2b5ffe5335e19bf + md5: 54898d0f524c9dee622d44bbb081a8ab depends: - - __glibc >=2.17,<3.0.a0 - - zstd >=1.5.7,<1.6.0a0 - constrains: - - binutils_impl_linux-64 2.45.1 - license: GPL-3.0-only - license_family: GPL - size: 728002 - timestamp: 1774197446916 -- conda: https://conda.anaconda.org/conda-forge/win-64/ld_impl_win-64-2.45.1-default_hfd38196_102.conda - sha256: 5256fe3ac465452a9702ca2b48adf47d1de905ed47d98fd5976ddb9c7a85619c - md5: b0019a6e9267dd74b7efeefa970df76a + - python >=3.9 + license: BSD-2-Clause + license_family: BSD + size: 10076 + timestamp: 1733332433806 +- conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-25.1.0-pyhd8ed1ab_0.conda + sha256: bea62005badcb98b1ae1796ec5d70ea0fc9539e7d59708ac4e7d41e2f4bb0bad + md5: 8ac12aff0860280ee0cff7fa2cf63f3b depends: - - zstd >=1.5.7,<1.6.0a0 + - argon2-cffi-bindings + - python >=3.9 + - typing-extensions constrains: - - binutils_impl_win-64 2.45.1 - license: GPL-3.0-only - license_family: GPL - size: 877159 - timestamp: 1774198058013 -- conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.1.0-hdb68285_0.conda - sha256: f84cb54782f7e9cea95e810ea8fef186e0652d0fa73d3009914fa2c1262594e1 - md5: a752488c68f2e7c456bcbd8f16eec275 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - license: Apache-2.0 - license_family: Apache - size: 261513 - timestamp: 1773113328888 -- conda: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.1.0-h35c7297_0.conda - sha256: f918716c71c8bebbc0c40e1050878aa512fea92c1d17c363ca35650bc60f6c35 - md5: d2fe7e177d1c97c985140bd54e2a5e33 - depends: - - __osx >=11.0 - - libcxx >=19 - license: Apache-2.0 - license_family: Apache - size: 215089 - timestamp: 1773114468701 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.1.0-h1eee2c3_0.conda - sha256: 66e5ffd301a44da696f3efc2f25d6d94f42a9adc0db06c44ad753ab844148c51 - md5: 095e5749868adab9cae42d4b460e5443 + - argon2_cffi ==999 + license: MIT + license_family: MIT + size: 18715 + timestamp: 1749017288144 +- conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.4.0-pyhcf101f3_0.conda + sha256: 792da8131b1b53ff667bd6fc617ea9087b570305ccb9913deb36b8e12b3b5141 + md5: 85c4f19f377424eafc4ed7911b291642 depends: - - __osx >=11.0 - - libcxx >=19 + - python >=3.10 + - python-dateutil >=2.7.0 + - python-tzdata + - python license: Apache-2.0 - license_family: Apache - size: 164222 - timestamp: 1773114244984 -- conda: https://conda.anaconda.org/conda-forge/win-64/lerc-4.1.0-hd936e49_0.conda - sha256: 45df58fca800b552b17c3914cc9ab0d55a82c5172d72b5c44a59c710c06c5473 - md5: 54b231d595bc1ff9bff668dd443ee012 + license_family: APACHE + size: 113854 + timestamp: 1760831179410 +- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.1-pyhd8ed1ab_0.conda + sha256: ee4da0f3fe9d59439798ee399ef3e482791e48784873d546e706d0935f9ff010 + md5: 9673a61a297b00016442e022d689faa6 depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 + - python >=3.10 + constrains: + - astroid >=2,<5 license: Apache-2.0 license_family: Apache - size: 172395 - timestamp: 1773113455582 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libasprintf-0.25.1-h3184127_1.conda - sha256: 44e703d8fe739a71e9f7b89d04b56ccfaf488989f7712256bc0fcaf101e796a4 - md5: 37398594a1ede86a90c0afac95e1ffea - depends: - - __osx >=10.13 - - libcxx >=19 - license: LGPL-2.1-or-later - size: 51955 - timestamp: 1753343931663 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-0.25.1-h493aca8_0.conda - sha256: 7265547424e978ea596f51cc8e7b81638fb1c660b743e98cc4deb690d9d524ab - md5: 0deb80a2d6097c5fb98b495370b2435b - depends: - - __osx >=11.0 - - libcxx >=18 - license: LGPL-2.1-or-later - size: 52316 - timestamp: 1751558366611 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.11.0-7_h4a7cf45_openblas.conda - build_number: 7 - sha256: 081c850f99bc355821fac9c6e3727d40b3f8ce3beb50a5437cf03726b611ff39 - md5: 955b44e8b00b7f7ef4ce0130cef12394 + size: 28797 + timestamp: 1763410017955 +- conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.3.0-pyhcf101f3_0.conda + sha256: ea8486637cfb89dc26dc9559921640cd1d5fd37e5e02c33d85c94572139f2efe + md5: b85e84cb64c762569cc1a760c2327e0a depends: - - libopenblas >=0.3.33,<0.3.34.0a0 - - libopenblas >=0.3.33,<1.0a0 - constrains: - - libcblas 3.11.0 7*_openblas - - blas 2.307 openblas - - liblapack 3.11.0 7*_openblas - - liblapacke 3.11.0 7*_openblas - - mkl <2027 - license: BSD-3-Clause - license_family: BSD - size: 18716 - timestamp: 1778489854108 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.11.0-7_he492b99_openblas.conda - build_number: 7 - sha256: b2fe36d35c7b60e5f63cb0c865f4b3e40839120c47fd0cd56fd633765b25c148 - md5: 9033f3879f6a191d759d7fde5914555f + - python >=3.10 + - typing_extensions >=4.0.0 + - python + license: MIT + license_family: MIT + size: 22949 + timestamp: 1773926359134 +- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-26.1.0-pyhcf101f3_0.conda + sha256: 1b6124230bb4e571b1b9401537ecff575b7b109cc3a21ee019f65e083b8399ab + md5: c6b0543676ecb1fb2d7643941fe375f2 depends: - - libopenblas >=0.3.33,<0.3.34.0a0 - - libopenblas >=0.3.33,<1.0a0 - constrains: - - mkl <2027 - - liblapacke 3.11.0 7*_openblas - - libcblas 3.11.0 7*_openblas - - liblapack 3.11.0 7*_openblas - - blas 2.307 openblas - license: BSD-3-Clause - license_family: BSD - size: 18868 - timestamp: 1778491111970 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.11.0-7_h51639a9_openblas.conda - build_number: 7 - sha256: 662935bfb93d2d097e26e273a3a2f504a9f833f64aa6f9e295b577655478c39b - md5: ab6670d099d19fe70cb9efb88a1b5f78 + - python >=3.10 + - python + license: MIT + license_family: MIT + size: 64927 + timestamp: 1773935801332 +- conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.18.0-pyhcf101f3_1.conda + sha256: a14a9ad02101aab25570543a59c5193043b73dc311a25650134ed9e6cb691770 + md5: f1976ce927373500cc19d3c0b2c85177 depends: - - libopenblas >=0.3.33,<0.3.34.0a0 - - libopenblas >=0.3.33,<1.0a0 + - python >=3.10 + - python constrains: - - libcblas 3.11.0 7*_openblas - - blas 2.307 openblas - - mkl <2027 - - liblapack 3.11.0 7*_openblas - - liblapacke 3.11.0 7*_openblas + - pytz >=2015.7 license: BSD-3-Clause license_family: BSD - size: 18783 - timestamp: 1778489983152 -- conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.11.0-7_h8455456_mkl.conda - build_number: 7 - sha256: 9eec27eee4300284e62a61cb2298089c80d31f6f9e924eeabc06e9788a00cffe - md5: 269e54b44974ff48846b4c31d0397041 + size: 7684321 + timestamp: 1772555330347 +- conda: https://conda.anaconda.org/conda-forge/noarch/backports.zstd-1.5.0-py314h680f03e_0.conda + noarch: generic + sha256: a1c97297e867776760489537bc5ae36fa83a154be30e3b79385a39ca4cb058fe + md5: 1133126d840e75287d83947be3fc3e71 depends: - - mkl >=2026.0.0,<2027.0a0 - constrains: - - blas 2.307 mkl - - libcblas 3.11.0 7*_mkl - - liblapacke 3.11.0 7*_mkl - - liblapack 3.11.0 7*_mkl - license: BSD-3-Clause - license_family: BSD - size: 68060 - timestamp: 1778490352569 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.11.0-7_h0358290_openblas.conda - build_number: 7 - sha256: 956ae0bb1ec8b0c3663d75b151aceb0521b54e513bf97f621a035f9c87037970 - md5: 0675639dc24cb0032f199e7ff68e4633 + - python >=3.14 + license: BSD-3-Clause AND MIT AND EPL-2.0 + size: 7533 + timestamp: 1778594057496 +- conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.14.3-pyha770c72_0.conda + sha256: bf1e71c3c0a5b024e44ff928225a0874fc3c3356ec1a0b6fe719108e6d1288f6 + md5: 5267bef8efea4127aacd1f4e1f149b6e depends: - - libblas 3.11.0 7_h4a7cf45_openblas + - python >=3.10 + - soupsieve >=1.2 + - typing-extensions + license: MIT + license_family: MIT + size: 90399 + timestamp: 1764520638652 +- conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.3.0-pyhcf101f3_1.conda + sha256: f8ff1f98423674278964a46c93a1766f9e91960d44efd91c6c3ed56a33813f46 + md5: 7c5ebdc286220e8021bf55e6384acd67 + depends: + - python >=3.10 + - webencodings + - python constrains: - - liblapacke 3.11.0 7*_openblas - - blas 2.307 openblas - - liblapack 3.11.0 7*_openblas + - tinycss2 >=1.1.0,<1.5 + license: Apache-2.0 AND MIT + size: 142008 + timestamp: 1770719370680 +- conda: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.3.0-hbca2aae_1.conda + sha256: 7c07a865e5e4cca233cc4e0eb3f0f5ff6c90776461687b4fb0b1764133e1fd61 + md5: f11a319b9700b203aa14c295858782b6 + depends: + - bleach ==6.3.0 pyhcf101f3_1 + - tinycss2 + license: Apache-2.0 AND MIT + size: 4409 + timestamp: 1770719370682 +- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.5.20-h4c7d964_0.conda + sha256: 86981d764e4ea1883409d30447ff9da46127426d31a63df08315aaded768e652 + md5: c9b86eece2f944541b86441c94117ab3 + depends: + - __win + license: ISC + size: 130182 + timestamp: 1779289939595 +- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.5.20-hbd8a1cb_0.conda + sha256: 9812a303a1395e1dafbd92e5bc8a1ff6013bcbba0a09c7f03a8d23e43560aa9b + md5: 489b8e97e666c93f68fdb35c3c9b957f + depends: + - __unix + license: ISC + size: 129868 + timestamp: 1779289852439 +- conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2 + noarch: python + sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17 + md5: 9b347a7ec10940d3f7941ff6c460b551 + depends: + - cached_property >=1.5.2,<1.5.3.0a0 license: BSD-3-Clause license_family: BSD - size: 18675 - timestamp: 1778489861559 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.11.0-7_h9b27e0a_openblas.conda - build_number: 7 - sha256: 91b5abb146f7de3f95fda287c6a314a8ca3ceb2ae597a4bf5a180b6e0790b180 - md5: ebd8b6277cef635b7ae80400eda886e5 + size: 4134 + timestamp: 1615209571450 +- conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2 + sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7 + md5: 576d629e47797577ab0f1b351297ef4a depends: - - libblas 3.11.0 7_he492b99_openblas - constrains: - - liblapacke 3.11.0 7*_openblas - - liblapack 3.11.0 7*_openblas - - blas 2.307 openblas + - python >=3.6 license: BSD-3-Clause license_family: BSD - size: 18868 - timestamp: 1778491135869 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.11.0-7_hb0561ab_openblas.conda - build_number: 7 - sha256: 3ac3d27022b3ca8b1980c087e0ede250434f6ed90a4fdc78a8a5ed382bc75505 - md5: 189b373453ec3904095dcb16f502bace + size: 11065 + timestamp: 1615209567874 +- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda + sha256: 645655a3510e38e625da136595f3f16f2130c3263630cc3bc8f60f619ddbe490 + md5: 9fefff2f745ea1cc2ef15211a20c054a depends: - - libblas 3.11.0 7_h51639a9_openblas - constrains: - - blas 2.307 openblas - - liblapack 3.11.0 7*_openblas - - liblapacke 3.11.0 7*_openblas + - python >=3.10 + license: ISC + size: 134201 + timestamp: 1779285131141 +- conda: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.5.0-pyhd8ed1ab_0.conda + sha256: aa589352e61bb221351a79e5946d56916e3c595783994884accdb3b97fe9d449 + md5: 381bd45fb7aa032691f3063aff47e3a1 + depends: + - python >=3.10 + license: MIT + license_family: MIT + size: 13589 + timestamp: 1763607964133 +- conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda + sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457 + md5: a9167b9571f3baa9d448faa2139d1089 + depends: + - python >=3.10 + license: MIT + license_family: MIT + size: 58872 + timestamp: 1775127203018 +- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 + md5: 962b9857ee8e7018c22f2776ffa0b2d7 + depends: + - python >=3.9 license: BSD-3-Clause license_family: BSD - size: 18810 - timestamp: 1778489991330 -- conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.11.0-7_h2a3cdd5_mkl.conda - build_number: 7 - sha256: 82da0f854831f783f9d3f1219c4255956e8167a474f3f526151128f02453871c - md5: 4700b7af6acefb26ff0127ba68230941 + size: 27011 + timestamp: 1733218222191 +- conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda + sha256: 576a44729314ad9e4e5ebe055fbf48beb8116b60e58f9070278985b2b634f212 + md5: 2da13f2b299d8e1995bafbbe9689a2f7 depends: - - libblas 3.11.0 7_h8455456_mkl - constrains: - - blas 2.307 mkl - - liblapacke 3.11.0 7*_mkl - - liblapack 3.11.0 7*_mkl + - python >=3.9 + - python license: BSD-3-Clause license_family: BSD - size: 68594 - timestamp: 1778490364980 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp22.1-22.1.5-default_h9399c5b_1.conda - sha256: 50dd61958de6f89b2b79936cca4f4fc7ae6c19ebe0411e7d1562af1fe6f704ae - md5: 63f3d19f6e520153f6377ad1ca45080b - depends: - - __osx >=11.0 - - libcxx >=22.1.5 - - libllvm22 >=22.1.5,<22.2.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 15010974 - timestamp: 1778481700126 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp22.1-22.1.5-default_h8e162e0_1.conda - sha256: e55e200773e111b021ff60bb47d69033204f9b48590a00e439646968757c4504 - md5: 091664d061ddbca7594cd306fe82d648 - depends: - - __osx >=11.0 - - libcxx >=22.1.5 - - libllvm22 >=22.1.5,<22.2.0a0 + size: 14690 + timestamp: 1753453984907 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_osx-64-22.1.5-hcf80936_1.conda + sha256: 35f5b1d556215b4ebe6a810de2118d612ce0868e3bf15e69c47672252e057e86 + md5: b0a06100f6fad477e1d6570b7da4236b + constrains: + - compiler-rt >=9.0.1 license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 14186675 - timestamp: 1778476259538 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-22.1.5-default_h2429e1b_1.conda - sha256: 56c12f6e81026c71719d42943125a34e397ac92c45aad574935d40605e1b9134 - md5: 5851a3f36d0426ae542a7bdb80321a5a - depends: - - __osx >=11.0 - - libcxx >=22.1.5 - - libllvm22 >=22.1.5,<22.2.0a0 + license_family: APACHE + size: 10973170 + timestamp: 1778194905655 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_osx-arm64-22.1.5-h7e67a1e_1.conda + sha256: 8fd9c06368cf109359b5790dd52bb2c567649eea4ac803003e8bc10e49e8ef24 + md5: 6b4aa1f07476cdefbd872f38df71b3e2 + constrains: + - compiler-rt >=9.0.1 license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 9461652 - timestamp: 1778482410626 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-22.1.5-default_h6dd9417_1.conda - sha256: d1f50e70f2276dec7d7b0595769deec791080c77e5fb8585d287973305bd6277 - md5: 98ecd7b37d923081e402c3c2f6e39008 + license_family: APACHE + size: 10867797 + timestamp: 1778193575528 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-22.1.5-h694c41f_1.conda + sha256: c094ba939da9b77812724e22355692bcb16e8a1960454e36cb9a63b16f2d544e + md5: f9b0cdfd4b1d21f0b76970ecacfb10ce depends: - - __osx >=11.0 - - libcxx >=22.1.5 - - libllvm22 >=22.1.5,<22.2.0a0 + - compiler-rt22_osx-64 22.1.5 hcf80936_1 + constrains: + - clang 22.1.5 license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 8936209 - timestamp: 1778476466526 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libcompiler-rt-22.1.5-h1637cdf_1.conda - sha256: 6ae33ecd79302ece4718ad5b2b3297cea716ee063e3c50616e1b95b712f4fee6 - md5: 8835313a85a2e8631d5029ee1b0ac79f + license_family: APACHE + size: 16659 + timestamp: 1778194993003 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-22.1.5-hce30654_1.conda + sha256: b8d2ac6246cef588054a267979ce67298faa695830341bf17a1f8e8b466bc9d2 + md5: 55b5854d13383c8ab1e467dba3cd5373 depends: - - __osx >=11.0 + - compiler-rt22_osx-arm64 22.1.5 h7e67a1e_1 constrains: - - compiler-rt >=9.0.1 + - clang 22.1.5 license: Apache-2.0 WITH LLVM-exception license_family: APACHE - size: 1368554 - timestamp: 1778194969800 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcompiler-rt-22.1.5-hd34ed20_1.conda - sha256: 4be653c88cce088080b1b47e3a7a4f3cb85a1d7a8103d9ac4db22e8cf65c624e - md5: 4104db0e6821aa62e2eb48a65e06da24 + size: 16629 + timestamp: 1778193616082 +- conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.14.5-py314hd8ed1ab_100.conda + noarch: generic + sha256: 777882d2685f368417f31bbe1b28f73687fc6c8f6a5768bda20ffeefa6b07f5b + md5: a749029ce5d0632a913db19d17f944ab + depends: + - python >=3.14,<3.15.0a0 + - python_abi * *_cp314 + license: Python-2.0 + size: 50212 + timestamp: 1779236682725 +- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.3.1-pyhd8ed1ab_0.conda + sha256: 430bd9d731b265f0bedb3183ac3ecfaa1656390c092b6e864ff8cc1229843c8c + md5: 61dcf784d59ef0bd62c57d982b154ace depends: - - __osx >=11.0 - constrains: - - compiler-rt >=9.0.1 - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 1376087 - timestamp: 1778193605976 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.20.0-hcf29cc6_0.conda - sha256: 75963a5dd913311f59a35dbd307592f4fa754c4808aff9c33edb430c415e38eb - md5: c3cc2864f82a944bc90a7beb4d3b0e88 + - python >=3.10 + license: BSD-2-Clause + license_family: BSD + size: 16102 + timestamp: 1779115228886 +- conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be + md5: 961b3a227b437d82ad7054484cfa71b2 depends: - - __glibc >=2.17,<3.0.a0 - - krb5 >=1.22.2,<1.23.0a0 - - libgcc >=14 - - libnghttp2 >=1.68.1,<2.0a0 - - libssh2 >=1.11.1,<2.0a0 - - libzlib >=1.3.2,<2.0a0 - - openssl >=3.5.6,<4.0a0 - - zstd >=1.5.7,<1.6.0a0 - license: curl - license_family: MIT - size: 468706 - timestamp: 1777461492876 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.20.0-h8f0b9e4_0.conda - sha256: 5d3d8a82ca43347e96f1d79048921f3a7c25e32514bc7feb53ed2a040dcca54d - md5: 4a0085ccf90dc514f0fc0909a874045e + - python >=3.6 + license: PSF-2.0 + license_family: PSF + size: 24062 + timestamp: 1615232388757 +- conda: https://conda.anaconda.org/conda-forge/noarch/distlib-0.4.0-pyhd8ed1ab_0.conda + sha256: 6d977f0b2fc24fee21a9554389ab83070db341af6d6f09285360b2e09ef8b26e + md5: 003b8ba0a94e2f1e117d0bd46aebc901 depends: - - __osx >=11.0 - - krb5 >=1.22.2,<1.23.0a0 - - libnghttp2 >=1.68.1,<2.0a0 - - libssh2 >=1.11.1,<2.0a0 - - libzlib >=1.3.2,<2.0a0 - - openssl >=3.5.6,<4.0a0 - - zstd >=1.5.7,<1.6.0a0 - license: curl - license_family: MIT - size: 419676 - timestamp: 1777462238769 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.20.0-hd5a2499_0.conda - sha256: 38c0bc634b61e542776e97cfd15d5d41edd304d4e47c333004d2d622439b2381 - md5: 2f57b7d0c6adda88957586b7afd78438 + - python >=3.9 + license: Apache-2.0 + license_family: APACHE + size: 275642 + timestamp: 1752823081585 +- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda + sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144 + md5: 8e662bd460bda79b1ea39194e3c4c9ab depends: - - __osx >=11.0 - - krb5 >=1.22.2,<1.23.0a0 - - libnghttp2 >=1.68.1,<2.0a0 - - libssh2 >=1.11.1,<2.0a0 - - libzlib >=1.3.2,<2.0a0 - - openssl >=3.5.6,<4.0a0 - - zstd >=1.5.7,<1.6.0a0 - license: curl - license_family: MIT - size: 400568 - timestamp: 1777462251987 -- conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.20.0-h8206538_0.conda - sha256: f4ce5aa835a698532feaa368e804365a7e45a9edebe006a8e1c80505d893c24e - md5: 7bee27a8f0a295117ccb864f30d2d87e + - python >=3.10 + - typing_extensions >=4.6.0 + license: MIT and PSF-2.0 + size: 21333 + timestamp: 1763918099466 +- conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.2.1-pyhd8ed1ab_0.conda + sha256: 210c8165a58fdbf16e626aac93cc4c14dbd551a01d1516be5ecad795d2422cad + md5: ff9efb7f7469aed3c4a8106ffa29593c depends: - - krb5 >=1.22.2,<1.23.0a0 - - libssh2 >=1.11.1,<2.0a0 - - libzlib >=1.3.2,<2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: curl + - python >=3.10 + license: MIT license_family: MIT - size: 393114 - timestamp: 1777461635732 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-22.1.5-h19cb2f5_1.conda - sha256: 8f3d495df4427d9285ae25a51d32123ca251c32abebcef020fddb8ac1f200894 - md5: 56fa8b3e43d26c97da88aea4e958f616 + size: 30753 + timestamp: 1756729456476 +- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.29.0-pyhd8ed1ab_0.conda + sha256: 6b471a18372bbd52bdf32fc965f71de3bc1b5219418b8e6b3875a67a7b08c483 + md5: 8fa8358d022a3a9bd101384a808044c6 depends: - - __osx >=11.0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 567420 - timestamp: 1778192020253 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-22.1.5-h55c6f16_1.conda - sha256: dddd01bd6b338221342a89530a1caffe6051a70cc8f8b1d8bb591d5447a3c603 - md5: ff484b683fecf1e875dfc7aa01d19796 + - python >=3.10 + license: Unlicense + size: 34211 + timestamp: 1776621506566 +- conda: 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 +- conda: 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 +- conda: 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 +- conda: 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 +- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + md5: fee5683a3f04bd15cbd8318b096a27ab depends: - - __osx >=11.0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 569359 - timestamp: 1778191546305 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-22.1.5-h7c275be_1.conda - sha256: 2d0f2105073b1e60696549597cff4a8dfa8d7cb543e547a9b51d196ec1bbb20c - md5: a9542bea7d4002788a6c917121a5787e + - fonts-conda-forge + license: BSD-3-Clause + license_family: BSD + size: 3667 + timestamp: 1566974674465 +- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-hc364b38_1.conda + sha256: 54eea8469786bc2291cc40bca5f46438d3e062a399e8f53f013b6a9f50e98333 + md5: a7970cd949a077b7cb9696379d338681 depends: - - libcxx >=22.1.5 - - libcxx-headers >=22.1.5,<22.1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 22140 - timestamp: 1778192053168 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-22.1.5-h6dc3340_1.conda - sha256: bff4b86a8d890571c53ba8306ae6a0077829b2c1c1bc136d36f1423a6c674830 - md5: b877f90f38166751b0c29b5b58ad9009 + - font-ttf-ubuntu + - font-ttf-inconsolata + - font-ttf-dejavu-sans-mono + - font-ttf-source-code-pro + license: BSD-3-Clause + license_family: BSD + size: 4059 + timestamp: 1762351264405 +- conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda + sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276 + md5: d3549fd50d450b6d9e7dddff25dd2110 depends: - - libcxx >=22.1.5 - - libcxx-headers >=22.1.5,<22.1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 22129 - timestamp: 1778191560604 -- conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-22.1.5-h707e725_1.conda - sha256: aebe5d9d45bb61b64834e39cd86865ea043149af37fec698b4adff341ef08a74 - md5: ddbf7b15609299629cf5e859c1d33953 + - cached-property >=1.3.0 + - python >=3.9,<4 + license: MPL-2.0 + license_family: MOZILLA + size: 16705 + timestamp: 1733327494780 +- conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.16.0-pyhcf101f3_1.conda + sha256: 96cac6573fd35ae151f4d6979bab6fbc90cb6b1fb99054ba19eb075da9822fcb + md5: b8993c19b0c32a2f7b66cbb58ca27069 depends: - - __unix - constrains: - - gxx_linux-64 >=14 - - clangxx >=19 - - gxx_osx-64 >=14 - - libcxx-devel 22.1.5 - - gxx_osx-arm64 >=14 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 1176462 - timestamp: 1778191549544 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.25-h17f619e_0.conda - sha256: aa8e8c4be9a2e81610ddf574e05b64ee131fab5e0e3693210c9d6d2fba32c680 - md5: 6c77a605a7a689d17d4819c0f8ac9a00 + - python >=3.10 + - typing_extensions + - python + license: MIT + license_family: MIT + size: 39069 + timestamp: 1767729720872 +- conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.3.0-pyhcf101f3_0.conda + sha256: 84c64443368f84b600bfecc529a1194a3b14c3656ee2e832d15a20e0329b6da3 + md5: 164fc43f0b53b6e3a7bc7dce5e4f1dc9 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 + - python >=3.10 + - hyperframe >=6.1,<7 + - hpack >=4.1,<5 + - python license: MIT license_family: MIT - size: 73490 - timestamp: 1761979956660 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.25-h517ebb2_0.conda - sha256: 025f8b1e85dd8254e0ca65f011919fb1753070eb507f03bca317871a884d24de - md5: 31aa65919a729dc48180893f62c25221 + size: 95967 + timestamp: 1756364871835 +- conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba + md5: 0a802cb9888dd14eeefc611f05c40b6e depends: - - __osx >=10.13 + - python >=3.9 license: MIT license_family: MIT - size: 70840 - timestamp: 1761980008502 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.25-hc11a715_0.conda - sha256: 5e0b6961be3304a5f027a8c00bd0967fc46ae162cffb7553ff45c70f51b8314c - md5: a6130c709305cd9828b4e1bd9ba0000c + size: 30731 + timestamp: 1737618390337 +- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda + sha256: 04d49cb3c42714ce533a8553986e1642d0549a05dc5cc48e0d43ff5be6679a5b + md5: 4f14640d58e2cc0aa0819d9d8ba125bb depends: - - __osx >=11.0 + - python >=3.9 + - h11 >=0.16 + - h2 >=3,<5 + - sniffio 1.* + - anyio >=4.0,<5.0 + - certifi + - python + license: BSD-3-Clause + license_family: BSD + size: 49483 + timestamp: 1745602916758 +- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda + sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 + md5: d6989ead454181f4f9bc987d3dc4e285 + depends: + - anyio + - certifi + - httpcore 1.* + - idna + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 63082 + timestamp: 1733663449209 +- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 + md5: 8e6923fc12f1fe8f8c4e5c9f343256ac + depends: + - python >=3.9 license: MIT license_family: MIT - size: 55420 - timestamp: 1761980066242 -- conda: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.25-h51727cc_0.conda - sha256: 834e4881a18b690d5ec36f44852facd38e13afe599e369be62d29bd675f107ee - md5: e77030e67343e28b084fabd7db0ce43e + size: 17397 + timestamp: 1737618427549 +- conda: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.19-pyhd8ed1ab_0.conda + sha256: 381cedccf0866babfc135d65ee40b778bd20e927d2a5ec810f750c5860a7c5b8 + md5: 84a3233b709a289a4ddd7a2fd27dd988 depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 + - python >=3.10 + - ukkonen license: MIT license_family: MIT - size: 156818 - timestamp: 1761979842440 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda - sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 - md5: c277e0a4d549b03ac1e9d6cbbe3d017b + size: 79757 + timestamp: 1776455344188 +- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.15-pyhcf101f3_0.conda + sha256: 3d25f9f6f7ab3e1ce6429fc8c8aae0335cf446692e715068488536d220cc43de + md5: 1b9083b7f00609605d1483dbc6071a81 depends: - - ncurses - - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - - ncurses >=6.5,<7.0a0 - license: BSD-2-Clause + - python >=3.10 + - python + license: BSD-3-Clause + size: 62642 + timestamp: 1779294335905 +- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.8.0-pyhcf101f3_0.conda + sha256: 82ab2a0d91ca1e7e63ab6a4939356667ef683905dea631bc2121aa534d347b16 + md5: 080594bf4493e6bae2607e65390c520a + depends: + - python >=3.10 + - zipp >=3.20 + - python + license: Apache-2.0 + license_family: APACHE + size: 34387 + timestamp: 1773931568510 +- conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.2.0-pyh5552912_1.conda + sha256: 5c1f3e874adaf603449f2b135d48f168c5d510088c78c229bda0431268b43b27 + md5: 4b53d436f3fbc02ce3eeaf8ae9bebe01 + depends: + - appnope + - __osx + - comm >=0.1.1 + - debugpy >=1.6.5 + - ipython >=7.23.1 + - jupyter_client >=8.8.0 + - jupyter_core >=5.1,!=6.0.* + - matplotlib-inline >=0.1 + - nest-asyncio >=1.4 + - packaging >=22 + - psutil >=5.7 + - python >=3.10 + - pyzmq >=25 + - tornado >=6.4.1 + - traitlets >=5.4.0 + - python + constrains: + - appnope >=0.1.2 + license: BSD-3-Clause license_family: BSD - size: 134676 - timestamp: 1738479519902 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda - sha256: 6cc49785940a99e6a6b8c6edbb15f44c2dd6c789d9c283e5ee7bdfedd50b4cd6 - md5: 1f4ed31220402fcddc083b4bff406868 + size: 132260 + timestamp: 1770566135697 +- conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.2.0-pyh6dadd2b_1.conda + sha256: 9cdadaeef5abadca4113f92f5589db19f8b7df5e1b81cb0225f7024a3aedefa3 + md5: b3a7d5842f857414d9ae831a799444dd depends: - - ncurses - - __osx >=10.13 - - ncurses >=6.5,<7.0a0 - license: BSD-2-Clause + - __win + - comm >=0.1.1 + - debugpy >=1.6.5 + - ipython >=7.23.1 + - jupyter_client >=8.8.0 + - jupyter_core >=5.1,!=6.0.* + - matplotlib-inline >=0.1 + - nest-asyncio >=1.4 + - packaging >=22 + - psutil >=5.7 + - python >=3.10 + - pyzmq >=25 + - tornado >=6.4.1 + - traitlets >=5.4.0 + - python + constrains: + - appnope >=0.1.2 + license: BSD-3-Clause license_family: BSD - size: 115563 - timestamp: 1738479554273 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda - sha256: 66aa216a403de0bb0c1340a88d1a06adaff66bae2cfd196731aa24db9859d631 - md5: 44083d2d2c2025afca315c7a172eab2b + size: 132382 + timestamp: 1770566174387 +- conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-7.2.0-pyha191276_1.conda + sha256: b77ed58eb235e5ad80e742b03caeed4bbc2a2ef064cb9a2deee3b75dfae91b2a + md5: 8b267f517b81c13594ed68d646fd5dcb depends: - - ncurses - - __osx >=11.0 - - ncurses >=6.5,<7.0a0 - license: BSD-2-Clause + - __linux + - comm >=0.1.1 + - debugpy >=1.6.5 + - ipython >=7.23.1 + - jupyter_client >=8.8.0 + - jupyter_core >=5.1,!=6.0.* + - matplotlib-inline >=0.1 + - nest-asyncio >=1.4 + - packaging >=22 + - psutil >=5.7 + - python >=3.10 + - pyzmq >=25 + - tornado >=6.4.1 + - traitlets >=5.4.0 + - python + constrains: + - appnope >=0.1.2 + license: BSD-3-Clause license_family: BSD - size: 107691 - timestamp: 1738479560845 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda - sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 - md5: 172bf1cd1ff8629f2b1179945ed45055 + size: 133644 + timestamp: 1770566133040 +- conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.13.0-pyh53cf698_0.conda + sha256: a0af49948a1842dfd15a0b0b2fd56c94ddbd07e07a6c8b4bc70d43015eafaff0 + md5: 73e9657cd19605740d21efb14d8d0cb9 depends: - - libgcc-ng >=12 - license: BSD-2-Clause + - __unix + - decorator >=5.1.0 + - ipython_pygments_lexers >=1.0.0 + - jedi >=0.18.2 + - matplotlib-inline >=0.1.6 + - prompt-toolkit >=3.0.41,<3.1.0 + - psutil >=7 + - pygments >=2.14.0 + - python >=3.11 + - stack_data >=0.6.0 + - traitlets >=5.13.0 + - typing_extensions >=4.6 + - pexpect >4.6 + - python + license: BSD-3-Clause license_family: BSD - size: 112766 - timestamp: 1702146165126 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda - sha256: 0d238488564a7992942aa165ff994eca540f687753b4f0998b29b4e4d030ff43 - md5: 899db79329439820b7e8f8de41bca902 - license: BSD-2-Clause + size: 651632 + timestamp: 1777038396606 +- conda: https://conda.anaconda.org/conda-forge/noarch/ipython-9.13.0-pyhe2676ad_0.conda + sha256: f252ec33597115ff21cbb31051f6f9be34ca36cbbbf3d266b597660d8d8edde9 + md5: 5631ab99e902463d9dd4221e5b4eab6d + depends: + - __win + - decorator >=5.1.0 + - ipython_pygments_lexers >=1.0.0 + - jedi >=0.18.2 + - matplotlib-inline >=0.1.6 + - prompt-toolkit >=3.0.41,<3.1.0 + - psutil >=7 + - pygments >=2.14.0 + - python >=3.11 + - stack_data >=0.6.0 + - traitlets >=5.13.0 + - typing_extensions >=4.6 + - colorama >=0.4.4 + - python + license: BSD-3-Clause license_family: BSD - size: 106663 - timestamp: 1702146352558 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda - sha256: 95cecb3902fbe0399c3a7e67a5bed1db813e5ab0e22f4023a5e0f722f2cc214f - md5: 36d33e440c31857372a72137f78bacf5 - license: BSD-2-Clause + size: 650593 + timestamp: 1777038425499 +- conda: https://conda.anaconda.org/conda-forge/noarch/ipython_pygments_lexers-1.1.1-pyhd8ed1ab_0.conda + sha256: 894682a42a7d659ae12878dbcb274516a7031bbea9104e92f8e88c1f2765a104 + md5: bd80ba060603cc228d9d81c257093119 + depends: + - pygments + - python >=3.9 + license: BSD-3-Clause license_family: BSD - size: 107458 - timestamp: 1702146414478 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.8.0-hecca717_0.conda - sha256: ea33c40977ea7a2c3658c522230058395bc2ee0d89d99f0711390b6a1ee80d12 - md5: a3b390520c563d78cc58974de95a03e5 + size: 13993 + timestamp: 1737123723464 +- conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda + sha256: 08e838d29c134a7684bca0468401d26840f41c92267c4126d7b43a6b533b0aed + md5: 0b0154421989637d424ccf0f104be51a depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - constrains: - - expat 2.8.0.* + - arrow >=0.15.0 + - python >=3.9 license: MIT license_family: MIT - size: 77241 - timestamp: 1777846112704 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.8.0-hcc62823_0.conda - sha256: 5ebcc413d0a75da926a8b9b681d7d12c9562993991ba49c90a9881c4a59bdc11 - md5: d2e01f78c1daaeb4d2aa870125ebcd7e + size: 19832 + timestamp: 1733493720346 +- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda + sha256: 92c4d217e2dc68983f724aa983cca5464dcb929c566627b26a2511159667dba8 + md5: a4f4c5dc9b80bc50e0d3dc4e6e8f1bd9 depends: - - __osx >=11.0 - constrains: - - expat 2.8.0.* - license: MIT - license_family: MIT - size: 75242 - timestamp: 1777846416221 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.8.0-hf6b4638_0.conda - sha256: f4b1cafc59afaede8fa0a2d9cf376840f1c553001acd72f6ead18bbc8ac8c49c - md5: 65466e82c09e888ca7560c11a97d5450 + - parso >=0.8.3,<0.9.0 + - python >=3.9 + license: Apache-2.0 AND MIT + size: 843646 + timestamp: 1733300981994 +- conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.6-pyhcf101f3_1.conda + sha256: fc9ca7348a4f25fed2079f2153ecdcf5f9cf2a0bc36c4172420ca09e1849df7b + md5: 04558c96691bed63104678757beb4f8d depends: - - __osx >=11.0 - constrains: - - expat 2.8.0.* - license: MIT - license_family: MIT - size: 68789 - timestamp: 1777846180142 -- conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.8.0-hac47afa_0.conda - sha256: 2d81d647c1f01108803457cac999b947456f44dd0a3c2325395677feacaeca67 - md5: 264e350e035092b5135a2147c238aec4 + - markupsafe >=2.0 + - python >=3.10 + - python + license: BSD-3-Clause + license_family: BSD + size: 120685 + timestamp: 1764517220861 +- conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.14.0-pyhd8ed1ab_0.conda + sha256: 9daa95bd164c8fa23b3ab196e906ef806141d749eddce2a08baa064f722d25fa + md5: 1269891272187518a0a75c286f7d0bbf depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - constrains: - - expat 2.8.0.* - license: MIT - license_family: MIT - size: 71094 - timestamp: 1777846223617 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda - sha256: 31f19b6a88ce40ebc0d5a992c131f57d919f73c0b92cd1617a5bec83f6e961e6 - md5: a360c33a5abe61c07959e449fa1453eb + - python >=3.10 + license: Apache-2.0 + license_family: APACHE + size: 34731 + timestamp: 1774655440045 +- conda: https://conda.anaconda.org/conda-forge/noarch/jsonpointer-3.1.1-pyhcf101f3_0.conda + sha256: a3d10301b6ff399ba1f3d39e443664804a3d28315a4fb81e745b6817845f70ae + md5: 89bf346df77603055d3c8fe5811691e6 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - license: MIT - license_family: MIT - size: 58592 - timestamp: 1769456073053 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.5.2-hd1f9c09_0.conda - sha256: 951958d1792238006fdc6fce7f71f1b559534743b26cc1333497d46e5903a2d6 - md5: 66a0dc7464927d0853b590b6f53ba3ea + - python >=3.10 + - python + license: BSD-3-Clause + license_family: BSD + size: 14190 + timestamp: 1774311356147 +- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.26.0-pyhcf101f3_0.conda + sha256: db973a37d75db8e19b5f44bbbdaead0c68dde745407f281e2a7fe4db74ec51d7 + md5: ada41c863af263cc4c5fcbaff7c3e4dc depends: - - __osx >=10.13 + - attrs >=22.2.0 + - jsonschema-specifications >=2023.3.6 + - python >=3.10 + - referencing >=0.28.4 + - rpds-py >=0.25.0 + - python license: MIT license_family: MIT - size: 53583 - timestamp: 1769456300951 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-hcf2aa1b_0.conda - sha256: 6686a26466a527585e6a75cc2a242bf4a3d97d6d6c86424a441677917f28bec7 - md5: 43c04d9cb46ef176bb2a4c77e324d599 + size: 82356 + timestamp: 1767839954256 +- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2025.9.1-pyhcf101f3_0.conda + sha256: 0a4f3b132f0faca10c89fdf3b60e15abb62ded6fa80aebfc007d05965192aa04 + md5: 439cd0f567d697b20a8f45cb70a1005a depends: - - __osx >=11.0 + - python >=3.10 + - referencing >=0.31.0 + - python license: MIT license_family: MIT - size: 40979 - timestamp: 1769456747661 -- conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.5.2-h3d046cb_0.conda - sha256: 59d01f2dfa8b77491b5888a5ab88ff4e1574c9359f7e229da254cdfe27ddc190 - md5: 720b39f5ec0610457b725eb3f396219a + size: 19236 + timestamp: 1757335715225 +- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.26.0-hcf101f3_0.conda + sha256: 6886fc61e4e4edd38fd38729976b134e8bd2143f7fce56cc80d7ac7bac99bce1 + md5: 8368d58342d0825f0843dc6acdd0c483 depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 + - jsonschema >=4.26.0,<4.26.1.0a0 + - fqdn + - idna + - isoduration + - jsonpointer >1.13 + - rfc3339-validator + - rfc3986-validator >0.1.0 + - rfc3987-syntax >=1.1.0 + - uri-template + - webcolors >=24.6.0 license: MIT license_family: MIT - size: 45831 - timestamp: 1769456418774 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype-2.14.3-ha770c72_0.conda - sha256: 38f014a7129e644636e46064ecd6b1945e729c2140e21d75bb476af39e692db2 - md5: e289f3d17880e44b633ba911d57a321b - depends: - - libfreetype6 >=2.14.3 - license: GPL-2.0-only OR FTL - size: 8049 - timestamp: 1774298163029 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype-2.14.3-h694c41f_0.conda - sha256: b5daa4cee3beb98a0317e81a20aa507b9f897a9e21b11fe0b2e32852e372f746 - md5: 63b822fcf984c891f0afab2eedfcfaf4 - depends: - - libfreetype6 >=2.14.3 - license: GPL-2.0-only OR FTL - size: 8088 - timestamp: 1774298785964 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype-2.14.3-hce30654_0.conda - sha256: a047a2f238362a37d484f9620e8cba29f513a933cd9eb68571ad4b270d6f8f3e - md5: f73b109d49568d5d1dda43bb147ae37f + size: 4740 + timestamp: 1767839954258 +- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.3.1-pyhcf101f3_0.conda + sha256: 3766e2ae59641c172cec8a821528bfa6bf9543ffaaeb8b358bfd5259dcf18e4e + md5: 0c3b465ceee138b9c39279cc02e5c4a0 depends: - - libfreetype6 >=2.14.3 - license: GPL-2.0-only OR FTL - size: 8091 - timestamp: 1774298691258 -- conda: https://conda.anaconda.org/conda-forge/win-64/libfreetype-2.14.3-h57928b3_0.conda - sha256: 71fae9ae05563ceec70adceb7bc66faa326a81a6590a8aac8a5074019070a2d8 - md5: d9f70dd06674e26b6d5a657ddd22b568 + - importlib-metadata >=4.8.3 + - jupyter_server >=1.1.2 + - python >=3.10 + - python + license: BSD-3-Clause + license_family: BSD + size: 61633 + timestamp: 1775136333147 +- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.8.0-pyhcf101f3_0.conda + sha256: e402bd119720862a33229624ec23645916a7d47f30e1711a4af9e005162b84f3 + md5: 8a3d6d0523f66cf004e563a50d9392b3 depends: - - libfreetype6 >=2.14.3 - license: GPL-2.0-only OR FTL - size: 8379 - timestamp: 1774300468411 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libfreetype6-2.14.3-h73754d4_0.conda - sha256: 16f020f96da79db1863fcdd8f2b8f4f7d52f177dd4c58601e38e9182e91adf1d - md5: fb16b4b69e3f1dcfe79d80db8fd0c55d + - jupyter_core >=5.1 + - python >=3.10 + - python-dateutil >=2.8.2 + - pyzmq >=25.0 + - tornado >=6.4.1 + - traitlets >=5.3 + - python + license: BSD-3-Clause + license_family: BSD + size: 112785 + timestamp: 1767954655912 +- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyh6dadd2b_0.conda + sha256: ed709a6c25b731e01563521ef338b93986cd14b5bc17f35e9382000864872ccc + md5: a8db462b01221e9f5135be466faeb3e0 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libpng >=1.6.55,<1.7.0a0 - - libzlib >=1.3.2,<2.0a0 + - __win + - pywin32 + - platformdirs >=2.5 + - python >=3.10 + - traitlets >=5.3 + - python constrains: - - freetype >=2.14.3 - license: GPL-2.0-only OR FTL - size: 384575 - timestamp: 1774298162622 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype6-2.14.3-h58fbd8d_0.conda - sha256: 9d34b5b2be6ebdd3bcd9e21d6598d493afce4d3fcd2d419f3356022cb4d746fd - md5: 27515b8ab8bf4abd8d3d90cf11212411 + - pywin32 >=300 + license: BSD-3-Clause + license_family: BSD + size: 64679 + timestamp: 1760643889625 +- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.9.1-pyhc90fa1f_0.conda + sha256: 1d34b80e5bfcd5323f104dbf99a2aafc0e5d823019d626d0dce5d3d356a2a52a + md5: b38fe4e78ee75def7e599843ef4c1ab0 depends: - - __osx >=11.0 - - libpng >=1.6.55,<1.7.0a0 - - libzlib >=1.3.2,<2.0a0 + - __unix + - python + - platformdirs >=2.5 + - python >=3.10 + - traitlets >=5.3 + - python constrains: - - freetype >=2.14.3 - license: GPL-2.0-only OR FTL - size: 364828 - timestamp: 1774298783922 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype6-2.14.3-hdfa99f5_0.conda - sha256: ff764608e1f2839e95e2cf9b243681475f8778c36af7a42b3f78f476fdbb1dd3 - md5: e98ba7b5f09a5f450eca083d5a1c4649 + - pywin32 >=300 + license: BSD-3-Clause + license_family: BSD + size: 65503 + timestamp: 1760643864586 +- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.12.1-pyhcf101f3_0.conda + sha256: c7edb5682c6316a95ad781dccb1b6589cd2ec0bf94f23c21152974eb0363b5d7 + md5: bf42ee94c750c0b2e7e998b79ac299ea depends: - - __osx >=11.0 - - libpng >=1.6.55,<1.7.0a0 - - libzlib >=1.3.2,<2.0a0 - constrains: - - freetype >=2.14.3 - license: GPL-2.0-only OR FTL - size: 338085 - timestamp: 1774298689297 -- conda: https://conda.anaconda.org/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_0.conda - sha256: 497e9ab7c80f579e1b2850523740d6a543b8020f6b43be6bd6e83b3a6fb7fb32 - md5: f9975a0177ee6cdda10c86d1db1186b0 + - jsonschema-with-format-nongpl >=4.18.0 + - packaging + - python >=3.10 + - python-json-logger >=2.0.4 + - pyyaml >=5.3 + - referencing + - rfc3339-validator + - rfc3986-validator >=0.1.1 + - traitlets >=5.3 + - python + license: BSD-3-Clause + license_family: BSD + size: 24002 + timestamp: 1776861872237 +- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.18.2-pyhcf101f3_0.conda + sha256: 04fb8ea7749f67abaf76df6257bf86688e1389ceed55eb4fb0176fd2e882dbd6 + md5: 5ee7945accf0f215ddd6055d25d7cd83 + depends: + - anyio >=3.1.0 + - argon2-cffi >=21.1 + - jinja2 >=3.0.3 + - jupyter_client >=7.4.4 + - jupyter_core >=4.12,!=5.0.* + - jupyter_events >=0.11.0 + - jupyter_server_terminals >=0.4.4 + - nbconvert-core >=6.4.4 + - nbformat >=5.3.0 + - overrides >=5.0 + - packaging >=22.0 + - prometheus_client >=0.9 + - python >=3.10 + - pyzmq >=24 + - send2trash >=1.8.2 + - terminado >=0.8.3 + - tornado >=6.2.0 + - traitlets >=5.6.0 + - websocket-client >=1.7 + - python + license: BSD-3-Clause + license_family: BSD + size: 360522 + timestamp: 1778060967727 +- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.4-pyhcf101f3_0.conda + sha256: 5eda79ed9f53f590031d29346abd183051263227dd9ee667b5ca1133ce297654 + md5: 7b8bace4943e0dc345fc45938826f2b8 + depends: + - python >=3.10 + - terminado >=0.8.3 + - python + license: BSD-3-Clause + license_family: BSD + size: 22052 + timestamp: 1768574057200 +- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.5.7-pyhd8ed1ab_0.conda + sha256: b85befad5ba1f50c0cc042a2ffb26441d13ffc2f18572dc20d3541476da0c7b9 + md5: 2ffe77234070324e763a6eddabb5f467 + depends: + - async-lru >=1.0.0 + - httpx >=0.25.0,<1 + - ipykernel >=6.5.0,!=6.30.0 + - jinja2 >=3.0.3 + - jupyter-lsp >=2.0.0 + - jupyter_core + - jupyter_server >=2.4.0,<3 + - jupyterlab_server >=2.28.0,<3 + - notebook-shim >=0.2 + - packaging + - python >=3.10 + - setuptools >=41.1.0 + - tomli >=1.2.2 + - tornado >=6.2.0 + - traitlets + license: BSD-3-Clause + license_family: BSD + size: 8861204 + timestamp: 1777483115382 +- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-kernelspy-4.0.0-pyhd8ed1ab_1.conda + sha256: 6aa4e30d3ef1489d784c61ea7cfa98c16351005fdc47c92a1628ae6c4c96ad1b + md5: 54e5db4153f106e8c763bcafcb974f15 depends: - - libpng >=1.6.55,<1.7.0a0 - - libzlib >=1.3.2,<2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 + - python >=3.9 constrains: - - freetype >=2.14.3 - license: GPL-2.0-only OR FTL - size: 340180 - timestamp: 1774300467879 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda - sha256: 8e0a3b5e41272e5678499b5dfc4cddb673f9e935de01eb0767ce857001229f46 - md5: 57736f29cc2b0ec0b6c2952d3f101b6a + - jupyterlab >=4,<5 + license: BSD-3-Clause + license_family: BSD + size: 34832 + timestamp: 1736694325403 +- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda + sha256: dc24b900742fdaf1e077d9a3458fd865711de80bca95fe3c6d46610c532c6ef0 + md5: fd312693df06da3578383232528c468d depends: - - __glibc >=2.17,<3.0.a0 - - _openmp_mutex >=4.5 + - pygments >=2.4.1,<3 + - python >=3.9 constrains: - - libgcc-ng ==15.2.0=*_19 - - libgomp 15.2.0 he0feb66_19 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 1041084 - timestamp: 1778269013026 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libgcc-15.2.0-h08519bb_19.conda - sha256: 17a5dcd818f89173db51d7d1acd77615cb77db7b4c2b5f571d4dafe559430ab5 - md5: 4bf33d5ca73f4b89d3495285a42414a4 + - jupyterlab >=4.0.8,<5.0.0 + license: BSD-3-Clause + license_family: BSD + size: 18711 + timestamp: 1733328194037 +- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.28.0-pyhcf101f3_0.conda + sha256: 381d2d6a259a3be5f38a69463e0f6c5dcf1844ae113058007b51c3bef13a7cee + md5: a63877cb23de826b1620d3adfccc4014 depends: - - _openmp_mutex + - babel >=2.10 + - jinja2 >=3.0.3 + - json5 >=0.9.0 + - jsonschema >=4.18 + - jupyter_server >=1.21,<3 + - packaging >=21.3 + - python >=3.10 + - requests >=2.31 + - python + license: BSD-3-Clause + license_family: BSD + size: 51621 + timestamp: 1761145478692 +- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda + sha256: 41557eeadf641de6aeae49486cef30d02a6912d8da98585d687894afd65b356a + md5: 86d9cba083cd041bfbf242a01a7a1999 constrains: - - libgomp 15.2.0 19 - - libgcc-ng ==15.2.0=*_19 - license: GPL-3.0-only WITH GCC-exception-3.1 + - sysroot_linux-64 ==2.28 + license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later license_family: GPL - size: 424164 - timestamp: 1778271183296 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgcc-15.2.0-hcbb3090_19.conda - sha256: 06644fa4d34d57c9e48f4d84b1256f9e5f654fdb37f43acc8a58a396952d42b7 - md5: 644058123986582db33aebd4ae2ca184 + size: 1278712 + timestamp: 1765578681495 +- conda: https://conda.anaconda.org/conda-forge/noarch/lark-1.3.1-pyhd8ed1ab_0.conda + sha256: 49570840fb15f5df5d4b4464db8ee43a6d643031a2bc70ef52120a52e3809699 + md5: 9b965c999135d43a3d0f7bd7d024e26a depends: - - _openmp_mutex - constrains: - - libgcc-ng ==15.2.0=*_19 - - libgomp 15.2.0 19 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 404080 - timestamp: 1778273064154 -- conda: https://conda.anaconda.org/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_19.conda - sha256: 80e80ef5e31b00b12539db3c5aaecde60dab91381abfc1060e323d5c3b016dce - md5: cc5d690fc1c629038f13c68e88e65f44 + - python >=3.10 + license: MIT + license_family: MIT + size: 94312 + timestamp: 1761596921009 +- conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-22.1.6-h707e725_0.conda + sha256: 87501fbb0c08b2cb0da4c01954b6c7b86e886d4f21e5d5829b9928629183499c + md5: 38512aba53fba79bb257378c096111f9 depends: - - _openmp_mutex >=4.5 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - __unix constrains: - - msys2-conda-epoch <0.0a0 - - libgcc-ng ==15.2.0=*_19 - - libgomp 15.2.0 h8ee18e1_19 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 821854 - timestamp: 1778273037795 + - clangxx >=19 + - libcxx-devel 22.1.6 + - gxx_osx-64 >=14 + - gxx_osx-arm64 >=14 + - gxx_linux-64 >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1156373 + timestamp: 1779253028354 - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-hcc6f6b0_119.conda sha256: 38a557eba305468ac1f90ac85e50d8defd76141cb0b8a43b2fc1aca71dd5d5f2 md5: 683fcb168e1df9a21fa80d5aa2d9330b @@ -4987,3328 +5010,3737 @@ packages: license_family: GPL size: 2419170 timestamp: 1778272969212 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_19.conda - sha256: 9dcf54adfaa5e861123c2da4f2f0451a685464ea7e5a41ad91cf67b31d658d98 - md5: 331ee9b72b9dff570d56b1302c5ab37d - depends: - - libgcc 15.2.0 he0feb66_19 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 27694 - timestamp: 1778269016987 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-0.25.1-h3184127_1.conda - sha256: 0509a41da5179727d24092020bc3d4addcb24a421c2e889d32a4035652fab2cf - md5: 711bff88af3b00283f7d8f32aff82e6a - depends: - - __osx >=10.13 - - libiconv >=1.18,<2.0a0 - - libintl 0.25.1 h3184127_1 - license: GPL-3.0-or-later - license_family: GPL - size: 198908 - timestamp: 1753344027461 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-0.25.1-h493aca8_0.conda - sha256: 3ba35ff26b3b9573b5df5b9bbec5c61476157ec3a9f12c698e2a9350cd4338fd - md5: 98acd9989d0d8d5914ccc86dceb6c6c2 - depends: - - __osx >=11.0 - - libiconv >=1.18,<2.0a0 - - libintl 0.25.1 h493aca8_0 - license: GPL-3.0-or-later - license_family: GPL - size: 183091 - timestamp: 1751558452316 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-15.2.0-h69a702a_19.conda - sha256: 561a42758ef25b9ce308c4e2cf56daee4f06138385a17e29a492cd928e00be6f - md5: 42bf7eca1a951735fa06c0e3c0d5c8e6 - depends: - - libgfortran5 15.2.0 h68bc16d_19 - constrains: - - libgfortran-ng ==15.2.0=*_19 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 27655 - timestamp: 1778269042954 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-15.2.0-h7e5c614_19.conda - sha256: 519045363b87b870be779d38f0bfd325d4b787acdaa0a2136a92c1081eff5112 - md5: d362f41203d0a1d2d4940446f95374c9 - depends: - - libgfortran5 15.2.0 hd16e46c_19 - constrains: - - libgfortran-ng ==15.2.0=*_19 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 139925 - timestamp: 1778271458366 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-15.2.0-h07b0088_19.conda - sha256: d4837b3b9b30af3132d260225e91ab9dde83be04c59513f500cc81050fb37486 - md5: 1ea03f87cdb1078fbc0e2b2deb63752c - depends: - - libgfortran5 15.2.0 hdae7583_19 - constrains: - - libgfortran-ng ==15.2.0=*_19 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 139675 - timestamp: 1778273280875 -- conda: https://conda.anaconda.org/conda-forge/win-64/libgfortran-15.2.0-h719f0c7_19.conda - sha256: c312a73e6f032898ab07d9ab5f1e9752ee5a8017acfa3fe8707b8ad67f703c4e - md5: f92c61628b028b94ad20c3d09b1bcd6b - depends: - - libgfortran5 15.2.0 h44d81a7_19 - constrains: - - libgfortran-ng ==15.2.0=*_19 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 51402 - timestamp: 1778273257466 - conda: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-64-14.3.0-h660b60f_1.conda sha256: b60e918409b71302ee61b61080b1b254a902c03fbcbb415c81925dc016c5990e - md5: 731190552d91ade042ddf897cfb361aa - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 551342 - timestamp: 1756238221735 -- conda: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-arm64-14.3.0-hc965647_1.conda - sha256: f6ecc12e02a30ab7ee7a8b7285e4ffe3c2452e43885ce324b85827b97659a8c8 - md5: c1b69e537b3031d0f5af780b432ce511 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 2035634 - timestamp: 1756233109102 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-15.2.0-h69a702a_19.conda - sha256: 9ca1d254a3e44e608abec6186b18d372cec21e5253e6da9750f4a8f4780ea0bb - md5: 35d07243abf828674d273aecd1dd537e - depends: - - libgfortran 15.2.0 h69a702a_19 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 27727 - timestamp: 1778269220455 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-15.2.0-h68bc16d_19.conda - sha256: 057978bb69fea29ed715a9b98adf71015c31baecc4aeb2bfc20d4fd5d83579d4 - md5: 85072b0ad177c966294f129b7c04a2d5 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=15.2.0 - constrains: - - libgfortran 15.2.0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 2483673 - timestamp: 1778269025089 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-15.2.0-hd16e46c_19.conda - sha256: c7f5f6e80357d6d5bc69588c16144205b0c79cf32cd090ccb5afef9d557632af - md5: 1cddb3f7e54f5871297afc0fafa61c2c - depends: - - libgcc >=15.2.0 - constrains: - - libgfortran 15.2.0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 1063687 - timestamp: 1778271196574 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-15.2.0-hdae7583_19.conda - sha256: d0a68b7a121d115b80c169e24d1265dcc25a3fe58d107df1bbc430797e226d88 - md5: ba36d8c606a6a53fe0b8c12d47267b3d - depends: - - libgcc >=15.2.0 - constrains: - - libgfortran 15.2.0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 599691 - timestamp: 1778273075448 -- conda: https://conda.anaconda.org/conda-forge/win-64/libgfortran5-15.2.0-h44d81a7_19.conda - sha256: 5b094652485b6307bb8991a5f877d15c10a4f0c6b5698b041bb6e1bd408e01f4 - md5: 4849bc0fd45bcb95ce981c449e8cf7f4 - depends: - - libgcc >=15.2.0 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - constrains: - - libgfortran 15.2.0 + md5: 731190552d91ade042ddf897cfb361aa license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - size: 2792696 - timestamp: 1778273047082 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libgit2-1.9.3-hc20babb_0.conda - sha256: 0836cacf512a448fad067067c50afdff8f5d55aae30056750524a3e1426643e2 - md5: 895217aaa8320719b27be9fdb0d82000 - depends: - - libgcc >=14 - - libstdcxx >=14 - - __glibc >=2.17,<3.0.a0 - - openssl >=3.5.6,<4.0a0 - - pcre2 >=10.47,<10.48.0a0 - - libzlib >=1.3.2,<2.0a0 - - libssh2 >=1.11.1,<2.0a0 - license: GPL-2.0-only WITH GCC-exception-2.0 + size: 551342 + timestamp: 1756238221735 +- conda: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-arm64-14.3.0-hc965647_1.conda + sha256: f6ecc12e02a30ab7ee7a8b7285e4ffe3c2452e43885ce324b85827b97659a8c8 + md5: c1b69e537b3031d0f5af780b432ce511 + license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - size: 1038249 - timestamp: 1777944398119 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libgit2-1.9.3-h415d65b_0.conda - sha256: 9dc968f2dbf995d6774da898aadadc8aa4629e86cb0805b60e1cb1c978ff1711 - md5: 7c1978cb6ae5cb7be1b8157739888780 + size: 2035634 + timestamp: 1756233109102 +- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_119.conda + sha256: a2385f3611d5cd25378f9cf2367183320731709c067ddd08d43330d3170f15b8 + md5: bcfe7eae40158c3e355d2f9d3ed41230 depends: - - libcxx >=19 - - __osx >=11.0 - - libzlib >=1.3.2,<2.0a0 - - pcre2 >=10.47,<10.48.0a0 - - openssl >=3.5.6,<4.0a0 - - libssh2 >=1.11.1,<2.0a0 - - libiconv >=1.18,<2.0a0 - license: GPL-2.0-only WITH GCC-exception-2.0 + - __unix + license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - size: 885319 - timestamp: 1777944439673 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgit2-1.9.3-h9a1894c_0.conda - sha256: f77f79dad35eba3728803d0d5be27b1e9ed1f32be612dd3e4f3cf38910da01be - md5: 7bf9330f957ad1b2bfd134430efb815c + size: 20765069 + timestamp: 1778268963689 +- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_win-64-15.2.0-h0a72980_119.conda + sha256: deea115b736d7fe4acbf15c928fc26def84e30211f09a7aac6bed9940862b6e6 + md5: 928d9a3adb00850a4b5a888683c29465 depends: - - __osx >=11.0 - - libcxx >=19 - - libzlib >=1.3.2,<2.0a0 - - libiconv >=1.18,<2.0a0 - - libssh2 >=1.11.1,<2.0a0 - - openssl >=3.5.6,<4.0a0 - - pcre2 >=10.47,<10.48.0a0 - license: GPL-2.0-only WITH GCC-exception-2.0 + - m2-conda-epoch + license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - size: 838555 - timestamp: 1777944460009 -- conda: https://conda.anaconda.org/conda-forge/win-64/libgit2-1.9.3-hce7164d_0.conda - sha256: 7a2ce25012d0ee82a51b7574bcd4637770bb0e4c8c2f8149dbc209d6d2354a03 - md5: 72cad1389453f8cb712602734003b95e + size: 11634599 + timestamp: 1778272991364 +- conda: https://conda.anaconda.org/conda-forge/noarch/m2w64-sysroot_win-64-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda + sha256: fb0ffe6b3c25189038c29abbd1fac2522d87fe2775a09e5f5088e5542dc3309b + md5: 9676d2a30fa3ffa4e5350041d0993758 depends: - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - ucrt >=10.0.20348.0 - - libssh2 >=1.11.1,<2.0a0 - - libzlib >=1.3.2,<2.0a0 - license: GPL-2.0-only WITH GCC-exception-2.0 - license_family: GPL - size: 1178336 - timestamp: 1777944428375 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.88.1-h0d30a3d_2.conda - sha256: 33eb5d5310a5c2c0a4707a0afa644801c2e08c8f70c45e1f62f354116dfe0970 - md5: 17d484ab9c8179c6a6e5b7dbb5065afc + - m2-conda-epoch + - mingw-w64-ucrt-x86_64-crt-git 12.0.0.r4.gg4f2fc60ca hd8ed1ab_10 + - mingw-w64-ucrt-x86_64-headers-git 12.0.0.r4.gg4f2fc60ca hd8ed1ab_10 + - mingw-w64-ucrt-x86_64-windows-default-manifest + - mingw-w64-ucrt-x86_64-winpthreads-git 12.0.0.r4.gg4f2fc60ca hd8ed1ab_10 + - ucrt + size: 8421 + timestamp: 1759768559974 +- conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.2-pyhd8ed1ab_0.conda + sha256: 35b43d7343f74452307fd018a1cca92b8f68961ff8e2ab6a81ce0a703c9a3764 + md5: 9acc1c385be401d533ff70ef5b50dae6 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libffi >=3.5.2,<3.6.0a0 - - pcre2 >=10.47,<10.48.0a0 - - libzlib >=1.3.2,<2.0a0 - - libiconv >=1.18,<2.0a0 + - python >=3.10 + - traitlets + license: BSD-3-Clause + license_family: BSD + size: 15725 + timestamp: 1778264403247 +- conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-crt-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda + sha256: de3e42149b498c16bfb485b7729f4ca0fe392be576a2a10ff702d661799b1df3 + md5: 44ffa6d68699ec9321f6d48d75bdc726 + depends: + - m2-conda-epoch + - mingw-w64-ucrt-x86_64-headers-git 12.0.0.r4.gg4f2fc60ca hd8ed1ab_10 constrains: - - glib >2.66 - license: LGPL-2.1-or-later - size: 4754097 - timestamp: 1778508800134 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.88.1-hf28f236_2.conda - sha256: 9e10d37f49b4efef3426ac323dd8cec88a48df57d49e335d5aef8eac08ea9226 - md5: 6cf119d472892f945d81187e790cc131 + - mingw-w64-ucrt-x86_64-winpthreads-git 12.0.0.r4.gg4f2fc60ca.* + license: ZPL-2.1 + size: 5663635 + timestamp: 1759768458961 +- conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-headers-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda + sha256: 1add86481f35163215e7076e6f06f22aa9f1f9345a5fff5cb07bc846c13fbec7 + md5: cab7b807024204893ef5bb1860d91408 depends: - - __osx >=11.0 - - pcre2 >=10.47,<10.48.0a0 - - libintl >=0.25.1,<1.0a0 - - libffi >=3.5.2,<3.6.0a0 - - libiconv >=1.18,<2.0a0 - - libzlib >=1.3.2,<2.0a0 + - m2-conda-epoch constrains: - - glib >2.66 - license: LGPL-2.1-or-later - size: 4519643 - timestamp: 1778508940832 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.88.1-ha08bb59_2.conda - sha256: 3b32a7a710132d509f2ea38b2f0384414c863533e0fc7ac71b6a0763e4c67424 - md5: 62d6f3b832d7d79ae0c0aa1bb3c325fa + - mingw-w64-ucrt-x86_64-crt-git 12.0.0.r4.gg4f2fc60ca.* + - mingw-w64-ucrt-x86_64-winpthreads-git 12.0.0.r4.gg4f2fc60ca.* + license: ZPL-2.1 AND LGPL-2.1-or-later + size: 7089846 + timestamp: 1759768412123 +- conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-windows-default-manifest-6.4-he206cdd_7.conda + sha256: 5b0df4e0ba8487ffd59f60c34c5dbb9e001ecd2c5d2c66ba88eada40bfa3ecb8 + md5: 1d6b5c96d7e3cce773519d7d1a4482f0 depends: - - __osx >=11.0 - - libintl >=0.25.1,<1.0a0 - - libffi >=3.5.2,<3.6.0a0 - - pcre2 >=10.47,<10.48.0a0 - - libiconv >=1.18,<2.0a0 - - libzlib >=1.3.2,<2.0a0 + - __win constrains: - - glib >2.66 - license: LGPL-2.1-or-later - size: 4439458 - timestamp: 1778508895255 -- conda: https://conda.anaconda.org/conda-forge/win-64/libglib-2.88.1-h7ce1215_2.conda - sha256: f61277e224e9889c221bb2eac0f57d5aeeb82fc45d3dc326957d251c97444f7c - md5: 5fb838786a8317ebb38056bbe236d3ff + - m2w64-sysroot_win-64 >=12.0.0.r0 + license: FSFAP + size: 7412 + timestamp: 1717486007140 +- conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-winpthreads-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda + sha256: 828abb111286940473c4c665fc8ab300d28920f5af83b32295e8bf2256a8f342 + md5: ba0eeff6a5c62b83c771bb392e22dbb4 depends: - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - ucrt >=10.0.20348.0 - - libiconv >=1.18,<2.0a0 - - libzlib >=1.3.2,<2.0a0 - - pcre2 >=10.47,<10.48.0a0 - - libintl >=0.22.5,<1.0a0 - - libffi >=3.5.2,<3.6.0a0 + - m2-conda-epoch + - mingw-w64-ucrt-x86_64-headers-git 12.0.0.r4.gg4f2fc60ca hd8ed1ab_10 constrains: - - glib >2.66 - license: LGPL-2.1-or-later - size: 4522891 - timestamp: 1778508851933 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-he0feb66_19.conda - sha256: 5abe4ab9d93f6c9757d654f1969ae2267d4505315c1f2f8fe705fd60af084f1b - md5: faac990cb7aedc7f3a2224f2c9b0c26c + - mingw-w64-ucrt-x86_64-crt-git 12.0.0.r4.gg4f2fc60ca.* + license: MIT AND BSD-3-Clause-Clear + size: 123916 + timestamp: 1759768539535 +- conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.2.1-pyhcf101f3_0.conda + sha256: b52dc6c78fbbe7a3008535cb8bfd87d70d8053e9250bbe16e387470a9df07070 + md5: b97e84d1553b4a1c765b87fff83453ad depends: - - __glibc >=2.17,<3.0.a0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 603817 - timestamp: 1778268942614 -- conda: https://conda.anaconda.org/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_19.conda - sha256: 4dc958ced2fc7f42bc675b07e2c9abe3e150875ffdf62ca551d94fc6facf1fd7 - md5: f1147651e3fdd585e2f442c0c2fc8f2d + - python >=3.10 + - typing_extensions + - python + license: BSD-3-Clause + license_family: BSD + size: 74567 + timestamp: 1777824616382 +- conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.4-pyhd8ed1ab_0.conda + sha256: 1b66960ee06874ddceeebe375d5f17fb5f393d025a09e15b830ad0c4fffb585b + md5: 00f5b8dafa842e0c27c1cd7296aa4875 depends: - - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - jupyter_client >=6.1.12 + - jupyter_core >=4.12,!=5.0.* + - nbformat >=5.1 + - python >=3.8 + - traitlets >=5.4 + license: BSD-3-Clause + license_family: BSD + size: 28473 + timestamp: 1766485646962 +- conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.17.1-pyhcf101f3_0.conda + sha256: ab2ac79c5892c5434d50b3542d96645bdaa06d025b6e03734be29200de248ac2 + md5: 2bce0d047658a91b99441390b9b27045 + depends: + - beautifulsoup4 + - bleach-with-css !=5.0.0 + - defusedxml + - importlib-metadata >=3.6 + - jinja2 >=3.0 + - jupyter_core >=4.7 + - jupyterlab_pygments + - markupsafe >=2.0 + - mistune >=2.0.3,<4 + - nbclient >=0.5.0 + - nbformat >=5.7 + - packaging + - pandocfilters >=1.4.1 + - pygments >=2.4.1 + - python >=3.10 + - traitlets >=5.1 + - python constrains: - - msys2-conda-epoch <0.0a0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 664640 - timestamp: 1778272979661 -- conda: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.13.0-default_h049141e_1000.conda - sha256: 2ee12e37223dfcd0acd050c80a91150c482b6e2899198521e1800dce66662467 - md5: 6a01c986e30292c715038d2788aa1385 + - pandoc >=2.9.2,<4.0.0 + - nbconvert ==7.17.1 *_0 + license: BSD-3-Clause + license_family: BSD + size: 202229 + timestamp: 1775615493260 +- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda + sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 + md5: bbe1963f1e47f594070ffe87cdf612ea depends: - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - libxml2 - - libxml2-16 >=2.14.6 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 + - jsonschema >=2.6 + - jupyter_core >=4.12,!=5.0.* + - python >=3.9 + - python-fastjsonschema >=2.15 + - traitlets >=5.1 license: BSD-3-Clause license_family: BSD - size: 2396128 - timestamp: 1770954127918 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda - sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f - md5: 915f5995e94f60e9a4826e0b0920ee88 + size: 100945 + timestamp: 1733402844974 +- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda + sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 + md5: 598fd7d4d0de2455fb74f56063969a97 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - license: LGPL-2.1-only - size: 790176 - timestamp: 1754908768807 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.18-h57a12c2_2.conda - sha256: a1c8cecdf9966921e13f0ae921309a1f415dfbd2b791f2117cf7e8f5e61a48b6 - md5: 210a85a1119f97ea7887188d176db135 + - python >=3.9 + license: BSD-2-Clause + license_family: BSD + size: 11543 + timestamp: 1733325673691 +- conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda + sha256: 2a909594ca78843258e4bda36e43d165cda844743329838a29402823c8f20dec + md5: 59659d0213082bc13be8500bab80c002 + license: MIT + license_family: MIT + size: 4335 + timestamp: 1758194464430 +- conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.10.0-pyhd8ed1ab_0.conda + sha256: 4fa40e3e13fc6ea0a93f67dfc76c96190afd7ea4ffc1bac2612d954b42cdc3ee + md5: eb52d14a901e23c39e9e7b4a1a5c015f depends: - - __osx >=10.13 - license: LGPL-2.1-only - size: 737846 - timestamp: 1754908900138 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.18-h23cfdf5_2.conda - sha256: de0336e800b2af9a40bdd694b03870ac4a848161b35c8a2325704f123f185f03 - md5: 4d5a7445f0b25b6a3ddbb56e790f5251 + - python >=3.10 + - setuptools + license: BSD-3-Clause + license_family: BSD + size: 40866 + timestamp: 1766261270149 +- conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda + sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 + md5: e7f89ea5f7ea9401642758ff50a2d9c1 depends: - - __osx >=11.0 - license: LGPL-2.1-only - size: 750379 - timestamp: 1754909073836 -- conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.18-hc1393d2_2.conda - sha256: 0dcdb1a5f01863ac4e8ba006a8b0dc1a02d2221ec3319b5915a1863254d7efa7 - md5: 64571d1dd6cdcfa25d0664a5950fdaa2 + - jupyter_server >=1.8,<3 + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 16817 + timestamp: 1733408419340 +- conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda + sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c + md5: e51f1e4089cad105b6cac64bd8166587 depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: LGPL-2.1-only - size: 696926 - timestamp: 1754909290005 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.25.1-h3184127_1.conda - sha256: 8c352744517bc62d24539d1ecc813b9fdc8a785c780197c5f0b84ec5b0dfe122 - md5: a8e54eefc65645193c46e8b180f62d22 + - python >=3.9 + - typing_utils + license: Apache-2.0 + license_family: APACHE + size: 30139 + timestamp: 1734587755455 +- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda + sha256: 3906abfb6511a3bb309e39b9b1b7bc38f50a723971de2395489fd1f379255890 + md5: 4c06a92e74452cfa53623a81592e8934 depends: - - __osx >=10.13 - - libiconv >=1.18,<2.0a0 - license: LGPL-2.1-or-later - size: 96909 - timestamp: 1753343977382 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.25.1-h493aca8_0.conda - sha256: 99d2cebcd8f84961b86784451b010f5f0a795ed1c08f1e7c76fbb3c22abf021a - md5: 5103f6a6b210a3912faf8d7db516918c + - python >=3.8 + - python + license: Apache-2.0 + license_family: APACHE + size: 91574 + timestamp: 1777103621679 +- conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 + sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f + md5: 457c2c8c08e54905d6954e79cb5b5db9 depends: - - __osx >=11.0 - - libiconv >=1.18,<2.0a0 - license: LGPL-2.1-or-later - size: 90957 - timestamp: 1751558394144 -- conda: https://conda.anaconda.org/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda - sha256: c7e4600f28bcada8ea81456a6530c2329312519efcf0c886030ada38976b0511 - md5: 2cf0cf76cc15d360dfa2f17fd6cf9772 + - python !=3.0,!=3.1,!=3.2,!=3.3 + license: BSD-3-Clause + license_family: BSD + size: 11627 + timestamp: 1631603397334 +- conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.7-pyhcf101f3_0.conda + sha256: 611882f7944b467281c46644ffde6c5145d1a7730388bcde26e7e86819b0998e + md5: 39894c952938276405a1bd30e4ce2caf depends: - - libiconv >=1.17,<2.0a0 - license: LGPL-2.1-or-later - size: 95568 - timestamp: 1723629479451 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.1.4.1-hb03c661_0.conda - sha256: 10056646c28115b174de81a44e23e3a0a3b95b5347d2e6c45cc6d49d35294256 - md5: 6178c6f2fb254558238ef4e6c56fb782 + - python >=3.10 + - python + license: MIT + license_family: MIT + size: 82472 + timestamp: 1777722955579 +- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda + sha256: 202af1de83b585d36445dc1fda94266697341994d1a3328fabde4989e1b3d07a + md5: d0d408b1f18883a944376da5cf8101ea depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - constrains: - - jpeg <0.0.0a - license: IJG AND BSD-3-Clause AND Zlib - size: 633831 - timestamp: 1775962768273 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.1.4.1-ha1e9b39_0.conda - sha256: 6b809d8acb6b97bbb1a858eb4ba7b7163c67257b6c3f199dd9d1e0751f4c5b18 - md5: 57cc1464d457d01ac78f5860b9ca1714 + - ptyprocess >=0.5 + - python >=3.9 + license: ISC + size: 53561 + timestamp: 1733302019362 +- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.9.6-pyhcf101f3_0.conda + sha256: 8f29915c172f1f7f4f7c9391cd5dac3ebf5d13745c8b7c8006032615246345a5 + md5: 89c0b6d1793601a2a3a3f7d2d3d8b937 depends: - - __osx >=11.0 - constrains: - - jpeg <0.0.0a - license: IJG AND BSD-3-Clause AND Zlib - size: 587997 - timestamp: 1775963139212 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.1.4.1-h84a0fba_0.conda - sha256: 17e035ae6a520ff6a6bb5dd93a4a7c3895891f4f9743bcb8c6ef607445a31cd0 - md5: b8a7544c83a67258b0e8592ec6a5d322 + - python >=3.10 + - python + license: MIT + license_family: MIT + size: 25862 + timestamp: 1775741140609 +- conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.6.0-pyha770c72_0.conda + sha256: 716960bf0a9eb334458a26b3bdcb17b8d0786062138a4f48c7f335c8418c5d0b + md5: 7859736b4f8ebe6c8481bf48d91c9a1e depends: - - __osx >=11.0 - constrains: - - jpeg <0.0.0a - license: IJG AND BSD-3-Clause AND Zlib - size: 555681 - timestamp: 1775962975624 -- conda: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.1.4.1-hfd05255_0.conda - sha256: 698d57b5b90120270eaa401298319fcb25ea186ae95b340c2f4813ed9171083d - md5: 25a127bad5470852b30b239f030ec95b + - cfgv >=2.0.0 + - identify >=1.0.0 + - nodeenv >=0.11.1 + - python >=3.10 + - pyyaml >=5.1 + - virtualenv >=20.10.0 + license: MIT + license_family: MIT + size: 201606 + timestamp: 1776858157327 +- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.25.0-pyhd8ed1ab_0.conda + sha256: 4d7ec90d4f9c1f3b4a50623fefe4ebba69f651b102b373f7c0e9dbbfa43d495c + md5: a11ab1f31af799dd93c3a39881528884 depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - constrains: - - jpeg <0.0.0a - license: IJG AND BSD-3-Clause AND Zlib - size: 842806 - timestamp: 1775962811457 -- conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.11.0-7_h47877c9_openblas.conda - build_number: 7 - sha256: 96962084921f197c9ad13fb7f8b324f2351d50ff3d8d962148751ad532f54a01 - md5: 6569b4f273740e25dc0dc7e3232c2a6c + - python >=3.10 + license: Apache-2.0 + license_family: Apache + size: 57113 + timestamp: 1775771465170 +- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae + md5: edb16f14d920fb3faf17f5ce582942d6 depends: - - libblas 3.11.0 7_h4a7cf45_openblas + - python >=3.10 + - wcwidth constrains: - - liblapacke 3.11.0 7*_openblas - - libcblas 3.11.0 7*_openblas - - blas 2.307 openblas + - prompt_toolkit 3.0.52 license: BSD-3-Clause license_family: BSD - size: 18694 - timestamp: 1778489869038 -- conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.11.0-7_h859234e_openblas.conda - build_number: 7 - sha256: 92fe5e99c1a4dbb53268790ce0b738411f21e0d7ca50dd3ce7a8781f1b03ed95 - md5: 3aa5c4d55000d922e71dee6daddc5031 + size: 273927 + timestamp: 1756321848365 +- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda + sha256: a7713dfe30faf17508ec359e0bc7e0983f5d94682492469bd462cdaae9c64d83 + md5: 7d9daffbb8d8e0af0f769dbbcd173a54 + depends: + - python >=3.9 + license: ISC + size: 19457 + timestamp: 1733302371990 +- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda + sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 + md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 16668 + timestamp: 1733569518868 +- conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-3.0-pyhcf101f3_0.conda + sha256: e27e0473fc6723311a0bd48b89b616fa1b996a2f7a2b555338cbbcfb9c640568 + md5: 9c5491066224083c41b6d5635ed7107b depends: - - libblas 3.11.0 7_he492b99_openblas - constrains: - - liblapacke 3.11.0 7*_openblas - - libcblas 3.11.0 7*_openblas - - blas 2.307 openblas + - python >=3.10 + - python license: BSD-3-Clause + size: 55886 + timestamp: 1779293633166 +- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda + sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 + md5: 16c18772b340887160c79a6acc022db0 + depends: + - python >=3.10 + license: BSD-2-Clause license_family: BSD - size: 18862 - timestamp: 1778491179167 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.11.0-7_hd9741b5_openblas.conda - build_number: 7 - sha256: ff3018918ca8b22173dcb231842e819767fd05a08df61483eb5f3e9f2895d114 - md5: d1289ad41d5a78e2269eea3a2d7f0c7d + size: 893031 + timestamp: 1774796815820 +- conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda + sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca + md5: e2fd202833c4a981ce8a65974fe4abd1 depends: - - libblas 3.11.0 7_h51639a9_openblas - constrains: - - libcblas 3.11.0 7*_openblas - - blas 2.307 openblas - - liblapacke 3.11.0 7*_openblas + - __win + - python >=3.9 + - win_inet_pton license: BSD-3-Clause license_family: BSD - size: 18780 - timestamp: 1778490000843 -- conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.11.0-7_hf9ab0e9_mkl.conda - build_number: 7 - sha256: cd20e15b893ef82612fa46db41ad677351feb0c42cf3c27172777a35bb99b421 - md5: 56de899eaa1209fd8769418b7bc7a60c + size: 21784 + timestamp: 1733217448189 +- conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda + sha256: ba3b032fa52709ce0d9fd388f63d330a026754587a2f461117cac9ab73d8d0d8 + md5: 461219d1a5bd61342293efa2c0c90eac depends: - - libblas 3.11.0 7_h8455456_mkl - constrains: - - blas 2.307 mkl - - libcblas 3.11.0 7*_mkl - - liblapacke 3.11.0 7*_mkl + - __unix + - python >=3.9 license: BSD-3-Clause license_family: BSD - size: 80578 - timestamp: 1778490377191 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm22-22.1.5-hab754da_1.conda - sha256: 2c89fa10baef69c47539aca47e87056c83288ad1295db94b1bef8d114447cc71 - md5: a676d7e0432a0b3eee978781f6ab26a6 - depends: - - __osx >=11.0 - - libcxx >=19 - - libxml2 - - libxml2-16 >=2.14.6 - - libzlib >=1.3.2,<2.0a0 - - zstd >=1.5.7,<1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 31839823 - timestamp: 1778420752326 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm22-22.1.5-h89af1be_1.conda - sha256: 23dec5565018f13742b63cdc401d403411fc68713bc6f49dab3854fd4fc4fcc3 - md5: 2d7889ebb30d8b3425e369f4f262a789 - depends: - - __osx >=11.0 - - libcxx >=19 - - libxml2 - - libxml2-16 >=2.14.6 - - libzlib >=1.3.2,<2.0a0 - - zstd >=1.5.7,<1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 30038795 - timestamp: 1778412238119 -- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.3-hb03c661_0.conda - sha256: ec30e52a3c1bf7d0425380a189d209a52baa03f22fb66dd3eb587acaa765bd6d - md5: b88d90cad08e6bc8ad540cb310a761fb + size: 21085 + timestamp: 1733217331982 +- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda + sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 + md5: 5b8d21249ff20967101ffa321cab24e8 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - constrains: - - xz 5.8.3.* - license: 0BSD - size: 113478 - timestamp: 1775825492909 -- conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.8.3-hbb4bfdb_0.conda - sha256: d9e2006051529aec5578c6efeb13bb6a7200a014b2d5a77a579e83a8049d5f3c - md5: becdfbfe7049fa248e52aa37a9df09e2 + - python >=3.9 + - six >=1.5 + - python + license: Apache-2.0 + license_family: APACHE + size: 233310 + timestamp: 1751104122689 +- conda: https://conda.anaconda.org/conda-forge/noarch/python-discovery-1.3.1-pyhcf101f3_0.conda + sha256: 4a44f16a36fec7125b72d5a57bea963fa9deadccf65e29bb5ca610cd1d5cc0af + md5: 45ea5eceb1c2e35a08a834869837a090 depends: - - __osx >=11.0 - constrains: - - xz 5.8.3.* - license: 0BSD - size: 105724 - timestamp: 1775826029494 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.3-h8088a28_0.conda - sha256: 34878d87275c298f1a732c6806349125cebbf340d24c6c23727268184bba051e - md5: b1fd823b5ae54fbec272cea0811bd8a9 + - python >=3.10 + - filelock >=3.15.4 + - platformdirs <5,>=4.3.6 + - python + license: MIT + license_family: MIT + size: 35067 + timestamp: 1778678120896 +- conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda + sha256: df9aa74e9e28e8d1309274648aac08ec447a92512c33f61a8de0afa9ce32ebe8 + md5: 23029aae904a2ba587daba708208012f depends: - - __osx >=11.0 - constrains: - - xz 5.8.3.* - license: 0BSD - size: 92472 - timestamp: 1775825802659 -- conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.3-hfd05255_0.conda - sha256: d636d1a25234063642f9c531a7bb58d84c1c496411280a36ea000bd122f078f1 - md5: 8f83619ab1588b98dd99c90b0bfc5c6d + - python >=3.9 + - python + license: BSD-3-Clause + license_family: BSD + size: 244628 + timestamp: 1755304154927 +- conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.5-h4df99d1_100.conda + sha256: 41dd7da285d71d519257fa7dacb1cae060d5ebfaa5f92cba5994899d2978e943 + md5: 41954747ba952ec4b01e16c2c9e8d8ff depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - constrains: - - xz 5.8.3.* - license: 0BSD - size: 106486 - timestamp: 1775825663227 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb03c661_1.conda - sha256: fe171ed5cf5959993d43ff72de7596e8ac2853e9021dec0344e583734f1e0843 - md5: 2c21e66f50753a083cbe6b80f38268fa + - cpython 3.14.5.* + - python_abi * *_cp314 + license: Python-2.0 + size: 50212 + timestamp: 1779236703009 +- conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-3.2.1-pyh332efcf_0.conda + sha256: 1c55116c22512cef7b01d55ae49697707f2c1fd829407183c19817e2d300fd8d + md5: 1cd2f3e885162ee1366312bd1b1677fd depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 + - python >=3.10 + - typing_extensions license: BSD-2-Clause license_family: BSD - size: 92400 - timestamp: 1769482286018 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libmpdec-4.0.0-hf3981d6_1.conda - sha256: 1096c740109386607938ab9f09a7e9bca06d86770a284777586d6c378b8fb3fd - md5: ec88ba8a245855935b871a7324373105 + size: 18969 + timestamp: 1777318679482 +- conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2026.2-pyhd8ed1ab_0.conda + sha256: e943f9c15a6bdba2e1b9f423ab913b3f6b02197b0ef9f8e6b7464d78b59965b9 + md5: f6ad7450fc21e00ecc23812baed6d2e4 depends: - - __osx >=10.13 - license: BSD-2-Clause + - python >=3.10 + license: Apache-2.0 + license_family: APACHE + size: 146639 + timestamp: 1777068997932 +- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda + build_number: 8 + sha256: ad6d2e9ac39751cc0529dd1566a26751a0bf2542adb0c232533d32e176e21db5 + md5: 0539938c55b6b1a59b560e843ad864a4 + constrains: + - python 3.14.* *_cp314 + license: BSD-3-Clause license_family: BSD - size: 79899 - timestamp: 1769482558610 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h84a0fba_1.conda - sha256: 1089c7f15d5b62c622625ec6700732ece83be8b705da8c6607f4dabb0c4bd6d2 - md5: 57c4be259f5e0b99a5983799a228ae55 + size: 6989 + timestamp: 1752805904792 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-assertthat-0.2.1-r44hc72bb7e_6.conda + sha256: 7ce5cad4870512fce1cec74f88673ea84ba0e4b00b872f4c0b1a937b44690e71 + md5: a9e34b8723a9a38a0fb18746ad30a546 depends: - - __osx >=11.0 - license: BSD-2-Clause - license_family: BSD - size: 73690 - timestamp: 1769482560514 -- conda: https://conda.anaconda.org/conda-forge/win-64/libmpdec-4.0.0-hfd05255_1.conda - sha256: 40dcd0b9522a6e0af72a9db0ced619176e7cfdb114855c7a64f278e73f8a7514 - md5: e4a9fc2bba3b022dad998c78856afe47 + - r-base >=4.4,<4.5.0a0 + license: GPL-3.0-only + license_family: GPL3 + size: 72978 + timestamp: 1757447415952 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-assertthat-0.2.1-r45hc72bb7e_6.conda + sha256: 90e7ae8aa427274d7d2e510060b68925e60e897ecaa5ea135bb33afa7eb12134 + md5: b5291c60f52b43108a2973ba6f5885d1 depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: BSD-2-Clause - license_family: BSD - size: 89411 - timestamp: 1769482314283 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.68.1-h877daf1_0.conda - sha256: 663444d77a42f2265f54fb8b48c5450bfff4388d9c0f8253dd7855f0d993153f - md5: 2a45e7f8af083626f009645a6481f12d + - r-base >=4.5,<4.6.0a0 + license: GPL-3.0-only + license_family: GPL3 + size: 72543 + timestamp: 1757447376176 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-brew-1.0_10-r44hc72bb7e_2.conda + sha256: e77bc79cd89cf3c106e69954f82f3483b6ec89c547197a09b7795449ba86b56a + md5: 03ab88ce441b876e359ab575b40ff11b depends: - - __glibc >=2.17,<3.0.a0 - - c-ares >=1.34.6,<2.0a0 - - libev >=4.33,<4.34.0a0 - - libev >=4.33,<5.0a0 - - libgcc >=14 - - libstdcxx >=14 - - libzlib >=1.3.1,<2.0a0 - - openssl >=3.5.5,<4.0a0 + - r-base >=4.4,<4.5.0a0 + license: GPL-2.0-only + license_family: GPL2 + size: 69079 + timestamp: 1757447878952 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-brew-1.0_10-r45hc72bb7e_2.conda + sha256: 9324cbb93b6c3a2903b5f12c57eb7f03355b35ca1f1db15becf57f15fc40b796 + md5: 91c64b596d193d6ea30fc491ec9ae50f + depends: + - r-base >=4.5,<4.6.0a0 + license: GPL-2.0-only + license_family: GPL2 + size: 68849 + timestamp: 1757447876801 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-bslib-0.11.0-r44hc72bb7e_0.conda + sha256: f9c43bcf89187d282e61b5798ebe98c221b924ccd634c31a5ad444232f098f13 + md5: 8a39d55f0ca0c444e1abbb239d182605 + depends: + - r-base >=4.4,<4.5.0a0 + - r-base64enc + - r-cachem + - r-htmltools >=0.5.7 + - r-jquerylib >=0.1.3 + - r-jsonlite + - r-lifecycle + - r-memoise >=2.0.1 + - r-mime + - r-rlang + - r-sass >=0.4.0 license: MIT license_family: MIT - size: 663344 - timestamp: 1773854035739 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.68.1-h70048d4_0.conda - sha256: 899551e16aac9dfb85bfc2fd98b655f4d1b7fea45720ec04ccb93d95b4d24798 - md5: dba4c95e2fe24adcae4b77ebf33559ae + size: 5582219 + timestamp: 1778923736774 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-bslib-0.11.0-r45hc72bb7e_0.conda + sha256: fafc7a0acb8fc595b8fd89e75ec0b1d7d5af71b2b493570fa05e1f5612d299c2 + md5: dae60c429ab933e549832bc223e95639 depends: - - __osx >=11.0 - - c-ares >=1.34.6,<2.0a0 - - libcxx >=19 - - libev >=4.33,<4.34.0a0 - - libev >=4.33,<5.0a0 - - libzlib >=1.3.1,<2.0a0 - - openssl >=3.5.5,<4.0a0 + - r-base >=4.5,<4.6.0a0 + - r-base64enc + - r-cachem + - r-htmltools >=0.5.7 + - r-jquerylib >=0.1.3 + - r-jsonlite + - r-lifecycle + - r-memoise >=2.0.1 + - r-mime + - r-rlang + - r-sass >=0.4.0 license: MIT license_family: MIT - size: 606749 - timestamp: 1773854765508 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.68.1-h8f3e76b_0.conda - sha256: 2bc7bc3978066f2c274ebcbf711850cc9ab92e023e433b9631958a098d11e10a - md5: 6ea18834adbc3b33df9bd9fb45eaf95b + size: 5538377 + timestamp: 1778923739710 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-callr-3.7.6-r44hc72bb7e_2.conda + sha256: e85f816c249baa83e8bbfd8aa15ef9249151d9aaae69c5010ea209e8d1fa3ff9 + md5: 020dde50545870904c62062ffab4b621 depends: - - __osx >=11.0 - - c-ares >=1.34.6,<2.0a0 - - libcxx >=19 - - libev >=4.33,<4.34.0a0 - - libev >=4.33,<5.0a0 - - libzlib >=1.3.1,<2.0a0 - - openssl >=3.5.5,<4.0a0 + - r-base >=4.4,<4.5.0a0 + - r-processx >=3.4.0 + - r-r6 license: MIT license_family: MIT - size: 576526 - timestamp: 1773854624224 -- conda: https://conda.anaconda.org/conda-forge/win-64/libnghttp2-1.68.1-hac47afa_0.conda - sha256: 9b780f2129b3fb26b6ea62f3aaac9c72363f1aaaa2f428641eac279553d9a37a - md5: 395cb5ecb21a0c5103752bee89af2d68 + size: 454467 + timestamp: 1757475630913 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-callr-3.7.6-r45hc72bb7e_2.conda + sha256: f9f49b2b845f279af84a33c8af19a915b2731c0bd892c608205cbad8a34f423d + md5: a5cc8a8d0dc08dc769c65a13b3573739 depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 + - r-base >=4.5,<4.6.0a0 + - r-processx >=3.4.0 + - r-r6 license: MIT license_family: MIT - size: 121363 - timestamp: 1773853965838 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.33-pthreads_h94d23a6_0.conda - sha256: 3d9aa85648e5e18a6d66db98b8c4317cc426721ad7a220aa86330d1ccedc8903 - md5: 2d3278b721e40468295ca755c3b84070 + size: 454090 + timestamp: 1757475635573 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-cliapp-0.1.2-r44hc72bb7e_2.conda + sha256: df091a07acaef9fae871205511c180c77bc6c6a8279795a48dfaa52a7e7f4283 + md5: 25a7c9a7cbd6daf2277e7015a1046170 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libgfortran - - libgfortran5 >=14.3.0 - constrains: - - openblas >=0.3.33,<0.3.34.0a0 - license: BSD-3-Clause - license_family: BSD - size: 5931919 - timestamp: 1776993658641 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.33-openmp_h9e49c7b_0.conda - sha256: 2c2ffe7c3ab7becd47ad308946873d2bdc219625af32a53d10efbaa54b595d31 - md5: 30666a6f0afe1471e999eca7ae5c8179 + - r-base >=4.4,<4.5.0a0 + - r-cli + - r-crayon + - r-fansi + - r-glue >=1.3.0 + - r-prettycode + - r-progress >=1.2.0 + - r-r6 + - r-selectr + - r-withr + - r-xml2 + license: MIT + license_family: MIT + size: 248712 + timestamp: 1757835888961 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-cliapp-0.1.2-r45hc72bb7e_2.conda + sha256: e6f8e916018d958aab7742fc4dca39d11e9fd71a6c9cbf706ae48b3f4aa68963 + md5: eda926ce6830fc811ca06adde8ae3630 depends: - - __osx >=11.0 - - libgfortran - - libgfortran5 >=14.3.0 - - llvm-openmp >=19.1.7 - constrains: - - openblas >=0.3.33,<0.3.34.0a0 - license: BSD-3-Clause - license_family: BSD - size: 6287889 - timestamp: 1776996499823 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.33-openmp_he657e61_0.conda - sha256: 9dd455b2d172aeedfa2058d324b5b5822b0bc1b7c1f32cd183d7078540d2f6eb - md5: 909e41855c29f0d52ae630198cd57135 + - r-base >=4.5,<4.6.0a0 + - r-cli + - r-crayon + - r-fansi + - r-glue >=1.3.0 + - r-prettycode + - r-progress >=1.2.0 + - r-r6 + - r-selectr + - r-withr + - r-xml2 + license: MIT + license_family: MIT + size: 248879 + timestamp: 1757835846605 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-clipr-0.8.0-r44hc72bb7e_4.conda + sha256: dc7693e0fa3e16290bc5eca5d918e4fa057aedab64520cf4c9055096b988c2be + md5: 1f404af69237bf7d0dda28b53c723b9c depends: - - __osx >=11.0 - - libgfortran - - libgfortran5 >=14.3.0 - - llvm-openmp >=19.1.7 - constrains: - - openblas >=0.3.33,<0.3.34.0a0 - license: BSD-3-Clause - license_family: BSD - size: 4304965 - timestamp: 1776995497368 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.58-h421ea60_0.conda - sha256: 377cfe037f3eeb3b1bf3ad333f724a64d32f315ee1958581fc671891d63d3f89 - md5: eba48a68a1a2b9d3c0d9511548db85db + - r-base >=4.4,<4.5.0a0 + license: GPL-3.0-only + license_family: GPL3 + size: 70741 + timestamp: 1757460201245 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-clipr-0.8.0-r45hc72bb7e_4.conda + sha256: df9c2315dcc8e271947d6fee8d805f1723ce1f41be4369aa820f572d272c042d + md5: 5deda37b255bc9dc837d00b89dbf2a21 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libzlib >=1.3.2,<2.0a0 - license: zlib-acknowledgement - size: 317729 - timestamp: 1776315175087 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.58-he930e7c_0.conda - sha256: a669b22978e546484d18d99a210801b1823360a266d7035c713d8d1facd035f7 - md5: 9744d43d5200f284260637304a069ddd + - r-base >=4.5,<4.6.0a0 + license: GPL-3.0-only + license_family: GPL3 + size: 70829 + timestamp: 1757460210204 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-cpp11-0.5.5-r44h785f33e_0.conda + sha256: 58eaa9586c61a3f1adbbe84ef4d059c78a6eca282708c2c4e34878efff19f5ab + md5: a7c91479f77c69bc54216d97b918028d depends: - - __osx >=11.0 - - libzlib >=1.3.2,<2.0a0 - license: zlib-acknowledgement - size: 299206 - timestamp: 1776315286816 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.58-h132b30e_0.conda - sha256: 66eae34546df1f098a67064970c92aa14ae7a7505091889e00468294d2882c36 - md5: 2259ae0949dbe20c0665850365109b27 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 248360 + timestamp: 1778089255619 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-cpp11-0.5.5-r45h785f33e_0.conda + sha256: 5993a1b5c08c78a35cdbcf20376773eb7c4def2d28615e49f96008b43a4c05c0 + md5: 71c68a3993a696b6b75f7a6550b3750f depends: - - __osx >=11.0 - - libzlib >=1.3.2,<2.0a0 - license: zlib-acknowledgement - size: 289546 - timestamp: 1776315246750 -- conda: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.58-h7351971_0.conda - sha256: 218913aeee391460bd0e341b834dbd9c6fa6ae0a4276c0c300266cc99a816a28 - md5: 52f1280563f3b48b5f75414cd2d15dd1 + - r-base >=4.5,<4.6.0a0 + license: MIT + license_family: MIT + size: 246247 + timestamp: 1778089270609 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r44hc72bb7e_2.conda + sha256: 93bb26deef54d51293c3582cfbb51987a7af6ca93d498c4ffbe8ebdcfe52cad0 + md5: 2b72da5cca65460ba6ac1f81b4ff72cc depends: - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - ucrt >=10.0.20348.0 - - libzlib >=1.3.2,<2.0a0 - license: zlib-acknowledgement - size: 385227 - timestamp: 1776315248638 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_19.conda - sha256: 7a58892a52739ce4c0f7109de9e91b4353104748eb04fc6441d88e8af444ba99 - md5: 67eef12ce33f7ff99900c212d7076fc2 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 167903 + timestamp: 1757452343297 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda + sha256: 9126a0408696133893e674549ca7aef317768dba503765a7ed032616aabe5b49 + md5: 4f111ce078b9690abaad6248b831a370 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=15.2.0 - - libstdcxx >=15.2.0 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 7930689 - timestamp: 1778269054623 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libsigtool-0.1.3-hc0f2934_0.conda - sha256: f87b743d5ab11c1a8ddd800dd9357fc0fabe47686068232ddc1d1eed0d7321ec - md5: 3576aba85ce5e9ab15aa0ea376ab864b + - r-base >=4.5,<4.6.0a0 + license: MIT + license_family: MIT + size: 168201 + timestamp: 1757452410374 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-credentials-2.0.3-r44hc72bb7e_1.conda + sha256: 86e72bfe07502350d7c2c49b1a584d56d67d81b9dc35fda611d58408fff14a28 + md5: 73e08975cb48c7e8c2c61fb65a5c420e depends: - - __osx >=10.13 - - openssl >=3.5.4,<4.0a0 + - r-askpass + - r-base >=4.4,<4.5.0a0 + - r-curl + - r-jsonlite + - r-openssl >=1.3 + - r-sys >=2.1 license: MIT license_family: MIT - size: 38085 - timestamp: 1767044977731 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsigtool-0.1.3-h98dc951_0.conda - sha256: 421f7bd7caaa945d9cd5d374cc3f01e75637ca7372a32d5e7695c825a48a30d1 - md5: c08557d00807785decafb932b5be7ef5 + size: 225543 + timestamp: 1758405190539 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-credentials-2.0.3-r45hc72bb7e_1.conda + sha256: 5db8dc6e14ab6ff3dc79292184c079b5492f6125193e05a99f0714792d3bdc4a + md5: a94730bc5fa7197875f58d4b092a541a depends: - - __osx >=11.0 - - openssl >=3.5.4,<4.0a0 + - r-askpass + - r-base >=4.5,<4.6.0a0 + - r-curl + - r-jsonlite + - r-openssl >=1.3 + - r-sys >=2.1 license: MIT license_family: MIT - size: 36416 - timestamp: 1767045062496 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.21-h280c20c_3.conda - sha256: 64e5c80cbce4680a2d25179949739a6def695d72c40ca28f010711764e372d97 - md5: 7af961ef4aa2c1136e11dd43ded245ab - depends: - - libgcc >=14 - - __glibc >=2.17,<3.0.a0 - license: ISC - size: 277661 - timestamp: 1772479381288 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.21-hc6ced15_3.conda - sha256: 7dd254e844372fbf3a60a7c029df1ea0cb3fa0b18586cda769d9cd6cc0e59c4b - md5: c4b8a6c8a8aa6ed657a3c1c1eb6917e9 - depends: - - __osx >=10.13 - license: ISC - size: 291865 - timestamp: 1772479644707 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.21-h1a92334_3.conda - sha256: df603472ea1ebd8e7d4fb71e4360fe48d10b11c240df51c129de1da2ff9e8227 - md5: 7cc5247987e6d115134ebab15186bc13 - depends: - - __osx >=11.0 - license: ISC - size: 248039 - timestamp: 1772479570912 -- conda: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.21-h6a83c73_3.conda - sha256: d915f4fa8ebbf237c7a6e511ed458f2cfdc7c76843a924740318a15d0dd33d6d - md5: da2aa614d16a795b3007b6f4a1318a81 - depends: - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - ucrt >=10.0.20348.0 - license: ISC - size: 276860 - timestamp: 1772479407566 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.53.1-h0c1763c_0.conda - sha256: 54cdcd3214313b62c2a8ee277e6f42150d9b748264c1b70d958bf735e420ef8d - md5: 7dc38adcbf71e6b38748e919e16e0dce + size: 226814 + timestamp: 1758405193327 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-desc-1.4.3-r44hc72bb7e_2.conda + sha256: 0b511eadd8299b370b23f45268a9f3de9015457913e86e373fc34184e65c155e + md5: 24fe88af88fc79dd249b6ffdbd32af06 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libzlib >=1.3.2,<2.0a0 - license: blessing - size: 954962 - timestamp: 1777986471789 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.53.1-h8f8c405_0.conda - sha256: 5e964e07a14180ce20decfd4897e8f81d48ec78c1cbf4af85c5520f535d9510c - md5: 9273c877f78b7486b0dfdd9268327a79 + - r-base >=4.4,<4.5.0a0 + - r-cli + - r-r6 + - r-rprojroot + license: MIT + license_family: MIT + size: 341014 + timestamp: 1757463156255 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-desc-1.4.3-r45hc72bb7e_2.conda + sha256: b54c00d2ab9cca150f92120664a8a24cd63213d28c3e951c19575b24d9b57b61 + md5: 2428c825ae5b2fc162edaeb3fa76b486 depends: - - __osx >=11.0 - - icu >=78.3,<79.0a0 - - libzlib >=1.3.2,<2.0a0 - license: blessing - size: 1007171 - timestamp: 1777987093870 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.53.1-h1b79a29_0.conda - sha256: 49daec7c83e70d4efc17b813547824bc2bcf2f7256d84061d24fbfe537da9f74 - md5: 6681822ea9d362953206352371b6a904 + - r-base >=4.5,<4.6.0a0 + - r-cli + - r-r6 + - r-rprojroot + license: MIT + license_family: MIT + size: 339976 + timestamp: 1757463164006 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-devtools-2.5.2-r44hc72bb7e_0.conda + sha256: 35fffb76192a0469334b7ca226422d37caeee1da947b4d30a10a9e9c3c3dc45b + md5: c48154738392c30e02ec6447e9ad8566 depends: - - __osx >=11.0 - - libzlib >=1.3.2,<2.0a0 - license: blessing - size: 920047 - timestamp: 1777987051643 -- conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.53.1-hf5d6505_0.conda - sha256: e70562450332ca8954bc16f3455468cca5ef3695c7d7187ecc87f8fc3c70e9eb - md5: 7fea434a17c323256acc510a041b80d7 + - r-base >=4.4,<4.5.0a0 + - r-cli >=3.6.6 + - r-desc >=1.4.3 + - r-ellipsis >=0.3.3 + - r-fs >=2.0.1 + - r-lifecycle >=1.0.5 + - r-memoise >=2.0.1 + - r-miniui >=0.1.2 + - r-pak >=0.9.3 + - r-pkgbuild >=1.4.8 + - r-pkgdown >=2.2.0 + - r-pkgload >=1.5.1 + - r-profvis >=0.4.0 + - r-rcmdcheck >=1.4.0 + - r-rlang >=1.2.0 + - r-roxygen2 >=7.3.3 + - r-rversions >=3.0.0 + - r-sessioninfo >=1.2.3 + - r-testthat >=3.3.2 + - r-urlchecker >=1.0.1 + - r-usethis >=3.2.1 + - r-withr >=3.0.2 + license: MIT + license_family: MIT + size: 474002 + timestamp: 1777541952820 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-devtools-2.5.2-r45hc72bb7e_0.conda + sha256: 09a472006062232c422d861670530788a316f9138bd9e825746580b0d701ab2b + md5: 3a5db82e8dcc0d3b71c4fafd518f4d79 depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: blessing - size: 1304178 - timestamp: 1777986510497 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda - sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 - md5: eecce068c7e4eddeb169591baac20ac4 + - r-base >=4.5,<4.6.0a0 + - r-cli >=3.6.6 + - r-desc >=1.4.3 + - r-ellipsis >=0.3.3 + - r-fs >=2.0.1 + - r-lifecycle >=1.0.5 + - r-memoise >=2.0.1 + - r-miniui >=0.1.2 + - r-pak >=0.9.3 + - r-pkgbuild >=1.4.8 + - r-pkgdown >=2.2.0 + - r-pkgload >=1.5.1 + - r-profvis >=0.4.0 + - r-rcmdcheck >=1.4.0 + - r-rlang >=1.2.0 + - r-roxygen2 >=7.3.3 + - r-rversions >=3.0.0 + - r-sessioninfo >=1.2.3 + - r-testthat >=3.3.2 + - r-urlchecker >=1.0.1 + - r-usethis >=3.2.1 + - r-withr >=3.0.2 + license: MIT + license_family: MIT + size: 474612 + timestamp: 1777541956032 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-downlit-0.4.5-r44hc72bb7e_0.conda + sha256: 3dae4e0a5f1dfb19e05b139b062687081e6753d3e2911c39ca28c196d13270a6 + md5: 3365b3f052c7583803007aa2804edc4d depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - - libzlib >=1.3.1,<2.0a0 - - openssl >=3.5.0,<4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 304790 - timestamp: 1745608545575 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-hed3591d_0.conda - sha256: 00654ba9e5f73aa1f75c1f69db34a19029e970a4aeb0fa8615934d8e9c369c3c - md5: a6cb15db1c2dc4d3a5f6cf3772e09e81 + - r-base >=4.4,<4.5.0a0 + - r-brio + - r-desc + - r-digest + - r-evaluate + - r-fansi + - r-memoise + - r-rlang + - r-vctrs + - r-withr + - r-yaml + license: MIT + license_family: MIT + size: 121552 + timestamp: 1763113509623 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-downlit-0.4.5-r45hc72bb7e_0.conda + sha256: 73396f3432df8aac38aeb15f27ebdecb216d3b63bfa3c87fc6b996acf27b82f8 + md5: 49850c61c12fbd8dd19b30d9bc81833f depends: - - __osx >=10.13 - - libzlib >=1.3.1,<2.0a0 - - openssl >=3.5.0,<4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 284216 - timestamp: 1745608575796 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h1590b86_0.conda - sha256: 8bfe837221390ffc6f111ecca24fa12d4a6325da0c8d131333d63d6c37f27e0a - md5: b68e8f66b94b44aaa8de4583d3d4cc40 + - r-base >=4.5,<4.6.0a0 + - r-brio + - r-desc + - r-digest + - r-evaluate + - r-fansi + - r-memoise + - r-rlang + - r-vctrs + - r-withr + - r-yaml + license: MIT + license_family: MIT + size: 121741 + timestamp: 1763113559895 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r44hc72bb7e_1.conda + sha256: f7d36f6a5d47c637a08af09878d60559dd13147ef2d725837b3b8e2411c47f0a + md5: 7b03982e4e8e348f02a51e61e6bb9cc2 depends: - - libzlib >=1.3.1,<2.0a0 - - openssl >=3.5.0,<4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 279193 - timestamp: 1745608793272 -- conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda - sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 - md5: 9dce2f112bfd3400f4f432b3d0ac07b2 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 111297 + timestamp: 1757447669350 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda + sha256: d3accfeab1416151515c37e5edc94b18868998db4936183459f8040117d5c83c + md5: 4e0c71ab78d7292372a89d4daecb49af depends: - - libzlib >=1.3.1,<2.0a0 - - openssl >=3.5.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: 292785 - timestamp: 1745608759342 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda - sha256: dff1058c76ec6b8759e41cefa2508162d00e4a5e6721aa68ec3fd10094e702dc - md5: 5794b3bdc38177caf969dabd3af08549 + - r-base >=4.5,<4.6.0a0 + license: MIT + license_family: MIT + size: 111914 + timestamp: 1757447684244 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-fontawesome-0.5.3-r44hc72bb7e_1.conda + sha256: efa7167cc694c30895c687c2288b83a77834cffc42782ae0c452dc3f5ca16461 + md5: 1f426d1938c22f0f59407b25026ccdc3 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc 15.2.0 he0feb66_19 - constrains: - - libstdcxx-ng ==15.2.0=*_19 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 5852044 - timestamp: 1778269036376 -- conda: https://conda.anaconda.org/conda-forge/win-64/libstdcxx-15.2.0-hae5796f_19.conda - sha256: 39e3ccf4fa64e24196e57ca34387bdd8f7c749bf3beab1a849244e6923c288d2 - md5: fff457de671788d3df3d5cb246caec3e + - r-base >=4.4,<4.5.0a0 + - r-htmltools >=0.5.1.1 + - r-rlang >=0.4.10 + license: MIT + license_family: MIT + size: 1339066 + timestamp: 1757461226059 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-fontawesome-0.5.3-r45hc72bb7e_1.conda + sha256: 865df12d8cdd8cf577abc8f785a0aa4ee50b4f8751256dffe4676a350943d591 + md5: e9fccb3617ec9776569c6496fa254e64 depends: - - libgcc 15.2.0 h8ee18e1_19 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - constrains: - - libstdcxx-ng ==15.2.0=*_19 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 6461114 - timestamp: 1778273060138 -- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_119.conda - sha256: a2385f3611d5cd25378f9cf2367183320731709c067ddd08d43330d3170f15b8 - md5: bcfe7eae40158c3e355d2f9d3ed41230 + - r-base >=4.5,<4.6.0a0 + - r-htmltools >=0.5.1.1 + - r-rlang >=0.4.10 + license: MIT + license_family: MIT + size: 1335664 + timestamp: 1757461248044 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-gh-1.5.0-r44hc72bb7e_1.conda + sha256: f335fc08d3f0d564aaa3b3b982b1e9caaa8612084718781e2cf224fb1c5790ad + md5: d777f839ae3fa67f909f73d09c979596 depends: - - __unix - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 20765069 - timestamp: 1778268963689 -- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_win-64-15.2.0-h0a72980_119.conda - sha256: deea115b736d7fe4acbf15c928fc26def84e30211f09a7aac6bed9940862b6e6 - md5: 928d9a3adb00850a4b5a888683c29465 + - r-base >=4.4,<4.5.0a0 + - r-cli >=3.0.1 + - r-gitcreds + - r-httr2 + - r-ini + - r-jsonlite + - r-rlang >=1.0.0 + license: MIT + license_family: MIT + size: 129235 + timestamp: 1758411392262 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-gh-1.5.0-r45hc72bb7e_1.conda + sha256: 192cd751680077e36e7d4e2d7dd56bc479f1755652e0850d6467c148bfe93781 + md5: 63ad70a28896e7a2bb3c3d06c143c358 depends: - - m2-conda-epoch - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 11634599 - timestamp: 1778272991364 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_19.conda - sha256: 0672b6b6e1791c92e8eccad58081a99d614fcf82bca5841f9dfa3c3e658f83b9 - md5: e5ce228e579726c07255dbf90dc62101 + - r-base >=4.5,<4.6.0a0 + - r-cli >=3.0.1 + - r-gitcreds + - r-httr2 + - r-ini + - r-jsonlite + - r-rlang >=1.0.0 + license: MIT + license_family: MIT + size: 129562 + timestamp: 1758411443631 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-gitcreds-0.1.2-r44hc72bb7e_4.conda + sha256: c8746622ab43d705d6136c18806d61abed3fc432828d3a10a4b8d2d6aa20c599 + md5: 108c0fd368c4cc97f4db9d211cf4f61a depends: - - libstdcxx 15.2.0 h934c35e_19 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 27776 - timestamp: 1778269074600 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.1-h9d88235_1.conda - sha256: e5f8c38625aa6d567809733ae04bb71c161a42e44a9fa8227abe61fa5c60ebe0 - md5: cd5a90476766d53e901500df9215e927 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 96756 + timestamp: 1757482293279 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-gitcreds-0.1.2-r45hc72bb7e_4.conda + sha256: 8a2619d16e1148cd712446f47c39e53aa09708071f9fc46e9b8dd31a28fbf0ad + md5: 8864884cea757c51580b45be5c362068 depends: - - __glibc >=2.17,<3.0.a0 - - lerc >=4.0.0,<5.0a0 - - libdeflate >=1.25,<1.26.0a0 - - libgcc >=14 - - libjpeg-turbo >=3.1.0,<4.0a0 - - liblzma >=5.8.1,<6.0a0 - - libstdcxx >=14 - - libwebp-base >=1.6.0,<2.0a0 - - libzlib >=1.3.1,<2.0a0 - - zstd >=1.5.7,<1.6.0a0 - license: HPND - size: 435273 - timestamp: 1762022005702 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.7.1-ha0a348c_1.conda - sha256: e53424c34147301beae2cd9223ebf593720d94c038b3f03cacd0535e12c9668e - md5: 9d4344f94de4ab1330cdc41c40152ea6 + - r-base >=4.5,<4.6.0a0 + license: MIT + license_family: MIT + size: 96405 + timestamp: 1757482244466 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-highr-0.12-r44hc72bb7e_0.conda + sha256: 58dbae0f286db50474b17427bc5edb8a5164ce42b60291628acb28bfa4ad27e9 + md5: b8b0208e9bc8112ebf3f4cd5f6f02655 depends: - - __osx >=10.13 - - lerc >=4.0.0,<5.0a0 - - libcxx >=19 - - libdeflate >=1.25,<1.26.0a0 - - libjpeg-turbo >=3.1.0,<4.0a0 - - liblzma >=5.8.1,<6.0a0 - - libwebp-base >=1.6.0,<2.0a0 - - libzlib >=1.3.1,<2.0a0 - - zstd >=1.5.7,<1.6.0a0 - license: HPND - size: 404591 - timestamp: 1762022511178 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.1-h4030677_1.conda - sha256: e9248077b3fa63db94caca42c8dbc6949c6f32f94d1cafad127f9005d9b1507f - md5: e2a72ab2fa54ecb6abab2b26cde93500 + - r-base >=4.4,<4.5.0a0 + - r-xfun >=0.18 + license: GPL-2.0-or-later + license_family: GPL + size: 57367 + timestamp: 1772794437004 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-highr-0.12-r45hc72bb7e_0.conda + sha256: e676112aac0dbfe123fcb3108cce376782211a096c898a3af46fdf32a37e12e9 + md5: 0b5902d6af02a23bda1794d46090db42 depends: - - __osx >=11.0 - - lerc >=4.0.0,<5.0a0 - - libcxx >=19 - - libdeflate >=1.25,<1.26.0a0 - - libjpeg-turbo >=3.1.0,<4.0a0 - - liblzma >=5.8.1,<6.0a0 - - libwebp-base >=1.6.0,<2.0a0 - - libzlib >=1.3.1,<2.0a0 - - zstd >=1.5.7,<1.6.0a0 - license: HPND - size: 373892 - timestamp: 1762022345545 -- conda: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.1-h8f73337_1.conda - sha256: f1b8cccaaeea38a28b9cd496694b2e3d372bb5be0e9377c9e3d14b330d1cba8a - md5: 549845d5133100142452812feb9ba2e8 + - r-base >=4.5,<4.6.0a0 + - r-xfun >=0.18 + license: GPL-2.0-or-later + license_family: GPL + size: 57308 + timestamp: 1772794436225 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-hms-1.1.4-r44hc72bb7e_0.conda + sha256: 5a016b1533a9dc39c66f61209b0a70979289f18cbeace0377b3dfdb63c69465f + md5: 6bb21cd6a482d5c9bb068368a018e750 depends: - - lerc >=4.0.0,<5.0a0 - - libdeflate >=1.25,<1.26.0a0 - - libjpeg-turbo >=3.1.0,<4.0a0 - - liblzma >=5.8.1,<6.0a0 - - libzlib >=1.3.1,<2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - zstd >=1.5.7,<1.6.0a0 - license: HPND - size: 993166 - timestamp: 1762022118895 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.42-h5347b49_0.conda - sha256: bc1b08c92626c91500fd9f26f2c797f3eb153b627d53e9c13cd167f1e12b2829 - md5: 38ffe67b78c9d4de527be8315e5ada2c + - r-base >=4.4,<4.5.0a0 + - r-ellipsis + - r-lifecycle + - r-pkgconfig + - r-rlang + - r-vctrs >=0.2.1 + license: MIT + license_family: MIT + size: 112923 + timestamp: 1760687917284 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-hms-1.1.4-r45hc72bb7e_0.conda + sha256: be67527b52f98832ab2871d0182fb76499538ca7eb333506084620b7489ce6a0 + md5: 4677c1ad37a9452e27e27d9ed1b8ae90 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - license: BSD-3-Clause - license_family: BSD - size: 40297 - timestamp: 1775052476770 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.51.0-hb03c661_1.conda - sha256: c180f4124a889ac343fc59d15558e93667d894a966ec6fdb61da1604481be26b - md5: 0f03292cc56bf91a077a134ea8747118 + - r-base >=4.5,<4.6.0a0 + - r-ellipsis + - r-lifecycle + - r-pkgconfig + - r-rlang + - r-vctrs >=0.2.1 + license: MIT + license_family: MIT + size: 112799 + timestamp: 1760687922566 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-htmlwidgets-1.6.4-r44h785f33e_4.conda + sha256: a3c4ef0557b5cd2a99cc7a077f058b03ecd3a04d4ecb772ad23415dd0f764a09 + md5: 6f6e7b8b29a134580d4260a33a97b4af depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 + - r-base >=4.4,<4.5.0a0 + - r-htmltools >=0.5.7 + - r-jsonlite >=0.9.16 + - r-knitr >=1.8 + - r-rmarkdown + - r-yaml license: MIT license_family: MIT - size: 895108 - timestamp: 1753948278280 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.51.0-h58003a5_1.conda - sha256: d90dd0eee6f195a5bd14edab4c5b33be3635b674b0b6c010fb942b956aa2254c - md5: fbfc6cf607ae1e1e498734e256561dc3 + size: 426464 + timestamp: 1757552859822 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-htmlwidgets-1.6.4-r45h785f33e_4.conda + sha256: 4c3998ce4b4882429e52eed5c6c53d59056814d8fbc34a41ba79b990fdec1441 + md5: 6f767715f90e7caf17af72959bfcb11e depends: - - __osx >=10.13 + - r-base >=4.5,<4.6.0a0 + - r-htmltools >=0.5.7 + - r-jsonlite >=0.9.16 + - r-knitr >=1.8 + - r-rmarkdown + - r-yaml license: MIT license_family: MIT - size: 422612 - timestamp: 1753948458902 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.51.0-h6caf38d_1.conda - sha256: 042c7488ad97a5629ec0a991a8b2a3345599401ecc75ad6a5af73b60e6db9689 - md5: c0d87c3c8e075daf1daf6c31b53e8083 + size: 426023 + timestamp: 1757552859817 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-httr2-1.2.2-r44hc72bb7e_0.conda + sha256: 65e61425e9582d6de902aa876c7930455d61fc1c6d79b8d38baadd7852ce5230 + md5: 13bb31b3aecd2ceabd4f84b16b52e7a8 depends: - - __osx >=11.0 + - r-base >=4.4,<4.5.0a0 + - r-cli >=3.0.0 + - r-curl >=5.1.0 + - r-glue + - r-lifecycle + - r-magrittr + - r-openssl + - r-r6 + - r-rappdirs + - r-rlang >=1.1.0 + - r-vctrs >=0.6.3 + - r-withr license: MIT license_family: MIT - size: 421195 - timestamp: 1753948426421 -- conda: https://conda.anaconda.org/conda-forge/win-64/libuv-1.51.0-hfd05255_1.conda - sha256: f03dc82e6fb1725788e73ae97f0cd3d820d5af0d351a274104a0767035444c59 - md5: 31e1545994c48efc3e6ea32ca02a8724 + size: 786736 + timestamp: 1765189872233 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-httr2-1.2.2-r45hc72bb7e_0.conda + sha256: b7a0dce6bbc69d504ac4398d7d7d4831c59389fcd193d5eaa77ba81169abe80d + md5: 37b687ccc11cd808f45e2efbc6e8e78a depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 + - r-base >=4.5,<4.6.0a0 + - r-cli >=3.0.0 + - r-curl >=5.1.0 + - r-glue + - r-lifecycle + - r-magrittr + - r-openssl + - r-r6 + - r-rappdirs + - r-rlang >=1.1.0 + - r-vctrs >=0.6.3 + - r-withr license: MIT license_family: MIT - size: 297087 - timestamp: 1753948490874 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda - sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b - md5: aea31d2e5b1091feca96fcfe945c3cf9 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - constrains: - - libwebp 1.6.0 - license: BSD-3-Clause - license_family: BSD - size: 429011 - timestamp: 1752159441324 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.6.0-hb807250_0.conda - sha256: 00dbfe574b5d9b9b2b519acb07545380a6bc98d1f76a02695be4995d4ec91391 - md5: 7bb6608cf1f83578587297a158a6630b - depends: - - __osx >=10.13 - constrains: - - libwebp 1.6.0 - license: BSD-3-Clause - license_family: BSD - size: 365086 - timestamp: 1752159528504 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.6.0-h07db88b_0.conda - sha256: a4de3f371bb7ada325e1f27a4ef7bcc81b2b6a330e46fac9c2f78ac0755ea3dd - md5: e5e7d467f80da752be17796b87fe6385 + size: 786857 + timestamp: 1765189940950 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-ini-0.3.1-r44hc72bb7e_1007.conda + sha256: 92966144b62900f7dfeed776e1c90ae41f8da7b9c08bf3358758d54f3005877b + md5: 264bb3ce980241f17a1b4875e8945896 depends: - - __osx >=11.0 - constrains: - - libwebp 1.6.0 - license: BSD-3-Clause - license_family: BSD - size: 294974 - timestamp: 1752159906788 -- conda: https://conda.anaconda.org/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda - sha256: 0fccf2d17026255b6e10ace1f191d0a2a18f2d65088fd02430be17c701f8ffe0 - md5: 8a86073cf3b343b87d03f41790d8b4e5 + - r-base >=4.4,<4.5.0a0 + license: GPL-3.0-only + license_family: GPL3 + size: 33543 + timestamp: 1757482002536 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-ini-0.3.1-r45hc72bb7e_1007.conda + sha256: 72ee2282467c148463ba8e8a8af4b5a6fdccd98e38b0820f442af187fcabbb13 + md5: e680ce2dae5ccc37ed94fc0696e6f10d depends: - - ucrt - constrains: - - pthreads-win32 <0.0a0 - - msys2-conda-epoch <0.0a0 - license: MIT AND BSD-3-Clause-Clear - size: 36621 - timestamp: 1759768399557 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda - sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa - md5: 92ed62436b625154323d40d5f2f11dd7 + - r-base >=4.5,<4.6.0a0 + license: GPL-3.0-only + license_family: GPL3 + size: 33444 + timestamp: 1757482041715 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r44hd8ed1ab_4.conda + sha256: 3affe26f467278666a7da779d05c4118e3ccf931fa7fd0c6caef4ee722a0a0c6 + md5: 3d8d2be587e75207ead1f2534af2181f depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - - pthread-stubs - - xorg-libxau >=1.0.11,<2.0a0 - - xorg-libxdmcp + - r-base >=4.4,<4.5.0a0 + - r-repr license: MIT license_family: MIT - size: 395888 - timestamp: 1727278577118 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.15.3-h49c6c72_0.conda - sha256: 3bc5551720c58591f6ea1146f7d1539c734ed1c40e7b9f5cb8cb7e900c509aba - md5: 995d8c8bad2a3cc8db14675a153dec2b + size: 39960 + timestamp: 1757658390821 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda + sha256: df6bf7dc11b49c96a8238459db5e8e883ce8eb4bbcf5497f57fc461cea517b71 + md5: d6ca14e639c018bbdaa60e000c81552c depends: - - __glibc >=2.17,<3.0.a0 - - icu >=78.3,<79.0a0 - - libgcc >=14 - - libiconv >=1.18,<2.0a0 - - liblzma >=5.8.3,<6.0a0 - - libxml2-16 2.15.3 hca6bf5a_0 - - libzlib >=1.3.2,<2.0a0 + - r-base >=4.5,<4.6.0a0 + - r-repr license: MIT license_family: MIT - size: 46810 - timestamp: 1776376751152 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.3-h953d39d_0.conda - sha256: 24248928e63b5de45012c8ad3fd6b350ae1fe2fc355613bb89ee5f0a35835bea - md5: 33f30d4878d1f047da82a669c33b307d + size: 39908 + timestamp: 1757658385868 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-jquerylib-0.1.4-r44hc72bb7e_4.conda + sha256: 95989e7eea19dd3a0c729585a20555388537dc033df120bb7baac26601232f75 + md5: 24ba3d3b0b5d5c19fc549cca0b226388 depends: - - __osx >=11.0 - - icu >=78.3,<79.0a0 - - libiconv >=1.18,<2.0a0 - - liblzma >=5.8.3,<6.0a0 - - libxml2-16 2.15.3 h7a90416_0 - - libzlib >=1.3.2,<2.0a0 + - r-base >=4.4,<4.5.0a0 + - r-htmltools license: MIT license_family: MIT - size: 40836 - timestamp: 1776377277986 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.15.3-h5654f7c_0.conda - sha256: 2fe1d8de0854342ae9cabe408b476935f82f5636e153b3b497456264dc8ff3a1 - md5: 8e037d73747d6fe34e12d7bcac10cf21 + size: 306791 + timestamp: 1757459450146 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-jquerylib-0.1.4-r45hc72bb7e_4.conda + sha256: 3b98f72bb32d4758854805b664b4404602a583da32c9b96026536f5676f41812 + md5: 49a9ed6ed01f4ae6067ead552795bfce depends: - - __osx >=11.0 - - icu >=78.3,<79.0a0 - - libiconv >=1.18,<2.0a0 - - liblzma >=5.8.3,<6.0a0 - - libxml2-16 2.15.3 h5ef1a60_0 - - libzlib >=1.3.2,<2.0a0 + - r-base >=4.5,<4.6.0a0 + - r-htmltools license: MIT license_family: MIT - size: 41102 - timestamp: 1776377119495 -- conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_0.conda - sha256: a4599c6bbbbdd7db570896e520c557eec8e66d94e839a59d17dc1f24a3d5f82b - md5: 95591ca5671d2213f5b2d5aa7818420d + size: 307113 + timestamp: 1757459485295 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-knitr-1.51-r44hc72bb7e_0.conda + sha256: 761e5fee34951b9aa70382e8a176e4d57bd3d8d722c40c3922962fa89fca8c1e + md5: eac85b15645e954143a8d382ade0ec8b depends: - - icu >=78.3,<79.0a0 - - libiconv >=1.18,<2.0a0 - - liblzma >=5.8.3,<6.0a0 - - libxml2-16 2.15.3 h3cfd58e_0 - - libzlib >=1.3.2,<2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 + - r-base >=4.4,<4.5.0a0 + - r-evaluate >=0.15 + - r-highr >=0.11 + - r-xfun >=0.52 + - r-yaml >=2.1.19 + license: GPL-2.0-or-later + license_family: GPL + size: 989462 + timestamp: 1766309367072 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-knitr-1.51-r45hc72bb7e_0.conda + sha256: e2184f1cb58aedacd94d1dbe6e8b5dfa3508151f454e80f6bd49486bdb90625c + md5: 35b31b96aa7bc052ad6347322a1481f1 + depends: + - r-base >=4.5,<4.6.0a0 + - r-evaluate >=0.15 + - r-highr >=0.11 + - r-xfun >=0.52 + - r-yaml >=2.1.19 + license: GPL-2.0-or-later + license_family: GPL + size: 988526 + timestamp: 1766309267127 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r44hc72bb7e_0.conda + sha256: 872d78ae8959050dd75e20633a33943e1a93244909bbc20fb65ca6864d6ee694 + md5: 95dd0aa693924627e51f312be131e942 + depends: + - r-base >=4.4,<4.5.0a0 + - r-cli >=3.4.0 + - r-glue + - r-rlang >=1.0.6 license: MIT - license_family: MIT - size: 43684 - timestamp: 1776376992865 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-16-2.15.3-hca6bf5a_0.conda - sha256: 3d44f737c5ae52d5af32682cc1530df433f401f8e58a7533926536244127572a - md5: e79d2c2f24b027aa8d5ab1b1ba3061e7 + license_family: GPL3 + size: 132074 + timestamp: 1767865659674 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda + sha256: b7a4d8d98a96d17d18c80fb7e1c8e6cb09b9bd2542e74d91a7f483afccb30ee6 + md5: 5f8369dfbdff08878e58bf15529fca3a depends: - - __glibc >=2.17,<3.0.a0 - - icu >=78.3,<79.0a0 - - libgcc >=14 - - libiconv >=1.18,<2.0a0 - - liblzma >=5.8.3,<6.0a0 - - libzlib >=1.3.2,<2.0a0 - constrains: - - libxml2 2.15.3 + - r-base >=4.5,<4.6.0a0 + - r-cli >=3.4.0 + - r-glue + - r-rlang >=1.0.6 license: MIT - license_family: MIT - size: 559775 - timestamp: 1776376739004 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.3-h7a90416_0.conda - sha256: 437f003e299d77403db42d17e532d686236f357ac5c3d6bf466558c697902597 - md5: c74ae93cd7876e3a9c4b5569d5e29e34 + license_family: GPL3 + size: 132636 + timestamp: 1767865665455 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-memoise-2.0.1-r44hc72bb7e_4.conda + sha256: 67f584820d51e2a121bc7113365733b9d00dee2f270113cb212d1ecfd0e7b038 + md5: eea36c929b57cf85e2a263ccdf265094 + depends: + - r-base >=4.4,<4.5.0a0 + - r-cachem + - r-rlang >=0.4.10 + license: MIT + license_family: MIT + size: 57725 + timestamp: 1757456205848 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-memoise-2.0.1-r45hc72bb7e_4.conda + sha256: 91b0eedec5cf5de195b442b97eda508f22fdedbdbc487f74e3868d3e95380fdd + md5: 2b04206ff6ea5a92e8e36bdaa5feb3cc depends: - - __osx >=11.0 - - icu >=78.3,<79.0a0 - - libiconv >=1.18,<2.0a0 - - liblzma >=5.8.3,<6.0a0 - - libzlib >=1.3.2,<2.0a0 - constrains: - - libxml2 2.15.3 + - r-base >=4.5,<4.6.0a0 + - r-cachem + - r-rlang >=0.4.10 license: MIT license_family: MIT - size: 496338 - timestamp: 1776377250079 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-16-2.15.3-h5ef1a60_0.conda - sha256: ff75b84cdb9e8d123db2fa694a8ac2c2059516b6cbc98ac21fb68e235d0fd354 - md5: 19edaa53885fc8205614b03da2482282 + size: 57750 + timestamp: 1757456335587 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-miniui-0.1.2-r44hc72bb7e_1.conda + sha256: e790e72325c0a34ff9481e08b03ae191a70377622c57559c696edf17d8f802fb + md5: ee0d79bc89d3f74dd1388167d4bc1701 depends: - - __osx >=11.0 - - icu >=78.3,<79.0a0 - - libiconv >=1.18,<2.0a0 - - liblzma >=5.8.3,<6.0a0 - - libzlib >=1.3.2,<2.0a0 - constrains: - - libxml2 2.15.3 + - r-base >=4.4,<4.5.0a0 + - r-htmltools >=0.3 + - r-shiny >=0.13 + license: GPL-3.0-only + license_family: GPL3 + size: 55426 + timestamp: 1757517041047 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-miniui-0.1.2-r45hc72bb7e_1.conda + sha256: 0e63708e94f3848e7212db1bd8e0b7f4b72084d2d96a523a63ddb3c3102135a8 + md5: 4940389ec03eea86358108ec4bb222a0 + depends: + - r-base >=4.5,<4.6.0a0 + - r-htmltools >=0.3 + - r-shiny >=0.13 + license: GPL-3.0-only + license_family: GPL3 + size: 55283 + timestamp: 1757517043723 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-otel-0.2.0-r44hc72bb7e_1.conda + sha256: 827a5d32cb852ecee400507b2071cfaaec90f462bf3e3d97096490a059403346 + md5: e32e1e3d515ee4340ab9ef3b57b93cf4 + depends: + - r-base >=4.4,<4.5.0a0 license: MIT license_family: MIT - size: 466360 - timestamp: 1776377102261 -- conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_0.conda - sha256: 3b61ee3caba702d2ff432fa3920835db963026e5c99c4e6fdca0c6114f59e7ce - md5: 9e8dd0d90ed830107b2c36801035b7db + size: 286352 + timestamp: 1761150894562 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-otel-0.2.0-r45hc72bb7e_1.conda + sha256: f5de9737f59e1965db2de11c90cf1fdd426db322a7205c935a3e55150287b02f + md5: 560abd550c097e0d0af2e201b335f53d depends: - - icu >=78.3,<79.0a0 - - libiconv >=1.18,<2.0a0 - - liblzma >=5.8.3,<6.0a0 - - libzlib >=1.3.2,<2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - constrains: - - libxml2 2.15.3 + - r-base >=4.5,<4.6.0a0 license: MIT license_family: MIT - size: 519871 - timestamp: 1776376969852 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda - sha256: 55044c403570f0dc26e6364de4dc5368e5f3fc7ff103e867c487e2b5ab2bcda9 - md5: d87ff7921124eccd67248aa483c23fec + size: 286342 + timestamp: 1761151056217 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pak-0.9.5-r44hc72bb7e_0.conda + sha256: 52a165e7d26d39a601c0a261580cbfaa7b610f7aec4cddca830dba8562adcb05 + md5: ac83a8316cc976845072cacfe5eeeb0c depends: - - __glibc >=2.17,<3.0.a0 - constrains: - - zlib 1.3.2 *_2 - license: Zlib - license_family: Other - size: 63629 - timestamp: 1774072609062 -- conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.2-hbb4bfdb_2.conda - sha256: 4c6da089952b2d70150c74234679d6f7ac04f4a98f9432dec724968f912691e7 - md5: 30439ff30578e504ee5e0b390afc8c65 + - r-assertthat + - r-base >=4.4,<4.5.0a0 + - r-base64enc + - r-callr >=3.0.0.9002 + - r-cli >=1.0.0 + - r-cliapp >=0.0.0.9002 + - r-crayon >=1.3.4 + - r-curl >=3.2 + - r-desc >=1.2.0 + - r-filelock >=1.0.2 + - r-glue >=1.3.0 + - r-jsonlite + - r-lpsolve + - r-pkgbuild >=1.0.2 + - r-pkgcache >=1.0.3 + - r-prettyunits + - r-processx >=3.2.1 + - r-ps >=1.3.0 + - r-r6 + - r-rematch2 + - r-rprojroot >=1.3.2 + - r-tibble + license: GPL-3.0-only + license_family: GPL3 + size: 5859852 + timestamp: 1777286913468 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pak-0.9.5-r45hc72bb7e_0.conda + sha256: e9eb903ec3839852b0e94ea2d383ae1bb1f082454564315c989fc5cd53fe1d76 + md5: 2dd3a582ec978bf3639052beae546908 depends: - - __osx >=11.0 - constrains: - - zlib 1.3.2 *_2 - license: Zlib - license_family: Other - size: 59000 - timestamp: 1774073052242 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.2-h8088a28_2.conda - sha256: 361415a698514b19a852f5d1123c5da746d4642139904156ddfca7c922d23a05 - md5: bc5a5721b6439f2f62a84f2548136082 + - r-assertthat + - r-base >=4.5,<4.6.0a0 + - r-base64enc + - r-callr >=3.0.0.9002 + - r-cli >=1.0.0 + - r-cliapp >=0.0.0.9002 + - r-crayon >=1.3.4 + - r-curl >=3.2 + - r-desc >=1.2.0 + - r-filelock >=1.0.2 + - r-glue >=1.3.0 + - r-jsonlite + - r-lpsolve + - r-pkgbuild >=1.0.2 + - r-pkgcache >=1.0.3 + - r-prettyunits + - r-processx >=3.2.1 + - r-ps >=1.3.0 + - r-r6 + - r-rematch2 + - r-rprojroot >=1.3.2 + - r-tibble + license: GPL-3.0-only + license_family: GPL3 + size: 5878659 + timestamp: 1777286919389 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r44hc72bb7e_0.conda + sha256: 10739851530bc98feff7bf68acd2285dfddc7a8587b33c51a495f014744a3f33 + md5: 89635525b35ad6b443343237b65526ae depends: - - __osx >=11.0 - constrains: - - zlib 1.3.2 *_2 - license: Zlib - license_family: Other - size: 47759 - timestamp: 1774072956767 -- conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.2-hfd05255_2.conda - sha256: 88609816e0cc7452bac637aaf65783e5edf4fee8a9f8e22bdc3a75882c536061 - md5: dbabbd6234dea34040e631f87676292f + - r-base >=4.4,<4.5.0a0 + - r-cli + - r-crayon >=1.3.4 + - r-ellipsis + - r-fansi + - r-lifecycle + - r-rlang >=0.3.0 + - r-utf8 >=1.1.0 + - r-vctrs >=0.2.0 + license: GPL-3.0-only + license_family: GPL3 + size: 629814 + timestamp: 1758149812405 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda + sha256: b3f281041ecff2d4a9f40073ad5e7ec6fa7e0c841068ce85c550bcce0ff8938d + md5: 807ef77a70fc5156f830d6c683d07a29 depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - constrains: - - zlib 1.3.2 *_2 - license: Zlib - license_family: Other - size: 58347 - timestamp: 1774072851498 -- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-22.1.5-h0d3cbff_1.conda - sha256: aeb3719ccd1102005388a134896bef4a4060f9368612637b94f065b1e1f6213b - md5: d801d0ce2eab00dbb0178b196d0ce754 + - r-base >=4.5,<4.6.0a0 + - r-cli + - r-crayon >=1.3.4 + - r-ellipsis + - r-fansi + - r-lifecycle + - r-rlang >=0.3.0 + - r-utf8 >=1.1.0 + - r-vctrs >=0.2.0 + license: GPL-3.0-only + license_family: GPL3 + size: 629867 + timestamp: 1758149763203 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgbuild-1.4.8-r44hc72bb7e_1.conda + sha256: 9fdfee8ede6ca0dc94e8f11eeaf7808570a050fbf59de96fb83e09f3133bebd2 + md5: 842576a213f96e7abacdc1a5afc42dc8 depends: - - __osx >=11.0 - constrains: - - openmp 22.1.5|22.1.5.* - - intel-openmp <0.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 311468 - timestamp: 1778448112705 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-22.1.5-hc7d1edf_1.conda - sha256: 2cd49562feda2bf324651050b2b035080fd635ed0f1c96c9ce7a59eff3cc0029 - md5: 8a4e2a54034b35bc6fa5bf9282913f45 + - r-base >=4.4,<4.5.0a0 + - r-callr >=3.2.0 + - r-cli + - r-crayon + - r-desc + - r-prettyunits + - r-r6 + - r-rprojroot + - r-withr >=2.1.2 + license: GPL-3.0-only + license_family: GPL3 + size: 221541 + timestamp: 1757496269823 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgbuild-1.4.8-r45hc72bb7e_1.conda + sha256: 3d1b97a5616663fabcb165968e2d1ad3732d316a0d38be259ca84533986a0093 + md5: daea93b32bab57062ab586c9b6e3896e + depends: + - r-base >=4.5,<4.6.0a0 + - r-callr >=3.2.0 + - r-cli + - r-crayon + - r-desc + - r-prettyunits + - r-r6 + - r-rprojroot + - r-withr >=2.1.2 + license: GPL-3.0-only + license_family: GPL3 + size: 221277 + timestamp: 1757496221000 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgcache-2.2.4-r44hc72bb7e_1.conda + sha256: 87bc0cc34ca720e7d58d975dc0b3ae2431f71d6093791c77bc95acf2c7a03e76 + md5: 4be7666870dca1f47c487d301921b3da + depends: + - r-base >=4.4,<4.5.0a0 + - r-callr >=2.0.4.9000 + - r-cli >=3.2.0 + - r-curl >=3.2 + - r-filelock + - r-jsonlite + - r-prettyunits + - r-processx >=3.3.0.9001 + - r-r6 + - r-rappdirs + license: MIT + license_family: MIT + size: 918394 + timestamp: 1758416351333 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgcache-2.2.4-r45hc72bb7e_1.conda + sha256: 7cd5e76b7e4dfbd40aeb0a3bc1b8171dbf045571476c53b0c2d4e02e9d87496f + md5: c2f0a882d15573cda41289201873077c depends: - - __osx >=11.0 - constrains: - - openmp 22.1.5|22.1.5.* - - intel-openmp <0.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 285806 - timestamp: 1778447786965 -- conda: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-22.1.5-h4fa8253_1.conda - sha256: 7179e0266125c3333a097b399d0383734ee6c55fbadf332b447237a596e9698f - md5: bffe599d0eb2e78a32872712178e639c + - r-base >=4.5,<4.6.0a0 + - r-callr >=2.0.4.9000 + - r-cli >=3.2.0 + - r-curl >=3.2 + - r-filelock + - r-jsonlite + - r-prettyunits + - r-processx >=3.3.0.9001 + - r-r6 + - r-rappdirs + license: MIT + license_family: MIT + size: 921394 + timestamp: 1758416361320 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgconfig-2.0.3-r44hc72bb7e_5.conda + sha256: 6845c972210ee39fed0db7326685067cd213fc8d1136e0a2060063f3921ee494 + md5: bdc0f46c7111e1d4f7eb7133374b47b7 depends: - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - constrains: - - openmp 22.1.5|22.1.5.* - - intel-openmp <0.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 347493 - timestamp: 1778448334890 -- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-22.1.5-h1637cdf_1.conda - sha256: f563db43cdae8c49a22e1f4cc7bf458c5bd65d1190ed11771a7e244aec1859be - md5: 767f09c50c6c317d395919080cfbe48f + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 27374 + timestamp: 1757447594870 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgconfig-2.0.3-r45hc72bb7e_5.conda + sha256: fda425435a533e86da5f0fc89cf45c9f889a4e6f1e2ed536ca23662a8461602c + md5: 40a5fdd06c7e7880758a021cf2df6c12 depends: - - __osx >=11.0 - - libllvm22 22.1.5 hab754da_1 - - llvm-tools-22 22.1.5 hc181bea_1 - constrains: - - clang 22.1.5 - - llvmdev 22.1.5 - - clang-tools 22.1.5 - - llvm 22.1.5 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 52085 - timestamp: 1778421103663 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-22.1.5-hd34ed20_1.conda - sha256: 9e791556dddfd53363732fa369655536c21f7492d0ff35587172b810d8d9fad4 - md5: 9db24df0a236587f7fd247cbc6f66d92 + - r-base >=4.5,<4.6.0a0 + license: MIT + license_family: MIT + size: 27236 + timestamp: 1757447537447 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgdown-2.2.0-r44hc72bb7e_0.conda + sha256: a21fdcdb9b0374bb6031d1284d02a0781b3181ae4885bf43675667a145fbffd2 + md5: cbf95acbd79f34cada035113b917ec86 depends: - - __osx >=11.0 - - libllvm22 22.1.5 h89af1be_1 - - llvm-tools-22 22.1.5 hb545844_1 - constrains: - - llvm 22.1.5 - - clang 22.1.5 - - clang-tools 22.1.5 - - llvmdev 22.1.5 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 52214 - timestamp: 1778412425638 -- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-22-22.1.5-hc181bea_1.conda - sha256: de4bcd3ccd77ceb4d4dcddf4e9543114df501a27e33222b447bc784402ac50b0 - md5: 340c3a684dc51ae3b116ff15f36dcaa9 + - r-base >=4.4,<4.5.0a0 + - r-bslib >=0.5.1 + - r-callr >=3.7.3 + - r-cli >=3.6.1 + - r-desc >=1.4.0 + - r-downlit >=0.4.4 + - r-fontawesome + - r-fs >=1.4.0 + - r-httr2 >=1.0.2 + - r-jsonlite + - r-openssl + - r-purrr >=1.0.0 + - r-ragg >=1.4.0 + - r-rlang >=1.1.4 + - r-rmarkdown >=2.27 + - r-tibble + - r-whisker + - r-withr >=2.4.3 + - r-xml2 >=1.3.1 + - r-yaml + license: MIT + license_family: MIT + size: 905859 + timestamp: 1762414182135 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgdown-2.2.0-r45hc72bb7e_0.conda + sha256: e33f7255808935799a2bde0b7f19a66711b2abed5ad351d17fb2233e3e7879dd + md5: ac92b5648ff1ed7028576f00e8e30c57 depends: - - __osx >=11.0 - - libcxx >=19 - - libllvm22 22.1.5 hab754da_1 - - libzlib >=1.3.2,<2.0a0 - - zstd >=1.5.7,<1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 18976497 - timestamp: 1778421007873 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-22-22.1.5-hb545844_1.conda - sha256: b07a4e463a52e5a1bdaf9ca413a6495fa46aa1446ceadd6ba1ff168f386716e5 - md5: c33fcec235638c72a2084657b038c541 + - r-base >=4.5,<4.6.0a0 + - r-bslib >=0.5.1 + - r-callr >=3.7.3 + - r-cli >=3.6.1 + - r-desc >=1.4.0 + - r-downlit >=0.4.4 + - r-fontawesome + - r-fs >=1.4.0 + - r-httr2 >=1.0.2 + - r-jsonlite + - r-openssl + - r-purrr >=1.0.0 + - r-ragg >=1.4.0 + - r-rlang >=1.1.4 + - r-rmarkdown >=2.27 + - r-tibble + - r-whisker + - r-withr >=2.4.3 + - r-xml2 >=1.3.1 + - r-yaml + license: MIT + license_family: MIT + size: 907520 + timestamp: 1762414187272 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgload-1.5.2-r44hc72bb7e_0.conda + sha256: e9515b07a3632127e443b37e9a89fd00f66f5a1519d79e45e72117216dd11b4b + md5: 12ff6174aa981027ca9f431fff72cfee depends: - - __osx >=11.0 - - libcxx >=19 - - libllvm22 22.1.5 h89af1be_1 - - libzlib >=1.3.2,<2.0a0 - - zstd >=1.5.7,<1.6.0a0 - license: Apache-2.0 WITH LLVM-exception - license_family: Apache - size: 17835396 - timestamp: 1778412358363 -- conda: https://conda.anaconda.org/conda-forge/win-64/m2-conda-epoch-20250515-0_x86_64.conda - build_number: 0 - sha256: 51e9214548f177db9c3fe70424e3774c95bf19cd69e0e56e83abe2e393228ba1 - md5: 7d60fb16df2cd07fbc3dbff1c9df4244 - constrains: - - msys2-conda-epoch <0.0a0 - license: BSD-3-Clause - license_family: BSD - size: 7539 - timestamp: 1747330852019 -- conda: https://conda.anaconda.org/conda-forge/noarch/m2w64-sysroot_win-64-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda - sha256: fb0ffe6b3c25189038c29abbd1fac2522d87fe2775a09e5f5088e5542dc3309b - md5: 9676d2a30fa3ffa4e5350041d0993758 + - r-base >=4.4,<4.5.0a0 + - r-cli >=3.3.0 + - r-desc + - r-fs + - r-glue + - r-lifecycle + - r-pkgbuild + - r-processx + - r-rlang >=1.1.1 + - r-rprojroot + - r-withr >=2.4.3 + license: GPL-3.0-only + license_family: GPL3 + size: 242328 + timestamp: 1776843464955 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgload-1.5.2-r45hc72bb7e_0.conda + sha256: 238c86e19807c615aec85bda4e2929754900e946f3a463fcc47f0f8b5c91061c + md5: 9738f1d8051f1bf5d1b90cfc0aecbb2a depends: - - m2-conda-epoch - - mingw-w64-ucrt-x86_64-crt-git 12.0.0.r4.gg4f2fc60ca hd8ed1ab_10 - - mingw-w64-ucrt-x86_64-headers-git 12.0.0.r4.gg4f2fc60ca hd8ed1ab_10 - - mingw-w64-ucrt-x86_64-windows-default-manifest - - mingw-w64-ucrt-x86_64-winpthreads-git 12.0.0.r4.gg4f2fc60ca hd8ed1ab_10 - - ucrt - size: 8421 - timestamp: 1759768559974 -- conda: https://conda.anaconda.org/conda-forge/linux-64/make-4.4.1-hb9d3cd8_2.conda - sha256: d652c7bd4d3b6f82b0f6d063b0d8df6f54cc47531092d7ff008e780f3261bdda - md5: 33405d2a66b1411db9f7242c8b97c9e7 + - r-base >=4.5,<4.6.0a0 + - r-cli >=3.3.0 + - r-desc + - r-fs + - r-glue + - r-lifecycle + - r-pkgbuild + - r-processx + - r-rlang >=1.1.1 + - r-rprojroot + - r-withr >=2.4.3 + license: GPL-3.0-only + license_family: GPL3 + size: 242358 + timestamp: 1776843464574 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-praise-1.0.0-r44hc72bb7e_1009.conda + sha256: ab412aae97116199eca6ca377bef26aed160e835a9920a4764e160bd25b02233 + md5: 3be32de189a039db4fc08888bd95c2b8 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - license: GPL-3.0-or-later - license_family: GPL - size: 513088 - timestamp: 1727801714848 -- conda: https://conda.anaconda.org/conda-forge/osx-64/make-4.4.1-h00291cd_2.conda - sha256: 5a5ab3ee828309185e0a76ca80f5da85f31d8480d923abb508ca00fe194d1b5a - md5: 59b4ad97bbb36ef5315500d5bde4bcfc + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 25896 + timestamp: 1757447349076 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-praise-1.0.0-r45hc72bb7e_1009.conda + sha256: 2f4b33c16d01df7d3a65cbb7a75989a2e3a1e068a354430da225d01d50870732 + md5: d9f7dfa06871712aaf768674dea06a0b depends: - - __osx >=10.13 - license: GPL-3.0-or-later - license_family: GPL - size: 278910 - timestamp: 1727801765025 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/make-4.4.1-hc9fafa5_2.conda - sha256: 90ca65e788406d9029ae23ad4bd944a8b5353ad5f59bd6ce326f980cde46f37e - md5: 9f44ef1fea0a25d6a3491c58f3af8460 + - r-base >=4.5,<4.6.0a0 + license: MIT + license_family: MIT + size: 25995 + timestamp: 1757447352187 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-prettycode-1.1.0-r44hc72bb7e_5.conda + sha256: e4940097823e1c3f64013d660043ba89d9b4fed134da10117aa393f624e05eb6 + md5: 9e00bc3ebc04b34668098162263acd92 depends: - - __osx >=11.0 - license: GPL-3.0-or-later - license_family: GPL - size: 274048 - timestamp: 1727801725384 -- conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.3-py314h67df5f8_1.conda - sha256: c279be85b59a62d5c52f5dd9a4cd43ebd08933809a8416c22c3131595607d4cf - md5: 9a17c4307d23318476d7fbf0fedc0cde + - r-base >=4.4,<4.5.0a0 + - r-crayon + - r-withr + license: MIT + license_family: MIT + size: 251661 + timestamp: 1757801141137 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-prettycode-1.1.0-r45hc72bb7e_5.conda + sha256: fdac4ff464bf1fd8dfd33cff7f76143ca120296d9ea59d8c0b0a001d5d5b7b16 + md5: a8d5f73a68f4d4171c40cfbb3c195477 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - size: 27424 - timestamp: 1772445227915 -- conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-3.0.3-py314h77fa6c7_1.conda - sha256: 74507b481299c3d35dc7d1c35f9c92e2e94e0eda819b264f5f25b7552f8a7d64 - md5: 5d45a74270e21481797387a209b3dec3 + - r-base >=4.5,<4.6.0a0 + - r-crayon + - r-withr + license: MIT + license_family: MIT + size: 251464 + timestamp: 1757801114578 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-prettyunits-1.2.0-r44hc72bb7e_2.conda + sha256: cbee3643f2e5b45e52921f5a6246f572cadf5dcf540d352bbc0ff4ad0a96aa4f + md5: d0ddc1e17050afcb5f13ecdc1f4aba92 depends: - - __osx >=11.0 - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - size: 26740 - timestamp: 1772445674690 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.3-py314h6e9b3f0_1.conda - sha256: 411153d14ee0d98be6e3751cf5cc0502db17bce2deebebb8779e33d29d0e525f - md5: d33c0a15882b70255abdd54711b06a45 + - r-assertthat + - r-base >=4.4,<4.5.0a0 + - r-magrittr + license: MIT + license_family: MIT + size: 161041 + timestamp: 1757463122545 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-prettyunits-1.2.0-r45hc72bb7e_2.conda + sha256: 0306580de6e867b9060595f5eedde4dbf531ee89c16dd3738dde995b30f3fe14 + md5: 07465728b1fd99d28b286156dac895a3 depends: - - __osx >=11.0 - - python >=3.14,<3.15.0a0 - - python >=3.14,<3.15.0a0 *_cp314 - - python_abi 3.14.* *_cp314 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - size: 27256 - timestamp: 1772445397216 -- conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.3-py314h2359020_1.conda - sha256: 02805a0f3cd168dbf13afc5e4aed75cc00fe538ce143527a6471485b36f5887c - md5: 8de7b40f8b30a8fcaa423c2537fe4199 + - r-assertthat + - r-base >=4.5,<4.6.0a0 + - r-magrittr + license: MIT + license_family: MIT + size: 161043 + timestamp: 1757463130831 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-progress-1.2.3-r44hc72bb7e_2.conda + sha256: 23cf5fe12d5344af6dcc74d89504dee70b2534c62dee48b03515e44c27465c45 + md5: a6a93fa6ae11444ea50d897f35db7e5d depends: - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - constrains: - - jinja2 >=3.0.0 - license: BSD-3-Clause - license_family: BSD - size: 30022 - timestamp: 1772445159549 -- conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.2.2-pyhd8ed1ab_0.conda - sha256: 35b43d7343f74452307fd018a1cca92b8f68961ff8e2ab6a81ce0a703c9a3764 - md5: 9acc1c385be401d533ff70ef5b50dae6 + - r-base >=4.4,<4.5.0a0 + - r-crayon + - r-hms + - r-prettyunits + - r-r6 + license: MIT + license_family: MIT + size: 96089 + timestamp: 1757484966329 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-progress-1.2.3-r45hc72bb7e_2.conda + sha256: 7dc34860af66a0305601d70714269d8e24766bc9780a43683c1b7989970a61a3 + md5: 619b691b0965c6894eb99d3851857df7 depends: - - python >=3.10 - - traitlets - license: BSD-3-Clause - license_family: BSD - size: 15725 - timestamp: 1778264403247 -- conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-crt-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda - sha256: de3e42149b498c16bfb485b7729f4ca0fe392be576a2a10ff702d661799b1df3 - md5: 44ffa6d68699ec9321f6d48d75bdc726 + - r-base >=4.5,<4.6.0a0 + - r-crayon + - r-hms + - r-prettyunits + - r-r6 + license: MIT + license_family: MIT + size: 96260 + timestamp: 1757484957523 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-promises-1.5.0-r44hc72bb7e_1.conda + sha256: a1fad42c49ef0a7cf0744dfd860f8e9536124710b3522d39f0c08614c09c26cf + md5: 65078b0412ccfb1deab6873494f96d42 depends: - - m2-conda-epoch - - mingw-w64-ucrt-x86_64-headers-git 12.0.0.r4.gg4f2fc60ca hd8ed1ab_10 - constrains: - - mingw-w64-ucrt-x86_64-winpthreads-git 12.0.0.r4.gg4f2fc60ca.* - license: ZPL-2.1 - size: 5663635 - timestamp: 1759768458961 -- conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-headers-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda - sha256: 1add86481f35163215e7076e6f06f22aa9f1f9345a5fff5cb07bc846c13fbec7 - md5: cab7b807024204893ef5bb1860d91408 + - r-base >=4.4,<4.5.0a0 + - r-fastmap >=1.1.0 + - r-later + - r-lifecycle + - r-magrittr >=1.5 + - r-otel >=0.2.0 + - r-r6 + - r-rlang + license: MIT + license_family: MIT + size: 1597085 + timestamp: 1762426235911 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-promises-1.5.0-r45hc72bb7e_1.conda + sha256: 684dba5d20aae8da37868d603b662014e1944f5568e5f737e42d9d485892a26e + md5: b2c1b6ef8f12894fd2694b285fe8989a depends: - - m2-conda-epoch - constrains: - - mingw-w64-ucrt-x86_64-crt-git 12.0.0.r4.gg4f2fc60ca.* - - mingw-w64-ucrt-x86_64-winpthreads-git 12.0.0.r4.gg4f2fc60ca.* - license: ZPL-2.1 AND LGPL-2.1-or-later - size: 7089846 - timestamp: 1759768412123 -- conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-windows-default-manifest-6.4-he206cdd_7.conda - sha256: 5b0df4e0ba8487ffd59f60c34c5dbb9e001ecd2c5d2c66ba88eada40bfa3ecb8 - md5: 1d6b5c96d7e3cce773519d7d1a4482f0 + - r-base >=4.5,<4.6.0a0 + - r-fastmap >=1.1.0 + - r-later + - r-lifecycle + - r-magrittr >=1.5 + - r-otel >=0.2.0 + - r-r6 + - r-rlang + license: MIT + license_family: MIT + size: 1597704 + timestamp: 1762426228446 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r44hc72bb7e_1.conda + sha256: 6cd12790c46f54c67dba4a08961c69cc82f025f2ba7a30f8fae3940d81def8bd + md5: a6809636e421b99a22d374a752c1a2d6 depends: - - __win - constrains: - - m2w64-sysroot_win-64 >=12.0.0.r0 - license: FSFAP - size: 7412 - timestamp: 1717486007140 -- conda: https://conda.anaconda.org/conda-forge/noarch/mingw-w64-ucrt-x86_64-winpthreads-git-12.0.0.r4.gg4f2fc60ca-hd8ed1ab_10.conda - sha256: 828abb111286940473c4c665fc8ab300d28920f5af83b32295e8bf2256a8f342 - md5: ba0eeff6a5c62b83c771bb392e22dbb4 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 94729 + timestamp: 1757447588692 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda + sha256: bd92e91332eba5f0c689583e80adec85ef272c4e0d0b36ee17cb7c11b5693cf2 + md5: 750802806d7d640c286ed8491bb395dc depends: - - m2-conda-epoch - - mingw-w64-ucrt-x86_64-headers-git 12.0.0.r4.gg4f2fc60ca hd8ed1ab_10 - constrains: - - mingw-w64-ucrt-x86_64-crt-git 12.0.0.r4.gg4f2fc60ca.* - license: MIT AND BSD-3-Clause-Clear - size: 123916 - timestamp: 1759768539535 -- conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.2.1-pyhcf101f3_0.conda - sha256: b52dc6c78fbbe7a3008535cb8bfd87d70d8053e9250bbe16e387470a9df07070 - md5: b97e84d1553b4a1c765b87fff83453ad + - r-base >=4.5,<4.6.0a0 + license: MIT + license_family: MIT + size: 95073 + timestamp: 1757447661037 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-rcmdcheck-1.4.0-r44h785f33e_4.conda + sha256: 5b71d6653e46d4f455e65d91f9a2b89dbd34be672490e614e5be8490f96715ec + md5: 5da521ad174d2921aeceac5a51774035 depends: - - python >=3.10 - - typing_extensions - - python - license: BSD-3-Clause - license_family: BSD - size: 74567 - timestamp: 1777824616382 -- conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2026.0.0-hac47afa_906.conda - sha256: 5d6c0c02588a655aaaced67f25d1967810830d4336865e319f32cfb41d08de06 - md5: fada5d30be6e95c74ffc528f70268f02 + - r-base >=4.4,<4.5.0a0 + - r-callr >=3.1.1.9000 + - r-cli >=3.0.0 + - r-curl + - r-desc >=1.2.0 + - r-digest + - r-pkgbuild + - r-prettyunits + - r-r6 + - r-rprojroot + - r-sessioninfo >=1.1.1 + - r-withr + - r-xopen + license: MIT + license_family: MIT + size: 179296 + timestamp: 1758407837797 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-rcmdcheck-1.4.0-r45h785f33e_4.conda + sha256: 2511fd3049244f26c9bfee1f58823c6e9f200eded58fa893c928700b05271e9a + md5: 46cd08beb113bab9a16bc2a35ca9ea89 + depends: + - r-base >=4.5,<4.6.0a0 + - r-callr >=3.1.1.9000 + - r-cli >=3.0.0 + - r-curl + - r-desc >=1.2.0 + - r-digest + - r-pkgbuild + - r-prettyunits + - r-r6 + - r-rprojroot + - r-sessioninfo >=1.1.1 + - r-withr + - r-xopen + license: MIT + license_family: MIT + size: 179210 + timestamp: 1758407851979 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-rematch2-2.1.2-r44hc72bb7e_5.conda + sha256: dbce30e4ef2ffae2bb3cff19ca247cac23a863e7c7db7ca407d6c25552e56944 + md5: 9c13ea9c0d41379ad6deee9e0c3932e9 depends: - - llvm-openmp >=22.1.5 - - onemkl-license 2026.0.0 h57928b3_906 - - tbb >=2023.0.0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: LicenseRef-IntelSimplifiedSoftwareOct2022 - license_family: Proprietary - size: 114608976 - timestamp: 1778776186500 -- conda: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.4.0-h31caf2d_0.conda - sha256: 272ac1d9a2db3c9dbe2359c79784558a4e9b38624a0cc07c8f50b500a1b95d25 - md5: 52b3fbb35494ec12913a308397f52a9d + - r-base >=4.4,<4.5.0a0 + - r-tibble + license: MIT + license_family: MIT + size: 56015 + timestamp: 1757496162089 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-rematch2-2.1.2-r45hc72bb7e_5.conda + sha256: 20ec2130c80ac4b9f5488ea5b1d207b932e99b8a41beae62a58a3fcb98480025 + md5: 9190c3379d369e61841fe1bad6dc91e2 depends: - - __osx >=11.0 - - gmp >=6.3.0,<7.0a0 - - mpfr >=4.2.2,<5.0a0 - license: LGPL-3.0-or-later - license_family: LGPL - size: 91763 - timestamp: 1774472790640 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.4.0-h169892a_0.conda - sha256: a9774664adea222e4165efddcd902641c03c7d08fda3a83a5b0885e675ead309 - md5: 2845c3a1d0d8da1db92aba8323892475 + - r-base >=4.5,<4.6.0a0 + - r-tibble + license: MIT + license_family: MIT + size: 56155 + timestamp: 1757496154915 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r44h785f33e_2.conda + sha256: d3042031f593eef9d930f96358fac052969605c261cfebe4921b2510cabeb6a5 + md5: 5d70ec0db6038ea5a9cb54d9fd66fb2f depends: - - __osx >=11.0 - - gmp >=6.3.0,<7.0a0 - - mpfr >=4.2.2,<5.0a0 - license: LGPL-3.0-or-later - license_family: LGPL - size: 86181 - timestamp: 1774472395307 -- conda: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.2-h31caf2d_0.conda - sha256: 0a238d8500b2206b04f780093c25d83694c8c9628ea50f4376463c608168bf95 - md5: bc5ac4d19d24a6062f60560aab0e8976 + - r-base >=4.4,<4.5.0a0 + - r-base64enc + - r-htmltools + - r-jsonlite + - r-pillar >=1.4.0 + license: GPL-3.0-only + license_family: GPL3 + size: 147720 + timestamp: 1757481827811 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda + sha256: d8229a064695b7a0c36c70b148a76628f180693161bd35a77a9692481794ff37 + md5: 0442a7f2ecc741e142466a7edb5a606f depends: - - __osx >=11.0 - - gmp >=6.3.0,<7.0a0 - license: LGPL-3.0-only - license_family: LGPL - size: 374756 - timestamp: 1773414598704 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.2.2-h6bc93b0_0.conda - sha256: af5eca85f7ffdd403275e916f1de40a7d4b48ae138f12479523d9500c6a073ba - md5: a47a14da2103c9c7a390f7c8bc8d7f9b + - r-base >=4.5,<4.6.0a0 + - r-base64enc + - r-htmltools + - r-jsonlite + - r-pillar >=1.4.0 + license: GPL-3.0-only + license_family: GPL3 + size: 147271 + timestamp: 1757481783597 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-rmarkdown-2.31-r44hc72bb7e_0.conda + sha256: 406f6f8ecf8f5359a91b6fa58eb9e9977971b0b02c83ce4c6a4c2cae177885e9 + md5: 9249652dc813710baedac0a55da54846 depends: - - __osx >=11.0 - - gmp >=6.3.0,<7.0a0 - license: LGPL-3.0-only - license_family: LGPL - size: 348767 - timestamp: 1773414111071 -- conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.4-pyhd8ed1ab_0.conda - sha256: 1b66960ee06874ddceeebe375d5f17fb5f393d025a09e15b830ad0c4fffb585b - md5: 00f5b8dafa842e0c27c1cd7296aa4875 + - pandoc >=1.14 + - r-base >=4.4,<4.5.0a0 + - r-bslib >=0.2.5.1 + - r-evaluate >=0.13 + - r-fontawesome >=0.5.0 + - r-htmltools >=0.5.1 + - r-jquerylib + - r-jsonlite + - r-knitr >=1.43 + - r-tinytex >=0.31 + - r-xfun >=0.36 + - r-yaml >=2.1.19 + license: GPL-3.0-only + license_family: GPL3 + size: 2085649 + timestamp: 1774555004040 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-rmarkdown-2.31-r45hc72bb7e_0.conda + sha256: b3735a4e75eca023b24678251da041854b94a8b96588d81b605928d6ecf74f11 + md5: 25b9dbf0ff990b8b3111774878e3bb07 depends: - - jupyter_client >=6.1.12 - - jupyter_core >=4.12,!=5.0.* - - nbformat >=5.1 - - python >=3.8 - - traitlets >=5.4 - license: BSD-3-Clause - license_family: BSD - size: 28473 - timestamp: 1766485646962 -- conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.17.1-pyhcf101f3_0.conda - sha256: ab2ac79c5892c5434d50b3542d96645bdaa06d025b6e03734be29200de248ac2 - md5: 2bce0d047658a91b99441390b9b27045 + - pandoc >=1.14 + - r-base >=4.5,<4.6.0a0 + - r-bslib >=0.2.5.1 + - r-evaluate >=0.13 + - r-fontawesome >=0.5.0 + - r-htmltools >=0.5.1 + - r-jquerylib + - r-jsonlite + - r-knitr >=1.43 + - r-tinytex >=0.31 + - r-xfun >=0.36 + - r-yaml >=2.1.19 + license: GPL-3.0-only + license_family: GPL3 + size: 2085382 + timestamp: 1774555006202 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-rprojroot-2.1.1-r44hc72bb7e_1.conda + sha256: 23db8cfaf9c46b48fe8969c716887972f2d243e60268cca6999fdf1402b89f87 + md5: 51b5479ff88c1260e80ec9195189be13 depends: - - beautifulsoup4 - - bleach-with-css !=5.0.0 - - defusedxml - - importlib-metadata >=3.6 - - jinja2 >=3.0 - - jupyter_core >=4.7 - - jupyterlab_pygments - - markupsafe >=2.0 - - mistune >=2.0.3,<4 - - nbclient >=0.5.0 - - nbformat >=5.7 - - packaging - - pandocfilters >=1.4.1 - - pygments >=2.4.1 - - python >=3.10 - - traitlets >=5.1 - - python - constrains: - - pandoc >=2.9.2,<4.0.0 - - nbconvert ==7.17.1 *_0 - license: BSD-3-Clause - license_family: BSD - size: 202229 - timestamp: 1775615493260 -- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda - sha256: 7a5bd30a2e7ddd7b85031a5e2e14f290898098dc85bea5b3a5bf147c25122838 - md5: bbe1963f1e47f594070ffe87cdf612ea + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 116982 + timestamp: 1757447577256 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-rprojroot-2.1.1-r45hc72bb7e_1.conda + sha256: 9e359973b9433ffaef7a65a1f3483723048427aee4a3208512863c4c70c409a4 + md5: e1b7c51411ad3dd2a95aea6d466b12f7 depends: - - jsonschema >=2.6 - - jupyter_core >=4.12,!=5.0.* - - python >=3.9 - - python-fastjsonschema >=2.15 - - traitlets >=5.1 - license: BSD-3-Clause - license_family: BSD - size: 100945 - timestamp: 1733402844974 -- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.6-hdb14827_0.conda - sha256: fc89f74bbe362fb29fa3c037697a89bec140b346a2469a90f7936d1d7ea4d8a3 - md5: fc21868a1a5aacc937e7a18747acb8a5 + - r-base >=4.5,<4.6.0a0 + license: MIT + license_family: MIT + size: 117773 + timestamp: 1757447613700 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-rstudioapi-0.18.0-r44hc72bb7e_0.conda + sha256: 939b5dcf6b45de5d133a4f5a06d3f049f9263dff1e74ce8b95e0d44c2ce39109 + md5: f8688c428b2bbd58f28537826f7e9afa depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - license: X11 AND BSD-3-Clause - size: 918956 - timestamp: 1777422145199 -- conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.6-hcc0dc9a_0.conda - sha256: f5f7e006ff4271305ab4cc08eedd855c67a571793c3d18aff73f645f088a8cae - md5: 31b8740cf1b2588d4e61c81191004061 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 345579 + timestamp: 1768620468137 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-rstudioapi-0.18.0-r45hc72bb7e_0.conda + sha256: f5a35d4b7dfc17d7ae6eb92210906ccb1fbcc93acacb6d7b392e83bf15702fba + md5: e70e87e097876186fdac23d1a01faede depends: - - __osx >=11.0 - license: X11 AND BSD-3-Clause - size: 831711 - timestamp: 1777423052277 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.6-h1d4f5a5_0.conda - sha256: 4ea6c620b87bd1d42bb2ccc2c87cd2483fa2d7f9e905b14c223f11ff3f4c455d - md5: 343d10ed5b44030a2f67193905aea159 + - r-base >=4.5,<4.6.0a0 + license: MIT + license_family: MIT + size: 345783 + timestamp: 1768620480911 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-rversions-3.0.0-r44hc72bb7e_0.conda + sha256: 2a992c4e66904053dda99f56144cc675bee383223cc9d75cef25115370fa63d6 + md5: 0d8372fccb5ca284a2d3707d2b9392e6 depends: - - __osx >=11.0 - license: X11 AND BSD-3-Clause - size: 805509 - timestamp: 1777423252320 -- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda - sha256: bb7b21d7fd0445ddc0631f64e66d91a179de4ba920b8381f29b9d006a42788c0 - md5: 598fd7d4d0de2455fb74f56063969a97 + - r-base >=4.4,<4.5.0a0 + - r-curl + - r-xml2 >=1.0.0 + license: MIT + license_family: MIT + size: 145164 + timestamp: 1760025528414 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-rversions-3.0.0-r45hc72bb7e_0.conda + sha256: ce6e20e0836735760c76ea66393c3f5d3447834cc8b2c064247a1ca238821d30 + md5: 3154fa3ece90604a48de42393bd6f7b0 depends: - - python >=3.9 - license: BSD-2-Clause - license_family: BSD - size: 11543 - timestamp: 1733325673691 -- conda: https://conda.anaconda.org/conda-forge/noarch/nlohmann_json-abi-3.12.0-h0f90c79_1.conda - sha256: 2a909594ca78843258e4bda36e43d165cda844743329838a29402823c8f20dec - md5: 59659d0213082bc13be8500bab80c002 + - r-base >=4.5,<4.6.0a0 + - r-curl + - r-xml2 >=1.0.0 license: MIT license_family: MIT - size: 4335 - timestamp: 1758194464430 -- conda: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.10.0-pyhd8ed1ab_0.conda - sha256: 4fa40e3e13fc6ea0a93f67dfc76c96190afd7ea4ffc1bac2612d954b42cdc3ee - md5: eb52d14a901e23c39e9e7b4a1a5c015f + size: 145145 + timestamp: 1760025497442 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-selectr-0.5_1-r44hc72bb7e_0.conda + sha256: 166a16ca7043cec69daf599fe4e467195502ced1cd2eae7a311c6c9a7a86e798 + md5: 785761bb8cca665133149cdc3ffbcb69 depends: - - python >=3.10 - - setuptools + - r-base >=4.4,<4.5.0a0 + - r-r6 + - r-stringr license: BSD-3-Clause license_family: BSD - size: 40866 - timestamp: 1766261270149 -- conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda - sha256: 7b920e46b9f7a2d2aa6434222e5c8d739021dbc5cc75f32d124a8191d86f9056 - md5: e7f89ea5f7ea9401642758ff50a2d9c1 + size: 484783 + timestamp: 1765969027875 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-selectr-0.5_1-r45hc72bb7e_0.conda + sha256: d5d4dddd88a5c282c345897bb9faaac4dcc2bca5e63269aec32fa6b21a77bfad + md5: cf2e9902cba2ba0ec9368910a6ae908e depends: - - jupyter_server >=1.8,<3 - - python >=3.9 + - r-base >=4.5,<4.6.0a0 + - r-r6 + - r-stringr license: BSD-3-Clause license_family: BSD - size: 16817 - timestamp: 1733408419340 -- conda: https://conda.anaconda.org/conda-forge/win-64/onemkl-license-2026.0.0-h57928b3_906.conda - sha256: 2c62b4b31da810043a47014a410c546015fcc17f39d8929ba989b2f0086dc71f - md5: 331614e966c27e5ec2a9715c9d17e9a0 - license: LicenseRef-IntelSimplifiedSoftwareOct2022 - license_family: Proprietary - size: 41154 - timestamp: 1778775952813 -- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.2-h35e630c_0.conda - sha256: c0ef482280e38c71a08ad6d71448194b719630345b0c9c60744a2010e8a8e0cb - md5: da1b85b6a87e141f5140bb9924cecab0 + size: 478871 + timestamp: 1765968903101 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-sessioninfo-1.2.3-r44hc72bb7e_1.conda + sha256: 8d5af5e9db919709931128cc03df52eb420393a2f83414bac21955045224a9bc + md5: f0b99a3fe330a0b89cfd67e690ce8f1f depends: - - __glibc >=2.17,<3.0.a0 - - ca-certificates - - libgcc >=14 - license: Apache-2.0 - license_family: Apache - size: 3167099 - timestamp: 1775587756857 -- conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.6.2-hc881268_0.conda - sha256: 334fd49ea31b99114f5afb1ec44555dc8c90640648302a4f8f838ee345d1ec50 - md5: 5cf0ece4375c73d7a5765e83565a69c7 + - r-base >=4.4,<4.5.0a0 + - r-cli + - r-withr + license: GPL-2.0-only + license_family: GPL2 + size: 210461 + timestamp: 1757548030427 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-sessioninfo-1.2.3-r45hc72bb7e_1.conda + sha256: 83749d9ea9422d89e8e59e93dfee6423297e83a1fab325b03d412700784773bc + md5: e2d98358063814d40bcb9150b45fb6e9 depends: - - __osx >=11.0 - - ca-certificates - license: Apache-2.0 - license_family: Apache - size: 2776564 - timestamp: 1775589970694 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.2-hd24854e_0.conda - sha256: c91bf510c130a1ea1b6ff023e28bac0ccaef869446acd805e2016f69ebdc49ea - md5: 25dcccd4f80f1638428613e0d7c9b4e1 + - r-base >=4.5,<4.6.0a0 + - r-cli + - r-withr + license: GPL-2.0-only + license_family: GPL2 + size: 210056 + timestamp: 1757547994444 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-shiny-1.13.0-r44h785f33e_0.conda + sha256: 080a0bf20220f0e7f1f4c3bd23d1fc2e14b0eb1463529206e428cbaa108f3894 + md5: b640cb5cf0f76255e48ced588d786ae8 depends: - - __osx >=11.0 - - ca-certificates - license: Apache-2.0 - license_family: Apache - size: 3106008 - timestamp: 1775587972483 -- conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.6.2-hf411b9b_0.conda - sha256: feb5815125c60f2be4a411e532db1ed1cd2d7261a6a43c54cb6ae90724e2e154 - md5: 05c7d624cff49dbd8db1ad5ba537a8a3 + - r-base >=4.4,<4.5.0a0 + - r-bslib >=0.6.0 + - r-cachem >=1.1.0 + - r-commonmark >=1.7 + - r-crayon + - r-fastmap >=1.1.1 + - r-fontawesome >=0.4.0 + - r-glue >=1.3.2 + - r-htmltools >=0.5.4 + - r-httpuv >=1.5.2 + - r-jsonlite >=0.9.16 + - r-later >=1.0.0 + - r-lifecycle >=0.2.0 + - r-mime >=0.3 + - r-promises >=1.1.0 + - r-r6 >=2.0 + - r-rlang >=0.4.10 + - r-sourcetools + - r-withr + - r-xtable + license: GPL-3.0-only + license_family: GPL3 + size: 3744885 + timestamp: 1771613519917 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-shiny-1.13.0-r45h785f33e_0.conda + sha256: 10515a454fe45fcadcb5e954fcebd59b8014a32d3d73e28b942fea64ecb54d97 + md5: 1f431e9c637e0e271d0f347829e09fa6 depends: - - ca-certificates - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: Apache-2.0 - license_family: Apache - size: 9410183 - timestamp: 1775589779763 -- conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda - sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c - md5: e51f1e4089cad105b6cac64bd8166587 + - r-base >=4.5,<4.6.0a0 + - r-bslib >=0.6.0 + - r-cachem >=1.1.0 + - r-commonmark >=1.7 + - r-crayon + - r-fastmap >=1.1.1 + - r-fontawesome >=0.4.0 + - r-glue >=1.3.2 + - r-htmltools >=0.5.4 + - r-httpuv >=1.5.2 + - r-jsonlite >=0.9.16 + - r-later >=1.0.0 + - r-lifecycle >=0.2.0 + - r-mime >=0.3 + - r-promises >=1.1.0 + - r-r6 >=2.0 + - r-rlang >=0.4.10 + - r-sourcetools + - r-withr + - r-xtable + license: GPL-3.0-only + license_family: GPL3 + size: 3738931 + timestamp: 1771613508103 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-stringr-1.6.0-r44h785f33e_0.conda + sha256: 257a890269425bc338ee660fba694d28e9cc48e7bea9e6f1af9334123d97965c + md5: 4186ef1048a6a5e5f55c359eb442093f depends: - - python >=3.9 - - typing_utils - license: Apache-2.0 - license_family: APACHE - size: 30139 - timestamp: 1734587755455 -- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda - sha256: 3906abfb6511a3bb309e39b9b1b7bc38f50a723971de2395489fd1f379255890 - md5: 4c06a92e74452cfa53623a81592e8934 + - r-base >=4.4,<4.5.0a0 + - r-cli + - r-glue >=1.6.1 + - r-lifecycle >=1.0.3 + - r-magrittr + - r-rlang >=1.0.0 + - r-stringi >=1.5.3 + - r-vctrs + license: MIT + license_family: MIT + size: 318920 + timestamp: 1762269717092 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-stringr-1.6.0-r45h785f33e_0.conda + sha256: dea2a7676dd03ed93fa0ec961883c5075c361c8522659a1bc1e6b5c16525cb24 + md5: 8db438d8aa370726ee1ce8bf458f2e6d depends: - - python >=3.8 - - python - license: Apache-2.0 - license_family: APACHE - size: 91574 - timestamp: 1777103621679 -- conda: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.9.0.2-ha770c72_0.conda - sha256: d46f76ed09396e3bd1dc11030b3d0d222c25ba8d92f3cde08bc6fbd1eec4f9e0 - md5: de8ccf9ffba55bd20ee56301cfc7e6db - license: GPL-2.0-or-later - license_family: GPL - size: 22364689 - timestamp: 1773933354952 -- conda: https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.9.0.2-h694c41f_0.conda - sha256: b60882fbaee1a7dd4458253d9c335f9dc285bc4c672c9da28b80636736eda891 - md5: 4be84ca4d00187c49a3010ca30a34847 - license: GPL-2.0-or-later - license_family: GPL - size: 16855452 - timestamp: 1773933667892 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-3.9.0.2-hce30654_0.conda - sha256: 2074598145bf286490d232c6f0a3d301403305d56f5c45a0170f44bc00fde8e5 - md5: 81203e2c973f049afba930cf6f79c695 - license: GPL-2.0-or-later - license_family: GPL - size: 23192144 - timestamp: 1773933643305 -- conda: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.9.0.2-h57928b3_0.conda - sha256: e7e19b88040df48b172eef8270e6ca55d93243635fb447527831974a0714b761 - md5: 1844e86a2fffbd77a99d03af217d9dfa - license: GPL-2.0-or-later - license_family: GPL - size: 26667130 - timestamp: 1773933498636 -- conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 - sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f - md5: 457c2c8c08e54905d6954e79cb5b5db9 + - r-base >=4.5,<4.6.0a0 + - r-cli + - r-glue >=1.6.1 + - r-lifecycle >=1.0.3 + - r-magrittr + - r-rlang >=1.0.0 + - r-stringi >=1.5.3 + - r-vctrs + license: MIT + license_family: MIT + size: 319328 + timestamp: 1762269757617 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-tinytex-0.59-r44hc72bb7e_0.conda + sha256: 6b048dce9baa52fd24fa12b87b6ae08474bf660f958fb800fd7cd7005b44e724 + md5: 011fa05cdf36b7d5aa0861ee6f2413d7 depends: - - python !=3.0,!=3.1,!=3.2,!=3.3 - license: BSD-3-Clause - license_family: BSD - size: 11627 - timestamp: 1631603397334 -- conda: https://conda.anaconda.org/conda-forge/linux-64/pango-1.56.4-hda50119_1.conda - sha256: 315b52bfa6d1a820f4806f6490d472581438a28e21df175290477caec18972b0 - md5: d53ffc0edc8eabf4253508008493c5bc + - r-base >=4.4,<4.5.0a0 + - r-xfun >=0.5 + license: MIT + license_family: MIT + size: 157615 + timestamp: 1774815068505 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-tinytex-0.59-r45hc72bb7e_0.conda + sha256: cabc58da08c6398846a9150447bef28da09ea440e10d4dcf39e46cbb26424848 + md5: 23e96bde077293a06d1f16ca1d33e009 depends: - - __glibc >=2.17,<3.0.a0 - - cairo >=1.18.4,<2.0a0 - - fontconfig >=2.17.1,<3.0a0 - - fonts-conda-ecosystem - - fribidi >=1.0.16,<2.0a0 - - harfbuzz >=13.2.1 - - libexpat >=2.7.4,<3.0a0 - - libfreetype >=2.14.2 - - libfreetype6 >=2.14.2 - - libgcc >=14 - - libglib >=2.86.4,<3.0a0 - - libpng >=1.6.55,<1.7.0a0 - - libzlib >=1.3.2,<2.0a0 - license: LGPL-2.1-or-later - size: 458036 - timestamp: 1774281947855 -- conda: https://conda.anaconda.org/conda-forge/osx-64/pango-1.56.4-hf280016_1.conda - sha256: c1150e6a405985b25830c18f896d5e89b9777ef7e420bc0b1d88634f9a614769 - md5: 591f9fcbb36fbd50caef590d9b1de614 + - r-base >=4.5,<4.6.0a0 + - r-xfun >=0.5 + license: MIT + license_family: MIT + size: 157337 + timestamp: 1774815071643 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-urlchecker-1.0.1-r44hc72bb7e_4.conda + sha256: 387f16b5cd2a43008b960540a062a4f640beb6330bda558fcc8ee3a4c65440b2 + md5: 758d7f34c4ee93da99b03493760aae48 depends: - - __osx >=11.0 - - cairo >=1.18.4,<2.0a0 - - fontconfig >=2.17.1,<3.0a0 - - fonts-conda-ecosystem - - fribidi >=1.0.16,<2.0a0 - - harfbuzz >=13.2.1 - - libexpat >=2.7.4,<3.0a0 - - libfreetype >=2.14.2 - - libfreetype6 >=2.14.2 - - libglib >=2.86.4,<3.0a0 - - libpng >=1.6.55,<1.7.0a0 - - libzlib >=1.3.2,<2.0a0 - license: LGPL-2.1-or-later - size: 431801 - timestamp: 1774282435173 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.56.4-hf80efc4_1.conda - sha256: b57c59cf5abb06d407b3a79017b990ca5bfb10c15a10c62fc29e113f2b12d9a9 - md5: 4b433508ebb295c05dd3d03daf27f7bb + - r-base >=4.4,<4.5.0a0 + - r-cli + - r-curl + - r-xml2 + license: GPL-3.0-only + license_family: GPL3 + size: 52354 + timestamp: 1758409122934 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-urlchecker-1.0.1-r45hc72bb7e_4.conda + sha256: 3c1ac479352099400b82b866db5a49b6c2f9802451e5ecf42385abaf4db73f4f + md5: d8603dd91958a841382fdced991aba9a depends: - - __osx >=11.0 - - cairo >=1.18.4,<2.0a0 - - fontconfig >=2.17.1,<3.0a0 - - fonts-conda-ecosystem - - fribidi >=1.0.16,<2.0a0 - - harfbuzz >=13.2.1 - - libexpat >=2.7.4,<3.0a0 - - libfreetype >=2.14.2 - - libfreetype6 >=2.14.2 - - libglib >=2.86.4,<3.0a0 - - libpng >=1.6.55,<1.7.0a0 - - libzlib >=1.3.2,<2.0a0 - license: LGPL-2.1-or-later - size: 425743 - timestamp: 1774282709773 -- conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.7-pyhcf101f3_0.conda - sha256: 611882f7944b467281c46644ffde6c5145d1a7730388bcde26e7e86819b0998e - md5: 39894c952938276405a1bd30e4ce2caf + - r-base >=4.5,<4.6.0a0 + - r-cli + - r-curl + - r-xml2 + license: GPL-3.0-only + license_family: GPL3 + size: 52246 + timestamp: 1758409118952 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-usethis-3.2.1-r44hc72bb7e_1.conda + sha256: 1182f2621d960e48c425ef9531be71217db3ef308040752050ad89ccde248fbf + md5: c12c8d608c5d8300418923e35724ebc8 depends: - - python >=3.10 - - python + - r-base >=4.4,<4.5.0a0 + - r-cli + - r-clipr >=0.3.0 + - r-crayon + - r-curl >=2.7 + - r-desc + - r-ellipsis + - r-fs >=1.3.0 + - r-gert >=1.0.2 + - r-gh >=1.2.0 + - r-glue >=1.3.0 + - r-jsonlite + - r-lifecycle + - r-purrr + - r-rappdirs + - r-rlang >=0.4.3 + - r-rprojroot >=1.2 + - r-rstudioapi + - r-whisker + - r-withr >=2.3.0 + - r-yaml license: MIT license_family: MIT - size: 82472 - timestamp: 1777722955579 -- conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.47-haa7fec5_0.conda - sha256: 5e6f7d161356fefd981948bea5139c5aa0436767751a6930cb1ca801ebb113ff - md5: 7a3bff861a6583f1889021facefc08b1 + size: 916613 + timestamp: 1758433321593 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-usethis-3.2.1-r45hc72bb7e_1.conda + sha256: 3c8dc056e071d002dfde20f14cd8b1bad4b210f6e7e2d26cfc5eaf8f1342b1b2 + md5: dcbfbae5c448a2e54f37457f16075468 depends: - - __glibc >=2.17,<3.0.a0 - - bzip2 >=1.0.8,<2.0a0 - - libgcc >=14 - - libzlib >=1.3.1,<2.0a0 - license: BSD-3-Clause - license_family: BSD - size: 1222481 - timestamp: 1763655398280 -- conda: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.47-h13923f0_0.conda - sha256: 8d64a9d36073346542e5ea042ef8207a45a0069a2e65ce3323ee3146db78134c - md5: 08f970fb2b75f5be27678e077ebedd46 + - r-base >=4.5,<4.6.0a0 + - r-cli + - r-clipr >=0.3.0 + - r-crayon + - r-curl >=2.7 + - r-desc + - r-ellipsis + - r-fs >=1.3.0 + - r-gert >=1.0.2 + - r-gh >=1.2.0 + - r-glue >=1.3.0 + - r-jsonlite + - r-lifecycle + - r-purrr + - r-rappdirs + - r-rlang >=0.4.3 + - r-rprojroot >=1.2 + - r-rstudioapi + - r-whisker + - r-withr >=2.3.0 + - r-yaml + license: MIT + license_family: MIT + size: 915479 + timestamp: 1758433263601 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-waldo-0.6.2-r44hc72bb7e_1.conda + sha256: 1df50e9e24eebacb023a3ce10ad8dbc2e72f4ececef481173b8b3af64486b98d + md5: af452397f5133a113606b71049cc2f78 depends: - - __osx >=10.13 - - bzip2 >=1.0.8,<2.0a0 - - libzlib >=1.3.1,<2.0a0 - license: BSD-3-Clause - license_family: BSD - size: 1106584 - timestamp: 1763655837207 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.47-h30297fc_0.conda - sha256: 5e2e443f796f2fd92adf7978286a525fb768c34e12b1ee9ded4000a41b2894ba - md5: 9b4190c4055435ca3502070186eba53a + - r-base >=4.4,<4.5.0a0 + - r-cli + - r-diffobj >=0.3.4 + - r-fansi + - r-glue + - r-rematch2 + - r-rlang >=1.0.0 + - r-tibble + license: MIT + license_family: MIT + size: 144342 + timestamp: 1757501600562 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-waldo-0.6.2-r45hc72bb7e_1.conda + sha256: 57eb80cb919524dde77b4c19f257ac9b327aba900e28298d990fa622f30b6f09 + md5: 86406bcc46061e27fe7ec24f73eb6676 depends: - - __osx >=11.0 - - bzip2 >=1.0.8,<2.0a0 - - libzlib >=1.3.1,<2.0a0 - license: BSD-3-Clause - license_family: BSD - size: 850231 - timestamp: 1763655726735 -- conda: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.47-hd2b5f0e_0.conda - sha256: 3e9e02174edf02cb4bcdd75668ad7b74b8061791a3bc8bdb8a52ae336761ba3e - md5: 77eaf2336f3ae749e712f63e36b0f0a1 + - r-base >=4.5,<4.6.0a0 + - r-cli + - r-diffobj >=0.3.4 + - r-fansi + - r-glue + - r-rematch2 + - r-rlang >=1.0.0 + - r-tibble + license: MIT + license_family: MIT + size: 144204 + timestamp: 1757501656298 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-whisker-0.4.1-r44hc72bb7e_3.conda + sha256: 62f9d8bac98740183d1613605e8652b67ed9eae896481996f327b63a6e644831 + md5: edd5604d0bc3692b35ee0eb73283499f depends: - - bzip2 >=1.0.8,<2.0a0 - - libzlib >=1.3.1,<2.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: BSD-3-Clause - license_family: BSD - size: 995992 - timestamp: 1763655708300 -- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda - sha256: 202af1de83b585d36445dc1fda94266697341994d1a3328fabde4989e1b3d07a - md5: d0d408b1f18883a944376da5cf8101ea + - r-base >=4.4,<4.5.0a0 + license: GPL-3.0-only + license_family: GPL3 + size: 82818 + timestamp: 1757468218832 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-whisker-0.4.1-r45hc72bb7e_3.conda + sha256: f61bc764a85693d28dfc9dba60bc13acd89c3fd8fe85aa212530a3558bfecec0 + md5: 5cd861608ecbeab0574d59a7754deba7 depends: - - ptyprocess >=0.5 - - python >=3.9 - license: ISC - size: 53561 - timestamp: 1733302019362 -- conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.46.4-h54a6638_1.conda - sha256: 43d37bc9ca3b257c5dd7bf76a8426addbdec381f6786ff441dc90b1a49143b6a - md5: c01af13bdc553d1a8fbfff6e8db075f0 + - r-base >=4.5,<4.6.0a0 + license: GPL-3.0-only + license_family: GPL3 + size: 83008 + timestamp: 1757468282426 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-withr-3.0.2-r44hc72bb7e_1.conda + sha256: dda58385230d6969a184022bbd3d692007d696c3b4491f70ecaa94ee0c5e7dac + md5: 0fdd8ccde2641093c651e2b6a25d85e1 + depends: + - r-base >=4.4,<4.5.0a0 + license: GPL-2.0-or-later + license_family: GPL2 + size: 235008 + timestamp: 1757447310876 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-withr-3.0.2-r45hc72bb7e_1.conda + sha256: ce2d02905f29ae7e9e18a44d1985896628f6bb1ae6348a67e9534d5b8779485b + md5: 56c45a76870f89e39aeca8ba4d4e911a depends: - - libgcc >=14 - - libstdcxx >=14 - - libgcc >=14 - - __glibc >=2.17,<3.0.a0 - license: MIT - license_family: MIT - size: 450960 - timestamp: 1754665235234 -- conda: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.46.4-ha059160_1.conda - sha256: ff8b679079df25aa3ed5daf3f4e3a9c7ee79e7d4b2bd8a21de0f8e7ec7207806 - md5: 742a8552e51029585a32b6024e9f57b4 + - r-base >=4.5,<4.6.0a0 + license: GPL-2.0-or-later + license_family: GPL2 + size: 235156 + timestamp: 1757447242401 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-xopen-1.0.1-r44hc72bb7e_2.conda + sha256: b0ceffeda93d9be2cf342d17e95efe7db725738ac65d6ff3db5b7b30e76e9b06 + md5: ef40111fafaa159e49c0058ccd4484c8 depends: - - __osx >=10.13 - - libcxx >=19 + - r-base >=4.4,<4.5.0a0 + - r-processx license: MIT license_family: MIT - size: 390942 - timestamp: 1754665233989 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.46.4-h81086ad_1.conda - sha256: 29c9b08a9b8b7810f9d4f159aecfd205fce051633169040005c0b7efad4bc718 - md5: 17c3d745db6ea72ae2fce17e7338547f + size: 33449 + timestamp: 1757570911160 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-xopen-1.0.1-r45hc72bb7e_2.conda + sha256: af8aecc4a3fe0bf7936ca178a3280ac5dcdcfe385c8337b9a29630cb96aa9bda + md5: c2a6b820f0a9d1ed0cf0e134933d0f84 depends: - - __osx >=11.0 - - libcxx >=19 + - r-base >=4.5,<4.6.0a0 + - r-processx license: MIT license_family: MIT - size: 248045 - timestamp: 1754665282033 -- conda: https://conda.anaconda.org/conda-forge/win-64/pixman-0.46.4-h5112557_1.conda - sha256: 246fce4706b3f8b247a7d6142ba8d732c95263d3c96e212b9d63d6a4ab4aff35 - md5: 08c8fa3b419df480d985e304f7884d35 + size: 33290 + timestamp: 1757570912406 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-xtable-1.8_8-r44hc72bb7e_0.conda + sha256: d92e76260e8964432af32575d330d2fd1e3d6700cb5d894916af9218ac5d6937 + md5: ad080fefb02afa5ad21fdf0ef771fc79 depends: - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 542795 - timestamp: 1754665193489 -- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.9.6-pyhcf101f3_0.conda - sha256: 8f29915c172f1f7f4f7c9391cd5dac3ebf5d13745c8b7c8006032615246345a5 - md5: 89c0b6d1793601a2a3a3f7d2d3d8b937 + - r-base >=4.4,<4.5.0a0 + license: GPL (>= 2) + license_family: GPL3 + size: 744672 + timestamp: 1771859979802 +- conda: https://conda.anaconda.org/conda-forge/noarch/r-xtable-1.8_8-r45hc72bb7e_0.conda + sha256: 972923364cfd616ccf38768477c435677cfe1ea18a72016f90344ea920e4fea5 + md5: e18fda0821f0fdc1c34276c5e0acdc92 depends: - - python >=3.10 - - python - license: MIT - license_family: MIT - size: 25862 - timestamp: 1775741140609 -- conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-4.6.0-pyha770c72_0.conda - sha256: 716960bf0a9eb334458a26b3bdcb17b8d0786062138a4f48c7f335c8418c5d0b - md5: 7859736b4f8ebe6c8481bf48d91c9a1e + - r-base >=4.5,<4.6.0a0 + license: GPL (>= 2) + license_family: GPL3 + size: 744345 + timestamp: 1771859982217 +- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda + sha256: 0577eedfb347ff94d0f2fa6c052c502989b028216996b45c7f21236f25864414 + md5: 870293df500ca7e18bedefa5838a22ab depends: - - cfgv >=2.0.0 - - identify >=1.0.0 - - nodeenv >=0.11.1 + - attrs >=22.2.0 - python >=3.10 - - pyyaml >=5.1 - - virtualenv >=20.10.0 + - rpds-py >=0.7.0 + - typing_extensions >=4.4.0 + - python license: MIT license_family: MIT - size: 201606 - timestamp: 1776858157327 -- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.25.0-pyhd8ed1ab_0.conda - sha256: 4d7ec90d4f9c1f3b4a50623fefe4ebba69f651b102b373f7c0e9dbbfa43d495c - md5: a11ab1f31af799dd93c3a39881528884 + size: 51788 + timestamp: 1760379115194 +- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.34.2-pyhcf101f3_0.conda + sha256: 1715246b19c9f85ee022933b4845f2fc14ac9184981b7b7d9b728bec8e9588da + md5: 4a85203c1d80c1059086ae860836ffb9 depends: - python >=3.10 + - certifi >=2023.5.7 + - charset-normalizer >=2,<4 + - idna >=2.5,<4 + - urllib3 >=1.26,<3 + - python + constrains: + - chardet >=3.0.2,<8 license: Apache-2.0 - license_family: Apache - size: 57113 - timestamp: 1775771465170 -- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda - sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae - md5: edb16f14d920fb3faf17f5ce582942d6 + license_family: APACHE + size: 68709 + timestamp: 1778851103479 +- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda + sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 + md5: 36de09a8d3e5d5e6f4ee63af49e59706 depends: - - python >=3.10 - - wcwidth - constrains: - - prompt_toolkit 3.0.52 - license: BSD-3-Clause - license_family: BSD - size: 273927 - timestamp: 1756321848365 -- conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-7.2.2-py314h0f05182_0.conda - sha256: f15574ed6c8c8ed8c15a0c5a00102b1efe8b867c0bd286b498cd98d95bd69ae5 - md5: 4f225a966cfee267a79c5cb6382bd121 + - python >=3.9 + - six + license: MIT + license_family: MIT + size: 10209 + timestamp: 1733600040800 +- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 + sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 + md5: 912a71cc01012ee38e6b90ddd561e36f depends: - python - - libgcc >=14 - - __glibc >=2.17,<3.0.a0 - - python_abi 3.14.* *_cp314 - license: BSD-3-Clause - license_family: BSD - size: 231303 - timestamp: 1769678156552 -- conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-7.2.2-py314hd330473_0.conda - sha256: 3194ce0d94c810cb1809da851261be34e1cae72ca345445b29e61766b38ee6cc - md5: d465805e603072c341554159939be5b8 + license: MIT + license_family: MIT + size: 7818 + timestamp: 1598024297745 +- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3987-syntax-1.1.0-pyhe01879c_1.conda + sha256: 70001ac24ee62058557783d9c5a7bbcfd97bd4911ef5440e3f7a576f9e43bc92 + md5: 7234f99325263a5af6d4cd195035e8f2 depends: + - python >=3.9 + - lark >=1.2.2 - python - - __osx >=10.13 - - python_abi 3.14.* *_cp314 + license: MIT + license_family: MIT + size: 22913 + timestamp: 1752876729969 +- conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-64-26.0-h62b880e_7.conda + sha256: 7e7e2556978bc9bd9628c6e39138c684082320014d708fbca0c9050df98c0968 + md5: 68a978f77c0ba6ca10ce55e188a21857 license: BSD-3-Clause license_family: BSD - size: 242816 - timestamp: 1769678225798 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-7.2.2-py314ha14b1ff_0.conda - sha256: e0f31c053eb11803d63860c213b2b1b57db36734f5f84a3833606f7c91fedff9 - md5: fc4c7ab223873eee32080d51600ce7e7 - depends: - - python - - __osx >=11.0 - - python 3.14.* *_cp314 - - python_abi 3.14.* *_cp314 + size: 4948 + timestamp: 1771434185960 +- conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-arm64-26.0-ha3f98da_7.conda + sha256: fabfe031ede99898cb2b0b805f6c0d64fcc24ecdb444de3a83002d8135bf4804 + md5: 5f0ebbfea12d8e5bddff157e271fdb2f license: BSD-3-Clause license_family: BSD - size: 245502 - timestamp: 1769678303655 -- conda: https://conda.anaconda.org/conda-forge/win-64/psutil-7.2.2-py314hc5dbbe4_0.conda - sha256: 17c8274ce5a32c9793f73a5a0094bd6188f3a13026a93147655143d4df034214 - md5: fd539ac231820f64066839251aa9fa48 + size: 4971 + timestamp: 1771434195389 +- conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-2.1.0-pyh5552912_1.conda + sha256: 8fc024bf1a7b99fc833b131ceef4bef8c235ad61ecb95a71a6108be2ccda63e8 + md5: b70e2d44e6aa2beb69ba64206a16e4c6 depends: + - __osx + - pyobjc-framework-cocoa + - python >=3.10 - python - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - ucrt >=10.0.20348.0 - - python_abi 3.14.* *_cp314 license: BSD-3-Clause license_family: BSD - size: 249950 - timestamp: 1769678167309 -- conda: 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 -- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda - sha256: a7713dfe30faf17508ec359e0bc7e0983f5d94682492469bd462cdaae9c64d83 - md5: 7d9daffbb8d8e0af0f769dbbcd173a54 - depends: - - python >=3.9 - license: ISC - size: 19457 - timestamp: 1733302371990 -- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda - sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 - md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 - depends: - - python >=3.9 - license: MIT - license_family: MIT - size: 16668 - timestamp: 1733569518868 -- conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 - md5: 12c566707c80111f9799308d9e265aef + size: 22519 + timestamp: 1770937603551 +- conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-2.1.0-pyh6dadd2b_1.conda + sha256: 305446a0b018f285351300463653d3d3457687270e20eda37417b12ee386ef76 + md5: 6ac53f3fff2c416d63511843a04646fa depends: - - python >=3.9 + - __win + - pywin32 + - python >=3.10 - python license: BSD-3-Clause license_family: BSD - size: 110100 - timestamp: 1733195786147 -- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.20.0-pyhd8ed1ab_0.conda - sha256: cf70b2f5ad9ae472b71235e5c8a736c9316df3705746de419b59d442e8348e86 - md5: 16c18772b340887160c79a6acc022db0 + size: 22864 + timestamp: 1770937641143 +- conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-2.1.0-pyha191276_1.conda + sha256: 59656f6b2db07229351dfb3a859c35e57cc8e8bcbc86d4e501bff881a6f771f1 + md5: 28eb91468df04f655a57bcfbb35fc5c5 depends: + - __linux - python >=3.10 - license: BSD-2-Clause + - python + license: BSD-3-Clause license_family: BSD - size: 893031 - timestamp: 1774796815820 -- conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-core-12.1-py314h681fd4f_0.conda - sha256: f95c247d52009fd29887904a3ca1556ffd6cf0bff225b63f914c7b294007100a - md5: eea444aa695378a47d13a974a31c893d + size: 24108 + timestamp: 1770937597662 +- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda + sha256: 82088a6e4daa33329a30bc26dc19a98c7c1d3f05c0f73ce9845d4eab4924e9e1 + md5: 8e194e7b992f99a5015edbd4ebd38efd depends: - - __osx >=10.13 - - libffi >=3.5.2,<3.6.0a0 - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - - setuptools + - python >=3.10 license: MIT license_family: MIT - size: 491826 - timestamp: 1763151541038 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-core-12.1-py314h3a4d195_0.conda - sha256: df5af268c5a74b7160d772c263ece6f43257faff571783443e34b5f1d5a61cf2 - md5: 75a84fc8337557347252cc4fd3ba2a93 + size: 639697 + timestamp: 1773074868565 +- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda + sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d + md5: 3339e3b65d58accf4ca4fb8748ab16b3 depends: - - __osx >=11.0 - - libffi >=3.5.2,<3.6.0a0 - - python >=3.14,<3.15.0a0 - - python >=3.14,<3.15.0a0 *_cp314 - - python_abi 3.14.* *_cp314 - - setuptools + - python >=3.9 + - python license: MIT license_family: MIT - size: 483374 - timestamp: 1763151489724 -- conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-framework-cocoa-12.1-py314h9720295_0.conda - sha256: b1a54bbe3223a919e33778ee70c74756305f7fd14b7e739f4df8d576783a78ca - md5: 992ab0e7362326773eb8c2afa5c28a71 + size: 18455 + timestamp: 1753199211006 +- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_2.conda + sha256: dce518f45e24cd03f401cb0616917773159a210c19d601c5f2d4e0e5879d30ad + md5: 03fe290994c5e4ec17293cfb6bdce520 depends: - - __osx >=10.13 - - libffi >=3.5.2,<3.6.0a0 - - pyobjc-core 12.1.* - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 + - python >=3.10 + license: Apache-2.0 + license_family: Apache + size: 15698 + timestamp: 1762941572482 +- conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8.3-pyhd8ed1ab_0.conda + sha256: 23b71ecf089967d2900126920e7f9ff18cdcef82dbff3e2f54ffa360243a17ac + md5: 18de09b20462742fe093ba39185d9bac + depends: + - python >=3.10 license: MIT license_family: MIT - size: 374960 - timestamp: 1763160496034 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-framework-cocoa-12.1-py314h36abed7_0.conda - sha256: aa76ee4328d0514d7c1c455dcd2d3b547db1c59797e54ce0a3f27de5b970e508 - md5: 4219bb3408016e22316cf8b443b5ef93 + size: 38187 + timestamp: 1769034509657 +- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda + sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 + md5: b1b505328da7a6b246787df4b5a49fbc depends: - - __osx >=11.0 - - libffi >=3.5.2,<3.6.0a0 - - pyobjc-core 12.1.* - - python >=3.14,<3.15.0a0 - - python >=3.14,<3.15.0a0 *_cp314 - - python_abi 3.14.* *_cp314 + - asttokens + - executing + - pure_eval + - python >=3.9 license: MIT license_family: MIT - size: 374792 - timestamp: 1763160601898 -- conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda - sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca - md5: e2fd202833c4a981ce8a65974fe4abd1 + size: 26988 + timestamp: 1733569565672 +- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda + sha256: c47299fe37aebb0fcf674b3be588e67e4afb86225be4b0d452c7eb75c086b851 + md5: 13dc3adbc692664cd3beabd216434749 + depends: + - __glibc >=2.28 + - kernel-headers_linux-64 4.18.0 he073ed8_9 + - tzdata + license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later + license_family: GPL + size: 24008591 + timestamp: 1765578833462 +- conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh6dadd2b_1.conda + sha256: b375e8df0d5710717c31e7c8e93c025c37fa3504aea325c7a55509f64e5d4340 + md5: e43ca10d61e55d0a8ec5d8c62474ec9e depends: - __win - - python >=3.9 - - win_inet_pton - license: BSD-3-Clause + - pywinpty >=1.1.0 + - python >=3.10 + - tornado >=6.1.0 + - python + license: BSD-2-Clause license_family: BSD - size: 21784 - timestamp: 1733217448189 -- conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda - sha256: ba3b032fa52709ce0d9fd388f63d330a026754587a2f461117cac9ab73d8d0d8 - md5: 461219d1a5bd61342293efa2c0c90eac + size: 23665 + timestamp: 1766513806974 +- conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyhc90fa1f_1.conda + sha256: 6b6727a13d1ca6a23de5e6686500d0669081a117736a87c8abf444d60c1e40eb + md5: 17b43cee5cc84969529d5d0b0309b2cb depends: - __unix - - python >=3.9 + - ptyprocess + - python >=3.10 + - tornado >=6.1.0 + - python + license: BSD-2-Clause + license_family: BSD + size: 24749 + timestamp: 1766513766867 +- conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda + sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 + md5: f1acf5fdefa8300de697982bcb1761c9 + depends: + - python >=3.5 + - webencodings >=0.4 license: BSD-3-Clause license_family: BSD - size: 21085 - timestamp: 1733217331982 -- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.14.4-habeac84_100_cp314.conda - build_number: 100 - sha256: dec247c5badc811baa34d6085df9d0465535883cf745e22e8d79092ad54a3a7b - md5: a443f87920815d41bfe611296e507995 + size: 28285 + timestamp: 1729802975370 +- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.4.1-pyhcf101f3_0.conda + sha256: 91cafdb64268e43e0e10d30bd1bef5af392e69f00edd34dfaf909f69ab2da6bd + md5: b5325cf06a000c5b14970462ff5e4d58 depends: - - __glibc >=2.17,<3.0.a0 - - bzip2 >=1.0.8,<2.0a0 - - ld_impl_linux-64 >=2.36.1 - - libexpat >=2.7.5,<3.0a0 - - libffi >=3.5.2,<3.6.0a0 - - libgcc >=14 - - liblzma >=5.8.2,<6.0a0 - - libmpdec >=4.0.0,<5.0a0 - - libsqlite >=3.52.0,<4.0a0 - - libuuid >=2.42,<3.0a0 - - libzlib >=1.3.2,<2.0a0 - - ncurses >=6.5,<7.0a0 - - openssl >=3.5.6,<4.0a0 - - python_abi 3.14.* *_cp314 - - readline >=8.3,<9.0a0 - - tk >=8.6.13,<8.7.0a0 - - tzdata - - zstd >=1.5.7,<1.6.0a0 - license: Python-2.0 - size: 36705460 - timestamp: 1775614357822 - python_site_packages_path: lib/python3.14/site-packages -- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.14.4-h7c6738f_100_cp314.conda - build_number: 100 - sha256: fc99d7a6a3f5eb776c20880c441e3708ff95d35d0a03f3ceb2a89016f59a01fc - md5: d4e8506d0ac094be21451682eed9ce4d + - python >=3.10 + - python + license: MIT + license_family: MIT + size: 21561 + timestamp: 1774492402955 +- conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.15.0-pyhcf101f3_0.conda + sha256: dfb681579be59c2e790c95f7f49b7529a9b0511d6385ad276e3c8988cbd54d2c + md5: 4bada6a6d908a27262af8ebddf4f7492 depends: - - __osx >=11.0 - - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.7.5,<3.0a0 - - libffi >=3.5.2,<3.6.0a0 - - liblzma >=5.8.2,<6.0a0 - - libmpdec >=4.0.0,<5.0a0 - - libsqlite >=3.52.0,<4.0a0 - - libzlib >=1.3.2,<2.0a0 - - ncurses >=6.5,<7.0a0 - - openssl >=3.5.6,<4.0a0 - - python_abi 3.14.* *_cp314 - - readline >=8.3,<9.0a0 - - tk >=8.6.13,<8.7.0a0 - - tzdata - - zstd >=1.5.7,<1.6.0a0 - license: Python-2.0 - size: 14431104 - timestamp: 1775616356805 - python_site_packages_path: lib/python3.14/site-packages -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.14.4-h4c637c5_100_cp314.conda - build_number: 100 - sha256: 27e7d6cbe021f37244b643f06a98e46767255f7c2907108dd3736f042757ddad - md5: e1bc5a3015a4bbeb304706dba5a32b7f + - python >=3.10 + - python + license: BSD-3-Clause + license_family: BSD + size: 115165 + timestamp: 1778074251714 +- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c + md5: edd329d7d3a4ab45dcf905899a7a6115 depends: - - __osx >=11.0 - - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.7.5,<3.0a0 - - libffi >=3.5.2,<3.6.0a0 - - liblzma >=5.8.2,<6.0a0 - - libmpdec >=4.0.0,<5.0a0 - - libsqlite >=3.52.0,<4.0a0 - - libzlib >=1.3.2,<2.0a0 - - ncurses >=6.5,<7.0a0 - - openssl >=3.5.6,<4.0a0 - - python_abi 3.14.* *_cp314 - - readline >=8.3,<9.0a0 - - tk >=8.6.13,<8.7.0a0 - - tzdata - - zstd >=1.5.7,<1.6.0a0 - license: Python-2.0 - size: 13533346 - timestamp: 1775616188373 - python_site_packages_path: lib/python3.14/site-packages -- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.14.4-h4b44e0e_100_cp314.conda - build_number: 100 - sha256: e258d626b0ba778abb319f128de4c1211306fe86fe0803166817b1ce2514c920 - md5: 40b6a8f438afb5e7b314cc5c4a43cd84 + - typing_extensions ==4.15.0 pyhcf101f3_0 + license: PSF-2.0 + license_family: PSF + size: 91383 + timestamp: 1756220668932 +- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 + md5: 0caa1af407ecff61170c9437a808404d depends: - - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.7.5,<3.0a0 - - libffi >=3.5.2,<3.6.0a0 - - liblzma >=5.8.2,<6.0a0 - - libmpdec >=4.0.0,<5.0a0 - - libsqlite >=3.52.0,<4.0a0 - - libzlib >=1.3.2,<2.0a0 - - openssl >=3.5.6,<4.0a0 - - python_abi 3.14.* *_cp314 - - tk >=8.6.13,<8.7.0a0 - - tzdata - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - zstd >=1.5.7,<1.6.0a0 - license: Python-2.0 - size: 18055445 - timestamp: 1775615317758 - python_site_packages_path: Lib/site-packages -- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda - sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 - md5: 5b8d21249ff20967101ffa321cab24e8 + - python >=3.10 + - python + license: PSF-2.0 + license_family: PSF + size: 51692 + timestamp: 1756220668932 +- conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda + sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c + md5: f6d7aa696c67756a650e91e15e88223c + depends: + - python >=3.9 + license: Apache-2.0 + license_family: APACHE + size: 15183 + timestamp: 1733331395943 +- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda + sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c + md5: ad659d0a2b3e47e38d829aa8cad2d610 + license: LicenseRef-Public-Domain + size: 119135 + timestamp: 1767016325805 +- conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda + sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 + md5: e7cb0f5745e4c5035a460248334af7eb depends: - python >=3.9 - - six >=1.5 - - python - license: Apache-2.0 - license_family: APACHE - size: 233310 - timestamp: 1751104122689 -- conda: https://conda.anaconda.org/conda-forge/noarch/python-discovery-1.3.1-pyhcf101f3_0.conda - sha256: 4a44f16a36fec7125b72d5a57bea963fa9deadccf65e29bb5ca610cd1d5cc0af - md5: 45ea5eceb1c2e35a08a834869837a090 + license: MIT + license_family: MIT + size: 23990 + timestamp: 1733323714454 +- conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.7.0-pyhd8ed1ab_0.conda + sha256: feff959a816f7988a0893201aa9727bbb7ee1e9cec2c4f0428269b489eb93fb4 + md5: cbb88288f74dbe6ada1c6c7d0a97223e depends: + - backports.zstd >=1.0.0 + - brotli-python >=1.2.0 + - h2 >=4,<5 + - pysocks >=1.5.6,<2.0,!=1.5.7 - python >=3.10 - - filelock >=3.15.4 - - platformdirs <5,>=4.3.6 + license: MIT + license_family: MIT + size: 103560 + timestamp: 1778188657149 +- conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-21.3.3-pyhcf101f3_0.conda + sha256: 67a5a8b0976f11bd821909dd7ffd393ae32879ec22be622344277f04a1450aff + md5: a678237f7d0db44f8a20a21f03844613 + depends: + - python >=3.10 + - distlib >=0.3.7,<1 + - filelock <4,>=3.24.2 + - importlib-metadata >=6.6 + - platformdirs >=3.9.1,<5 + - python-discovery >=1 + - typing_extensions >=4.13.2 - python license: MIT license_family: MIT - size: 35067 - timestamp: 1778678120896 -- conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda - sha256: df9aa74e9e28e8d1309274648aac08ec447a92512c33f61a8de0afa9ce32ebe8 - md5: 23029aae904a2ba587daba708208012f + size: 5154878 + timestamp: 1778710685928 +- conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.7.0-pyhd8ed1ab_0.conda + sha256: 1ee2d8384972ecbf8630ce8a3ea9d16858358ad3e8566675295e66996d5352da + md5: eb9538b8e55069434a18547f43b96059 + depends: + - python >=3.10 + license: MIT + license_family: MIT + size: 82917 + timestamp: 1777744489106 +- conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-25.10.0-pyhd8ed1ab_0.conda + sha256: 21f6c8a20fe050d09bfda3fb0a9c3493936ce7d6e1b3b5f8b01319ee46d6c6f6 + md5: 6639b6b0d8b5a284f027a2003669aa65 + depends: + - python >=3.10 + license: BSD-3-Clause + license_family: BSD + size: 18987 + timestamp: 1761899393153 +- conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda + sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 + md5: 2841eb5bfc75ce15e9a0054b98dcd64d depends: - python >=3.9 - - python license: BSD-3-Clause license_family: BSD - size: 244628 - timestamp: 1755304154927 -- conda: https://conda.anaconda.org/conda-forge/noarch/python-gil-3.14.4-h4df99d1_100.conda - sha256: 36ff7984e4565c85149e64f8206303d412a0652e55cf806dcb856903fa056314 - md5: e4e60721757979d01d3964122f674959 + size: 15496 + timestamp: 1733236131358 +- conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.9.0-pyhd8ed1ab_0.conda + sha256: 42a2b61e393e61cdf75ced1f5f324a64af25f347d16c60b14117393a98656397 + md5: 2f1ed718fcd829c184a6d4f0f2e07409 depends: - - cpython 3.14.4.* - - python_abi * *_cp314 - license: Python-2.0 - size: 49806 - timestamp: 1775614307464 -- conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-3.2.1-pyh332efcf_0.conda - sha256: 1c55116c22512cef7b01d55ae49697707f2c1fd829407183c19817e2d300fd8d - md5: 1cd2f3e885162ee1366312bd1b1677fd + - python >=3.10 + license: Apache-2.0 + license_family: APACHE + size: 61391 + timestamp: 1759928175142 +- conda: 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 +- conda: https://conda.anaconda.org/conda-forge/noarch/yjs-widgets-0.5.1-pyhcf101f3_0.conda + sha256: b71a470cb5205e0917746b705434c25c00a45227ba2044469bd17de9500fadd0 + md5: 0b9a1b6ac64d07fd43c783f0da66141e depends: - python >=3.10 - - typing_extensions - license: BSD-2-Clause + - python + license: BSD-3-Clause license_family: BSD - size: 18969 - timestamp: 1777318679482 -- conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2026.2-pyhd8ed1ab_0.conda - sha256: e943f9c15a6bdba2e1b9f423ab913b3f6b02197b0ef9f8e6b7464d78b59965b9 - md5: f6ad7450fc21e00ecc23812baed6d2e4 + size: 38600 + timestamp: 1779191003900 +- conda: https://conda.anaconda.org/conda-forge/noarch/yjs-widgets-collection-0.5.1-pyh09b8992_0.conda + sha256: a757728a193793799cfe58cee7f842fec86563127871de6f473506b7156114c6 + md5: 635c6d948f936e415717fee074df379a depends: + - yjs-widgets ==0.5.1 pyhcf101f3_0 - python >=3.10 - license: Apache-2.0 - license_family: APACHE - size: 146639 - timestamp: 1777068997932 -- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.14-8_cp314.conda - build_number: 8 - sha256: ad6d2e9ac39751cc0529dd1566a26751a0bf2542adb0c232533d32e176e21db5 - md5: 0539938c55b6b1a59b560e843ad864a4 - constrains: - - python 3.14.* *_cp314 + - python license: BSD-3-Clause license_family: BSD - size: 6989 - timestamp: 1752805904792 -- conda: https://conda.anaconda.org/conda-forge/win-64/pywin32-311-py314h8f8f202_1.conda - sha256: 6918a8067f296f3c65d43e84558170c9e6c3f4dd735cfe041af41a7fdba7b171 - md5: 2d7b7ba21e8a8ced0eca553d4d53f773 + size: 31544 + timestamp: 1779191003900 +- conda: https://conda.anaconda.org/conda-forge/noarch/zipp-4.1.0-pyhcf101f3_0.conda + sha256: 210bd31c22bb88f5e2a167df24c95bb5f152b2ada7502f9b8c49d1f5366db423 + md5: ba3dcdc8584155c97c648ae9c044b7a3 depends: + - python >=3.10 - python - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - ucrt >=10.0.20348.0 + license: MIT + license_family: MIT + size: 24190 + timestamp: 1779159948016 +- conda: https://conda.anaconda.org/conda-forge/osx-64/_openmp_mutex-4.5-7_kmp_llvm.conda + build_number: 7 + sha256: 30006902a9274de8abdad5a9f02ef7c8bb3d69a503486af0c1faee30b023e5b7 + md5: eaac87c21aff3ed21ad9656697bb8326 + depends: + - llvm-openmp >=9.0.1 + license: BSD-3-Clause + license_family: BSD + size: 8328 + timestamp: 1764092562779 +- conda: https://conda.anaconda.org/conda-forge/osx-64/air-0.9.0-h19f9e61_2.conda + sha256: 773e317e02477e7b62a2319ce9edf9d3a69a76d3708139b517cab07679d07482 + md5: 807516096a21e75980751fec6a15c11c + depends: + - __osx >=11.0 + constrains: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 2503600 + timestamp: 1775342631568 +- conda: https://conda.anaconda.org/conda-forge/osx-64/argon2-cffi-bindings-25.1.0-py314h6482030_2.conda + sha256: ee1e2c4b12ab8bf4e8970341f6d8a8fd1dfbdb01786f3f6cb2441e1cafdad8a5 + md5: 64f7576ac6bb5308bd930e35016758db + depends: + - __osx >=10.13 + - cffi >=2.0.0b1 + - python >=3.14,<3.15.0a0 - python_abi 3.14.* *_cp314 - license: PSF-2.0 - license_family: PSF - size: 6713155 - timestamp: 1756487145487 -- conda: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.15-py314h51f0985_1.conda - sha256: 048e20641da680aedaab285640a2aca56b7b5baf7a18f8f164f2796e13628c1f - md5: dd84e8748bd3c85a5c751b0576488080 + license: MIT + license_family: MIT + size: 33641 + timestamp: 1762509686527 +- conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.2.0-py314h3262eb8_1.conda + sha256: 2e34922abda4ac5726c547887161327b97c3bbd39f1204a5db162526b8b04300 + md5: 389d75a294091e0d7fa5a6fc683c4d50 depends: - - python >=3.14.0rc3,<3.15.0a0 + - __osx >=10.13 + - libcxx >=19 + - python >=3.14,<3.15.0a0 - python_abi 3.14.* *_cp314 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - - winpty + constrains: + - libbrotlicommon 1.2.0 h8616949_1 license: MIT license_family: MIT - size: 216325 - timestamp: 1759557436167 -- conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.3-py314h67df5f8_1.conda - sha256: b318fb070c7a1f89980ef124b80a0b5ccf3928143708a85e0053cde0169c699d - md5: 2035f68f96be30dc60a5dfd7452c7941 + size: 390153 + timestamp: 1764017784596 +- conda: https://conda.anaconda.org/conda-forge/osx-64/bwidget-1.10.1-h694c41f_1.conda + sha256: 3c942fbc1d960caa5cc630f3ed4b575b3ae33e70d6476e2feccd3162edc98f1f + md5: 42abba4764f9d776456ca566e07d8d3a + depends: + - tk + license: TCL + size: 130154 + timestamp: 1750261608744 +- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_9.conda + sha256: 9f242f13537ef1ce195f93f0cc162965d6cc79da578568d6d8e50f70dd025c42 + md5: 4173ac3b19ec0a4f400b4f782910368b + depends: + - __osx >=10.13 + license: bzip2-1.0.6 + license_family: BSD + size: 133427 + timestamp: 1771350680709 +- conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.6-hb5e19a0_0.conda + sha256: 2f5bc0292d595399df0d168355b4e9820affc8036792d6984bd751fdda2bcaea + md5: fc9a153c57c9f070bebaa7eef30a8f17 + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 186122 + timestamp: 1765215100384 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.4-h7656bdc_1.conda + sha256: 88e7e1efb6a0f6b1477e617338e0ed3d27d4572a3283f8341ce6143b7118e31a + md5: 9917add2ab43df894b9bb6f5bf485975 + depends: + - __osx >=10.13 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - icu >=78.1,<79.0a0 + - libcxx >=19 + - libexpat >=2.7.3,<3.0a0 + - libfreetype >=2.14.1 + - libfreetype6 >=2.14.1 + - libglib >=2.86.3,<3.0a0 + - libpng >=1.6.53,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - pixman >=0.46.4,<1.0a0 + license: LGPL-2.1-only or MPL-1.1 + size: 896676 + timestamp: 1766416262450 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1030.6.3-llvm22_1_h0a1bb1c_4.conda + sha256: e0b732ed52bcfa98f90fe61ef87fc47cb39222351ab2e730c05f262d29621b51 + md5: 257743cb85eb6cb4808f5f1fc18a94c8 + depends: + - cctools_impl_osx-64 1030.6.3 llvm22_1_h8fe25a2_4 + - ld64 956.6 llvm22_1_hc399b6d_4 + - libllvm22 >=22.1.0,<22.2.0a0 + license: APSL-2.0 + license_family: Other + size: 24426 + timestamp: 1772019098551 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_impl_osx-64-1030.6.3-llvm22_1_h8fe25a2_4.conda + sha256: 9e003c254b6c1880e6c8f2d777b20d837db2b7aff161454d857693692fd862dd + md5: 5d0b3b0b085354afc3b53c424e40121b depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - - yaml >=0.2.5,<0.3.0a0 - license: MIT - license_family: MIT - size: 202391 - timestamp: 1770223462836 -- conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.3-py314h10d0514_1.conda - sha256: aef010899d642b24de6ccda3bc49ef008f8fddf7bad15ebce9bdebeae19a4599 - md5: ebd224b733573c50d2bfbeacb5449417 + - __osx >=11.0 + - ld64_osx-64 >=956.6,<956.7.0a0 + - libcxx + - libllvm22 >=22.1.0,<22.2.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 22.1.* + - sigtool-codesign + constrains: + - clang 22.1.* + - cctools 1030.6.3.* + - ld64 956.6.* + license: APSL-2.0 + license_family: Other + size: 744001 + timestamp: 1772019049683 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1030.6.3-llvm22_1_h0a1bb1c_4.conda + sha256: e0eefd2d7b4c8434b1b97ddf51780601e4ea5c964bb053775213868412367bbe + md5: d97b4a7d3a90d1cd45ff42ee353efadc + depends: + - cctools_impl_osx-64 1030.6.3 llvm22_1_h8fe25a2_4 + - ld64_osx-64 956.6 llvm22_1_h163eae7_4 + constrains: + - cctools 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 23441 + timestamp: 1772019105060 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-2.0.0-py314h8ca4d5a_1.conda + sha256: e2c58cc2451cc96db2a3c8ec34e18889878db1e95cc3e32c85e737e02a7916fb + md5: 71c2caaa13f50fe0ebad0f961aee8073 depends: - __osx >=10.13 + - libffi >=3.5.2,<3.6.0a0 + - pycparser - python >=3.14,<3.15.0a0 - python_abi 3.14.* *_cp314 - - yaml >=0.2.5,<0.3.0a0 license: MIT license_family: MIT - size: 191947 - timestamp: 1770226344240 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.3-py314h6e9b3f0_1.conda - sha256: 95f385f9606e30137cf0b5295f63855fd22223a4cf024d306cf9098ea1c4a252 - md5: dcf51e564317816cb8d546891019b3ab + size: 293633 + timestamp: 1761203106369 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-22-22.1.5-default_h3b8fe2e_1.conda + sha256: 507be37986b4f5e4d7ce0e167d0065f6cf269449f4748243ac749ba206f6adfe + md5: b8d67341091d9467449c775fb12ed114 depends: - __osx >=11.0 - - python >=3.14,<3.15.0a0 - - python >=3.14,<3.15.0a0 *_cp314 - - python_abi 3.14.* *_cp314 - - yaml >=0.2.5,<0.3.0a0 - license: MIT - license_family: MIT - size: 189475 - timestamp: 1770223788648 -- conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.3-py314h2359020_1.conda - sha256: a2aff34027aa810ff36a190b75002d2ff6f9fbef71ec66e567616ac3a679d997 - md5: 0cd9b88826d0f8db142071eb830bce56 - depends: - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - yaml >=0.2.5,<0.3.0a0 - license: MIT - license_family: MIT - size: 181257 - timestamp: 1770223460931 -- conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-27.1.0-py312hda471dd_2.conda - noarch: python - sha256: be66c1f85c3b48137200d62c12d918f4f8ad329423daef04fed292818efd3c28 - md5: 082985717303dab433c976986c674b35 + - compiler-rt22 22.1.5.* + - libclang-cpp22.1 22.1.5 default_h9399c5b_1 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 820698 + timestamp: 1778481969997 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-22.1.5-default_nocfg_ha939c3f_1.conda + sha256: a3608b54f6fdceb3eb5725893d2fed86d34a05c033916ed05f27d6f37644b7a2 + md5: c0e89d4e2f7fc9f9efc882d314bf1c94 depends: - - python - - libgcc >=14 - - libstdcxx >=14 - - __glibc >=2.17,<3.0.a0 - - zeromq >=4.3.5,<4.4.0a0 - - _python_abi3_support 1.* - - cpython >=3.12 - license: BSD-3-Clause - license_family: BSD - size: 211567 - timestamp: 1771716961404 -- conda: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-27.1.0-py312h2ac7433_2.conda - noarch: python - sha256: 475d5a751740eef86b4469b73759a42bcf82abb292fde7506081196378552cf3 - md5: 98bc7fb12f6efc9c08eeeac21008a199 + - cctools + - clang-22 22.1.5 default_h3b8fe2e_1 + - clang_impl_osx-64 22.1.5 default_hb18168d_1 + - ld64 + - ld64_osx-64 * llvm22_1_* + - llvm-openmp >=22.1.5 + - llvm-tools 22.1.5.* + track_features: + - clang_nocfg + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28266 + timestamp: 1778482229734 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-scan-deps-22.1.5-default_h9399c5b_1.conda + sha256: ac1b62a5a0dabf12a986b429ee16ceeaed76b9f035586c94a3dbe76564ea888b + md5: 4e44e29212bc0129e645c40820f01558 depends: - - python - __osx >=11.0 - - libcxx >=19 - - _python_abi3_support 1.* - - cpython >=3.12 - - zeromq >=4.3.5,<4.4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 192884 - timestamp: 1771717048943 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-27.1.0-py312h022ad19_2.conda - noarch: python - sha256: 2f31f799a46ed75518fae0be75ecc8a1b84360dbfd55096bc2fe8bd9c797e772 - md5: 2f6b79700452ef1e91f45a99ab8ffe5a + - libclang-cpp22.1 >=22.1.5,<22.2.0a0 + - libclang13 >=22.1.5 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 109796 + timestamp: 1778482893079 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-22.1.5-default_hb18168d_1.conda + sha256: 8b3746d694f6cdaf4817b3eaf4011f8a1d6f81666f711e8773089a84c7185bd7 + md5: 68e92341039e81309c906a88c7e22b41 depends: - - python - - libcxx >=19 - - __osx >=11.0 - - _python_abi3_support 1.* - - cpython >=3.12 - - zeromq >=4.3.5,<4.4.0a0 + - cctools_impl_osx-64 + - clang-22 22.1.5 default_h3b8fe2e_1 + - compiler-rt 22.1.5.* + - compiler-rt_osx-64 + - ld64_osx-64 * llvm22_1_* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28227 + timestamp: 1778482180492 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-22.1.5-h0037788_31.conda + sha256: 1854076fc4c8354b02e0cd9ecbbbc6658f0add80e0c462e845694cbe5ccfd855 + md5: 819fdd9c98622b0b7326c5b02a58032c + depends: + - cctools_osx-64 + - clang_impl_osx-64 22.1.5.* + - sdkroot_env_osx-64 license: BSD-3-Clause license_family: BSD - size: 191641 - timestamp: 1771717073430 -- conda: https://conda.anaconda.org/conda-forge/win-64/pyzmq-27.1.0-py312h343a6d4_2.conda - noarch: python - sha256: d84bcc19a945ca03d1fd794be3e9896ab6afc9f691d58d9c2da514abe584d4df - md5: eb1ec67a70b4d479f7dd76e6c8fe7575 + size: 21096 + timestamp: 1778479585704 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-22.1.5-default_hb18168d_1.conda + sha256: 4ae05e814f77119cc08301def3f7abcc49495852773296ee9147bf6cdb92b8d7 + md5: 798e48aa624be1bf083599a5cd894cd1 depends: - - python - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - ucrt >=10.0.20348.0 - - zeromq >=4.3.5,<4.3.6.0a0 - - _python_abi3_support 1.* - - cpython >=3.12 + - clang-22 22.1.5 default_h3b8fe2e_1 + - clang-scan-deps 22.1.5 default_h9399c5b_1 + - clang_impl_osx-64 22.1.5 default_hb18168d_1 + - libcxx-devel 22.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28169 + timestamp: 1778482953015 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-22.1.5-h0037788_31.conda + sha256: eda703a2386c840bb7f22d03f6942ad1c4305b7c9532fedae21305ee30895dbc + md5: a95e1d9fc34279a4075839335fd7df83 + depends: + - cctools_osx-64 + - clang_osx-64 22.1.5 h0037788_31 + - clangxx_impl_osx-64 22.1.5.* + - sdkroot_env_osx-64 license: BSD-3-Clause license_family: BSD - size: 183235 - timestamp: 1771716967192 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-askpass-1.2.1-r44h54b55ab_1.conda - sha256: 39a8bdb086df98cfeeedadeeafdbfcd8a5b90a3c266229d1ab7a2b25fc1db2b3 - md5: ae87c9a5af5a2ebfa5412037825f4dd2 + size: 19967 + timestamp: 1778479591489 +- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-22.1.5-h694c41f_1.conda + sha256: bd1b70a7469e771376b2045445a14f555805c34cfd9e38e0ef4edcec34a72a02 + md5: a343d2e123a5145103d3f9182c7a4f76 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - - r-sys >=2.1 - license: MIT + - compiler-rt22 22.1.5 h1637cdf_1 + - libcompiler-rt 22.1.5 h1637cdf_1 + constrains: + - clang 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 16522 + timestamp: 1778194994864 +- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt22-22.1.5-h1637cdf_1.conda + sha256: 2bd338dff6d2f7a089b5f3d569d1d7193b1a97da841f86c51820de25d6e59fcc + md5: 11fa30c82000ee5b3a0c9de68f2ee14a + depends: + - __osx >=11.0 + - compiler-rt22_osx-64 22.1.5.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 99227 + timestamp: 1778194990435 +- conda: https://conda.anaconda.org/conda-forge/osx-64/curl-8.20.0-h8f0b9e4_0.conda + sha256: caba0869bb0d18de3ce8eeda0ae4a0b988ff907faa9b5d94aea38d703d09413d + md5: af6b1246193c8db5da3c91594336293b + depends: + - __osx >=11.0 + - krb5 >=1.22.2,<1.23.0a0 + - libcurl 8.20.0 h8f0b9e4_0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + - openssl >=3.5.6,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl license_family: MIT - size: 32088 - timestamp: 1758383484942 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-askpass-1.2.1-r45h735ac91_1.conda - sha256: dce3285868e4cfb06a482bcc4b665e620d00a88b39098cfe39b246192260f55b - md5: 196449f42b78b60388cb4add0f77f64d + size: 182564 + timestamp: 1777462268628 +- conda: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.20-py314h2f9fc56_0.conda + sha256: ca2a3ac34b771d3d12c3f40d5dc87a1813cdeae362e9b68d49400901541a07bc + md5: 72ccc87f91848ee624a37347f7059d0f depends: + - python + - libcxx >=19 - __osx >=10.13 - - r-base >=4.5,<4.6.0a0 - - r-sys >=2.1 + - python_abi 3.14.* *_cp314 license: MIT license_family: MIT - size: 31198 - timestamp: 1758383746554 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-askpass-1.2.1-r44h6168396_1.conda - sha256: ed042a3d1007c9ea45e06b9723c090ea350aa953f7375e0f95c3c4b9d82df4ed - md5: 87547d43001d87b0af6fcb54b099e5f6 + size: 2787671 + timestamp: 1769744993256 +- conda: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.17.1-h7a4440b_0.conda + sha256: a972a114e618891bb50e50d8b13f5accb0085847f3aab1cf208e4552c1ab9c24 + md5: 4646a20e8bbb54903d6b8e631ceb550d depends: - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - - r-sys >=2.1 - license: MIT - license_family: MIT - size: 32244 - timestamp: 1758383773196 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-askpass-1.2.1-r45heceb674_1.conda - sha256: 7e6dcbc6f4831745a42479249cb81b459910ec0eacb844df73f1f87275257916 - md5: 474cb96dedd2ba0cfd431ad2cbeebb1c - depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - r-sys >=2.1 - - ucrt >=10.0.20348.0 + - libexpat >=2.7.4,<3.0a0 + - libfreetype >=2.14.1 + - libfreetype6 >=2.14.1 + - libzlib >=1.3.1,<2.0a0 license: MIT license_family: MIT - size: 74071 - timestamp: 1758384205961 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-assertthat-0.2.1-r44hc72bb7e_6.conda - sha256: 7ce5cad4870512fce1cec74f88673ea84ba0e4b00b872f4c0b1a937b44690e71 - md5: a9e34b8723a9a38a0fb18746ad30a546 - depends: - - r-base >=4.4,<4.5.0a0 - license: GPL-3.0-only - license_family: GPL3 - size: 72978 - timestamp: 1757447415952 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-assertthat-0.2.1-r45hc72bb7e_6.conda - sha256: 90e7ae8aa427274d7d2e510060b68925e60e897ecaa5ea135bb33afa7eb12134 - md5: b5291c60f52b43108a2973ba6f5885d1 + size: 237866 + timestamp: 1771382969241 +- conda: https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.16-h8616949_0.conda + sha256: 53dd0a6c561cf31038633aaa0d52be05da1f24e86947f06c4e324606c72c7413 + md5: 4422491d30462506b9f2d554ab55e33d depends: - - r-base >=4.5,<4.6.0a0 - license: GPL-3.0-only - license_family: GPL3 - size: 72543 - timestamp: 1757447376176 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-base-4.4.3-h15dba0b_9.conda - sha256: c42274eff622bb169d2cb6c7897b9425b361e0483d0a42dc72b50806dd10ba4d - md5: 4a385786dcfd15bc9c408dd38a57694e + - __osx >=10.13 + license: LGPL-2.1-or-later + size: 60923 + timestamp: 1757438791418 +- conda: https://conda.anaconda.org/conda-forge/osx-64/gfortran_impl_osx-64-14.3.0-h94fe04d_1.conda + sha256: 7a2a952ffee0349147768c1d6482cb0933349017056210118ebd5f0fb688f5d5 + md5: 1a81d1a0cb7f241144d9f10e55a66379 depends: - - __glibc >=2.17,<3.0.a0 - - _openmp_mutex >=4.5 - - _r-mutex 1.* anacondar_1 - - bwidget - - bzip2 >=1.0.8,<2.0a0 - - cairo >=1.18.4,<2.0a0 - - curl - - gcc_impl_linux-64 >=10 - - gfortran_impl_linux-64 - - gsl >=2.7,<2.8.0a0 - - gxx_impl_linux-64 >=10 - - icu >=78.2,<79.0a0 - - libblas >=3.9.0,<4.0a0 - - libcurl >=8.19.0,<9.0a0 - - libdeflate >=1.25,<1.26.0a0 - - libexpat >=2.7.4,<3.0a0 - - libgcc - - libgcc-ng >=12 - - libgfortran - - libgfortran-ng - - libgfortran5 >=10.4.0 - - libglib >=2.86.4,<3.0a0 + - __osx >=10.13 + - cctools_osx-64 + - clang + - gmp >=6.3.0,<7.0a0 + - isl 0.26.* + - libcxx >=17 + - libgfortran-devel_osx-64 14.3.0.* + - libgfortran5 >=14.3.0 - libiconv >=1.18,<2.0a0 - - libjpeg-turbo >=3.1.2,<4.0a0 - - liblapack >=3.9.0,<4.0a0 - - liblzma >=5.8.2,<6.0a0 - - libpng >=1.6.55,<1.7.0a0 - - libstdcxx - - libstdcxx-ng >=12 - - libtiff >=4.7.1,<4.8.0a0 - - libuuid >=2.41.3,<3.0a0 - libzlib >=1.3.1,<2.0a0 - - make - - pango >=1.56.4,<2.0a0 - - pcre2 >=10.47,<10.48.0a0 - - readline >=8.3,<9.0a0 - - sed - - tk >=8.6.13,<8.7.0a0 - - tktable - - tzdata >=2024a - - xorg-libice >=1.1.2,<2.0a0 - - xorg-libsm >=1.2.6,<2.0a0 - - xorg-libx11 >=1.8.13,<2.0a0 - - xorg-libxt >=1.3.1,<2.0a0 - license: GPL-2.0-or-later + - 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: 27113409 - timestamp: 1773746018573 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-base-4.5.3-h15dba0b_1.conda - sha256: eb21b72dfa6cc767cebc0b348b8da3dc762a7e85627fc7a5afee72cc75e8f89c - md5: 0356c81af70570e685acc134ac740014 + size: 23083852 + timestamp: 1759709470800 +- conda: https://conda.anaconda.org/conda-forge/osx-64/gfortran_osx-64-14.3.0-h3223c34_0.conda + sha256: 14014ad4d46e894645979cbad42dd509482172095c756bdb5474918e0638bd57 + md5: 979b3c36c57d31e1112fa1b1aec28e02 depends: - - __glibc >=2.17,<3.0.a0 - - _openmp_mutex >=4.5 - - _r-mutex 1.* anacondar_1 - - bwidget - - bzip2 >=1.0.8,<2.0a0 - - cairo >=1.18.4,<2.0a0 - - curl - - gcc_impl_linux-64 >=10 - - gfortran_impl_linux-64 - - gsl >=2.7,<2.8.0a0 - - gxx_impl_linux-64 >=10 - - icu >=78.2,<79.0a0 - - libblas >=3.9.0,<4.0a0 - - libcurl >=8.19.0,<9.0a0 - - libdeflate >=1.25,<1.26.0a0 - - libexpat >=2.7.4,<3.0a0 - - libgcc - - libgcc-ng >=12 + - cctools_osx-64 + - clang + - clang_osx-64 + - gfortran_impl_osx-64 14.3.0 + - ld64_osx-64 - libgfortran - - libgfortran-ng - - libgfortran5 >=10.4.0 - - libglib >=2.86.4,<3.0a0 - - libiconv >=1.18,<2.0a0 - - libjpeg-turbo >=3.1.2,<4.0a0 - - liblapack >=3.9.0,<4.0a0 - - liblzma >=5.8.2,<6.0a0 - - libpng >=1.6.55,<1.7.0a0 - - libstdcxx - - libstdcxx-ng >=12 - - libtiff >=4.7.1,<4.8.0a0 - - libuuid >=2.41.3,<3.0a0 - - libzlib >=1.3.1,<2.0a0 - - make - - pango >=1.56.4,<2.0a0 - - pcre2 >=10.47,<10.48.0a0 - - readline >=8.3,<9.0a0 - - sed - - tk >=8.6.13,<8.7.0a0 - - tktable - - tzdata >=2024a - - xorg-libice >=1.1.2,<2.0a0 - - xorg-libsm >=1.2.6,<2.0a0 - - xorg-libx11 >=1.8.13,<2.0a0 - - xorg-libxt >=1.3.1,<2.0a0 - license: GPL-2.0-or-later + - libgfortran-devel_osx-64 14.3.0 + - libgfortran5 >=14.3.0 + license: GPL-3.0-or-later WITH GCC-exception-3.1 license_family: GPL - size: 27333030 - timestamp: 1773746047753 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-base-4.5.3-h6422bf8_1.conda - sha256: f56d23fa84e9a924580dd75e9dbda6bdca446dc685bd11da853669f096492826 - md5: 37a8371c4a9dc8630bdc702ba7b299df + size: 35767 + timestamp: 1751220493617 +- conda: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda + sha256: 75aa5e7a875afdcf4903b7dc98577672a3dc17b528ac217b915f9528f93c85fc + md5: 427101d13f19c4974552a4e5b072eef1 depends: - - __osx >=11.0 - - _r-mutex 1.* anacondar_1 - - bwidget - - bzip2 >=1.0.8,<2.0a0 - - cairo >=1.18.4,<2.0a0 - - clang_osx-64 >=19 - - clangxx_osx-64 >=19 - - curl - - fontconfig >=2.17.1,<3.0a0 - - fonts-conda-ecosystem - - gfortran_osx-64 14.* - - gsl >=2.7,<2.8.0a0 - - icu >=78.2,<79.0a0 - - libasprintf >=0.25.1,<1.0a0 - - libblas >=3.9.0,<4.0a0 - - libcurl >=8.19.0,<9.0a0 + - __osx >=10.13 + - libcxx >=16 + license: GPL-2.0-or-later OR LGPL-3.0-or-later + size: 428919 + timestamp: 1718981041839 +- conda: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.14-h21dd04a_2.conda + sha256: c356eb7a42775bd2bae243d9987436cd1a442be214b1580251bb7fdc136d804b + md5: ba63822087afc37e01bf44edcc2479f3 + depends: + - __osx >=10.13 - libcxx >=19 - - libdeflate >=1.25,<1.26.0a0 - - libexpat >=2.7.4,<3.0a0 - - libgettextpo >=0.25.1,<1.0a0 - - libgfortran - - libgfortran5 >=14.3.0 - - libglib >=2.86.4,<3.0a0 - - libiconv >=1.18,<2.0a0 - - libintl >=0.25.1,<1.0a0 - - libjpeg-turbo >=3.1.2,<4.0a0 - - liblapack >=3.9.0,<4.0a0 - - liblzma >=5.8.2,<6.0a0 - - libpng >=1.6.55,<1.7.0a0 - - libtiff >=4.7.1,<4.8.0a0 - - libzlib >=1.3.1,<2.0a0 - - llvm-openmp >=19.1.7 - - make - - pango >=1.56.4,<2.0a0 - - pcre2 >=10.47,<10.48.0a0 - - readline >=8.3,<9.0a0 - - tk >=8.6.13,<8.7.0a0 - - tktable - - tzdata >=2024a - license: GPL-2.0-or-later + license: LGPL-2.0-or-later + license_family: LGPL + size: 85465 + timestamp: 1755102182985 +- conda: https://conda.anaconda.org/conda-forge/osx-64/gsl-2.7-h93259b0_0.tar.bz2 + sha256: 8550d64004810fa0b5f552d1f21f9fe51483cd30d2d3200d7b0c5e324f7e6995 + md5: b4942b1ee2a52fd67f446074488d774d + depends: + - libblas >=3.8.0,<4.0a0 + - libcblas >=3.8.0,<4.0a0 + license: GPL-3.0-or-later license_family: GPL - size: 27086501 - timestamp: 1773747734319 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base-4.4.3-h35b0bb1_9.conda - sha256: 24032d26bdd64036ca0a999a13e832be06c98acc8c723d76ae04bf6f43ac5d09 - md5: 0d0711f8bae2082a1c3267c50e55aba8 + size: 3221488 + timestamp: 1626369980688 +- conda: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-14.2.0-hf0bc557_0.conda + sha256: ab070b8961569fbdd3e414bee89887f1ca97522c73afb0fa2f055ad775c7dd20 + md5: e7fd9056aa65f6dac6558b39c332c907 depends: - __osx >=11.0 - - _r-mutex 1.* anacondar_1 - - bwidget - - bzip2 >=1.0.8,<2.0a0 - cairo >=1.18.4,<2.0a0 - - clang_osx-arm64 >=19 - - clangxx_osx-arm64 >=19 - - curl - - fontconfig >=2.17.1,<3.0a0 - - fonts-conda-ecosystem - - gfortran_osx-arm64 14.* - - gsl >=2.7,<2.8.0a0 - - icu >=78.2,<79.0a0 - - libasprintf >=0.25.1,<1.0a0 - - libblas >=3.9.0,<4.0a0 - - libcurl >=8.19.0,<9.0a0 + - graphite2 >=1.3.14,<2.0a0 + - icu >=78.3,<79.0a0 - libcxx >=19 - - libdeflate >=1.25,<1.26.0a0 - - libexpat >=2.7.4,<3.0a0 - - libgettextpo >=0.25.1,<1.0a0 - - libgfortran - - libgfortran5 >=14.3.0 + - libexpat >=2.7.5,<3.0a0 + - libfreetype >=2.14.3 + - libfreetype6 >=2.14.3 - libglib >=2.86.4,<3.0a0 - - libiconv >=1.18,<2.0a0 - - libintl >=0.25.1,<1.0a0 - - libjpeg-turbo >=3.1.2,<4.0a0 - - liblapack >=3.9.0,<4.0a0 - - liblzma >=5.8.2,<6.0a0 - - libpng >=1.6.55,<1.7.0a0 - - libtiff >=4.7.1,<4.8.0a0 - - libzlib >=1.3.1,<2.0a0 - - llvm-openmp >=19.1.7 - - make - - pango >=1.56.4,<2.0a0 - - pcre2 >=10.47,<10.48.0a0 - - readline >=8.3,<9.0a0 - - tk >=8.6.13,<8.7.0a0 - - tktable - - tzdata >=2024a - license: GPL-2.0-or-later - license_family: GPL - size: 27532873 - timestamp: 1773747592478 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base-4.5.3-h35b0bb1_1.conda - sha256: 20eab209e3205d74d186ea9d74ef4702966d09691b16ad231e162b868307e487 - md5: abfad467dbda22a7ee435d9eb40fef9a + - libzlib >=1.3.2,<2.0a0 + license: MIT + license_family: MIT + size: 2148344 + timestamp: 1776778909454 +- conda: https://conda.anaconda.org/conda-forge/osx-64/icu-78.3-h25d91c4_0.conda + sha256: 1294117122d55246bb83ad5b589e2a031aacdf2d0b1f99fd338aa4394f881735 + md5: 627eca44e62e2b665eeec57a984a7f00 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 12273764 + timestamp: 1773822733780 +- conda: 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 +- conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.22.2-h207b36a_0.conda + sha256: df009385e8262c234c0dae9016540b86dad3d299f0d9366d08e327e8e7731634 + md5: e66e2c52d2fdddcf314ad750fb4ebb4a + depends: + - __osx >=10.13 + - libcxx >=19 + - libedit >=3.1.20250104,<3.2.0a0 + - libedit >=3.1.20250104,<4.0a0 + - openssl >=3.5.5,<4.0a0 + license: MIT + license_family: MIT + size: 1193620 + timestamp: 1769770267475 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-956.6-llvm22_1_hc399b6d_4.conda + sha256: a4ac125329e14d407ecb2c074412a0af6f78256989db82d83c4a02e93912c88e + md5: 3d56483ae79e9c75e32e913e94b520da + depends: + - ld64_osx-64 956.6 llvm22_1_h163eae7_4 + - libllvm22 >=22.1.0,<22.2.0a0 + constrains: + - cctools 1030.6.3.* + - cctools_osx-64 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 21781 + timestamp: 1772019075404 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-956.6-llvm22_1_h163eae7_4.conda + sha256: e49272192003e0e30edd6877197db3c220bb374a78d5b255d18c7a029cd33c1e + md5: 9e6646598daf11bd8ebc60d690162ebd + depends: + - __osx >=11.0 + - libcxx + - libllvm22 >=22.1.0,<22.2.0a0 + - sigtool-codesign + - tapi >=1600.0.11.8,<1601.0a0 + constrains: + - clang 22.1.* + - cctools 1030.6.3.* + - cctools_impl_osx-64 1030.6.3.* + - ld64 956.6.* + license: APSL-2.0 + license_family: Other + size: 1110951 + timestamp: 1772018988810 +- conda: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.1.0-h35c7297_0.conda + sha256: f918716c71c8bebbc0c40e1050878aa512fea92c1d17c363ca35650bc60f6c35 + md5: d2fe7e177d1c97c985140bd54e2a5e33 + depends: + - __osx >=11.0 + - libcxx >=19 + license: Apache-2.0 + license_family: Apache + size: 215089 + timestamp: 1773114468701 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libasprintf-0.25.1-h3184127_1.conda + sha256: 44e703d8fe739a71e9f7b89d04b56ccfaf488989f7712256bc0fcaf101e796a4 + md5: 37398594a1ede86a90c0afac95e1ffea + depends: + - __osx >=10.13 + - libcxx >=19 + license: LGPL-2.1-or-later + size: 51955 + timestamp: 1753343931663 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.11.0-7_he492b99_openblas.conda + build_number: 7 + sha256: b2fe36d35c7b60e5f63cb0c865f4b3e40839120c47fd0cd56fd633765b25c148 + md5: 9033f3879f6a191d759d7fde5914555f + depends: + - libopenblas >=0.3.33,<0.3.34.0a0 + - libopenblas >=0.3.33,<1.0a0 + constrains: + - mkl <2027 + - liblapacke 3.11.0 7*_openblas + - libcblas 3.11.0 7*_openblas + - liblapack 3.11.0 7*_openblas + - blas 2.307 openblas + license: BSD-3-Clause + license_family: BSD + size: 18868 + timestamp: 1778491111970 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.11.0-7_h9b27e0a_openblas.conda + build_number: 7 + sha256: 91b5abb146f7de3f95fda287c6a314a8ca3ceb2ae597a4bf5a180b6e0790b180 + md5: ebd8b6277cef635b7ae80400eda886e5 + depends: + - libblas 3.11.0 7_he492b99_openblas + constrains: + - liblapacke 3.11.0 7*_openblas + - liblapack 3.11.0 7*_openblas + - blas 2.307 openblas + license: BSD-3-Clause + license_family: BSD + size: 18868 + timestamp: 1778491135869 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp22.1-22.1.5-default_h9399c5b_1.conda + sha256: 50dd61958de6f89b2b79936cca4f4fc7ae6c19ebe0411e7d1562af1fe6f704ae + md5: 63f3d19f6e520153f6377ad1ca45080b + depends: + - __osx >=11.0 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 15010974 + timestamp: 1778481700126 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-22.1.5-default_h2429e1b_1.conda + sha256: 56c12f6e81026c71719d42943125a34e397ac92c45aad574935d40605e1b9134 + md5: 5851a3f36d0426ae542a7bdb80321a5a + depends: + - __osx >=11.0 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 9461652 + timestamp: 1778482410626 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcompiler-rt-22.1.5-h1637cdf_1.conda + sha256: 6ae33ecd79302ece4718ad5b2b3297cea716ee063e3c50616e1b95b712f4fee6 + md5: 8835313a85a2e8631d5029ee1b0ac79f + depends: + - __osx >=11.0 + constrains: + - compiler-rt >=9.0.1 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 1368554 + timestamp: 1778194969800 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.20.0-h8f0b9e4_0.conda + sha256: 5d3d8a82ca43347e96f1d79048921f3a7c25e32514bc7feb53ed2a040dcca54d + md5: 4a0085ccf90dc514f0fc0909a874045e + depends: + - __osx >=11.0 + - krb5 >=1.22.2,<1.23.0a0 + - libnghttp2 >=1.68.1,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + - openssl >=3.5.6,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl + license_family: MIT + size: 419676 + timestamp: 1777462238769 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-22.1.6-h19cb2f5_0.conda + sha256: 6d60efb63fe4d0299526fcb26e06de1933de55c36fc2ae5a1478f1aa734604bb + md5: fa1bbb55bfda7a8a022d508fb03f1625 + depends: + - __osx >=11.0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 565211 + timestamp: 1779253305906 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-22.1.6-h7c275be_0.conda + sha256: 6bd2f0abad456ad01e03ddcadc7ef0c985c5ec94923b58fe203eed8b45f24734 + md5: c3d68fa45e4890a51323bbdddc32e8a0 + depends: + - libcxx >=22.1.6 + - libcxx-headers >=22.1.6,<22.1.7.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 22276 + timestamp: 1779253331447 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.25-h517ebb2_0.conda + sha256: 025f8b1e85dd8254e0ca65f011919fb1753070eb507f03bca317871a884d24de + md5: 31aa65919a729dc48180893f62c25221 + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 70840 + timestamp: 1761980008502 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda + sha256: 6cc49785940a99e6a6b8c6edbb15f44c2dd6c789d9c283e5ee7bdfedd50b4cd6 + md5: 1f4ed31220402fcddc083b4bff406868 + depends: + - ncurses + - __osx >=10.13 + - ncurses >=6.5,<7.0a0 + license: BSD-2-Clause + license_family: BSD + size: 115563 + timestamp: 1738479554273 +- conda: 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 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.8.1-hcc62823_0.conda + sha256: 460afe7ba0882e6d2fcc0ad1568dce27025110ec09c2b9ce9e3b49d61e52ce6b + md5: f95dc08366f2a452005062b5bcceac51 + depends: + - __osx >=11.0 + constrains: + - expat 2.8.1.* + license: MIT + license_family: MIT + size: 75654 + timestamp: 1779279058576 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.5.2-hd1f9c09_0.conda + sha256: 951958d1792238006fdc6fce7f71f1b559534743b26cc1333497d46e5903a2d6 + md5: 66a0dc7464927d0853b590b6f53ba3ea + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 53583 + timestamp: 1769456300951 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype-2.14.3-h694c41f_0.conda + sha256: b5daa4cee3beb98a0317e81a20aa507b9f897a9e21b11fe0b2e32852e372f746 + md5: 63b822fcf984c891f0afab2eedfcfaf4 + depends: + - libfreetype6 >=2.14.3 + license: GPL-2.0-only OR FTL + size: 8088 + timestamp: 1774298785964 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libfreetype6-2.14.3-h58fbd8d_0.conda + sha256: 9d34b5b2be6ebdd3bcd9e21d6598d493afce4d3fcd2d419f3356022cb4d746fd + md5: 27515b8ab8bf4abd8d3d90cf11212411 depends: - __osx >=11.0 - - _r-mutex 1.* anacondar_1 - - bwidget - - bzip2 >=1.0.8,<2.0a0 - - cairo >=1.18.4,<2.0a0 - - clang_osx-arm64 >=19 - - clangxx_osx-arm64 >=19 - - curl - - fontconfig >=2.17.1,<3.0a0 - - fonts-conda-ecosystem - - gfortran_osx-arm64 14.* - - gsl >=2.7,<2.8.0a0 - - icu >=78.2,<79.0a0 - - libasprintf >=0.25.1,<1.0a0 - - libblas >=3.9.0,<4.0a0 - - libcurl >=8.19.0,<9.0a0 - - libcxx >=19 - - libdeflate >=1.25,<1.26.0a0 - - libexpat >=2.7.4,<3.0a0 - - libgettextpo >=0.25.1,<1.0a0 - - libgfortran - - libgfortran5 >=14.3.0 - - libglib >=2.86.4,<3.0a0 - - libiconv >=1.18,<2.0a0 - - libintl >=0.25.1,<1.0a0 - - libjpeg-turbo >=3.1.2,<4.0a0 - - liblapack >=3.9.0,<4.0a0 - - liblzma >=5.8.2,<6.0a0 - libpng >=1.6.55,<1.7.0a0 - - libtiff >=4.7.1,<4.8.0a0 - - libzlib >=1.3.1,<2.0a0 - - llvm-openmp >=19.1.7 - - make - - pango >=1.56.4,<2.0a0 - - pcre2 >=10.47,<10.48.0a0 - - readline >=8.3,<9.0a0 - - tk >=8.6.13,<8.7.0a0 - - tktable - - tzdata >=2024a - license: GPL-2.0-or-later + - libzlib >=1.3.2,<2.0a0 + constrains: + - freetype >=2.14.3 + license: GPL-2.0-only OR FTL + size: 364828 + timestamp: 1774298783922 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libgcc-15.2.0-h08519bb_19.conda + sha256: 17a5dcd818f89173db51d7d1acd77615cb77db7b4c2b5f571d4dafe559430ab5 + md5: 4bf33d5ca73f4b89d3495285a42414a4 + depends: + - _openmp_mutex + constrains: + - libgomp 15.2.0 19 + - libgcc-ng ==15.2.0=*_19 + license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - size: 27921011 - timestamp: 1773747214847 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-base-4.5.3-h9c56521_1.conda - sha256: 9dc73a10c38bc5f963f60a72682f69669aa36b9d0f4af7fa2183783c9a375710 - md5: f0454070cab8fea2780daf61cec65cc0 + size: 424164 + timestamp: 1778271183296 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libgettextpo-0.25.1-h3184127_1.conda + sha256: 0509a41da5179727d24092020bc3d4addcb24a421c2e889d32a4035652fab2cf + md5: 711bff88af3b00283f7d8f32aff82e6a depends: - - _r-mutex 1.* anacondar_1 - - bwidget - - bzip2 >=1.0.8,<2.0a0 - - cairo >=1.18.4,<2.0a0 - - curl - - fontconfig >=2.17.1,<3.0a0 - - fonts-conda-ecosystem - - gcc_impl_win-64 >=13 - - gfortran_impl_win-64 - - gsl >=2.7,<2.8.0a0 - - gxx_impl_win-64 >=13 - - icu >=78.2,<79.0a0 - - libblas >=3.9.0,<4.0a0 - - libcurl >=8.19.0,<9.0a0 - - libdeflate >=1.25,<1.26.0a0 - - libgcc >=13 - - libgfortran - - libgfortran5 >=13.4.0 + - __osx >=10.13 - libiconv >=1.18,<2.0a0 - - libjpeg-turbo >=3.1.2,<4.0a0 - - liblapack >=3.9.0,<4.0a0 - - liblzma >=5.8.2,<6.0a0 - - libpng >=1.6.55,<1.7.0a0 - - libstdcxx >=13 - - libtiff >=4.7.1,<4.8.0a0 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - libzlib >=1.3.1,<2.0a0 - - pcre2 >=10.47,<10.48.0a0 - - tk >=8.6.13,<8.7.0a0 - - tktable - - tzdata >=2024a - - ucrt >=10.0.20348.0 - license: GPL-2.0-or-later + - libintl 0.25.1 h3184127_1 + license: GPL-3.0-or-later license_family: GPL - size: 38915936 - timestamp: 1773746823908 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-base64enc-0.1_6-r44h54b55ab_0.conda - sha256: 07f1380e2ad8fd9a8bc43b04ec944728e04a9673b9844caa2f1fa1f422d39c4f - md5: ab87845469cfada7bae36f17b3dd9681 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 48614 - timestamp: 1770027792092 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-base64enc-0.1_6-r45h54b55ab_0.conda - sha256: 7a3751a340766ee25380a51df70c8356a64cfeb6ac3d982a86e92eb99fec2943 - md5: e573dc135976197e7f819eec202c93f1 + size: 198908 + timestamp: 1753344027461 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-15.2.0-h7e5c614_19.conda + sha256: 519045363b87b870be779d38f0bfd325d4b787acdaa0a2136a92c1081eff5112 + md5: d362f41203d0a1d2d4940446f95374c9 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.5,<4.6.0a0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 48616 - timestamp: 1770027796335 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-base64enc-0.1_6-r45hdab4d57_0.conda - sha256: cc6b5ceb2e451f20ba0b553fa7a24348933092e3fdfbd27546b916c1898750da - md5: 391e4d250a55001a52d95d3b2167bb1c + - libgfortran5 15.2.0 hd16e46c_19 + constrains: + - libgfortran-ng ==15.2.0=*_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 139925 + timestamp: 1778271458366 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-15.2.0-hd16e46c_19.conda + sha256: c7f5f6e80357d6d5bc69588c16144205b0c79cf32cd090ccb5afef9d557632af + md5: 1cddb3f7e54f5871297afc0fafa61c2c depends: - - __osx >=10.13 - - r-base >=4.5,<4.6.0a0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 47853 - timestamp: 1770028527307 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base64enc-0.1_6-r44hbe92478_0.conda - sha256: ee24ccf24f0a9503ebf24c802c06daac3acc50f6b6b09c3eaefb82b70c536453 - md5: af79e6b425787b4f4ecddf96196fadcf + - libgcc >=15.2.0 + constrains: + - libgfortran 15.2.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1063687 + timestamp: 1778271196574 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libgit2-1.9.3-h415d65b_0.conda + sha256: 9dc968f2dbf995d6774da898aadadc8aa4629e86cb0805b60e1cb1c978ff1711 + md5: 7c1978cb6ae5cb7be1b8157739888780 depends: + - libcxx >=19 - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 48233 - timestamp: 1770028060720 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base64enc-0.1_6-r45hbe92478_0.conda - sha256: 9f807a81ed7db9c0679f77c940b7f99dd4dcea48a11eedaf1fc56475f7790f36 - md5: b813ab383126268f375504b4f017dfce + - libzlib >=1.3.2,<2.0a0 + - pcre2 >=10.47,<10.48.0a0 + - openssl >=3.5.6,<4.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libiconv >=1.18,<2.0a0 + license: GPL-2.0-only WITH GCC-exception-2.0 + license_family: GPL + size: 885319 + timestamp: 1777944439673 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.88.1-hf28f236_2.conda + sha256: 9e10d37f49b4efef3426ac323dd8cec88a48df57d49e335d5aef8eac08ea9226 + md5: 6cf119d472892f945d81187e790cc131 depends: - __osx >=11.0 - - r-base >=4.5,<4.6.0a0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 48581 - timestamp: 1770028450555 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-base64enc-0.1_6-r45heceb674_0.conda - sha256: 8790ea51ef67c48c9474d1f2757a0c18e7d70299a1037b31541fd79d0771ab90 - md5: 711ac906944bc43e7268c4631d1e5dd1 - depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 52354 - timestamp: 1770027960844 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-brew-1.0_10-r44hc72bb7e_2.conda - sha256: e77bc79cd89cf3c106e69954f82f3483b6ec89c547197a09b7795449ba86b56a - md5: 03ab88ce441b876e359ab575b40ff11b - depends: - - r-base >=4.4,<4.5.0a0 - license: GPL-2.0-only - license_family: GPL2 - size: 69079 - timestamp: 1757447878952 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-brew-1.0_10-r45hc72bb7e_2.conda - sha256: 9324cbb93b6c3a2903b5f12c57eb7f03355b35ca1f1db15becf57f15fc40b796 - md5: 91c64b596d193d6ea30fc491ec9ae50f - depends: - - r-base >=4.5,<4.6.0a0 - license: GPL-2.0-only - license_family: GPL2 - size: 68849 - timestamp: 1757447876801 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-brio-1.1.5-r44h54b55ab_2.conda - sha256: 978484617257c31d7ea2977e970069a0f6c1456f315b95f946d81d6012dec527 - md5: 740449b857685bb63ffd29f10643f126 + - pcre2 >=10.47,<10.48.0a0 + - libintl >=0.25.1,<1.0a0 + - libffi >=3.5.2,<3.6.0a0 + - libiconv >=1.18,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + constrains: + - glib >2.66 + license: LGPL-2.1-or-later + size: 4519643 + timestamp: 1778508940832 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.18-h57a12c2_2.conda + sha256: a1c8cecdf9966921e13f0ae921309a1f415dfbd2b791f2117cf7e8f5e61a48b6 + md5: 210a85a1119f97ea7887188d176db135 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: MIT - size: 44540 - timestamp: 1757421410587 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-brio-1.1.5-r45h735ac91_2.conda - sha256: e99c289ed3d6b4ce7005472f088006e5f89c541b4ebe86d993081d863e8546f2 - md5: 17a573991860d1c04e4b34a227e28553 + - __osx >=10.13 + license: LGPL-2.1-only + size: 737846 + timestamp: 1754908900138 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.25.1-h3184127_1.conda + sha256: 8c352744517bc62d24539d1ecc813b9fdc8a785c780197c5f0b84ec5b0dfe122 + md5: a8e54eefc65645193c46e8b180f62d22 depends: - __osx >=10.13 - - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 43102 - timestamp: 1757421489844 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-brio-1.1.5-r44h6168396_2.conda - sha256: 8fdeb734f259b3b4212e6099c695537bfa2c4affa303897d3bc0d2fa21e7f1fb - md5: 29cad55e2ccda4f88a79b76910768308 + - libiconv >=1.18,<2.0a0 + license: LGPL-2.1-or-later + size: 96909 + timestamp: 1753343977382 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.1.4.1-ha1e9b39_0.conda + sha256: 6b809d8acb6b97bbb1a858eb4ba7b7163c67257b6c3f199dd9d1e0751f4c5b18 + md5: 57cc1464d457d01ac78f5860b9ca1714 depends: - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: MIT - size: 44352 - timestamp: 1757421771711 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-brio-1.1.5-r45h2a2a84f_2.conda - sha256: 134b0cc2b0ab5115e95188fcfd28739090f126d6fe681c5c82e7432ca68c990a - md5: 01fec883ec69b490bd0bd61a835b40e7 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 587997 + timestamp: 1775963139212 +- conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.11.0-7_h859234e_openblas.conda + build_number: 7 + sha256: 92fe5e99c1a4dbb53268790ce0b738411f21e0d7ca50dd3ce7a8781f1b03ed95 + md5: 3aa5c4d55000d922e71dee6daddc5031 depends: - - libgcc >=14 - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: MIT - license_family: MIT - size: 48226 - timestamp: 1757421656962 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-bslib-0.11.0-r44hc72bb7e_0.conda - sha256: f9c43bcf89187d282e61b5798ebe98c221b924ccd634c31a5ad444232f098f13 - md5: 8a39d55f0ca0c444e1abbb239d182605 + - libblas 3.11.0 7_he492b99_openblas + constrains: + - liblapacke 3.11.0 7*_openblas + - libcblas 3.11.0 7*_openblas + - blas 2.307 openblas + license: BSD-3-Clause + license_family: BSD + size: 18862 + timestamp: 1778491179167 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm22-22.1.5-hab754da_1.conda + sha256: 2c89fa10baef69c47539aca47e87056c83288ad1295db94b1bef8d114447cc71 + md5: a676d7e0432a0b3eee978781f6ab26a6 depends: - - r-base >=4.4,<4.5.0a0 - - r-base64enc - - r-cachem - - r-htmltools >=0.5.7 - - r-jquerylib >=0.1.3 - - r-jsonlite - - r-lifecycle - - r-memoise >=2.0.1 - - r-mime - - r-rlang - - r-sass >=0.4.0 - license: MIT - license_family: MIT - size: 5582219 - timestamp: 1778923736774 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-bslib-0.11.0-r45hc72bb7e_0.conda - sha256: fafc7a0acb8fc595b8fd89e75ec0b1d7d5af71b2b493570fa05e1f5612d299c2 - md5: dae60c429ab933e549832bc223e95639 + - __osx >=11.0 + - libcxx >=19 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.2,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 31839823 + timestamp: 1778420752326 +- conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.8.3-hbb4bfdb_0.conda + sha256: d9e2006051529aec5578c6efeb13bb6a7200a014b2d5a77a579e83a8049d5f3c + md5: becdfbfe7049fa248e52aa37a9df09e2 depends: - - r-base >=4.5,<4.6.0a0 - - r-base64enc - - r-cachem - - r-htmltools >=0.5.7 - - r-jquerylib >=0.1.3 - - r-jsonlite - - r-lifecycle - - r-memoise >=2.0.1 - - r-mime - - r-rlang - - r-sass >=0.4.0 - license: MIT - license_family: MIT - size: 5538377 - timestamp: 1778923739710 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-cachem-1.1.0-r44h54b55ab_2.conda - sha256: 1a68b04169a635a3890573cd3f07a791ca1b27b1a1171109b0402a2f8787162d - md5: 9e798e9474af81b679133429db82de66 + - __osx >=11.0 + constrains: + - xz 5.8.3.* + license: 0BSD + size: 105724 + timestamp: 1775826029494 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libmpdec-4.0.0-hf3981d6_1.conda + sha256: 1096c740109386607938ab9f09a7e9bca06d86770a284777586d6c378b8fb3fd + md5: ec88ba8a245855935b871a7324373105 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - - r-fastmap - - r-rlang + - __osx >=10.13 + license: BSD-2-Clause + license_family: BSD + size: 79899 + timestamp: 1769482558610 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.68.1-h70048d4_0.conda + sha256: 899551e16aac9dfb85bfc2fd98b655f4d1b7fea45720ec04ccb93d95b4d24798 + md5: dba4c95e2fe24adcae4b77ebf33559ae + depends: + - __osx >=11.0 + - c-ares >=1.34.6,<2.0a0 + - libcxx >=19 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.5,<4.0a0 license: MIT license_family: MIT - size: 76618 - timestamp: 1757441491774 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-cachem-1.1.0-r45h735ac91_2.conda - sha256: 9d66c85da68725d2e82add49b6eee41a7056b627b6cb9a172822bbac5696cd0e - md5: 58ecf95b17caf2196dbc3cf76e2f2e6c + size: 606749 + timestamp: 1773854765508 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.33-openmp_h9e49c7b_0.conda + sha256: 2c2ffe7c3ab7becd47ad308946873d2bdc219625af32a53d10efbaa54b595d31 + md5: 30666a6f0afe1471e999eca7ae5c8179 + depends: + - __osx >=11.0 + - libgfortran + - libgfortran5 >=14.3.0 + - llvm-openmp >=19.1.7 + constrains: + - openblas >=0.3.33,<0.3.34.0a0 + license: BSD-3-Clause + license_family: BSD + size: 6287889 + timestamp: 1776996499823 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.58-he930e7c_0.conda + sha256: a669b22978e546484d18d99a210801b1823360a266d7035c713d8d1facd035f7 + md5: 9744d43d5200f284260637304a069ddd + depends: + - __osx >=11.0 + - libzlib >=1.3.2,<2.0a0 + license: zlib-acknowledgement + size: 299206 + timestamp: 1776315286816 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libsigtool-0.1.3-hc0f2934_0.conda + sha256: f87b743d5ab11c1a8ddd800dd9357fc0fabe47686068232ddc1d1eed0d7321ec + md5: 3576aba85ce5e9ab15aa0ea376ab864b depends: - __osx >=10.13 - - r-base >=4.5,<4.6.0a0 - - r-fastmap - - r-rlang + - openssl >=3.5.4,<4.0a0 license: MIT license_family: MIT - size: 75976 - timestamp: 1757441803447 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-cachem-1.1.0-r44h6168396_2.conda - sha256: 0f10c2770376e494304e10c6193c119a785db306db0d908b025294b4e4be1162 - md5: a5fcdf14a72ea9ae11c62e2fe6a9b271 + size: 38085 + timestamp: 1767044977731 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.22-ha3d0635_1.conda + sha256: 07f0f37463564d93530fc23e2a77cc1aad58ba8724b1842f8713dbf6cde17cb0 + md5: bf0ce6af8f7628e34cdb399f6aa82e53 depends: - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - - r-fastmap - - r-rlang - license: MIT - license_family: MIT - size: 76874 - timestamp: 1757442117946 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-cachem-1.1.0-r45heceb674_2.conda - sha256: a8ba041c8fb1cbda53b5beb6d95dbbb7dd7fd2ad95477d0846ed3e46bc92ba02 - md5: 2e9ed4b00823968c3c28b36df170e41a + license: ISC + size: 281370 + timestamp: 1779164249823 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.53.1-h8f8c405_0.conda + sha256: 5e964e07a14180ce20decfd4897e8f81d48ec78c1cbf4af85c5520f535d9510c + md5: 9273c877f78b7486b0dfdd9268327a79 depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - r-fastmap - - r-rlang - - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 81112 - timestamp: 1757441692478 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-callr-3.7.6-r44hc72bb7e_2.conda - sha256: e85f816c249baa83e8bbfd8aa15ef9249151d9aaae69c5010ea209e8d1fa3ff9 - md5: 020dde50545870904c62062ffab4b621 + - __osx >=11.0 + - icu >=78.3,<79.0a0 + - libzlib >=1.3.2,<2.0a0 + license: blessing + size: 1007171 + timestamp: 1777987093870 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-hed3591d_0.conda + sha256: 00654ba9e5f73aa1f75c1f69db34a19029e970a4aeb0fa8615934d8e9c369c3c + md5: a6cb15db1c2dc4d3a5f6cf3772e09e81 + depends: + - __osx >=10.13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 284216 + timestamp: 1745608575796 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.7.1-ha0a348c_1.conda + sha256: e53424c34147301beae2cd9223ebf593720d94c038b3f03cacd0535e12c9668e + md5: 9d4344f94de4ab1330cdc41c40152ea6 + depends: + - __osx >=10.13 + - lerc >=4.0.0,<5.0a0 + - libcxx >=19 + - libdeflate >=1.25,<1.26.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libwebp-base >=1.6.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: HPND + size: 404591 + timestamp: 1762022511178 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.51.0-h58003a5_1.conda + sha256: d90dd0eee6f195a5bd14edab4c5b33be3635b674b0b6c010fb942b956aa2254c + md5: fbfc6cf607ae1e1e498734e256561dc3 depends: - - r-base >=4.4,<4.5.0a0 - - r-processx >=3.4.0 - - r-r6 + - __osx >=10.13 license: MIT license_family: MIT - size: 454467 - timestamp: 1757475630913 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-callr-3.7.6-r45hc72bb7e_2.conda - sha256: f9f49b2b845f279af84a33c8af19a915b2731c0bd892c608205cbad8a34f423d - md5: a5cc8a8d0dc08dc769c65a13b3573739 + size: 422612 + timestamp: 1753948458902 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.6.0-hb807250_0.conda + sha256: 00dbfe574b5d9b9b2b519acb07545380a6bc98d1f76a02695be4995d4ec91391 + md5: 7bb6608cf1f83578587297a158a6630b depends: - - r-base >=4.5,<4.6.0a0 - - r-processx >=3.4.0 - - r-r6 - license: MIT - license_family: MIT - size: 454090 - timestamp: 1757475635573 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-cli-3.6.6-r44h3697838_0.conda - sha256: 158a5ffe707dfa11bde1ede789ee9dc6521e8eebc5b8278f83b9e9f787180d68 - md5: 13cca7c3f7d182bf222f3c70303c91be + - __osx >=10.13 + constrains: + - libwebp 1.6.0 + license: BSD-3-Clause + license_family: BSD + size: 365086 + timestamp: 1752159528504 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.3-h7a90416_0.conda + sha256: 437f003e299d77403db42d17e532d686236f357ac5c3d6bf466558c697902597 + md5: c74ae93cd7876e3a9c4b5569d5e29e34 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 + - __osx >=11.0 + - icu >=78.3,<79.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.3,<6.0a0 + - libzlib >=1.3.2,<2.0a0 + constrains: + - libxml2 2.15.3 license: MIT license_family: MIT - size: 1322870 - timestamp: 1775733707285 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-cli-3.6.6-r45h3697838_0.conda - sha256: a894e558a680a31444090de217b73f8fc06a3f4c07746d2cde4b6f86acdae0b1 - md5: ed8dcbbe9d66e9093ba58891e3b6065a + size: 496338 + timestamp: 1776377250079 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.3-h953d39d_0.conda + sha256: 24248928e63b5de45012c8ad3fd6b350ae1fe2fc355613bb89ee5f0a35835bea + md5: 33f30d4878d1f047da82a669c33b307d depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.5,<4.6.0a0 + - __osx >=11.0 + - icu >=78.3,<79.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.3,<6.0a0 + - libxml2-16 2.15.3 h7a90416_0 + - libzlib >=1.3.2,<2.0a0 license: MIT license_family: MIT - size: 1323795 - timestamp: 1775733704549 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-cli-3.6.6-r45h384437d_0.conda - sha256: cb49cde99fa4e4911548b40fd180d807d39d9acbc1de0fe8d3aeb8c34b016c1d - md5: 97f1de65091af3aa820e11f74f637e32 + size: 40836 + timestamp: 1776377277986 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.2-hbb4bfdb_2.conda + sha256: 4c6da089952b2d70150c74234679d6f7ac04f4a98f9432dec724968f912691e7 + md5: 30439ff30578e504ee5e0b390afc8c65 depends: - __osx >=11.0 - - libcxx >=19 - - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 1322585 - timestamp: 1775734202925 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-cli-3.6.6-r44h1380947_0.conda - sha256: 7a3b600bc7f01518c34647fdedcacf578035de1ad1cc8d1ecf1f65ce80268adf - md5: b6342df713443364fa7c27e7d7ab3bfa + constrains: + - zlib 1.3.2 *_2 + license: Zlib + license_family: Other + size: 59000 + timestamp: 1774073052242 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-22.1.6-h0d3cbff_0.conda + sha256: afbea63c0ffed8f150ba41a3e85bd849560f15f879d0f1b5e5fb6b90eca8ea78 + md5: b67316dec3b5c028b6b1bb6fd713c14e depends: - __osx >=11.0 - - libcxx >=19 - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: MIT - size: 1325539 - timestamp: 1775734162346 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-cli-3.6.6-r45h1380947_0.conda - sha256: 35f3a1893aaef23acfe047d04d809530a72907964242ea80fd6a154cebeb8e77 - md5: 13eb6bb352f65c61c6553c7037a27b90 + constrains: + - openmp 22.1.6|22.1.6.* + - intel-openmp <0.0a0 + license: Apache-2.0 WITH LLVM-exception + size: 311051 + timestamp: 1779341346370 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-22-22.1.5-hc181bea_1.conda + sha256: de4bcd3ccd77ceb4d4dcddf4e9543114df501a27e33222b447bc784402ac50b0 + md5: 340c3a684dc51ae3b116ff15f36dcaa9 depends: - __osx >=11.0 - libcxx >=19 - - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 1322083 - timestamp: 1775734308033 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-cli-3.6.6-r45hd8a2815_0.conda - sha256: 8684ebf63d339e79928692b9a32fdc3abd5292645290f6c2e4047c86916b70bd - md5: 0dc93a336948f0bfe32bb35b7b446677 + - libllvm22 22.1.5 hab754da_1 + - libzlib >=1.3.2,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 18976497 + timestamp: 1778421007873 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-22.1.5-h1637cdf_1.conda + sha256: f563db43cdae8c49a22e1f4cc7bf458c5bd65d1190ed11771a7e244aec1859be + md5: 767f09c50c6c317d395919080cfbe48f depends: - - libgcc >=14 - - libstdcxx >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 1334060 - timestamp: 1775734040388 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-cliapp-0.1.2-r44hc72bb7e_2.conda - sha256: df091a07acaef9fae871205511c180c77bc6c6a8279795a48dfaa52a7e7f4283 - md5: 25a7c9a7cbd6daf2277e7015a1046170 + - __osx >=11.0 + - libllvm22 22.1.5 hab754da_1 + - llvm-tools-22 22.1.5 hc181bea_1 + constrains: + - clang 22.1.5 + - llvmdev 22.1.5 + - clang-tools 22.1.5 + - llvm 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 52085 + timestamp: 1778421103663 +- conda: https://conda.anaconda.org/conda-forge/osx-64/make-4.4.1-h00291cd_2.conda + sha256: 5a5ab3ee828309185e0a76ca80f5da85f31d8480d923abb508ca00fe194d1b5a + md5: 59b4ad97bbb36ef5315500d5bde4bcfc depends: - - r-base >=4.4,<4.5.0a0 - - r-cli - - r-crayon - - r-fansi - - r-glue >=1.3.0 - - r-prettycode - - r-progress >=1.2.0 - - r-r6 - - r-selectr - - r-withr - - r-xml2 - license: MIT - license_family: MIT - size: 248712 - timestamp: 1757835888961 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-cliapp-0.1.2-r45hc72bb7e_2.conda - sha256: e6f8e916018d958aab7742fc4dca39d11e9fd71a6c9cbf706ae48b3f4aa68963 - md5: eda926ce6830fc811ca06adde8ae3630 + - __osx >=10.13 + license: GPL-3.0-or-later + license_family: GPL + size: 278910 + timestamp: 1727801765025 +- conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-3.0.3-py314h77fa6c7_1.conda + sha256: 74507b481299c3d35dc7d1c35f9c92e2e94e0eda819b264f5f25b7552f8a7d64 + md5: 5d45a74270e21481797387a209b3dec3 depends: - - r-base >=4.5,<4.6.0a0 - - r-cli - - r-crayon - - r-fansi - - r-glue >=1.3.0 - - r-prettycode - - r-progress >=1.2.0 - - r-r6 - - r-selectr - - r-withr - - r-xml2 - license: MIT - license_family: MIT - size: 248879 - timestamp: 1757835846605 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-clipr-0.8.0-r44hc72bb7e_4.conda - sha256: dc7693e0fa3e16290bc5eca5d918e4fa057aedab64520cf4c9055096b988c2be - md5: 1f404af69237bf7d0dda28b53c723b9c + - __osx >=11.0 + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 26740 + timestamp: 1772445674690 +- conda: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.4.0-h31caf2d_0.conda + sha256: 272ac1d9a2db3c9dbe2359c79784558a4e9b38624a0cc07c8f50b500a1b95d25 + md5: 52b3fbb35494ec12913a308397f52a9d depends: - - r-base >=4.4,<4.5.0a0 - license: GPL-3.0-only - license_family: GPL3 - size: 70741 - timestamp: 1757460201245 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-clipr-0.8.0-r45hc72bb7e_4.conda - sha256: df9c2315dcc8e271947d6fee8d805f1723ce1f41be4369aa820f572d272c042d - md5: 5deda37b255bc9dc837d00b89dbf2a21 + - __osx >=11.0 + - gmp >=6.3.0,<7.0a0 + - mpfr >=4.2.2,<5.0a0 + license: LGPL-3.0-or-later + license_family: LGPL + size: 91763 + timestamp: 1774472790640 +- conda: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.2-h31caf2d_0.conda + sha256: 0a238d8500b2206b04f780093c25d83694c8c9628ea50f4376463c608168bf95 + md5: bc5ac4d19d24a6062f60560aab0e8976 depends: - - r-base >=4.5,<4.6.0a0 - license: GPL-3.0-only - license_family: GPL3 - size: 70829 - timestamp: 1757460210204 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-commonmark-2.0.0-r44h54b55ab_1.conda - sha256: 3476f88b4aad66847acaf674739abb8d382129e85272e24667887424c0d47934 - md5: 9aed52e98aeac71945621364047ab682 + - __osx >=11.0 + - gmp >=6.3.0,<7.0a0 + license: LGPL-3.0-only + license_family: LGPL + size: 374756 + timestamp: 1773414598704 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.6-hcc0dc9a_0.conda + sha256: f5f7e006ff4271305ab4cc08eedd855c67a571793c3d18aff73f645f088a8cae + md5: 31b8740cf1b2588d4e61c81191004061 + depends: + - __osx >=11.0 + license: X11 AND BSD-3-Clause + size: 831711 + timestamp: 1777423052277 +- conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.6.2-hc881268_0.conda + sha256: 334fd49ea31b99114f5afb1ec44555dc8c90640648302a4f8f838ee345d1ec50 + md5: 5cf0ece4375c73d7a5765e83565a69c7 + depends: + - __osx >=11.0 + - ca-certificates + license: Apache-2.0 + license_family: Apache + size: 2776564 + timestamp: 1775589970694 +- conda: https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.9.0.2-h694c41f_0.conda + sha256: b60882fbaee1a7dd4458253d9c335f9dc285bc4c672c9da28b80636736eda891 + md5: 4be84ca4d00187c49a3010ca30a34847 + license: GPL-2.0-or-later + license_family: GPL + size: 16855452 + timestamp: 1773933667892 +- conda: https://conda.anaconda.org/conda-forge/osx-64/pango-1.56.4-hf280016_1.conda + sha256: c1150e6a405985b25830c18f896d5e89b9777ef7e420bc0b1d88634f9a614769 + md5: 591f9fcbb36fbd50caef590d9b1de614 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - license: BSD-2-Clause - license_family: BSD - size: 139988 - timestamp: 1757422083741 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-commonmark-2.0.0-r45h735ac91_1.conda - sha256: 75d49ce66e4d35283cbd636949a7963e212a73595b0184c6a8aa529f7c812d70 - md5: 98ba170605e21fd97fc878e75aebed5c + - __osx >=11.0 + - cairo >=1.18.4,<2.0a0 + - fontconfig >=2.17.1,<3.0a0 + - fonts-conda-ecosystem + - fribidi >=1.0.16,<2.0a0 + - harfbuzz >=13.2.1 + - libexpat >=2.7.4,<3.0a0 + - libfreetype >=2.14.2 + - libfreetype6 >=2.14.2 + - libglib >=2.86.4,<3.0a0 + - libpng >=1.6.55,<1.7.0a0 + - libzlib >=1.3.2,<2.0a0 + license: LGPL-2.1-or-later + size: 431801 + timestamp: 1774282435173 +- conda: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.47-h13923f0_0.conda + sha256: 8d64a9d36073346542e5ea042ef8207a45a0069a2e65ce3323ee3146db78134c + md5: 08f970fb2b75f5be27678e077ebedd46 depends: - __osx >=10.13 - - r-base >=4.5,<4.6.0a0 - license: BSD-2-Clause + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause license_family: BSD - size: 122287 - timestamp: 1757422352130 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-commonmark-2.0.0-r44h6168396_1.conda - sha256: 10671f92c4de9eb8be1e9700ea3e4ec40003afb63abc99e68fb31f8783599ad4 - md5: 3b1416970ca34b5557cadb7adc4431cd + size: 1106584 + timestamp: 1763655837207 +- conda: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.46.4-ha059160_1.conda + sha256: ff8b679079df25aa3ed5daf3f4e3a9c7ee79e7d4b2bd8a21de0f8e7ec7207806 + md5: 742a8552e51029585a32b6024e9f57b4 depends: - - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - license: BSD-2-Clause - license_family: BSD - size: 120917 - timestamp: 1757422505144 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-commonmark-2.0.0-r45heceb674_1.conda - sha256: 550fb0fa745b8e5089b35d3a4c9870bb0ed86ea9c49e4cfeffd18402a26aadaf - md5: 71fd8e902fc90e0ce760809ee641f6d5 + - __osx >=10.13 + - libcxx >=19 + license: MIT + license_family: MIT + size: 390942 + timestamp: 1754665233989 +- conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-7.2.2-py314hd330473_0.conda + sha256: 3194ce0d94c810cb1809da851261be34e1cae72ca345445b29e61766b38ee6cc + md5: d465805e603072c341554159939be5b8 depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: BSD-2-Clause + - python + - __osx >=10.13 + - python_abi 3.14.* *_cp314 + license: BSD-3-Clause license_family: BSD - size: 135377 - timestamp: 1757422445310 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-cpp11-0.5.5-r44h785f33e_0.conda - sha256: 58eaa9586c61a3f1adbbe84ef4d059c78a6eca282708c2c4e34878efff19f5ab - md5: a7c91479f77c69bc54216d97b918028d + size: 242816 + timestamp: 1769678225798 +- conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-core-12.1-py314h681fd4f_0.conda + sha256: f95c247d52009fd29887904a3ca1556ffd6cf0bff225b63f914c7b294007100a + md5: eea444aa695378a47d13a974a31c893d depends: - - r-base >=4.4,<4.5.0a0 + - __osx >=10.13 + - libffi >=3.5.2,<3.6.0a0 + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + - setuptools license: MIT license_family: MIT - size: 248360 - timestamp: 1778089255619 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-cpp11-0.5.5-r45h785f33e_0.conda - sha256: 5993a1b5c08c78a35cdbcf20376773eb7c4def2d28615e49f96008b43a4c05c0 - md5: 71c68a3993a696b6b75f7a6550b3750f + size: 491826 + timestamp: 1763151541038 +- conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-framework-cocoa-12.1-py314h9720295_0.conda + sha256: b1a54bbe3223a919e33778ee70c74756305f7fd14b7e739f4df8d576783a78ca + md5: 992ab0e7362326773eb8c2afa5c28a71 depends: - - r-base >=4.5,<4.6.0a0 + - __osx >=10.13 + - libffi >=3.5.2,<3.6.0a0 + - pyobjc-core 12.1.* + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 license: MIT license_family: MIT - size: 246247 - timestamp: 1778089270609 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r44hc72bb7e_2.conda - sha256: 93bb26deef54d51293c3582cfbb51987a7af6ca93d498c4ffbe8ebdcfe52cad0 - md5: 2b72da5cca65460ba6ac1f81b4ff72cc + size: 374960 + timestamp: 1763160496034 +- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.14.5-h7c6738f_100_cp314.conda + build_number: 100 + sha256: f99fd77c51d52319f02b7732971b35921a987ac49ca9b60f9c2e280b0dcdd409 + md5: 915728f929ae3610f084aecdf62f5272 depends: - - r-base >=4.4,<4.5.0a0 + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.8.0,<3.0a0 + - libffi >=3.5.2,<3.6.0a0 + - liblzma >=5.8.3,<6.0a0 + - libmpdec >=4.0.0,<5.0a0 + - libsqlite >=3.53.1,<4.0a0 + - libzlib >=1.3.2,<2.0a0 + - ncurses >=6.6,<7.0a0 + - openssl >=3.5.6,<4.0a0 + - python_abi 3.14.* *_cp314 + - readline >=8.3,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - zstd >=1.5.7,<1.6.0a0 + license: Python-2.0 + size: 14450441 + timestamp: 1779239702259 + python_site_packages_path: lib/python3.14/site-packages +- conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.3-py314h10d0514_1.conda + sha256: aef010899d642b24de6ccda3bc49ef008f8fddf7bad15ebce9bdebeae19a4599 + md5: ebd224b733573c50d2bfbeacb5449417 + depends: + - __osx >=10.13 + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + - yaml >=0.2.5,<0.3.0a0 license: MIT license_family: MIT - size: 167903 - timestamp: 1757452343297 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-crayon-1.5.3-r45hc72bb7e_2.conda - sha256: 9126a0408696133893e674549ca7aef317768dba503765a7ed032616aabe5b49 - md5: 4f111ce078b9690abaad6248b831a370 + size: 191947 + timestamp: 1770226344240 +- conda: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-27.1.0-py312h2ac7433_2.conda + noarch: python + sha256: 475d5a751740eef86b4469b73759a42bcf82abb292fde7506081196378552cf3 + md5: 98bc7fb12f6efc9c08eeeac21008a199 depends: + - python + - __osx >=11.0 + - libcxx >=19 + - _python_abi3_support 1.* + - cpython >=3.12 + - zeromq >=4.3.5,<4.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 192884 + timestamp: 1771717048943 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-askpass-1.2.1-r45h735ac91_1.conda + sha256: dce3285868e4cfb06a482bcc4b665e620d00a88b39098cfe39b246192260f55b + md5: 196449f42b78b60388cb4add0f77f64d + depends: + - __osx >=10.13 - r-base >=4.5,<4.6.0a0 + - r-sys >=2.1 license: MIT license_family: MIT - size: 168201 - timestamp: 1757452410374 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-credentials-2.0.3-r44hc72bb7e_1.conda - sha256: 86e72bfe07502350d7c2c49b1a584d56d67d81b9dc35fda611d58408fff14a28 - md5: 73e08975cb48c7e8c2c61fb65a5c420e + size: 31198 + timestamp: 1758383746554 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-base-4.5.3-h6422bf8_1.conda + sha256: f56d23fa84e9a924580dd75e9dbda6bdca446dc685bd11da853669f096492826 + md5: 37a8371c4a9dc8630bdc702ba7b299df depends: - - r-askpass - - r-base >=4.4,<4.5.0a0 - - r-curl - - r-jsonlite - - r-openssl >=1.3 - - r-sys >=2.1 + - __osx >=11.0 + - _r-mutex 1.* anacondar_1 + - bwidget + - bzip2 >=1.0.8,<2.0a0 + - cairo >=1.18.4,<2.0a0 + - clang_osx-64 >=19 + - clangxx_osx-64 >=19 + - curl + - fontconfig >=2.17.1,<3.0a0 + - fonts-conda-ecosystem + - gfortran_osx-64 14.* + - gsl >=2.7,<2.8.0a0 + - icu >=78.2,<79.0a0 + - libasprintf >=0.25.1,<1.0a0 + - libblas >=3.9.0,<4.0a0 + - libcurl >=8.19.0,<9.0a0 + - libcxx >=19 + - libdeflate >=1.25,<1.26.0a0 + - libexpat >=2.7.4,<3.0a0 + - libgettextpo >=0.25.1,<1.0a0 + - libgfortran + - libgfortran5 >=14.3.0 + - libglib >=2.86.4,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libintl >=0.25.1,<1.0a0 + - libjpeg-turbo >=3.1.2,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblzma >=5.8.2,<6.0a0 + - libpng >=1.6.55,<1.7.0a0 + - libtiff >=4.7.1,<4.8.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-openmp >=19.1.7 + - make + - pango >=1.56.4,<2.0a0 + - pcre2 >=10.47,<10.48.0a0 + - readline >=8.3,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tktable + - tzdata >=2024a + license: GPL-2.0-or-later + license_family: GPL + size: 27086501 + timestamp: 1773747734319 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-base64enc-0.1_6-r45hdab4d57_0.conda + sha256: cc6b5ceb2e451f20ba0b553fa7a24348933092e3fdfbd27546b916c1898750da + md5: 391e4d250a55001a52d95d3b2167bb1c + depends: + - __osx >=10.13 + - r-base >=4.5,<4.6.0a0 + license: GPL-2.0-or-later + license_family: GPL3 + size: 47853 + timestamp: 1770028527307 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-brio-1.1.5-r45h735ac91_2.conda + sha256: e99c289ed3d6b4ce7005472f088006e5f89c541b4ebe86d993081d863e8546f2 + md5: 17a573991860d1c04e4b34a227e28553 + depends: + - __osx >=10.13 + - r-base >=4.5,<4.6.0a0 license: MIT license_family: MIT - size: 225543 - timestamp: 1758405190539 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-credentials-2.0.3-r45hc72bb7e_1.conda - sha256: 5db8dc6e14ab6ff3dc79292184c079b5492f6125193e05a99f0714792d3bdc4a - md5: a94730bc5fa7197875f58d4b092a541a + size: 43102 + timestamp: 1757421489844 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-cachem-1.1.0-r45h735ac91_2.conda + sha256: 9d66c85da68725d2e82add49b6eee41a7056b627b6cb9a172822bbac5696cd0e + md5: 58ecf95b17caf2196dbc3cf76e2f2e6c depends: - - r-askpass + - __osx >=10.13 - r-base >=4.5,<4.6.0a0 - - r-curl - - r-jsonlite - - r-openssl >=1.3 - - r-sys >=2.1 + - r-fastmap + - r-rlang license: MIT license_family: MIT - size: 226814 - timestamp: 1758405193327 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-curl-7.1.0-r44h10955f1_0.conda - sha256: 86e47ff305f8cfdd4e9a50c892160598d7e97ff651ebbe2b700da7f3a6adb097 - md5: 553cca12312f999e00113332cf31c4ae + size: 75976 + timestamp: 1757441803447 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-cli-3.6.6-r45h384437d_0.conda + sha256: cb49cde99fa4e4911548b40fd180d807d39d9acbc1de0fe8d3aeb8c34b016c1d + md5: 97f1de65091af3aa820e11f74f637e32 depends: - - __glibc >=2.17,<3.0.a0 - - libcurl >=8.19.0,<9.0a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 + - __osx >=11.0 + - libcxx >=19 + - r-base >=4.5,<4.6.0a0 license: MIT license_family: MIT - size: 474055 - timestamp: 1777147714103 + size: 1322585 + timestamp: 1775734202925 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-commonmark-2.0.0-r45h735ac91_1.conda + sha256: 75d49ce66e4d35283cbd636949a7963e212a73595b0184c6a8aa529f7c812d70 + md5: 98ba170605e21fd97fc878e75aebed5c + depends: + - __osx >=10.13 + - r-base >=4.5,<4.6.0a0 + license: BSD-2-Clause + license_family: BSD + size: 122287 + timestamp: 1757422352130 - conda: https://conda.anaconda.org/conda-forge/osx-64/r-curl-7.1.0-r45h2ef87c2_0.conda sha256: d9907bd3d56c3b33148dad714aef6798f6a3a4415e7e1c33a581c28db5e9cc53 md5: 2cb7b3c6732945c80825249f707cc814 @@ -8320,2078 +8752,2412 @@ packages: license_family: MIT size: 470506 timestamp: 1777148003850 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-curl-7.1.0-r44h090641b_0.conda - sha256: 747a6bb08e0c5691864f0a0148d1d615ead654f5696fc54c47d64533e595781b - md5: 4b0fd1895ea3e9b090db5f0fce18cb28 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-diffobj-0.3.6-r45h735ac91_1.conda + sha256: 0555099ed29d977639b9403431991ee7844342405c71a7d59dffc5e7247623fc + md5: 8ad536d981688b156bbf496487f6a140 + depends: + - __osx >=10.13 + - r-base >=4.5,<4.6.0a0 + - r-crayon >=1.3.2 + license: GPL-2.0-or-later + license_family: GPL2 + size: 1000697 + timestamp: 1757459608775 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-digest-0.6.39-r45ha730edb_0.conda + sha256: 5cbf83949c0a19caed156f817fddd84213142181fff644bc20ba8e08b81b48ca + md5: 3b08d7bea7b9a2ee67afb5756f7d1f1e + depends: + - __osx >=10.13 + - libcxx >=19 + - r-base >=4.5,<4.6.0a0 + license: GPL-2.0-or-later + license_family: GPL2 + size: 214635 + timestamp: 1763566976041 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-ellipsis-0.3.3-r45h8eed41d_0.conda + sha256: eb9474c5c68ca98fb9044493d0f829ac8d2ed4c261500d0c76861c7fe831daa0 + md5: 05c8908fbcc12ed07762cf05aa7738f5 depends: - __osx >=11.0 - - libcurl >=8.19.0,<9.0a0 - - r-base >=4.4,<4.5.0a0 + - r-base >=4.5,<4.6.0a0 + - r-rlang >=0.3.0 license: MIT license_family: MIT - size: 471456 - timestamp: 1777148050569 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-curl-7.1.0-r45h2d9cb95_0.conda - sha256: 08e96837184057c4a338470b01aa747217bd99410c2814c9b62d2e683625e989 - md5: 70bf0789e3790199e20400b58b95a0e9 + size: 33668 + timestamp: 1775287707478 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-fansi-1.0.7-r45h735ac91_0.conda + sha256: 4c215e9771b987b444f05d1baa24a60324e48e06731a9115c3bc81ba28d16bab + md5: 9111487dafc97b3c62cbf5e4935b264d depends: - - libcurl >=8.19.0,<9.0a0 - - libgcc >=14 - - libnghttp2 >=1.68.1,<2.0a0 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - __osx >=10.13 + - r-base >=4.5,<4.6.0a0 + license: GPL-2.0-or-later + license_family: GPL3 + size: 323480 + timestamp: 1763566505764 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-fastmap-1.2.0-r45ha730edb_2.conda + sha256: 677c46196e8f2089fe210731fa6bd376efd9ba9527fbac35e7353d4c77cbbb18 + md5: 32ef1bf264b16fc7590e41154e98b2cd + depends: + - __osx >=10.13 + - libcxx >=19 - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 476172 - timestamp: 1777147929626 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-desc-1.4.3-r44hc72bb7e_2.conda - sha256: 0b511eadd8299b370b23f45268a9f3de9015457913e86e373fc34184e65c155e - md5: 24fe88af88fc79dd249b6ffdbd32af06 + size: 73276 + timestamp: 1757421913776 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-filelock-1.0.3-r45h735ac91_2.conda + sha256: 84c43bb071f1c5e3e315e73f52ff976081bf2c855663f41f24874cc2a32e8570 + md5: 0ffbc0ed0b2eadcc1b00c0c72a5a51eb depends: - - r-base >=4.4,<4.5.0a0 - - r-cli - - r-r6 - - r-rprojroot + - __osx >=10.13 + - r-base >=4.5,<4.6.0a0 license: MIT license_family: MIT - size: 341014 - timestamp: 1757463156255 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-desc-1.4.3-r45hc72bb7e_2.conda - sha256: b54c00d2ab9cca150f92120664a8a24cd63213d28c3e951c19575b24d9b57b61 - md5: 2428c825ae5b2fc162edaeb3fa76b486 + size: 32497 + timestamp: 1757576350979 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-fs-2.1.0-r45h384437d_0.conda + sha256: be1f2d02fa832c1d32a2eaccbfb7547cec2b8974b1ee666be2c678a63528a13d + md5: 2c948ec5ac0e275c2bbb7e681e087524 depends: + - __osx >=11.0 + - libcxx >=19 + - libuv >=1.51.0,<2.0a0 - r-base >=4.5,<4.6.0a0 - - r-cli - - r-r6 - - r-rprojroot license: MIT license_family: MIT - size: 339976 - timestamp: 1757463164006 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-devtools-2.5.2-r44hc72bb7e_0.conda - sha256: 35fffb76192a0469334b7ca226422d37caeee1da947b4d30a10a9e9c3c3dc45b - md5: c48154738392c30e02ec6447e9ad8566 + size: 237278 + timestamp: 1777152986860 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-gert-2.3.1-r45h5979426_0.conda + sha256: 0d69aa5c13b51a4194c9bf9c715aaf3fe022111e36673db70499a13acc8fb373 + md5: 31951eac4d46ff35e4a41f3a56fde5f8 depends: - - r-base >=4.4,<4.5.0a0 - - r-cli >=3.6.6 - - r-desc >=1.4.3 - - r-ellipsis >=0.3.3 - - r-fs >=2.0.1 - - r-lifecycle >=1.0.5 - - r-memoise >=2.0.1 - - r-miniui >=0.1.2 - - r-pak >=0.9.3 - - r-pkgbuild >=1.4.8 - - r-pkgdown >=2.2.0 - - r-pkgload >=1.5.1 - - r-profvis >=0.4.0 - - r-rcmdcheck >=1.4.0 - - r-rlang >=1.2.0 - - r-roxygen2 >=7.3.3 - - r-rversions >=3.0.0 - - r-sessioninfo >=1.2.3 - - r-testthat >=3.3.2 - - r-urlchecker >=1.0.1 - - r-usethis >=3.2.1 - - r-withr >=3.0.2 + - __osx >=10.13 + - libgit2 >=1.9.2,<1.10.0a0 + - r-askpass + - r-base >=4.5,<4.6.0a0 + - r-credentials >=1.2.1 + - r-openssl >=2.0.3 + - r-rstudioapi >=0.11 + - r-zip >=2.1.0 license: MIT license_family: MIT - size: 474002 - timestamp: 1777541952820 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-devtools-2.5.2-r45hc72bb7e_0.conda - sha256: 09a472006062232c422d861670530788a316f9138bd9e825746580b0d701ab2b - md5: 3a5db82e8dcc0d3b71c4fafd518f4d79 + size: 276546 + timestamp: 1768194261987 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-glue-1.8.1-r45h8eed41d_0.conda + sha256: 528d147e91943014e437f2b301d7d67ee532657b2d0f12a3b992dca75efda6aa + md5: 6e5095caa3715908e85eca21ef3c5b35 depends: + - __osx >=11.0 - r-base >=4.5,<4.6.0a0 - - r-cli >=3.6.6 - - r-desc >=1.4.3 - - r-ellipsis >=0.3.3 - - r-fs >=2.0.1 - - r-lifecycle >=1.0.5 - - r-memoise >=2.0.1 - - r-miniui >=0.1.2 - - r-pak >=0.9.3 - - r-pkgbuild >=1.4.8 - - r-pkgdown >=2.2.0 - - r-pkgload >=1.5.1 - - r-profvis >=0.4.0 - - r-rcmdcheck >=1.4.0 - - r-rlang >=1.2.0 - - r-roxygen2 >=7.3.3 - - r-rversions >=3.0.0 - - r-sessioninfo >=1.2.3 - - r-testthat >=3.3.2 - - r-urlchecker >=1.0.1 - - r-usethis >=3.2.1 - - r-withr >=3.0.2 license: MIT license_family: MIT - size: 474612 - timestamp: 1777541956032 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-diffobj-0.3.6-r44h54b55ab_1.conda - sha256: 63bb9d1cef7ab68992fdc18023114211b5d1fc5363651063afecc5f6dee3c7fd - md5: ba81c2468035b1215f239423ec1217bd + size: 170142 + timestamp: 1776413926392 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-htmltools-0.5.9-r45ha730edb_0.conda + sha256: 8cb14eba290f662aee49c5e9ae5dd5dde6b07d82f33d61797d37380fcee184f3 + md5: cf057b9d43b2b07b4aab30bf9a76b406 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - - r-crayon >=1.3.2 + - __osx >=10.13 + - libcxx >=19 + - r-base >=4.5,<4.6.0a0 + - r-base64enc + - r-digest + - r-ellipsis + - r-fastmap >=1.1.0 + - r-rlang >=0.4.10 license: GPL-2.0-or-later - license_family: GPL2 - size: 1012323 - timestamp: 1757459178042 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-diffobj-0.3.6-r45h735ac91_1.conda - sha256: 0555099ed29d977639b9403431991ee7844342405c71a7d59dffc5e7247623fc - md5: 8ad536d981688b156bbf496487f6a140 + license_family: GPL3 + size: 365099 + timestamp: 1764860997569 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-httpuv-1.6.16-r45hbf875fd_1.conda + sha256: a192fe451445445c1126b2624f649e64ebfdd413e1d5a63d78464b216fe96697 + md5: fbf8c73ee9efcb89a7e13db6803f3710 + depends: + - __osx >=10.13 + - libcxx >=19 + - libuv >=1.51.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - r-base >=4.5,<4.6.0a0 + - r-later >=0.8.0 + - r-promises + - r-r6 + - r-rcpp >=1.0.7 + license: GPL-2.0-or-later + license_family: GPL3 + size: 564849 + timestamp: 1757477965696 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-jsonlite-2.0.0-r45h735ac91_1.conda + sha256: 946a4ec93b63fce4bdbcf02906b76c3affc9f3d79168c1cf0d9f4ade78900b63 + md5: 7e8b67b354cc466cc7e4e173da928059 depends: - __osx >=10.13 - r-base >=4.5,<4.6.0a0 - - r-crayon >=1.3.2 - license: GPL-2.0-or-later - license_family: GPL2 - size: 1000697 - timestamp: 1757459608775 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-diffobj-0.3.6-r44h6168396_1.conda - sha256: c77a6a40f698b32f485383d65c95cc966bdc04147f0a203008dbd197b0aa079a - md5: f23683f98f76681b5593340493b09b5e + license: MIT + license_family: MIT + size: 635014 + timestamp: 1757419891236 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-later-1.4.8-r45h384437d_0.conda + sha256: faeca62a6951609357421d8f040dd3cb7662a5cb0433470b39328a4b04bdbb06 + md5: ce35eab1a0587d8512484083d1db3a05 depends: - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - - r-crayon >=1.3.2 - license: GPL-2.0-or-later - license_family: GPL2 - size: 1001717 - timestamp: 1757459675415 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-diffobj-0.3.6-r45heceb674_1.conda - sha256: c524776d1c528a63cbab0fe0c0057c65bf0420a97e6cdca2379f5aa19279f34d - md5: 20ba872be12595edfc8adc49094b2104 - depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - libcxx >=19 - r-base >=4.5,<4.6.0a0 - - r-crayon >=1.3.2 - - ucrt >=10.0.20348.0 - license: GPL-2.0-or-later - license_family: GPL2 - size: 1011439 - timestamp: 1757459510713 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-digest-0.6.39-r44h3697838_0.conda - sha256: 829b5a49aa497c7cab48915ee3e5ffb4f651160027961faefe412166202b9ca1 - md5: c09d9af7929f64611137e83de28db915 + - r-rcpp >=0.12.9 + - r-rlang + license: MIT + license_family: MIT + size: 137596 + timestamp: 1772708013361 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-lpsolve-5.6.23-r45h735ac91_1.conda + sha256: 54bd07b8a81bc8c77d30c44fa3096c26148d0f4ccf6cd6f68c6ba30649d08669 + md5: 67605399b1fc70a9753236e67c0ae6c9 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 - license: GPL-2.0-or-later - license_family: GPL2 - size: 218462 - timestamp: 1763566657101 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-digest-0.6.39-r45h3697838_0.conda - sha256: 33ce40552bc1810252c4445082392638ff2fb883147cf36c3e4017e9b0dc5474 - md5: a0e856537aa7d62a6835e3a528d29517 + - __osx >=10.13 + - r-base >=4.5,<4.6.0a0 + license: LGPL-2.0-only + license_family: LGPL + size: 365672 + timestamp: 1757495912614 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-magrittr-2.0.5-r45h8eed41d_0.conda + sha256: 3f5d7916f8c7a209a41c41581170bfcaca5242d036c8619f0d021f25ef454c01 + md5: f5a0df07890d26bdb982b0ecb9e3e7b9 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 + - __osx >=11.0 - r-base >=4.5,<4.6.0a0 - license: GPL-2.0-or-later - license_family: GPL2 - size: 218412 - timestamp: 1763566744987 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-digest-0.6.39-r45ha730edb_0.conda - sha256: 5cbf83949c0a19caed156f817fddd84213142181fff644bc20ba8e08b81b48ca - md5: 3b08d7bea7b9a2ee67afb5756f7d1f1e + license: MIT + license_family: MIT + size: 209728 + timestamp: 1775298921562 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-mime-0.13-r45h735ac91_1.conda + sha256: c7b965672a92fa509351845766f80aa72b8cca8db4b3780608539a99c7e1531b + md5: 39017255466bad2f1c117e7cd75c9314 depends: - __osx >=10.13 - - libcxx >=19 - r-base >=4.5,<4.6.0a0 license: GPL-2.0-or-later - license_family: GPL2 - size: 214635 - timestamp: 1763566976041 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-digest-0.6.39-r44hc1cd577_0.conda - sha256: 945e67be78a409972cf3ceed7553f564477b41c170ac9397364667c3ed2241ef - md5: 4c2634f2998034129027c1c497593446 + license_family: GPL + size: 63955 + timestamp: 1757441835326 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-openssl-2.4.1-r45h7679fe8_0.conda + sha256: b75dcafce94861a0ec7e95ed9ad89a6c34bc0471d530174258be3ab4329c564e + md5: a84ec152fd9c8f773720312f565aa515 depends: - __osx >=11.0 - - libcxx >=19 - - r-base >=4.4,<4.5.0a0 - license: GPL-2.0-or-later - license_family: GPL2 - size: 208639 - timestamp: 1763567147222 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-digest-0.6.39-r45hc1cd577_0.conda - sha256: 507bd9f5d407aa8d744066d7629985040f9f9c9adc200f1b9a279e4730213c15 - md5: 7f7d936d7653327ab8b53f6d85c95178 + - openssl >=3.5.6,<4.0a0 + - r-askpass + - r-base >=4.5,<4.6.0a0 + license: MIT + license_family: MIT + size: 681028 + timestamp: 1778775883205 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-processx-3.9.0-r45h8eed41d_0.conda + sha256: fe3b9a2cf3a2773a8da1dd18164459969c1b53429bf9fa5a9805ee931222c0ab + md5: a14ac3e048d5c63259602bf6591816e3 depends: - __osx >=11.0 - - libcxx >=19 - r-base >=4.5,<4.6.0a0 - license: GPL-2.0-or-later - license_family: GPL2 - size: 208862 - timestamp: 1763567044192 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-digest-0.6.39-r45hd8a2815_0.conda - sha256: 1f2bf0416eea469bf53373fe624c0618634739eff299f42282947da82478716a - md5: 890fd3e7c2f8800daf26a76b186113ba + - r-ps >=1.2.0 + - r-r6 + license: MIT + license_family: MIT + size: 398197 + timestamp: 1776866021510 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-profvis-0.4.0-r45h735ac91_1.conda + sha256: 5372687af9e85068701d1346585da7c1f768f9c3dff51867de52493084d516b2 + md5: b488dc7939e70bc81afd572409dbae5e depends: - - libgcc >=14 - - libstdcxx >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - __osx >=10.13 - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: GPL-2.0-or-later - license_family: GPL2 - size: 212967 - timestamp: 1763566967158 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-downlit-0.4.5-r44hc72bb7e_0.conda - sha256: 3dae4e0a5f1dfb19e05b139b062687081e6753d3e2911c39ca28c196d13270a6 - md5: 3365b3f052c7583803007aa2804edc4d - depends: - - r-base >=4.4,<4.5.0a0 - - r-brio - - r-desc - - r-digest - - r-evaluate - - r-fansi - - r-memoise - - r-rlang + - r-htmlwidgets >=0.3.2 + - r-purrr + - r-rlang >=0.4.9 + - r-stringr - r-vctrs - - r-withr - - r-yaml + license: GPL-3.0-only + license_family: GPL3 + size: 229783 + timestamp: 1757585765463 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-ps-1.9.3-r45h8eed41d_0.conda + sha256: 509f2629fcf9e79f2d78393ff168fea03e808f0a62870421d4e4e90a7a7bb73a + md5: 001fff6be2577b529a171c34071a30f8 + depends: + - __osx >=11.0 + - r-base >=4.5,<4.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 409155 + timestamp: 1777148282616 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-purrr-1.2.2-r45h8eed41d_0.conda + sha256: 50cee8e2704ace7117bd300ad764f176b3b0e8fba8c1fd18ae975947a4c96a4c + md5: 8194147611edbe04fb268871c46bec58 + depends: + - __osx >=11.0 + - r-base >=4.5,<4.6.0a0 + - r-cli >=3.4 + - r-lifecycle >=1.0.3 + - r-magrittr >=1.5 + - r-rlang >=0.4.10 + - r-vctrs >=0.5 license: MIT license_family: MIT - size: 121552 - timestamp: 1763113509623 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-downlit-0.4.5-r45hc72bb7e_0.conda - sha256: 73396f3432df8aac38aeb15f27ebdecb216d3b63bfa3c87fc6b996acf27b82f8 - md5: 49850c61c12fbd8dd19b30d9bc81833f + size: 546287 + timestamp: 1775853844861 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-ragg-1.5.2-r45hfe6cf39_0.conda + sha256: 10bb0c024dd98024cf8c232fd7ff5875eeeaf6f0dd81590e58a5cec69989320e + md5: 4d88961b5d81c4df3c577330c7a41e7f depends: + - __osx >=11.0 + - libcxx >=19 + - libfreetype >=2.14.2 + - libfreetype6 >=2.14.2 + - libjpeg-turbo >=3.1.2,<4.0a0 + - libpng >=1.6.55,<1.7.0a0 + - libtiff >=4.7.1,<4.8.0a0 - r-base >=4.5,<4.6.0a0 - - r-brio - - r-desc - - r-digest - - r-evaluate - - r-fansi - - r-memoise - - r-rlang - - r-vctrs - - r-withr - - r-yaml + - r-systemfonts >=1.0.3 + - r-textshaping >=0.3.0 license: MIT license_family: MIT - size: 121741 - timestamp: 1763113559895 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-ellipsis-0.3.3-r44h54b55ab_0.conda - sha256: ac44b0472993c0b620b71a0356545242ea853a894dab21add2964b7f2d924f19 - md5: 309df67a7a2f04427edfed0c88732fd4 + size: 534482 + timestamp: 1774268365412 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-rappdirs-0.3.4-r45hdab4d57_0.conda + sha256: 0fb0eb2ad831738ad79fbe0e40a46ff8b96e7ef9cbe7fe4315f1607fa7db831c + md5: f37aa365542e23151044d8f10785269f depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - - r-rlang >=0.3.0 + - __osx >=10.13 + - r-base >=4.5,<4.6.0a0 license: MIT license_family: MIT - size: 33480 - timestamp: 1775287245091 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-ellipsis-0.3.3-r45h54b55ab_0.conda - sha256: 19d03273f9d5e1aa41302e1cf080dcb95ced5b955bc978df39eee71a9686a86c - md5: e43b3e7101a90ac57f58a21da67c99a4 + size: 53677 + timestamp: 1768747620337 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-rcpp-1.1.1_1.1-r45h384437d_0.conda + sha256: c67e739aab8e757317ce6532f9fc7ace38f09fd038129cf46b158e3237181320 + md5: 62fcce24346ed0a529e4872d47228b8b depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 + - __osx >=11.0 + - libcxx >=19 + - r-base >=4.5,<4.6.0a0 + license: GPL-2.0-or-later + license_family: GPL2 + size: 2132395 + timestamp: 1777184587353 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-rlang-1.2.0-r45h384437d_0.conda + sha256: 115c8674ef36d4e8de565a7f0d0edb601c00f86100cca3d6d929b4626aef53a2 + md5: 8a3a7f7e2bac9186d3db9babaa6015af + depends: + - __osx >=11.0 + - libcxx >=19 - r-base >=4.5,<4.6.0a0 - - r-rlang >=0.3.0 - license: MIT - license_family: MIT - size: 33411 - timestamp: 1775287239478 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-ellipsis-0.3.3-r45h8eed41d_0.conda - sha256: eb9474c5c68ca98fb9044493d0f829ac8d2ed4c261500d0c76861c7fe831daa0 - md5: 05c8908fbcc12ed07762cf05aa7738f5 + license: GPL-3.0-only + license_family: GPL3 + size: 1588083 + timestamp: 1775484344009 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-roxygen2-8.0.0-r45h384437d_0.conda + sha256: 287edd5e8844ac55f8b5e6c760602152d158e4f69bdfd0b7ee7eb0c4bd9029ea + md5: e570442a63d895d8b940f02d70b5bacf depends: - __osx >=11.0 + - libcxx >=19 - r-base >=4.5,<4.6.0a0 - - r-rlang >=0.3.0 + - r-brew + - r-commonmark + - r-cpp11 + - r-desc >=1.2.0 + - r-digest + - r-knitr + - r-pkgload >=1.0.2 + - r-purrr >=0.3.3 + - r-r6 >=2.1.2 + - r-rlang + - r-stringi + - r-stringr >=1.0.0 + - r-xml2 license: MIT - license_family: MIT - size: 33668 - timestamp: 1775287707478 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ellipsis-0.3.3-r44hbe92478_0.conda - sha256: 6d9eec4fa6261822a00fe72b8bbfea7d905bb9e87883657808189bc2ffb46895 - md5: db8b6ddcb30fee47bc25b116816e0c03 + license_family: GPL3 + size: 837162 + timestamp: 1777663467266 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-sass-0.4.10-r45ha730edb_1.conda + sha256: 68c39f6613cb0caadecbcbf5e4e19c8757b143570a81ccd6add92de64b200624 + md5: 205f283f76621392df4e92255dccdf62 depends: - - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - - r-rlang >=0.3.0 + - __osx >=10.13 + - libcxx >=19 + - r-base >=4.5,<4.6.0a0 + - r-digest + - r-fs + - r-htmltools + - r-r6 + - r-rappdirs + - r-rlang license: MIT license_family: MIT - size: 34252 - timestamp: 1775287721272 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ellipsis-0.3.3-r45hbe92478_0.conda - sha256: c68decc012f0318029ec3d282f07274f1212d91b2ea0d1d2e793538389220efc - md5: 5e0e265490c4114a3b8a2ee3d7a8a830 + size: 2130207 + timestamp: 1757465003313 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-sourcetools-0.1.7_2-r45h384437d_0.conda + sha256: 9b68d95c899e2c6e1ecab615df7444a4769ad02e6f504bde7f7a0519577cfa45 + md5: afd1a125ebcb2387d547cc8a4c6b043e depends: - __osx >=11.0 + - libcxx >=19 - r-base >=4.5,<4.6.0a0 - - r-rlang >=0.3.0 license: MIT license_family: MIT - size: 34255 - timestamp: 1775287728004 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-ellipsis-0.3.3-r45heceb674_0.conda - sha256: f140d6114ab870ca32254704672c5df52a0a8c999bd0725b1253789ee9fa897a - md5: 8e0a6e985a5a27f910a75659bc397db2 + size: 52606 + timestamp: 1774682566630 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-stringi-1.8.7-r45h64d3038_2.conda + sha256: 9a30d40249d831d0c0ea00485ec88b8c1d818c146f88560c0c5ccbb02e9ecc10 + md5: d39d22e6a04cd39ab54925210ac949e1 depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - __osx >=11.0 + - icu >=78.2,<79.0a0 + - libcxx >=19 - r-base >=4.5,<4.6.0a0 - - r-rlang >=0.3.0 - - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 34209 - timestamp: 1775287402869 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r44hc72bb7e_1.conda - sha256: f7d36f6a5d47c637a08af09878d60559dd13147ef2d725837b3b8e2411c47f0a - md5: 7b03982e4e8e348f02a51e61e6bb9cc2 + license: FOSS + license_family: OTHER + size: 883046 + timestamp: 1772032927355 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-sys-3.4.3-r45h735ac91_1.conda + sha256: aeb21ac5fe82391242bffe9311b6667f5a1e0e27cc2586566d2922ac8b133800 + md5: fce9523c92ae8be9e7d13b626d40b9c4 depends: - - r-base >=4.4,<4.5.0a0 + - __osx >=10.13 + - r-base >=4.5,<4.6.0a0 license: MIT license_family: MIT - size: 111297 - timestamp: 1757447669350 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-evaluate-1.0.5-r45hc72bb7e_1.conda - sha256: d3accfeab1416151515c37e5edc94b18868998db4936183459f8040117d5c83c - md5: 4e0c71ab78d7292372a89d4daecb49af + size: 48825 + timestamp: 1757442111729 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-systemfonts-1.3.2-r45h50b51c1_0.conda + sha256: 926a89a48098f6cd0e825f8815faa3f2ba2a169008379597daffc0e0862b22e2 + md5: 12b991063ac953c1dcc2d82aac69511b depends: + - __osx >=11.0 + - libcxx >=19 + - libfreetype >=2.14.2 + - libfreetype6 >=2.14.2 - r-base >=4.5,<4.6.0a0 + - r-base64enc + - r-cpp11 >=0.2.1 + - r-jsonlite + - r-lifecycle license: MIT license_family: MIT - size: 111914 - timestamp: 1757447684244 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-fansi-1.0.7-r44h54b55ab_0.conda - sha256: f738c07d48dabdf29ffb228f5eb752e00abe8f2a025c3032eb3b2974224d369c - md5: cb8edd5978ccf005e53ae370ae1b15d0 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 329490 - timestamp: 1763566093770 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-fansi-1.0.7-r45h54b55ab_0.conda - sha256: 68dcc5aa6fc4408f9cac5aeaa03a7e6a5d127a949fc72b3fed31fd1af3bbeee5 - md5: 309740f1b6a2d4cb16d395be786c85c5 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.5,<4.6.0a0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 329435 - timestamp: 1763566090233 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-fansi-1.0.7-r45h735ac91_0.conda - sha256: 4c215e9771b987b444f05d1baa24a60324e48e06731a9115c3bc81ba28d16bab - md5: 9111487dafc97b3c62cbf5e4935b264d + size: 672110 + timestamp: 1772798481838 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-testthat-3.3.2-r45hed9a748_0.conda + sha256: 535fa0572855e8ed07fa97c416af23cdd6d1a38e28c7e18422303683dd8bac82 + md5: 9647ebd70ed8ea8def1d6ba4b237eebb depends: - __osx >=10.13 + - libcxx >=19 - r-base >=4.5,<4.6.0a0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 323480 - timestamp: 1763566505764 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fansi-1.0.7-r44h6168396_0.conda - sha256: 9d3fe7009ecb519c2aef6d3d174d8844d3b5829fa89371689be08416dce1a061 - md5: 3ebccb0b86f52c0f1abfd8a5fc200da9 - depends: - - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 324050 - timestamp: 1763566765615 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fansi-1.0.7-r45h6168396_0.conda - sha256: 8112dd835a6c5e52b40dd19cb339c29c29464f7f01cc47a841ce3ac54456af93 - md5: 6b8605f97d9e95528160a84bfb70c99e + - r-brio >=1.1.3 + - r-callr >=3.7.3 + - r-cli >=3.6.1 + - r-desc >=1.4.2 + - r-digest >=0.6.33 + - r-evaluate >=1.0.1 + - r-jsonlite >=1.8.7 + - r-lifecycle >=1.0.3 + - r-magrittr >=2.0.3 + - r-pkgload >=1.3.2.1 + - r-praise >=1.0.0 + - r-processx >=3.8.2 + - r-ps >=1.7.5 + - r-r6 >=2.5.1 + - r-rlang >=1.1.1 + - r-waldo >=0.6.0 + - r-withr >=3.0.2 + license: MIT + license_family: MIT + size: 1833834 + timestamp: 1768138584762 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-textshaping-1.0.5-r45h50b51c1_0.conda + sha256: 5c37daba8883a90a635210037b8e3b00096d66e23f0e277c3f0c42194c510afe + md5: 8d6a35f5f0178c5240c3ce2fc3fcb52f depends: - __osx >=11.0 + - fribidi >=1.0.16,<2.0a0 + - harfbuzz >=12.3.2 + - libcxx >=19 + - libfreetype >=2.14.2 + - libfreetype6 >=2.14.2 - r-base >=4.5,<4.6.0a0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 322546 - timestamp: 1763566692815 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-fansi-1.0.7-r45heceb674_0.conda - sha256: 6d5025f89f3fd4eb7b96e301e0bdeefefb61aa94cf019beb16dc289a07c0a666 - md5: 4dcf42965e23954628f5d7c40ce46942 - depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 330610 - timestamp: 1763566271027 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-fastmap-1.2.0-r44h3697838_2.conda - sha256: 202cbae1f393f944f3465141a78ffce056d3109b21d6437955f4e8a9af8b30e6 - md5: 734e73555e5c0962c40c89e6aa7cf1a8 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 + - r-cpp11 >=0.2.1 + - r-lifecycle + - r-stringi + - r-systemfonts >=1.3.0 license: MIT license_family: MIT - size: 74279 - timestamp: 1757421564828 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-fastmap-1.2.0-r45h3697838_2.conda - sha256: bfec10cec03b434d9010690c61d43a0be79418f67a0713ce31da207a40e1570c - md5: 245526991ad3b8a1dc97f2dcb5031065 + size: 174097 + timestamp: 1772817897333 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-tibble-3.3.1-r45hdab4d57_0.conda + sha256: 151684365b3488be9348dc077dccf9f26dbff053163efec838dcbb93c99a96a2 + md5: 6718afb349aecd1ccb57d6cf017133e5 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 + - __osx >=10.13 - r-base >=4.5,<4.6.0a0 + - r-fansi >=0.4.0 + - r-lifecycle >=1.0.0 + - r-magrittr + - r-pillar >=1.8.1 + - r-pkgconfig + - r-rlang >=1.0.2 + - r-vctrs >=0.4.2 license: MIT license_family: MIT - size: 73870 - timestamp: 1757421441326 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-fastmap-1.2.0-r45ha730edb_2.conda - sha256: 677c46196e8f2089fe210731fa6bd376efd9ba9527fbac35e7353d4c77cbbb18 - md5: 32ef1bf264b16fc7590e41154e98b2cd + size: 588925 + timestamp: 1768139585173 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-utf8-1.2.6-r45h735ac91_1.conda + sha256: 3d9badbdfdb0b87973ade8079d6e66f9cb81544c06d3b4db9b96a004eed92e04 + md5: d1f457be352ee40e54cc1c99d3e27ac3 depends: - __osx >=10.13 - - libcxx >=19 - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 73276 - timestamp: 1757421913776 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fastmap-1.2.0-r44hc1cd577_2.conda - sha256: b97a439d1d1b25fa026bea9759e85b6a630e872a4631349655e27cdda606b981 - md5: 872e3a173570c0f936496f81f5822461 + license: Apache-2.0 + license_family: APACHE + size: 143423 + timestamp: 1757424904605 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-vctrs-0.7.3-r45h384437d_0.conda + sha256: df916a617096a5c65a3367070b09fe07f60d22b85fb6a9133294ea0dbc61cf4a + md5: b18d1b41722edec3bde565749498800b depends: - __osx >=11.0 - libcxx >=19 - - r-base >=4.4,<4.5.0a0 + - r-base >=4.5,<4.6.0a0 + - r-cli >=3.4.0 + - r-glue + - r-lifecycle >=1.0.3 + - r-rlang >=1.0.6 license: MIT license_family: MIT - size: 72818 - timestamp: 1757422275705 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fastmap-1.2.0-r45hc1cd577_2.conda - sha256: 53bbf12d1b47e618c15d4e19a478e5b5d0d25e1dfe43366b67d58bc157929301 - md5: 0ac8272c2d15122bf543dfd8c72654c1 + size: 1790414 + timestamp: 1775898386677 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-xfun-0.57-r45h384437d_0.conda + sha256: d533059c3f82f39e5000c595a45c41e252c5696b135aea617d54b2a1a49ba325 + md5: 7f85f4a865a8715edd879b4296e5c7e6 depends: - __osx >=11.0 - libcxx >=19 - r-base >=4.5,<4.6.0a0 license: MIT license_family: MIT - size: 72957 - timestamp: 1757421937392 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-fastmap-1.2.0-r45hd8a2815_2.conda - sha256: f9925f74898c74b794f7eb88f802ee57021f798927776d2acd0a77e43a60e4d0 - md5: e0c1813af7036243fc2b5ff4b7be14e7 + size: 596675 + timestamp: 1774807581542 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-xml2-1.5.2-r45h2546f75_0.conda + sha256: 092e4037ae8e83ee22f41856e23b1f5bb60099f16e57916a4d421ac5d27d4c42 + md5: a6cfca3d40743bfa27576c69dd613615 depends: - - libgcc >=14 - - libstdcxx >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - __osx >=10.13 + - libcxx >=19 + - libxml2 + - libxml2-16 >=2.14.6 - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 75572 - timestamp: 1757421799637 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-filelock-1.0.3-r44h54b55ab_2.conda - sha256: 7bf1c09b71554b0bc4a1ddaeea0c24790c36983048ca06807b4510b2aa6be5d0 - md5: 7c6896398f42a9657f0ef5d4b65da270 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: MIT - size: 33925 - timestamp: 1757575999387 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-filelock-1.0.3-r45h735ac91_2.conda - sha256: 84c43bb071f1c5e3e315e73f52ff976081bf2c855663f41f24874cc2a32e8570 - md5: 0ffbc0ed0b2eadcc1b00c0c72a5a51eb + - r-cli + - r-rlang >=1.1.0 + license: GPL-2.0-or-later + license_family: GPL2 + size: 351146 + timestamp: 1768765134239 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-yaml-2.3.12-r45h735ac91_0.conda + sha256: bb88b98ca4202c5c3e3ff1a86dd6ea8881894c780eaf84b3dbdc470184f20fca + md5: bc0dcd3a525ac4c238c2098b31f33638 depends: - __osx >=10.13 - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 32497 - timestamp: 1757576350979 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-filelock-1.0.3-r44h6168396_2.conda - sha256: b12dbfab27d9c275f15ac9a881a16b7852067e7e921b0f58c70ba1f31086b385 - md5: 9a635b52271497d305123a6791342f8e + license: BSD-3-Clause + license_family: BSD + size: 114092 + timestamp: 1765373682665 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-yr-0.1.4-r45he03009a_0.conda + sha256: ee960c94275655d861e1b7275561cb45caa078517019212b87af5dc9604fd70b + md5: 2481613427c4c16e94c082f2e4b39b6a depends: + - r-base + - __osx >=11.0 + - r-base >=4.5,<4.6.0a0 + constrains: - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 license: MIT - license_family: MIT - size: 33538 - timestamp: 1757576202385 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-filelock-1.0.3-r45heceb674_2.conda - sha256: 1fe9e21afcf1068a4ce5b968af5a3f492db2b68e94f2cfbc585e3916319e228d - md5: 0c195742da3857e05a76ea2c081d0025 + size: 1219512 + timestamp: 1779355018990 +- conda: https://conda.anaconda.org/conda-forge/osx-64/r-zip-2.3.3-r45h735ac91_1.conda + sha256: 752638a5c4dfaf46fc51a3d150c359d5bac804251af7249694da2bc142452bf6 + md5: 7a79470436ae5c6f62c08b12dc3ee11e depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - __osx >=10.13 - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 license: MIT - license_family: MIT - size: 38112 - timestamp: 1757576170763 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-fontawesome-0.5.3-r44hc72bb7e_1.conda - sha256: efa7167cc694c30895c687c2288b83a77834cffc42782ae0c452dc3f5ca16461 - md5: 1f426d1938c22f0f59407b25026ccdc3 + license_family: CC + size: 147908 + timestamp: 1757447808792 +- conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.3-h68b038d_0.conda + sha256: 4614af680aa0920e82b953fece85a03007e0719c3399f13d7de64176874b80d5 + md5: eefd65452dfe7cce476a519bece46704 depends: - - r-base >=4.4,<4.5.0a0 - - r-htmltools >=0.5.1.1 - - r-rlang >=0.4.10 + - __osx >=10.13 + - ncurses >=6.5,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 317819 + timestamp: 1765813692798 +- conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.30.0-py314ha7b6dee_0.conda + sha256: 368a758ba6f4fb3c6c9a0d25c090807553af5b3dc937a2180ff047fe8ebf6820 + md5: 816cb6c142c86de627fe7ffa1affddb2 + depends: + - python + - __osx >=10.13 + - python_abi 3.14.* *_cp314 + constrains: + - __osx >=10.13 license: MIT license_family: MIT - size: 1339066 - timestamp: 1757461226059 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-fontawesome-0.5.3-r45hc72bb7e_1.conda - sha256: 865df12d8cdd8cf577abc8f785a0aa4ee50b4f8751256dffe4676a350943d591 - md5: e9fccb3617ec9776569c6496fa254e64 + size: 362381 + timestamp: 1764543188314 +- conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-codesign-0.1.3-hc0f2934_0.conda + sha256: b89d89d0b62e0a84093205607d071932cca228d4d6982a5b073eec7e765b146d + md5: 1261fc730f1d8af7eeea8a0024b23493 depends: - - r-base >=4.5,<4.6.0a0 - - r-htmltools >=0.5.1.1 - - r-rlang >=0.4.10 + - __osx >=10.13 + - libsigtool 0.1.3 hc0f2934_0 + - openssl >=3.5.4,<4.0a0 license: MIT license_family: MIT - size: 1335664 - timestamp: 1757461248044 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-fs-2.1.0-r44h3697838_0.conda - sha256: 0c1e4f774db77e4ee5b46de3266835f009cade13174d5a0dae04585641d8753e - md5: 36e7df839c01c17b2c3dbf79147f70de + size: 123083 + timestamp: 1767045007433 +- conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1600.0.11.8-h8d8e812_2.conda + sha256: 0e814730160c8e214eadd7905e3659d8f52af86fd37d85fd287060748948a2b8 + md5: 524528dee57e42d77b1af677137de5a5 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - libuv >=1.51.0,<2.0a0 - - r-base >=4.4,<4.5.0a0 + - libcxx >=19.0.0.a0 + - __osx >=10.13 + - ncurses >=6.5,<7.0a0 + license: NCSA + size: 213790 + timestamp: 1775657389876 +- conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h7142dee_3.conda + sha256: 7f0d9c320288532873e2d8486c331ec6d87919c9028208d3f6ac91dc8f99a67b + md5: 6e6efb7463f8cef69dbcb4c2205bf60e + depends: + - __osx >=10.13 + - libzlib >=1.3.1,<2.0a0 + license: TCL + license_family: BSD + size: 3282953 + timestamp: 1769460532442 +- conda: https://conda.anaconda.org/conda-forge/osx-64/tktable-2.10-h8925a82_8.conda + sha256: 73c55dc920f297ff48e7da57542bb492c02f18dfa0fe9babd7e2faa201333af3 + md5: eb114b7aed519d340fe699de143cae17 + depends: + - tk + - __osx >=11.0 + - tk >=8.6.13,<8.7.0a0 + license: TCL + size: 93128 + timestamp: 1773733001137 +- conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.5.5-py314h217eccc_0.conda + sha256: 602be948753f2e6300aa505faee0e4a6ac48865504f93b0935d5cf9a7d8e1cc5 + md5: 9fdead77ed9fd152b131289c6984ed7c + depends: + - __osx >=11.0 + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + license: Apache-2.0 + license_family: Apache + size: 910512 + timestamp: 1774358311298 +- conda: https://conda.anaconda.org/conda-forge/osx-64/typos-1.46.2-h19f9e61_0.conda + sha256: 58a598d4a9dccef532bd215bb6acc5ac91f820bd7d92cbee90d52495fe31dad1 + md5: 2eb3681df2f889b926a8e57e6dfde1cf + depends: + - __osx >=11.0 + constrains: + - __osx >=11.0 + license: MIT OR Apache-2.0 + size: 2850251 + timestamp: 1778960896009 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.1.0-py314h473ef84_0.conda + sha256: a77214fabb930c5332dece5407973c0c1c711298bf687976a0b6a9207b758e12 + md5: 08a26dd1ba8fc9681d6b5256b2895f8e + depends: + - __osx >=10.13 + - cffi + - libcxx >=19 + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 license: MIT license_family: MIT - size: 243769 - timestamp: 1777152730611 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-fs-2.1.0-r45h384437d_0.conda - sha256: be1f2d02fa832c1d32a2eaccbfb7547cec2b8974b1ee666be2c678a63528a13d - md5: 2c948ec5ac0e275c2bbb7e681e087524 + size: 14286 + timestamp: 1769439103231 +- conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-6.0.5-hebe015c_0.conda + sha256: ee62923babd9d4cec7dff146924eeb280dbcbe85f524243ca2f7286fa87cf1fa + md5: 6d4fc729f7f92af7338f2698a4a21f69 depends: + - libcxx >=19 - __osx >=11.0 + - nlohmann_json-abi ==3.12.0 + license: BSD-3-Clause + license_family: BSD + size: 317550 + timestamp: 1776328834132 +- conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-r-0.11.0-r45h45edcf1_0.conda + sha256: a88367143e274ed8eb0429b84d840c4fdc2ac1bc8fbe224b66de043b410735b0 + md5: afdfa691fe70781600fc9943007c17cd + depends: + - r-base + - r-cli + - r-evaluate + - r-glue + - r-irdisplay + - r-jsonlite + - r-r6 + - r-repr + - r-rlang - libcxx >=19 - - libuv >=1.51.0,<2.0a0 + - __osx >=11.0 + - nlohmann_json-abi ==3.12.0 + - xeus-zmq >=4.0.0,<4.1.0a0 - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 237278 - timestamp: 1777152986860 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fs-2.1.0-r44h45a6d21_0.conda - sha256: 482d0809cd039b9c86527fff21584f0b3dd2ef6a860433e4136b09a0e42a61e4 - md5: 25237c24099b2d514d2fbb57ab4deda2 + - xeus >=6.0.5,<6.1.0a0 + license: GPL-3.0-only + license_family: GPL + size: 329912 + timestamp: 1778071465040 +- conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-zmq-4.0.0-h695af4d_0.conda + sha256: 0b031f558e183438dc431ad8339dca30e167c54510f85e776dd9a878399a0a5b + md5: ddebcd6dc700ce160da7e6c4b1cecaf2 depends: - __osx >=11.0 - libcxx >=19 - - libuv >=1.51.0,<2.0a0 - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: MIT - size: 236657 - timestamp: 1777152778881 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-fs-2.1.0-r45h225bc52_0.conda - sha256: 928f2603de1787f16c64adcbd141099c1be0e11c390126ed92861fa03e0f47de - md5: d4917e751c845a842ff98f77507c9bc6 + - zeromq >=4.3.5,<4.4.0a0 + - nlohmann_json-abi ==3.12.0 + - xeus >=6.0.1,<6.1.0a0 + - openssl >=3.6.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 369456 + timestamp: 1772664500433 +- conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h4132b18_3.conda + sha256: a335161bfa57b64e6794c3c354e7d49449b28b8d8a7c4ed02bf04c3f009953f9 + md5: a645bb90997d3fc2aea0adf6517059bd depends: - - libgcc >=14 - - libstdcxx >=14 - - libuv >=1.51.0,<2.0a0 - - libzlib >=1.3.2,<2.0a0 - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 + - __osx >=10.13 license: MIT license_family: MIT - size: 252903 - timestamp: 1777152900952 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-gert-2.3.1-r44h5e22a44_0.conda - sha256: c222d68a8f654084bbb48a32a9f12576ffa416c5f737d4c6510d87868fc210db - md5: 29809d2fa096af0f59e21b5bb2fd586e + size: 79419 + timestamp: 1753484072608 +- conda: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-h84953be_11.conda + sha256: 2ba9b6a3131b5a97641068559d38c044f37fd29b54c10dd6d073f1cf81fc4e4c + md5: 8a622d1db89d80a94477b1c03824d611 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libgit2 >=1.9.2,<1.10.0a0 - - r-askpass - - r-base >=4.4,<4.5.0a0 - - r-credentials >=1.2.1 - - r-openssl >=2.0.3 - - r-rstudioapi >=0.11 - - r-zip >=2.1.0 - license: MIT - license_family: MIT - size: 281073 - timestamp: 1768193985729 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-gert-2.3.1-r45h5979426_0.conda - sha256: 0d69aa5c13b51a4194c9bf9c715aaf3fe022111e36673db70499a13acc8fb373 - md5: 31951eac4d46ff35e4a41f3a56fde5f8 + - libcxx >=19 + - __osx >=11.0 + - krb5 >=1.22.2,<1.23.0a0 + - libsodium >=1.0.22,<1.0.23.0a0 + license: MPL-2.0 + license_family: MOZILLA + size: 260817 + timestamp: 1779124180318 +- conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.2-hbb4bfdb_2.conda + sha256: 5dd728cebca2e96fa48d41661f1a35ed0ee3cb722669eee4e2d854c6745655eb + md5: 6276aa61ffc361cbf130d78cfb88a237 + depends: + - __osx >=11.0 + - libzlib 1.3.2 hbb4bfdb_2 + license: Zlib + license_family: Other + size: 92411 + timestamp: 1774073075482 +- conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.7-h3eecb57_6.conda + sha256: 47101a4055a70a4876ffc87b750ab2287b67eca793f21c8224be5e1ee6394d3f + md5: 727109b184d680772e3122f40136d5ca depends: - __osx >=10.13 - - libgit2 >=1.9.2,<1.10.0a0 - - r-askpass - - r-base >=4.5,<4.6.0a0 - - r-credentials >=1.2.1 - - r-openssl >=2.0.3 - - r-rstudioapi >=0.11 - - r-zip >=2.1.0 - license: MIT - license_family: MIT - size: 276546 - timestamp: 1768194261987 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-gert-2.3.1-r44hc9f24b7_0.conda - sha256: b1c988e2ce5c4fffce3307c1f8ffd5416dd13b5fe08027ae11ea241b8cd0f431 - md5: 69ed9f4c6a99473ae6dfeb77c521829d + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 528148 + timestamp: 1764777156963 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/_openmp_mutex-4.5-7_kmp_llvm.conda + build_number: 7 + sha256: 7acaa2e0782cad032bdaf756b536874346ac1375745fb250e9bdd6a48a7ab3cd + md5: a44032f282e7d2acdeb1c240308052dd + depends: + - llvm-openmp >=9.0.1 + license: BSD-3-Clause + license_family: BSD + size: 8325 + timestamp: 1764092507920 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/air-0.9.0-h6fdd925_2.conda + sha256: 3f5d80dba001e14f4a515797c3d16e7a8d7227aba9bdbba3c565816cf45402b9 + md5: 2a25e53538025a4589fb7e4ecd2f0a27 depends: - __osx >=11.0 - - libgit2 >=1.9.2,<1.10.0a0 - - r-askpass - - r-base >=4.4,<4.5.0a0 - - r-credentials >=1.2.1 - - r-openssl >=2.0.3 - - r-rstudioapi >=0.11 - - r-zip >=2.1.0 + constrains: + - __osx >=11.0 license: MIT license_family: MIT - size: 278147 - timestamp: 1768194343876 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-gert-2.3.1-r45hedacc9e_0.conda - sha256: 72a098dd93aee96c71aa5b9c75cff76ec7368deef851d42447ba535296603fd1 - md5: f51eeb55e3bb1ffc7bcef4c3f9ec2dc3 + size: 2349516 + timestamp: 1775342540778 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/argon2-cffi-bindings-25.1.0-py314h0612a62_2.conda + sha256: aab60bbaea5cc49dff37438d1ad469d64025cda2ce58103cf68da61701ed2075 + md5: a240a79a49a95b388ef81ccda27a5e51 depends: - - libgcc >=14 - - libgit2 >=1.9.2,<1.10.0a0 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - libzlib >=1.3.1,<2.0a0 - - r-askpass - - r-base >=4.5,<4.6.0a0 - - r-credentials >=1.2.1 - - r-openssl >=2.0.3 - - r-rstudioapi >=0.11 - - r-zip >=2.1.0 - - ucrt >=10.0.20348.0 + - __osx >=11.0 + - cffi >=2.0.0b1 + - python >=3.14,<3.15.0a0 + - python >=3.14,<3.15.0a0 *_cp314 + - python_abi 3.14.* *_cp314 license: MIT license_family: MIT - size: 292936 - timestamp: 1768194166756 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-gh-1.5.0-r44hc72bb7e_1.conda - sha256: f335fc08d3f0d564aaa3b3b982b1e9caaa8612084718781e2cf224fb1c5790ad - md5: d777f839ae3fa67f909f73d09c979596 + size: 34218 + timestamp: 1762509977830 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.2.0-py314h3daef5d_1.conda + sha256: 5c2e471fd262fcc3c5a9d5ea4dae5917b885e0e9b02763dbd0f0d9635ed4cb99 + md5: f9501812fe7c66b6548c7fcaa1c1f252 depends: - - r-base >=4.4,<4.5.0a0 - - r-cli >=3.0.1 - - r-gitcreds - - r-httr2 - - r-ini - - r-jsonlite - - r-rlang >=1.0.0 + - __osx >=11.0 + - libcxx >=19 + - python >=3.14,<3.15.0a0 + - python >=3.14,<3.15.0a0 *_cp314 + - python_abi 3.14.* *_cp314 + constrains: + - libbrotlicommon 1.2.0 hc919400_1 license: MIT license_family: MIT - size: 129235 - timestamp: 1758411392262 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-gh-1.5.0-r45hc72bb7e_1.conda - sha256: 192cd751680077e36e7d4e2d7dd56bc479f1755652e0850d6467c148bfe93781 - md5: 63ad70a28896e7a2bb3c3d06c143c358 + size: 359854 + timestamp: 1764018178608 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bwidget-1.10.1-hce30654_1.conda + sha256: 66ccefd46364f1ef536c42e7ee24d0377c2ece073734df614c6509b08e2bdf62 + md5: c42706e35f3bb26537b065a5f9ae764d depends: - - r-base >=4.5,<4.6.0a0 - - r-cli >=3.0.1 - - r-gitcreds - - r-httr2 - - r-ini - - r-jsonlite - - r-rlang >=1.0.0 - license: MIT - license_family: MIT - size: 129562 - timestamp: 1758411443631 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-gitcreds-0.1.2-r44hc72bb7e_4.conda - sha256: c8746622ab43d705d6136c18806d61abed3fc432828d3a10a4b8d2d6aa20c599 - md5: 108c0fd368c4cc97f4db9d211cf4f61a + - tk + license: TCL + size: 129989 + timestamp: 1750261536876 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_9.conda + sha256: 540fe54be35fac0c17feefbdc3e29725cce05d7367ffedfaaa1bdda234b019df + md5: 620b85a3f45526a8bc4d23fd78fc22f0 depends: - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: MIT - size: 96756 - timestamp: 1757482293279 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-gitcreds-0.1.2-r45hc72bb7e_4.conda - sha256: 8a2619d16e1148cd712446f47c39e53aa09708071f9fc46e9b8dd31a28fbf0ad - md5: 8864884cea757c51580b45be5c362068 + - __osx >=11.0 + license: bzip2-1.0.6 + license_family: BSD + size: 124834 + timestamp: 1771350416561 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.6-hc919400_0.conda + sha256: 2995f2aed4e53725e5efbc28199b46bf311c3cab2648fc4f10c2227d6d5fa196 + md5: bcb3cba70cf1eec964a03b4ba7775f01 depends: - - r-base >=4.5,<4.6.0a0 + - __osx >=11.0 license: MIT license_family: MIT - size: 96405 - timestamp: 1757482244466 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-glue-1.8.1-r44h54b55ab_0.conda - sha256: f35d216e9961d3c8b092b7a77418d2acc2c1597229211f244b2e073465555110 - md5: b89f52d1c0cab3a259ef35834eb0a0d9 + size: 180327 + timestamp: 1765215064054 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.4-he0f2337_1.conda + sha256: cde9b79ee206fe3ba6ca2dc5906593fb7a1350515f85b2a1135a4ce8ec1539e3 + md5: 36200ecfbbfbcb82063c87725434161f depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: MIT - size: 170945 - timestamp: 1776413606623 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-glue-1.8.1-r45h54b55ab_0.conda - sha256: c2760270ffabd95e9d0a0caa9cc705c5a0370ad119ace5495acc043b1a35d198 - md5: 65911c2e9cac35ea0235d3d6d4aa9625 + - __osx >=11.0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - icu >=78.1,<79.0a0 + - libcxx >=19 + - libexpat >=2.7.3,<3.0a0 + - libfreetype >=2.14.1 + - libfreetype6 >=2.14.1 + - libglib >=2.86.3,<3.0a0 + - libpng >=1.6.53,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - pixman >=0.46.4,<1.0a0 + license: LGPL-2.1-only or MPL-1.1 + size: 900035 + timestamp: 1766416416791 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-1030.6.3-llvm22_1_hbe26303_4.conda + sha256: a8d8f9a6ae4c149d2174f8f52c61da079cc793b87e2f76441a43daf7f394631f + md5: aea08dd508f71d6ca3cfa4e8694e7953 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 171639 - timestamp: 1776413601349 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-glue-1.8.1-r45h8eed41d_0.conda - sha256: 528d147e91943014e437f2b301d7d67ee532657b2d0f12a3b992dca75efda6aa - md5: 6e5095caa3715908e85eca21ef3c5b35 + - cctools_impl_osx-arm64 1030.6.3 llvm22_1_hb5e89dc_4 + - ld64 956.6 llvm22_1_h5b97f1b_4 + - libllvm22 >=22.1.0,<22.2.0a0 + license: APSL-2.0 + license_family: Other + size: 24551 + timestamp: 1772019751097 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_impl_osx-arm64-1030.6.3-llvm22_1_hb5e89dc_4.conda + sha256: 97075a1afeac8a7a4dca258ac10efb70638e3c734cbf5a6328ca1e0718e09c41 + md5: 97768bb89683757d7e535f9b7dcba39d depends: - __osx >=11.0 - - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 170142 - timestamp: 1776413926392 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-glue-1.8.1-r44hbe92478_0.conda - sha256: 609404bb41166c46c695acd347d8e3d3662817b22c530e36717595bdee772e6d - md5: c591df72f9899cfce892fadb2ae841e1 + - ld64_osx-arm64 >=956.6,<956.7.0a0 + - libcxx + - libllvm22 >=22.1.0,<22.2.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 22.1.* + - sigtool-codesign + constrains: + - clang 22.1.* + - ld64 956.6.* + - cctools 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 749166 + timestamp: 1772019681419 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1030.6.3-llvm22_1_hbe26303_4.conda + sha256: c90c927dd77afb7d8115a3777b567d9ab84169ab797436d79789d75d0bd1a399 + md5: a08c9f61e81b5d4a0a653495545ec2b8 + depends: + - cctools_impl_osx-arm64 1030.6.3 llvm22_1_hb5e89dc_4 + - ld64_osx-arm64 956.6 llvm22_1_h692d5aa_4 + constrains: + - cctools 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 23468 + timestamp: 1772019757885 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-2.0.0-py314h44086f9_1.conda + sha256: 5b5ee5de01eb4e4fd2576add5ec9edfc654fbaf9293e7b7ad2f893a67780aa98 + md5: 10dd19e4c797b8f8bdb1ec1fbb6821d7 depends: - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 + - libffi >=3.5.2,<3.6.0a0 + - pycparser + - python >=3.14,<3.15.0a0 + - python >=3.14,<3.15.0a0 *_cp314 + - python_abi 3.14.* *_cp314 license: MIT license_family: MIT - size: 170947 - timestamp: 1776413888460 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-glue-1.8.1-r45hbe92478_0.conda - sha256: ed4dede3eb23e4132b1478edb9d157eae5a44ac6d5cd7f82ae8edafddc6f0ce6 - md5: b1c2c7d2f66f04cc3e32aeb679df3371 + size: 292983 + timestamp: 1761203354051 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-22-22.1.5-default_hd632d02_1.conda + sha256: 661be9d7e197ac2eeeff52a18f5e2c385497fb523fd91a3e50cf62c792ce3d06 + md5: d440f7fc2d44b55cd806e5a033dcf0a1 depends: - __osx >=11.0 - - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 171239 - timestamp: 1776414040752 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-glue-1.8.1-r45heceb674_0.conda - sha256: c64f8f76390f1ab7f97bd51c77eeaf6b17bd099c9e9b9fab158ce1fa088b948d - md5: 49e189395597d9ca6a7e9b54827086d7 + - compiler-rt22 22.1.5.* + - libclang-cpp22.1 22.1.5 default_h8e162e0_1 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 825331 + timestamp: 1778476335771 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-22.1.5-default_cfg_hb78b91e_1.conda + sha256: 7861600cd2506d2945c4254c089fe1083b4643146b93f98df58e4dc8d5bbf586 + md5: df62aad1251047d963da339efbc495ad depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 175487 - timestamp: 1776413821460 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-highr-0.12-r44hc72bb7e_0.conda - sha256: 58dbae0f286db50474b17427bc5edb8a5164ce42b60291628acb28bfa4ad27e9 - md5: b8b0208e9bc8112ebf3f4cd5f6f02655 + - cctools + - clang-22 22.1.5 default_hd632d02_1 + - clang_impl_osx-arm64 22.1.5 default_h17d1ed9_1 + - ld64 + - ld64_osx-arm64 * llvm22_1_* + - llvm-openmp >=22.1.5 + - llvm-tools 22.1.5.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28682 + timestamp: 1778476413617 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-scan-deps-22.1.5-default_h8e162e0_1.conda + sha256: 1348683f1bb903e9a63e3ad003e2530291884fd7a3127f695ea622f86effa32c + md5: ff91dfd45cffd50b06d22d7df575821e depends: - - r-base >=4.4,<4.5.0a0 - - r-xfun >=0.18 - license: GPL-2.0-or-later - license_family: GPL - size: 57367 - timestamp: 1772794437004 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-highr-0.12-r45hc72bb7e_0.conda - sha256: e676112aac0dbfe123fcb3108cce376782211a096c898a3af46fdf32a37e12e9 - md5: 0b5902d6af02a23bda1794d46090db42 + - __osx >=11.0 + - libclang-cpp22.1 >=22.1.5,<22.2.0a0 + - libclang13 >=22.1.5 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 102846 + timestamp: 1778476581308 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-22.1.5-default_h17d1ed9_1.conda + sha256: 05a2d99ba55f4b401c11a750fac9bee879b3f09a16c1df2415836c46c9fd629f + md5: 743068a5a4061084f22a5f8b6675a3e8 depends: - - r-base >=4.5,<4.6.0a0 - - r-xfun >=0.18 - license: GPL-2.0-or-later - license_family: GPL - size: 57308 - timestamp: 1772794436225 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-hms-1.1.4-r44hc72bb7e_0.conda - sha256: 5a016b1533a9dc39c66f61209b0a70979289f18cbeace0377b3dfdb63c69465f - md5: 6bb21cd6a482d5c9bb068368a018e750 + - cctools_impl_osx-arm64 + - clang-22 22.1.5 default_hd632d02_1 + - compiler-rt 22.1.5.* + - compiler-rt_osx-arm64 + - ld64_osx-arm64 * llvm22_1_* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28091 + timestamp: 1778476400908 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-22.1.5-h1bea106_31.conda + sha256: 7ac336271f3a7a2d7c469bc1fa90508e893f2185ec380f179bd23674bd110b9a + md5: d39a13545913a5dba1b0b72e8d93c595 depends: - - r-base >=4.4,<4.5.0a0 - - r-ellipsis - - r-lifecycle - - r-pkgconfig - - r-rlang - - r-vctrs >=0.2.1 - license: MIT - license_family: MIT - size: 112923 - timestamp: 1760687917284 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-hms-1.1.4-r45hc72bb7e_0.conda - sha256: be67527b52f98832ab2871d0182fb76499538ca7eb333506084620b7489ce6a0 - md5: 4677c1ad37a9452e27e27d9ed1b8ae90 + - cctools_osx-arm64 + - clang_impl_osx-arm64 22.1.5.* + - sdkroot_env_osx-arm64 + license: BSD-3-Clause + license_family: BSD + size: 21173 + timestamp: 1778479644737 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-22.1.5-default_h17d1ed9_1.conda + sha256: adfc5fa04aecf4a5229d4975bf375aa0cb9f82c7264d45ddab6b4b58443b6718 + md5: c557ba34549e137502e0a59b8715d730 depends: - - r-base >=4.5,<4.6.0a0 - - r-ellipsis - - r-lifecycle - - r-pkgconfig - - r-rlang - - r-vctrs >=0.2.1 - license: MIT - license_family: MIT - size: 112799 - timestamp: 1760687922566 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-htmltools-0.5.9-r44h3697838_0.conda - sha256: 01a5040c5fdfd6f9a180d1f679342131b062e0f97feef9a3cdfa8af890c4e1bb - md5: fe46047f03af99174b444665dc12bcee + - clang-22 22.1.5 default_hd632d02_1 + - clang-scan-deps 22.1.5 default_h8e162e0_1 + - clang_impl_osx-arm64 22.1.5 default_h17d1ed9_1 + - libcxx-devel 22.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28111 + timestamp: 1778476592829 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-22.1.5-h1bea106_31.conda + sha256: e1ed629fc642b1a61196537307f237f1cf47bb53a0b707bc675b5784851fc995 + md5: 57d299a9d388428f7fa450452ada183a depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 - - r-base64enc - - r-digest - - r-ellipsis - - r-fastmap >=1.1.0 - - r-rlang >=0.4.10 - license: GPL-2.0-or-later - license_family: GPL3 - size: 366967 - timestamp: 1764860680530 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-htmltools-0.5.9-r45h3697838_0.conda - sha256: 1fa1fcdf980d0da17a583e41810da190eb9caf586c3fdf36312d045d9bb812e7 - md5: 2a2297687ae137e7fa90d3c996895e61 + - cctools_osx-arm64 + - clang_osx-arm64 22.1.5 h1bea106_31 + - clangxx_impl_osx-arm64 22.1.5.* + - sdkroot_env_osx-arm64 + license: BSD-3-Clause + license_family: BSD + size: 20043 + timestamp: 1778479650737 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-22.1.5-hce30654_1.conda + sha256: a442d55ea02f8615e74b3763b3621598fe432f973bcd6f4cf876704d7e854203 + md5: 98d56b1f4f0ded3a5fc68a22f7b168cc depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.5,<4.6.0a0 - - r-base64enc - - r-digest - - r-ellipsis - - r-fastmap >=1.1.0 - - r-rlang >=0.4.10 - license: GPL-2.0-or-later - license_family: GPL3 - size: 367095 - timestamp: 1764860550376 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-htmltools-0.5.9-r45ha730edb_0.conda - sha256: 8cb14eba290f662aee49c5e9ae5dd5dde6b07d82f33d61797d37380fcee184f3 - md5: cf057b9d43b2b07b4aab30bf9a76b406 + - compiler-rt22 22.1.5 hd34ed20_1 + - libcompiler-rt 22.1.5 hd34ed20_1 + constrains: + - clang 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 16462 + timestamp: 1778193616563 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt22-22.1.5-hd34ed20_1.conda + sha256: 96478509ecb21e4882034351565f756fcc15f7200032539d37baba9bd290c3e5 + md5: 211e29460c00fa540f34f7710d01c2d4 depends: - - __osx >=10.13 - - libcxx >=19 - - r-base >=4.5,<4.6.0a0 - - r-base64enc - - r-digest - - r-ellipsis - - r-fastmap >=1.1.0 - - r-rlang >=0.4.10 - license: GPL-2.0-or-later - license_family: GPL3 - size: 365099 - timestamp: 1764860997569 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-htmltools-0.5.9-r44hc1cd577_0.conda - sha256: 16471413bfcaa22a341dacf627c7f31f035b191286d7764290de94d295f79d24 - md5: 57b1e787a1bb6b9808a4742d841d0535 + - __osx >=11.0 + - compiler-rt22_osx-arm64 22.1.5.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 99528 + timestamp: 1778193615341 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/curl-8.20.0-hd5a2499_0.conda + sha256: 2e531e953f62c6703ab9ea8bd6e62011a1760be0fa808b97ef5f3156956b421e + md5: 88cce35a3cb20623c1bc5be5e4dca9a5 depends: - __osx >=11.0 - - libcxx >=19 - - r-base >=4.4,<4.5.0a0 - - r-base64enc - - r-digest - - r-ellipsis - - r-fastmap >=1.1.0 - - r-rlang >=0.4.10 - license: GPL-2.0-or-later - license_family: GPL3 - size: 366255 - timestamp: 1764861120525 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-htmltools-0.5.9-r45hc1cd577_0.conda - sha256: 3a03c1a57aefc54ba046d070e232958f7af8c13066c878a29b857e41dc601694 - md5: eaaf5ce4bf4665bccd96bb3006f5fd87 + - krb5 >=1.22.2,<1.23.0a0 + - libcurl 8.20.0 hd5a2499_0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + - openssl >=3.5.6,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl + license_family: MIT + size: 179176 + timestamp: 1777462274250 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.20-py314he609de1_0.conda + sha256: 7736a82ebe75c0f3ea6991298363d1f2edb34291f8616c1d3719862881c3a167 + md5: 407c74dc27356ba6bf3a0191070e3ac0 depends: + - python + - python 3.14.* *_cp314 - __osx >=11.0 - libcxx >=19 - - r-base >=4.5,<4.6.0a0 - - r-base64enc - - r-digest - - r-ellipsis - - r-fastmap >=1.1.0 - - r-rlang >=0.4.10 - license: GPL-2.0-or-later - license_family: GPL3 - size: 366381 - timestamp: 1764860872591 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-htmltools-0.5.9-r45hd8a2815_0.conda - sha256: d5412faeb7ea1ace9bafa2753193e4d9556fd991f6f95fc71babc71544f5422a - md5: ea9a67e66b16b93078f7f0ec1cde0b9d - depends: - - libgcc >=14 - - libstdcxx >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - r-base64enc - - r-digest - - r-ellipsis - - r-fastmap >=1.1.0 - - r-rlang >=0.4.10 - - ucrt >=10.0.20348.0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 369048 - timestamp: 1764860707552 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-htmlwidgets-1.6.4-r44h785f33e_4.conda - sha256: a3c4ef0557b5cd2a99cc7a077f058b03ecd3a04d4ecb772ad23415dd0f764a09 - md5: 6f6e7b8b29a134580d4260a33a97b4af - depends: - - r-base >=4.4,<4.5.0a0 - - r-htmltools >=0.5.7 - - r-jsonlite >=0.9.16 - - r-knitr >=1.8 - - r-rmarkdown - - r-yaml + - python_abi 3.14.* *_cp314 license: MIT license_family: MIT - size: 426464 - timestamp: 1757552859822 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-htmlwidgets-1.6.4-r45h785f33e_4.conda - sha256: 4c3998ce4b4882429e52eed5c6c53d59056814d8fbc34a41ba79b990fdec1441 - md5: 6f767715f90e7caf17af72959bfcb11e + size: 2778080 + timestamp: 1769745040206 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.17.1-h2b252f5_0.conda + sha256: 851e9c778bfc54645dcab7038c0383445cbebf16f6bb2d3f62ce422b1605385a + md5: d06ae1a11b46cc4c74177ecd28de7c7a depends: - - r-base >=4.5,<4.6.0a0 - - r-htmltools >=0.5.7 - - r-jsonlite >=0.9.16 - - r-knitr >=1.8 - - r-rmarkdown - - r-yaml + - __osx >=11.0 + - libexpat >=2.7.4,<3.0a0 + - libfreetype >=2.14.1 + - libfreetype6 >=2.14.1 + - libzlib >=1.3.1,<2.0a0 license: MIT license_family: MIT - size: 426023 - timestamp: 1757552859817 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-httpuv-1.6.17-r44h6d565e7_0.conda - sha256: 05fc8b945a8d7e8c6a52b156a4b823fdfe37d504da4cd897b02a1a5c430847fb - md5: 274bdd8ada4d78fe9279f4daf284a706 + size: 237308 + timestamp: 1771382999247 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.16-hc919400_0.conda + sha256: d856dc6744ecfba78c5f7df3378f03a75c911aadac803fa2b41a583667b4b600 + md5: 04bdce8d93a4ed181d1d726163c2d447 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - libuv >=1.51.0,<2.0a0 - - libzlib >=1.3.1,<2.0a0 - - r-base >=4.4,<4.5.0a0 - - r-later >=0.8.0 - - r-promises - - r-r6 - - r-rcpp >=1.0.7 - license: GPL-2.0-or-later - license_family: GPL3 - size: 558237 - timestamp: 1773825455133 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-httpuv-1.6.16-r45hbf875fd_1.conda - sha256: a192fe451445445c1126b2624f649e64ebfdd413e1d5a63d78464b216fe96697 - md5: fbf8c73ee9efcb89a7e13db6803f3710 + - __osx >=11.0 + license: LGPL-2.1-or-later + size: 59391 + timestamp: 1757438897523 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_impl_osx-arm64-14.3.0-h6d03799_1.conda + sha256: c05c634388e180f79c70a5989d2b25977716b7f6d5e395119ad0007cf4a7bcbf + md5: 1e9ec88ecc684d92644a45c6df2399d0 depends: - - __osx >=10.13 - - libcxx >=19 - - libuv >=1.51.0,<2.0a0 + - __osx >=11.0 + - cctools_osx-arm64 + - clang + - gmp >=6.3.0,<7.0a0 + - isl 0.26.* + - libcxx >=17 + - libgfortran-devel_osx-arm64 14.3.0.* + - libgfortran5 >=14.3.0 + - libiconv >=1.18,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - r-base >=4.5,<4.6.0a0 - - r-later >=0.8.0 - - r-promises - - r-r6 - - r-rcpp >=1.0.7 - license: GPL-2.0-or-later - license_family: GPL3 - size: 564849 - timestamp: 1757477965696 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-httpuv-1.6.17-r44h1b96ac6_0.conda - sha256: 3649d467fe30c22b3a1c916360eb299a6dc2aa4b0e75c32a17460fcca9a65d89 - md5: 7205f3b9873f5189c122429dc75644cd + - 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: 20286770 + timestamp: 1759712171482 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_osx-arm64-14.3.0-h3c33bd0_0.conda + sha256: 2644e5f4b4eed171b12afb299e2413be5877db92f30ec03690621d1ae648502c + md5: 8db8c0061c0f3701444b7b9cc9966511 + depends: + - cctools_osx-arm64 + - clang + - clang_osx-arm64 + - gfortran_impl_osx-arm64 14.3.0 + - ld64_osx-arm64 + - libgfortran + - libgfortran-devel_osx-arm64 14.3.0 + - libgfortran5 >=14.3.0 + license: GPL-3.0-or-later WITH GCC-exception-3.1 + license_family: GPL + size: 35951 + timestamp: 1751220424258 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda + sha256: 76e222e072d61c840f64a44e0580c2503562b009090f55aa45053bf1ccb385dd + md5: eed7278dfbab727b56f2c0b64330814b depends: - __osx >=11.0 - - libcxx >=19 - - libuv >=1.51.0,<2.0a0 - - libzlib >=1.3.1,<2.0a0 - - r-base >=4.4,<4.5.0a0 - - r-later >=0.8.0 - - r-promises - - r-r6 - - r-rcpp >=1.0.7 - license: GPL-2.0-or-later - license_family: GPL3 - size: 571582 - timestamp: 1773825979461 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-httpuv-1.6.17-r45h68b42e3_0.conda - sha256: b6ff48cb7376368420c4bb7b6db2158eee3677742d8cd61a8fb13a933a426ea9 - md5: bf7e0ae3c42403a6a39737a5a5e5c922 + - libcxx >=16 + license: GPL-2.0-or-later OR LGPL-3.0-or-later + size: 365188 + timestamp: 1718981343258 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.14-hec049ff_2.conda + sha256: c507ae9989dbea7024aa6feaebb16cbf271faac67ac3f0342ef1ab747c20475d + md5: 0fc46fee39e88bbcf5835f71a9d9a209 depends: - - libgcc >=14 - - libstdcxx >=14 - - libuv >=1.51.0,<2.0a0 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - libzlib >=1.3.1,<2.0a0 - - r-base >=4.5,<4.6.0a0 - - r-later >=0.8.0 - - r-promises - - r-r6 - - r-rcpp >=1.0.7 - - ucrt >=10.0.20348.0 - license: GPL-2.0-or-later - license_family: GPL3 - size: 532895 - timestamp: 1773825689896 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-httr2-1.2.2-r44hc72bb7e_0.conda - sha256: 65e61425e9582d6de902aa876c7930455d61fc1c6d79b8d38baadd7852ce5230 - md5: 13bb31b3aecd2ceabd4f84b16b52e7a8 + - __osx >=11.0 + - libcxx >=19 + license: LGPL-2.0-or-later + license_family: LGPL + size: 81202 + timestamp: 1755102333712 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gsl-2.7-h6e638da_0.tar.bz2 + sha256: 979c2976adcfc70be997abeab2ed8395f9ac2b836bdcd25ed5d2efbf1fed226b + md5: 2a2126a940e033e7225a5dc7215eea9a depends: - - r-base >=4.4,<4.5.0a0 - - r-cli >=3.0.0 - - r-curl >=5.1.0 - - r-glue - - r-lifecycle - - r-magrittr - - r-openssl - - r-r6 - - r-rappdirs - - r-rlang >=1.1.0 - - r-vctrs >=0.6.3 - - r-withr + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + license: GPL-3.0-or-later + license_family: GPL + size: 2734398 + timestamp: 1626369562748 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-14.2.0-h3103d1b_0.conda + sha256: 40ccd6a589c60a4cedb2f9921dfa60ea5845b5ce323477b042b6f90218b239f6 + md5: ea75b03886981362d93bb4708ee14811 + depends: + - __osx >=11.0 + - cairo >=1.18.4,<2.0a0 + - graphite2 >=1.3.14,<2.0a0 + - icu >=78.3,<79.0a0 + - libcxx >=19 + - libexpat >=2.7.5,<3.0a0 + - libfreetype >=2.14.3 + - libfreetype6 >=2.14.3 + - libglib >=2.86.4,<3.0a0 + - libzlib >=1.3.2,<2.0a0 license: MIT license_family: MIT - size: 786736 - timestamp: 1765189872233 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-httr2-1.2.2-r45hc72bb7e_0.conda - sha256: b7a0dce6bbc69d504ac4398d7d7d4831c59389fcd193d5eaa77ba81169abe80d - md5: 37b687ccc11cd808f45e2efbc6e8e78a + size: 2023669 + timestamp: 1776779039314 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-78.3-hef89b57_0.conda + sha256: 3a7907a17e9937d3a46dfd41cffaf815abad59a569440d1e25177c15fd0684e5 + md5: f1182c91c0de31a7abd40cedf6a5ebef depends: - - r-base >=4.5,<4.6.0a0 - - r-cli >=3.0.0 - - r-curl >=5.1.0 - - r-glue - - r-lifecycle - - r-magrittr - - r-openssl - - r-r6 - - r-rappdirs - - r-rlang >=1.1.0 - - r-vctrs >=0.6.3 - - r-withr + - __osx >=11.0 license: MIT license_family: MIT - size: 786857 - timestamp: 1765189940950 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-ini-0.3.1-r44hc72bb7e_1007.conda - sha256: 92966144b62900f7dfeed776e1c90ae41f8da7b9c08bf3358758d54f3005877b - md5: 264bb3ce980241f17a1b4875e8945896 - depends: - - r-base >=4.4,<4.5.0a0 - license: GPL-3.0-only - license_family: GPL3 - size: 33543 - timestamp: 1757482002536 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-ini-0.3.1-r45hc72bb7e_1007.conda - sha256: 72ee2282467c148463ba8e8a8af4b5a6fdccd98e38b0820f442af187fcabbb13 - md5: e680ce2dae5ccc37ed94fc0696e6f10d - depends: - - r-base >=4.5,<4.6.0a0 - license: GPL-3.0-only - license_family: GPL3 - size: 33444 - timestamp: 1757482041715 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r44hd8ed1ab_4.conda - sha256: 3affe26f467278666a7da779d05c4118e3ccf931fa7fd0c6caef4ee722a0a0c6 - md5: 3d8d2be587e75207ead1f2534af2181f + size: 12361647 + timestamp: 1773822915649 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/isl-0.26-imath32_h347afa1_101.conda + sha256: fc9272371750c56908b8e535755b1e23cf7803a2cc4a7d9ae539347baa14f740 + md5: e80e44a3f4862b1da870dc0557f8cf3b depends: - - r-base >=4.4,<4.5.0a0 - - r-repr + - libcxx >=14.0.6 + track_features: + - isl_imath-32 license: MIT license_family: MIT - size: 39960 - timestamp: 1757658390821 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-irdisplay-1.1-r45hd8ed1ab_4.conda - sha256: df6bf7dc11b49c96a8238459db5e8e883ce8eb4bbcf5497f57fc461cea517b71 - md5: d6ca14e639c018bbdaa60e000c81552c + size: 819937 + timestamp: 1680649567633 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.22.2-h385eeb1_0.conda + sha256: c0a0bf028fe7f3defcdcaa464e536cf1b202d07451e18ad83fdd169d15bef6ed + md5: e446e1822f4da8e5080a9de93474184d depends: - - r-base >=4.5,<4.6.0a0 - - r-repr + - __osx >=11.0 + - libcxx >=19 + - libedit >=3.1.20250104,<3.2.0a0 + - libedit >=3.1.20250104,<4.0a0 + - openssl >=3.5.5,<4.0a0 license: MIT license_family: MIT - size: 39908 - timestamp: 1757658385868 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-jquerylib-0.1.4-r44hc72bb7e_4.conda - sha256: 95989e7eea19dd3a0c729585a20555388537dc033df120bb7baac26601232f75 - md5: 24ba3d3b0b5d5c19fc549cca0b226388 + size: 1160828 + timestamp: 1769770119811 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-956.6-llvm22_1_h5b97f1b_4.conda + sha256: 405f08540aedb58fa070b097143b3fe0fcb2b92e3b4aca723780e2f3d754803b + md5: 8254e40b35e6c3159de53275801a6ebc depends: - - r-base >=4.4,<4.5.0a0 - - r-htmltools - license: MIT + - ld64_osx-arm64 956.6 llvm22_1_h692d5aa_4 + - libllvm22 >=22.1.0,<22.2.0a0 + constrains: + - cctools_osx-arm64 1030.6.3.* + - cctools 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 21907 + timestamp: 1772019717408 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-956.6-llvm22_1_h692d5aa_4.conda + sha256: e4ae2ef85672c094aa3467d466f932ccdc1dda9bd4adac64f4252cc796149091 + md5: 4c2255bf859bff6c52ed38960e3bc963 + depends: + - __osx >=11.0 + - libcxx + - libllvm22 >=22.1.0,<22.2.0a0 + - sigtool-codesign + - tapi >=1600.0.11.8,<1601.0a0 + constrains: + - clang 22.1.* + - ld64 956.6.* + - cctools_impl_osx-arm64 1030.6.3.* + - cctools 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 1038027 + timestamp: 1772019602406 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.1.0-h1eee2c3_0.conda + sha256: 66e5ffd301a44da696f3efc2f25d6d94f42a9adc0db06c44ad753ab844148c51 + md5: 095e5749868adab9cae42d4b460e5443 + depends: + - __osx >=11.0 + - libcxx >=19 + license: Apache-2.0 + license_family: Apache + size: 164222 + timestamp: 1773114244984 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-0.25.1-h493aca8_0.conda + sha256: 7265547424e978ea596f51cc8e7b81638fb1c660b743e98cc4deb690d9d524ab + md5: 0deb80a2d6097c5fb98b495370b2435b + depends: + - __osx >=11.0 + - libcxx >=18 + license: LGPL-2.1-or-later + size: 52316 + timestamp: 1751558366611 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.11.0-7_h51639a9_openblas.conda + build_number: 7 + sha256: 662935bfb93d2d097e26e273a3a2f504a9f833f64aa6f9e295b577655478c39b + md5: ab6670d099d19fe70cb9efb88a1b5f78 + depends: + - libopenblas >=0.3.33,<0.3.34.0a0 + - libopenblas >=0.3.33,<1.0a0 + constrains: + - libcblas 3.11.0 7*_openblas + - blas 2.307 openblas + - mkl <2027 + - liblapack 3.11.0 7*_openblas + - liblapacke 3.11.0 7*_openblas + license: BSD-3-Clause + license_family: BSD + size: 18783 + timestamp: 1778489983152 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.11.0-7_hb0561ab_openblas.conda + build_number: 7 + sha256: 3ac3d27022b3ca8b1980c087e0ede250434f6ed90a4fdc78a8a5ed382bc75505 + md5: 189b373453ec3904095dcb16f502bace + depends: + - libblas 3.11.0 7_h51639a9_openblas + constrains: + - blas 2.307 openblas + - liblapack 3.11.0 7*_openblas + - liblapacke 3.11.0 7*_openblas + license: BSD-3-Clause + license_family: BSD + size: 18810 + timestamp: 1778489991330 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp22.1-22.1.5-default_h8e162e0_1.conda + sha256: e55e200773e111b021ff60bb47d69033204f9b48590a00e439646968757c4504 + md5: 091664d061ddbca7594cd306fe82d648 + depends: + - __osx >=11.0 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 14186675 + timestamp: 1778476259538 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-22.1.5-default_h6dd9417_1.conda + sha256: d1f50e70f2276dec7d7b0595769deec791080c77e5fb8585d287973305bd6277 + md5: 98ecd7b37d923081e402c3c2f6e39008 + depends: + - __osx >=11.0 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 8936209 + timestamp: 1778476466526 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcompiler-rt-22.1.5-hd34ed20_1.conda + sha256: 4be653c88cce088080b1b47e3a7a4f3cb85a1d7a8103d9ac4db22e8cf65c624e + md5: 4104db0e6821aa62e2eb48a65e06da24 + depends: + - __osx >=11.0 + constrains: + - compiler-rt >=9.0.1 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 1376087 + timestamp: 1778193605976 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.20.0-hd5a2499_0.conda + sha256: 38c0bc634b61e542776e97cfd15d5d41edd304d4e47c333004d2d622439b2381 + md5: 2f57b7d0c6adda88957586b7afd78438 + depends: + - __osx >=11.0 + - krb5 >=1.22.2,<1.23.0a0 + - libnghttp2 >=1.68.1,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + - openssl >=3.5.6,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl license_family: MIT - size: 306791 - timestamp: 1757459450146 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-jquerylib-0.1.4-r45hc72bb7e_4.conda - sha256: 3b98f72bb32d4758854805b664b4404602a583da32c9b96026536f5676f41812 - md5: 49a9ed6ed01f4ae6067ead552795bfce + size: 400568 + timestamp: 1777462251987 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-22.1.6-h55c6f16_0.conda + sha256: 3e2f8ad32ddab88c5114b9aa2160f8c129f515df0e551d0d86ef5744446afdbd + md5: 589cc6f6222fdc0eaf8e90bc38fcce7b + depends: + - __osx >=11.0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 570038 + timestamp: 1779253025527 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-22.1.6-h6dc3340_0.conda + sha256: 9f492fc20a9c7345c8964b4df706083a10da3370811ffc2e2429a8377581969b + md5: d96496429ff39b0dda7e8f3671c14ffa + depends: + - libcxx >=22.1.6 + - libcxx-headers >=22.1.6,<22.1.7.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 22281 + timestamp: 1779253038577 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.25-hc11a715_0.conda + sha256: 5e0b6961be3304a5f027a8c00bd0967fc46ae162cffb7553ff45c70f51b8314c + md5: a6130c709305cd9828b4e1bd9ba0000c depends: - - r-base >=4.5,<4.6.0a0 - - r-htmltools + - __osx >=11.0 license: MIT license_family: MIT - size: 307113 - timestamp: 1757459485295 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-jsonlite-2.0.0-r44h54b55ab_1.conda - sha256: faff2faef7e73c5fd02fea6bbe8aa9e444fabf7f56e8d932c7babc51ee76a290 - md5: 26de9e385370e6bf7d0ca13a3e630d7f + size: 55420 + timestamp: 1761980066242 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda + sha256: 66aa216a403de0bb0c1340a88d1a06adaff66bae2cfd196731aa24db9859d631 + md5: 44083d2d2c2025afca315c7a172eab2b depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: MIT - size: 639260 - timestamp: 1757419504603 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-jsonlite-2.0.0-r45h54b55ab_1.conda - sha256: bd24c57226192b0decdcddd6fd5fa74db1f29685904e4aff87f2c16eb6493416 - md5: 026c72026f431daf8a5719e09e704faa + - ncurses + - __osx >=11.0 + - ncurses >=6.5,<7.0a0 + license: BSD-2-Clause + license_family: BSD + size: 107691 + timestamp: 1738479560845 +- conda: 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 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.8.1-hf6b4638_0.conda + sha256: 3133fb6bfa871288b92c8b8752696686a841bf4ffe035aa3038033c9e15b738e + md5: ef22e9ab1dc7c2f334252f565f90b3b8 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.5,<4.6.0a0 + - __osx >=11.0 + constrains: + - expat 2.8.1.* license: MIT license_family: MIT - size: 638574 - timestamp: 1757419590757 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-jsonlite-2.0.0-r45h735ac91_1.conda - sha256: 946a4ec93b63fce4bdbcf02906b76c3affc9f3d79168c1cf0d9f4ade78900b63 - md5: 7e8b67b354cc466cc7e4e173da928059 + size: 69110 + timestamp: 1779278728511 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-hcf2aa1b_0.conda + sha256: 6686a26466a527585e6a75cc2a242bf4a3d97d6d6c86424a441677917f28bec7 + md5: 43c04d9cb46ef176bb2a4c77e324d599 depends: - - __osx >=10.13 - - r-base >=4.5,<4.6.0a0 + - __osx >=11.0 license: MIT license_family: MIT - size: 635014 - timestamp: 1757419891236 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-jsonlite-2.0.0-r44h6168396_1.conda - sha256: eda247436019daba0951da897d28d788a93230b3d621a7bf88a125d66ae62e0c - md5: ba74496412d0d7d6b463be89badd3bbd + size: 40979 + timestamp: 1769456747661 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype-2.14.3-hce30654_0.conda + sha256: a047a2f238362a37d484f9620e8cba29f513a933cd9eb68571ad4b270d6f8f3e + md5: f73b109d49568d5d1dda43bb147ae37f + depends: + - libfreetype6 >=2.14.3 + license: GPL-2.0-only OR FTL + size: 8091 + timestamp: 1774298691258 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libfreetype6-2.14.3-hdfa99f5_0.conda + sha256: ff764608e1f2839e95e2cf9b243681475f8778c36af7a42b3f78f476fdbb1dd3 + md5: e98ba7b5f09a5f450eca083d5a1c4649 depends: - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: MIT - size: 635615 - timestamp: 1757420155302 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-jsonlite-2.0.0-r45h6168396_1.conda - sha256: 7cc98177682b34e33f3fe4f216694f04f1b519928ea5ead7876dc1b12858f49f - md5: 16f0458678d7fd9d7237e9e330a35ad1 + - libpng >=1.6.55,<1.7.0a0 + - libzlib >=1.3.2,<2.0a0 + constrains: + - freetype >=2.14.3 + license: GPL-2.0-only OR FTL + size: 338085 + timestamp: 1774298689297 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgcc-15.2.0-hcbb3090_19.conda + sha256: 06644fa4d34d57c9e48f4d84b1256f9e5f654fdb37f43acc8a58a396952d42b7 + md5: 644058123986582db33aebd4ae2ca184 + depends: + - _openmp_mutex + constrains: + - libgcc-ng ==15.2.0=*_19 + - libgomp 15.2.0 19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 404080 + timestamp: 1778273064154 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-0.25.1-h493aca8_0.conda + sha256: 3ba35ff26b3b9573b5df5b9bbec5c61476157ec3a9f12c698e2a9350cd4338fd + md5: 98acd9989d0d8d5914ccc86dceb6c6c2 depends: - __osx >=11.0 - - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 634332 - timestamp: 1757419931615 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-jsonlite-2.0.0-r45heceb674_1.conda - sha256: f3ca1bd7e0aadf856958e465ec186a301c9b2bfd54ea61ce23adaa2277b86373 - md5: 35cb191fa8aa28a6edb5ed54246709e6 + - libiconv >=1.18,<2.0a0 + - libintl 0.25.1 h493aca8_0 + license: GPL-3.0-or-later + license_family: GPL + size: 183091 + timestamp: 1751558452316 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-15.2.0-h07b0088_19.conda + sha256: d4837b3b9b30af3132d260225e91ab9dde83be04c59513f500cc81050fb37486 + md5: 1ea03f87cdb1078fbc0e2b2deb63752c depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 661158 - timestamp: 1757419686337 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-knitr-1.51-r44hc72bb7e_0.conda - sha256: 761e5fee34951b9aa70382e8a176e4d57bd3d8d722c40c3922962fa89fca8c1e - md5: eac85b15645e954143a8d382ade0ec8b + - libgfortran5 15.2.0 hdae7583_19 + constrains: + - libgfortran-ng ==15.2.0=*_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 139675 + timestamp: 1778273280875 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-15.2.0-hdae7583_19.conda + sha256: d0a68b7a121d115b80c169e24d1265dcc25a3fe58d107df1bbc430797e226d88 + md5: ba36d8c606a6a53fe0b8c12d47267b3d depends: - - r-base >=4.4,<4.5.0a0 - - r-evaluate >=0.15 - - r-highr >=0.11 - - r-xfun >=0.52 - - r-yaml >=2.1.19 - license: GPL-2.0-or-later + - libgcc >=15.2.0 + constrains: + - libgfortran 15.2.0 + license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL - size: 989462 - timestamp: 1766309367072 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-knitr-1.51-r45hc72bb7e_0.conda - sha256: e2184f1cb58aedacd94d1dbe6e8b5dfa3508151f454e80f6bd49486bdb90625c - md5: 35b31b96aa7bc052ad6347322a1481f1 + size: 599691 + timestamp: 1778273075448 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgit2-1.9.3-h9a1894c_0.conda + sha256: f77f79dad35eba3728803d0d5be27b1e9ed1f32be612dd3e4f3cf38910da01be + md5: 7bf9330f957ad1b2bfd134430efb815c depends: - - r-base >=4.5,<4.6.0a0 - - r-evaluate >=0.15 - - r-highr >=0.11 - - r-xfun >=0.52 - - r-yaml >=2.1.19 - license: GPL-2.0-or-later + - __osx >=11.0 + - libcxx >=19 + - libzlib >=1.3.2,<2.0a0 + - libiconv >=1.18,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - openssl >=3.5.6,<4.0a0 + - pcre2 >=10.47,<10.48.0a0 + license: GPL-2.0-only WITH GCC-exception-2.0 license_family: GPL - size: 988526 - timestamp: 1766309267127 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-later-1.4.8-r44h3697838_0.conda - sha256: daada7549cf07a0da6bafc41a8c02365b34b333671aab85ca0478ff57812f1b4 - md5: bdf7f2670f423c68c2f851bfd45c3cba + size: 838555 + timestamp: 1777944460009 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.88.1-ha08bb59_2.conda + sha256: 3b32a7a710132d509f2ea38b2f0384414c863533e0fc7ac71b6a0763e4c67424 + md5: 62d6f3b832d7d79ae0c0aa1bb3c325fa + depends: + - __osx >=11.0 + - libintl >=0.25.1,<1.0a0 + - libffi >=3.5.2,<3.6.0a0 + - pcre2 >=10.47,<10.48.0a0 + - libiconv >=1.18,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + constrains: + - glib >2.66 + license: LGPL-2.1-or-later + size: 4439458 + timestamp: 1778508895255 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.18-h23cfdf5_2.conda + sha256: de0336e800b2af9a40bdd694b03870ac4a848161b35c8a2325704f123f185f03 + md5: 4d5a7445f0b25b6a3ddbb56e790f5251 + depends: + - __osx >=11.0 + license: LGPL-2.1-only + size: 750379 + timestamp: 1754909073836 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.25.1-h493aca8_0.conda + sha256: 99d2cebcd8f84961b86784451b010f5f0a795ed1c08f1e7c76fbb3c22abf021a + md5: 5103f6a6b210a3912faf8d7db516918c + depends: + - __osx >=11.0 + - libiconv >=1.18,<2.0a0 + license: LGPL-2.1-or-later + size: 90957 + timestamp: 1751558394144 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.1.4.1-h84a0fba_0.conda + sha256: 17e035ae6a520ff6a6bb5dd93a4a7c3895891f4f9743bcb8c6ef607445a31cd0 + md5: b8a7544c83a67258b0e8592ec6a5d322 + depends: + - __osx >=11.0 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 555681 + timestamp: 1775962975624 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.11.0-7_hd9741b5_openblas.conda + build_number: 7 + sha256: ff3018918ca8b22173dcb231842e819767fd05a08df61483eb5f3e9f2895d114 + md5: d1289ad41d5a78e2269eea3a2d7f0c7d + depends: + - libblas 3.11.0 7_h51639a9_openblas + constrains: + - libcblas 3.11.0 7*_openblas + - blas 2.307 openblas + - liblapacke 3.11.0 7*_openblas + license: BSD-3-Clause + license_family: BSD + size: 18780 + timestamp: 1778490000843 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm22-22.1.5-h89af1be_1.conda + sha256: 23dec5565018f13742b63cdc401d403411fc68713bc6f49dab3854fd4fc4fcc3 + md5: 2d7889ebb30d8b3425e369f4f262a789 + depends: + - __osx >=11.0 + - libcxx >=19 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.2,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 30038795 + timestamp: 1778412238119 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.3-h8088a28_0.conda + sha256: 34878d87275c298f1a732c6806349125cebbf340d24c6c23727268184bba051e + md5: b1fd823b5ae54fbec272cea0811bd8a9 + depends: + - __osx >=11.0 + constrains: + - xz 5.8.3.* + license: 0BSD + size: 92472 + timestamp: 1775825802659 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h84a0fba_1.conda + sha256: 1089c7f15d5b62c622625ec6700732ece83be8b705da8c6607f4dabb0c4bd6d2 + md5: 57c4be259f5e0b99a5983799a228ae55 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 - - r-rcpp >=0.12.9 - - r-rlang - license: MIT - license_family: MIT - size: 153587 - timestamp: 1772707291730 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-later-1.4.8-r45h384437d_0.conda - sha256: faeca62a6951609357421d8f040dd3cb7662a5cb0433470b39328a4b04bdbb06 - md5: ce35eab1a0587d8512484083d1db3a05 + - __osx >=11.0 + license: BSD-2-Clause + license_family: BSD + size: 73690 + timestamp: 1769482560514 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.68.1-h8f3e76b_0.conda + sha256: 2bc7bc3978066f2c274ebcbf711850cc9ab92e023e433b9631958a098d11e10a + md5: 6ea18834adbc3b33df9bd9fb45eaf95b depends: - __osx >=11.0 + - c-ares >=1.34.6,<2.0a0 - libcxx >=19 - - r-base >=4.5,<4.6.0a0 - - r-rcpp >=0.12.9 - - r-rlang + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.5,<4.0a0 license: MIT license_family: MIT - size: 137596 - timestamp: 1772708013361 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-later-1.4.8-r44h1380947_0.conda - sha256: e526320fe09d33bd459b2c87cef0dc5e67b6409de6b84a3e6b51737d5bb2dcc6 - md5: b4671b36b1db0fdd53b7ff3acfdaa2c2 + size: 576526 + timestamp: 1773854624224 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.33-openmp_he657e61_0.conda + sha256: 9dd455b2d172aeedfa2058d324b5b5822b0bc1b7c1f32cd183d7078540d2f6eb + md5: 909e41855c29f0d52ae630198cd57135 depends: - __osx >=11.0 - - libcxx >=19 - - r-base >=4.4,<4.5.0a0 - - r-rcpp >=0.12.9 - - r-rlang - license: MIT - license_family: MIT - size: 133659 - timestamp: 1772708262450 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-later-1.4.8-r45hd8a2815_0.conda - sha256: 13037ea5a3b395f834428ec0a398801658669009c784fa3f14a20bb63b6872cf - md5: c5b82f87eaeafae39c8d44440a65ce10 + - libgfortran + - libgfortran5 >=14.3.0 + - llvm-openmp >=19.1.7 + constrains: + - openblas >=0.3.33,<0.3.34.0a0 + license: BSD-3-Clause + license_family: BSD + size: 4304965 + timestamp: 1776995497368 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.58-h132b30e_0.conda + sha256: 66eae34546df1f098a67064970c92aa14ae7a7505091889e00468294d2882c36 + md5: 2259ae0949dbe20c0665850365109b27 depends: - - libgcc >=14 - - libstdcxx >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - r-rcpp >=0.12.9 - - r-rlang - - ucrt >=10.0.20348.0 + - __osx >=11.0 + - libzlib >=1.3.2,<2.0a0 + license: zlib-acknowledgement + size: 289546 + timestamp: 1776315246750 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsigtool-0.1.3-h98dc951_0.conda + sha256: 421f7bd7caaa945d9cd5d374cc3f01e75637ca7372a32d5e7695c825a48a30d1 + md5: c08557d00807785decafb932b5be7ef5 + depends: + - __osx >=11.0 + - openssl >=3.5.4,<4.0a0 license: MIT license_family: MIT - size: 148172 - timestamp: 1772707512494 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r44hc72bb7e_0.conda - sha256: 872d78ae8959050dd75e20633a33943e1a93244909bbc20fb65ca6864d6ee694 - md5: 95dd0aa693924627e51f312be131e942 + size: 36416 + timestamp: 1767045062496 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.22-h1a92334_1.conda + sha256: 202be45db5726757a8ea1f374f85aacc18c504f5ff15b2558496dff4c8779c48 + md5: 9ed5ab909c449bdcae72322e44875a18 depends: - - r-base >=4.4,<4.5.0a0 - - r-cli >=3.4.0 - - r-glue - - r-rlang >=1.0.6 - license: MIT - license_family: GPL3 - size: 132074 - timestamp: 1767865659674 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-lifecycle-1.0.5-r45hc72bb7e_0.conda - sha256: b7a4d8d98a96d17d18c80fb7e1c8e6cb09b9bd2542e74d91a7f483afccb30ee6 - md5: 5f8369dfbdff08878e58bf15529fca3a + - __osx >=11.0 + license: ISC + size: 247352 + timestamp: 1779164136206 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.53.1-h1b79a29_0.conda + sha256: 49daec7c83e70d4efc17b813547824bc2bcf2f7256d84061d24fbfe537da9f74 + md5: 6681822ea9d362953206352371b6a904 depends: - - r-base >=4.5,<4.6.0a0 - - r-cli >=3.4.0 - - r-glue - - r-rlang >=1.0.6 - license: MIT - license_family: GPL3 - size: 132636 - timestamp: 1767865665455 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-lpsolve-5.6.23-r44h54b55ab_1.conda - sha256: 71093079c31fcba8665f0fff6c1eab5c473bee2459a01810d666bd6d13859973 - md5: 4bc7fd5dbe3cda23aa4024771c938796 + - __osx >=11.0 + - libzlib >=1.3.2,<2.0a0 + license: blessing + size: 920047 + timestamp: 1777987051643 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h1590b86_0.conda + sha256: 8bfe837221390ffc6f111ecca24fa12d4a6325da0c8d131333d63d6c37f27e0a + md5: b68e8f66b94b44aaa8de4583d3d4cc40 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - license: LGPL-2.0-only - license_family: LGPL - size: 378284 - timestamp: 1757495637197 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-lpsolve-5.6.23-r45h735ac91_1.conda - sha256: 54bd07b8a81bc8c77d30c44fa3096c26148d0f4ccf6cd6f68c6ba30649d08669 - md5: 67605399b1fc70a9753236e67c0ae6c9 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 279193 + timestamp: 1745608793272 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.1-h4030677_1.conda + sha256: e9248077b3fa63db94caca42c8dbc6949c6f32f94d1cafad127f9005d9b1507f + md5: e2a72ab2fa54ecb6abab2b26cde93500 depends: - - __osx >=10.13 - - r-base >=4.5,<4.6.0a0 - license: LGPL-2.0-only - license_family: LGPL - size: 365672 - timestamp: 1757495912614 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-lpsolve-5.6.23-r44h6168396_1.conda - sha256: 6ff295f3600e7e3a6db16a1e07595b5fd5f22e7cacddb5a398bc022e0f63cc19 - md5: a8d2524bf6ff23621c94227f6a2818eb + - __osx >=11.0 + - lerc >=4.0.0,<5.0a0 + - libcxx >=19 + - libdeflate >=1.25,<1.26.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libwebp-base >=1.6.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: HPND + size: 373892 + timestamp: 1762022345545 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.51.0-h6caf38d_1.conda + sha256: 042c7488ad97a5629ec0a991a8b2a3345599401ecc75ad6a5af73b60e6db9689 + md5: c0d87c3c8e075daf1daf6c31b53e8083 depends: - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - license: LGPL-2.0-only - license_family: LGPL - size: 318918 - timestamp: 1757496016328 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-lpsolve-5.6.23-r45heceb674_1.conda - sha256: c4b8f2897be522fdc1e7d932743b8c6fb09ba30aa12f67f31e355740427a0427 - md5: 9804ab0354b384a4699ae1aeb0c875ca + license: MIT + license_family: MIT + size: 421195 + timestamp: 1753948426421 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.6.0-h07db88b_0.conda + sha256: a4de3f371bb7ada325e1f27a4ef7bcc81b2b6a330e46fac9c2f78ac0755ea3dd + md5: e5e7d467f80da752be17796b87fe6385 depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: LGPL-2.0-only - license_family: LGPL - size: 333415 - timestamp: 1757495986794 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-magrittr-2.0.5-r44h54b55ab_0.conda - sha256: a827edd45d915ca2e5a950a940cdc0e0f5288c3de6d63d7e6f887e9e8ec0d8e3 - md5: 6ff0837b78eb1c0d443eab95c7255089 + - __osx >=11.0 + constrains: + - libwebp 1.6.0 + license: BSD-3-Clause + license_family: BSD + size: 294974 + timestamp: 1752159906788 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-16-2.15.3-h5ef1a60_0.conda + sha256: ff75b84cdb9e8d123db2fa694a8ac2c2059516b6cbc98ac21fb68e235d0fd354 + md5: 19edaa53885fc8205614b03da2482282 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 + - __osx >=11.0 + - icu >=78.3,<79.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.3,<6.0a0 + - libzlib >=1.3.2,<2.0a0 + constrains: + - libxml2 2.15.3 license: MIT license_family: MIT - size: 211764 - timestamp: 1775298614193 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-magrittr-2.0.5-r45h8eed41d_0.conda - sha256: 3f5d7916f8c7a209a41c41581170bfcaca5242d036c8619f0d021f25ef454c01 - md5: f5a0df07890d26bdb982b0ecb9e3e7b9 + size: 466360 + timestamp: 1776377102261 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.15.3-h5654f7c_0.conda + sha256: 2fe1d8de0854342ae9cabe408b476935f82f5636e153b3b497456264dc8ff3a1 + md5: 8e037d73747d6fe34e12d7bcac10cf21 depends: - __osx >=11.0 - - r-base >=4.5,<4.6.0a0 + - icu >=78.3,<79.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.3,<6.0a0 + - libxml2-16 2.15.3 h5ef1a60_0 + - libzlib >=1.3.2,<2.0a0 license: MIT license_family: MIT - size: 209728 - timestamp: 1775298921562 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-magrittr-2.0.5-r44hbe92478_0.conda - sha256: 3307560747b5fda8d3a4475bae40e5a4cfea9f4f92221c8e5a018a7cad1dba17 - md5: 89a513908036c039689914f74f817b5e + size: 41102 + timestamp: 1776377119495 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.2-h8088a28_2.conda + sha256: 361415a698514b19a852f5d1123c5da746d4642139904156ddfca7c922d23a05 + md5: bc5a5721b6439f2f62a84f2548136082 + depends: + - __osx >=11.0 + constrains: + - zlib 1.3.2 *_2 + license: Zlib + license_family: Other + size: 47759 + timestamp: 1774072956767 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-22.1.6-hc7d1edf_0.conda + sha256: 12d3652549a9abd30f3cc14797715327b86e91001d11865106eb3e02c40be9da + md5: b8cf70b77b2ed10d5f82e367c327b76b + depends: + - __osx >=11.0 + constrains: + - openmp 22.1.6|22.1.6.* + - intel-openmp <0.0a0 + license: Apache-2.0 WITH LLVM-exception + size: 284850 + timestamp: 1779340584016 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-22-22.1.5-hb545844_1.conda + sha256: b07a4e463a52e5a1bdaf9ca413a6495fa46aa1446ceadd6ba1ff168f386716e5 + md5: c33fcec235638c72a2084657b038c541 depends: - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: MIT - size: 211263 - timestamp: 1775299093094 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-magrittr-2.0.5-r45heceb674_0.conda - sha256: 9f4b625d95085fc6eb77c306b15b7da19d1f245d43439dc20fe23b2db536c075 - md5: f166a0d9045d1b8049a69b52e22e7176 + - libcxx >=19 + - libllvm22 22.1.5 h89af1be_1 + - libzlib >=1.3.2,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 17835396 + timestamp: 1778412358363 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-22.1.5-hd34ed20_1.conda + sha256: 9e791556dddfd53363732fa369655536c21f7492d0ff35587172b810d8d9fad4 + md5: 9db24df0a236587f7fd247cbc6f66d92 depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 214713 - timestamp: 1775298839888 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-memoise-2.0.1-r44hc72bb7e_4.conda - sha256: 67f584820d51e2a121bc7113365733b9d00dee2f270113cb212d1ecfd0e7b038 - md5: eea36c929b57cf85e2a263ccdf265094 + - __osx >=11.0 + - libllvm22 22.1.5 h89af1be_1 + - llvm-tools-22 22.1.5 hb545844_1 + constrains: + - llvm 22.1.5 + - clang 22.1.5 + - clang-tools 22.1.5 + - llvmdev 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 52214 + timestamp: 1778412425638 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/make-4.4.1-hc9fafa5_2.conda + sha256: 90ca65e788406d9029ae23ad4bd944a8b5353ad5f59bd6ce326f980cde46f37e + md5: 9f44ef1fea0a25d6a3491c58f3af8460 depends: - - r-base >=4.4,<4.5.0a0 - - r-cachem - - r-rlang >=0.4.10 - license: MIT - license_family: MIT - size: 57725 - timestamp: 1757456205848 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-memoise-2.0.1-r45hc72bb7e_4.conda - sha256: 91b0eedec5cf5de195b442b97eda508f22fdedbdbc487f74e3868d3e95380fdd - md5: 2b04206ff6ea5a92e8e36bdaa5feb3cc + - __osx >=11.0 + license: GPL-3.0-or-later + license_family: GPL + size: 274048 + timestamp: 1727801725384 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.3-py314h6e9b3f0_1.conda + sha256: 411153d14ee0d98be6e3751cf5cc0502db17bce2deebebb8779e33d29d0e525f + md5: d33c0a15882b70255abdd54711b06a45 depends: - - r-base >=4.5,<4.6.0a0 - - r-cachem - - r-rlang >=0.4.10 - license: MIT - license_family: MIT - size: 57750 - timestamp: 1757456335587 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-mime-0.13-r44h54b55ab_1.conda - sha256: 42f450eed2f6b97ff219c8e97885ee982101392f2a5a888e0469d771f74afe6c - md5: d8865c99150c4b51a50292a3c5bc52dd + - __osx >=11.0 + - python >=3.14,<3.15.0a0 + - python >=3.14,<3.15.0a0 *_cp314 + - python_abi 3.14.* *_cp314 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 27256 + timestamp: 1772445397216 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.4.0-h169892a_0.conda + sha256: a9774664adea222e4165efddcd902641c03c7d08fda3a83a5b0885e675ead309 + md5: 2845c3a1d0d8da1db92aba8323892475 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - license: GPL-2.0-or-later - license_family: GPL - size: 64976 - timestamp: 1757441391748 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-mime-0.13-r45h735ac91_1.conda - sha256: c7b965672a92fa509351845766f80aa72b8cca8db4b3780608539a99c7e1531b - md5: 39017255466bad2f1c117e7cd75c9314 + - __osx >=11.0 + - gmp >=6.3.0,<7.0a0 + - mpfr >=4.2.2,<5.0a0 + license: LGPL-3.0-or-later + license_family: LGPL + size: 86181 + timestamp: 1774472395307 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.2.2-h6bc93b0_0.conda + sha256: af5eca85f7ffdd403275e916f1de40a7d4b48ae138f12479523d9500c6a073ba + md5: a47a14da2103c9c7a390f7c8bc8d7f9b depends: - - __osx >=10.13 - - r-base >=4.5,<4.6.0a0 - license: GPL-2.0-or-later - license_family: GPL - size: 63955 - timestamp: 1757441835326 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-mime-0.13-r44h6168396_1.conda - sha256: 3d0a844b7f3efd39da7c1d0a26f2a6f66a0b771904b27b3a49da5dc778eced70 - md5: 39b2ebfafc62d2a84749a0ceca2fda93 + - __osx >=11.0 + - gmp >=6.3.0,<7.0a0 + license: LGPL-3.0-only + license_family: LGPL + size: 348767 + timestamp: 1773414111071 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.6-h1d4f5a5_0.conda + sha256: 4ea6c620b87bd1d42bb2ccc2c87cd2483fa2d7f9e905b14c223f11ff3f4c455d + md5: 343d10ed5b44030a2f67193905aea159 depends: - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - license: GPL-2.0-or-later - license_family: GPL - size: 64938 - timestamp: 1757441715839 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-mime-0.13-r45heceb674_1.conda - sha256: 5cf02f25458c0bcabbccb52ea0606dc4d18f2a3f94858e6fd5143c2dedf4d2bb - md5: 504d8595125c36530dc082a3502f7f9f + license: X11 AND BSD-3-Clause + size: 805509 + timestamp: 1777423252320 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.2-hd24854e_0.conda + sha256: c91bf510c130a1ea1b6ff023e28bac0ccaef869446acd805e2016f69ebdc49ea + md5: 25dcccd4f80f1638428613e0d7c9b4e1 depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 + - __osx >=11.0 + - ca-certificates + license: Apache-2.0 + license_family: Apache + size: 3106008 + timestamp: 1775587972483 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-3.9.0.2-hce30654_0.conda + sha256: 2074598145bf286490d232c6f0a3d301403305d56f5c45a0170f44bc00fde8e5 + md5: 81203e2c973f049afba930cf6f79c695 license: GPL-2.0-or-later license_family: GPL - size: 70188 - timestamp: 1757441608944 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-miniui-0.1.2-r44hc72bb7e_1.conda - sha256: e790e72325c0a34ff9481e08b03ae191a70377622c57559c696edf17d8f802fb - md5: ee0d79bc89d3f74dd1388167d4bc1701 + size: 23192144 + timestamp: 1773933643305 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.56.4-hf80efc4_1.conda + sha256: b57c59cf5abb06d407b3a79017b990ca5bfb10c15a10c62fc29e113f2b12d9a9 + md5: 4b433508ebb295c05dd3d03daf27f7bb depends: - - r-base >=4.4,<4.5.0a0 - - r-htmltools >=0.3 - - r-shiny >=0.13 - license: GPL-3.0-only - license_family: GPL3 - size: 55426 - timestamp: 1757517041047 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-miniui-0.1.2-r45hc72bb7e_1.conda - sha256: 0e63708e94f3848e7212db1bd8e0b7f4b72084d2d96a523a63ddb3c3102135a8 - md5: 4940389ec03eea86358108ec4bb222a0 + - __osx >=11.0 + - cairo >=1.18.4,<2.0a0 + - fontconfig >=2.17.1,<3.0a0 + - fonts-conda-ecosystem + - fribidi >=1.0.16,<2.0a0 + - harfbuzz >=13.2.1 + - libexpat >=2.7.4,<3.0a0 + - libfreetype >=2.14.2 + - libfreetype6 >=2.14.2 + - libglib >=2.86.4,<3.0a0 + - libpng >=1.6.55,<1.7.0a0 + - libzlib >=1.3.2,<2.0a0 + license: LGPL-2.1-or-later + size: 425743 + timestamp: 1774282709773 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.47-h30297fc_0.conda + sha256: 5e2e443f796f2fd92adf7978286a525fb768c34e12b1ee9ded4000a41b2894ba + md5: 9b4190c4055435ca3502070186eba53a depends: - - r-base >=4.5,<4.6.0a0 - - r-htmltools >=0.3 - - r-shiny >=0.13 - license: GPL-3.0-only - license_family: GPL3 - size: 55283 - timestamp: 1757517043723 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-openssl-2.4.1-r44h68c19f5_0.conda - sha256: a5718a6a09a510963e5987cc37f79f4a74802aea002e01261218f5c78a6eb698 - md5: 18e9cbc7004690f969a2d5e93d0b1009 + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 850231 + timestamp: 1763655726735 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.46.4-h81086ad_1.conda + sha256: 29c9b08a9b8b7810f9d4f159aecfd205fce051633169040005c0b7efad4bc718 + md5: 17c3d745db6ea72ae2fce17e7338547f depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - openssl >=3.5.6,<4.0a0 - - r-askpass - - r-base >=4.4,<4.5.0a0 + - __osx >=11.0 + - libcxx >=19 license: MIT license_family: MIT - size: 685617 - timestamp: 1778775536216 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-openssl-2.4.1-r45h7679fe8_0.conda - sha256: b75dcafce94861a0ec7e95ed9ad89a6c34bc0471d530174258be3ab4329c564e - md5: a84ec152fd9c8f773720312f565aa515 + size: 248045 + timestamp: 1754665282033 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-7.2.2-py314ha14b1ff_0.conda + sha256: e0f31c053eb11803d63860c213b2b1b57db36734f5f84a3833606f7c91fedff9 + md5: fc4c7ab223873eee32080d51600ce7e7 depends: + - python - __osx >=11.0 - - openssl >=3.5.6,<4.0a0 - - r-askpass - - r-base >=4.5,<4.6.0a0 + - python 3.14.* *_cp314 + - python_abi 3.14.* *_cp314 + license: BSD-3-Clause + license_family: BSD + size: 245502 + timestamp: 1769678303655 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-core-12.1-py314h3a4d195_0.conda + sha256: df5af268c5a74b7160d772c263ece6f43257faff571783443e34b5f1d5a61cf2 + md5: 75a84fc8337557347252cc4fd3ba2a93 + depends: + - __osx >=11.0 + - libffi >=3.5.2,<3.6.0a0 + - python >=3.14,<3.15.0a0 + - python >=3.14,<3.15.0a0 *_cp314 + - python_abi 3.14.* *_cp314 + - setuptools license: MIT license_family: MIT - size: 681028 - timestamp: 1778775883205 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-openssl-2.4.1-r44h3dca6d3_0.conda - sha256: a9c30720cccc0816cbcf7f533dd7e2f2f965f84b9beb2ec953eb61cc2c220f27 - md5: 087cb0c27c59397516b312f808b84702 + size: 483374 + timestamp: 1763151489724 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-framework-cocoa-12.1-py314h36abed7_0.conda + sha256: aa76ee4328d0514d7c1c455dcd2d3b547db1c59797e54ce0a3f27de5b970e508 + md5: 4219bb3408016e22316cf8b443b5ef93 depends: - __osx >=11.0 - - openssl >=3.5.6,<4.0a0 - - r-askpass - - r-base >=4.4,<4.5.0a0 + - libffi >=3.5.2,<3.6.0a0 + - pyobjc-core 12.1.* + - python >=3.14,<3.15.0a0 + - python >=3.14,<3.15.0a0 *_cp314 + - python_abi 3.14.* *_cp314 license: MIT license_family: MIT - size: 681744 - timestamp: 1778776162206 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-openssl-2.4.1-r45h2f70138_0.conda - sha256: e0c407d58a5f0afa7d191b4fb9a560d3f1bf1225ee25faa727aaff25b89607aa - md5: ebf47d2424353939b09ffea0eed582f3 + size: 374792 + timestamp: 1763160601898 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.14.5-h4c637c5_100_cp314.conda + build_number: 100 + sha256: 06dec0e2f50e2f7e6a8808fcb4aff23729a3f23bcb1fca4fcbc3a341d9e38a83 + md5: f7331c9deaf21c79e5675e72b21d570b depends: - - libgcc >=14 + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.8.0,<3.0a0 + - libffi >=3.5.2,<3.6.0a0 + - liblzma >=5.8.3,<6.0a0 + - libmpdec >=4.0.0,<5.0a0 + - libsqlite >=3.53.1,<4.0a0 + - libzlib >=1.3.2,<2.0a0 + - ncurses >=6.6,<7.0a0 - openssl >=3.5.6,<4.0a0 - - r-askpass - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: MIT - license_family: MIT - size: 2481777 - timestamp: 1778775719554 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-otel-0.2.0-r44hc72bb7e_1.conda - sha256: 827a5d32cb852ecee400507b2071cfaaec90f462bf3e3d97096490a059403346 - md5: e32e1e3d515ee4340ab9ef3b57b93cf4 + - python_abi 3.14.* *_cp314 + - readline >=8.3,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - zstd >=1.5.7,<1.6.0a0 + license: Python-2.0 + size: 13560854 + timestamp: 1779238292621 + python_site_packages_path: lib/python3.14/site-packages +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.3-py314h6e9b3f0_1.conda + sha256: 95f385f9606e30137cf0b5295f63855fd22223a4cf024d306cf9098ea1c4a252 + md5: dcf51e564317816cb8d546891019b3ab depends: - - r-base >=4.4,<4.5.0a0 + - __osx >=11.0 + - python >=3.14,<3.15.0a0 + - python >=3.14,<3.15.0a0 *_cp314 + - python_abi 3.14.* *_cp314 + - yaml >=0.2.5,<0.3.0a0 license: MIT license_family: MIT - size: 286352 - timestamp: 1761150894562 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-otel-0.2.0-r45hc72bb7e_1.conda - sha256: f5de9737f59e1965db2de11c90cf1fdd426db322a7205c935a3e55150287b02f - md5: 560abd550c097e0d0af2e201b335f53d + size: 189475 + timestamp: 1770223788648 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-27.1.0-py312h022ad19_2.conda + noarch: python + sha256: 2f31f799a46ed75518fae0be75ecc8a1b84360dbfd55096bc2fe8bd9c797e772 + md5: 2f6b79700452ef1e91f45a99ab8ffe5a depends: - - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 286342 - timestamp: 1761151056217 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pak-0.9.5-r44hc72bb7e_0.conda - sha256: 52a165e7d26d39a601c0a261580cbfaa7b610f7aec4cddca830dba8562adcb05 - md5: ac83a8316cc976845072cacfe5eeeb0c + - python + - libcxx >=19 + - __osx >=11.0 + - _python_abi3_support 1.* + - cpython >=3.12 + - zeromq >=4.3.5,<4.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 191641 + timestamp: 1771717073430 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-askpass-1.2.1-r44h6168396_1.conda + sha256: ed042a3d1007c9ea45e06b9723c090ea350aa953f7375e0f95c3c4b9d82df4ed + md5: 87547d43001d87b0af6fcb54b099e5f6 depends: - - r-assertthat + - __osx >=11.0 - r-base >=4.4,<4.5.0a0 - - r-base64enc - - r-callr >=3.0.0.9002 - - r-cli >=1.0.0 - - r-cliapp >=0.0.0.9002 - - r-crayon >=1.3.4 - - r-curl >=3.2 - - r-desc >=1.2.0 - - r-filelock >=1.0.2 - - r-glue >=1.3.0 - - r-jsonlite - - r-lpsolve - - r-pkgbuild >=1.0.2 - - r-pkgcache >=1.0.3 - - r-prettyunits - - r-processx >=3.2.1 - - r-ps >=1.3.0 - - r-r6 - - r-rematch2 - - r-rprojroot >=1.3.2 - - r-tibble - license: GPL-3.0-only - license_family: GPL3 - size: 5859852 - timestamp: 1777286913468 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pak-0.9.5-r45hc72bb7e_0.conda - sha256: e9eb903ec3839852b0e94ea2d383ae1bb1f082454564315c989fc5cd53fe1d76 - md5: 2dd3a582ec978bf3639052beae546908 - depends: - - r-assertthat - - r-base >=4.5,<4.6.0a0 - - r-base64enc - - r-callr >=3.0.0.9002 - - r-cli >=1.0.0 - - r-cliapp >=0.0.0.9002 - - r-crayon >=1.3.4 - - r-curl >=3.2 - - r-desc >=1.2.0 - - r-filelock >=1.0.2 - - r-glue >=1.3.0 - - r-jsonlite - - r-lpsolve - - r-pkgbuild >=1.0.2 - - r-pkgcache >=1.0.3 - - r-prettyunits - - r-processx >=3.2.1 - - r-ps >=1.3.0 - - r-r6 - - r-rematch2 - - r-rprojroot >=1.3.2 - - r-tibble - license: GPL-3.0-only - license_family: GPL3 - size: 5878659 - timestamp: 1777286919389 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r44hc72bb7e_0.conda - sha256: 10739851530bc98feff7bf68acd2285dfddc7a8587b33c51a495f014744a3f33 - md5: 89635525b35ad6b443343237b65526ae + - r-sys >=2.1 + license: MIT + license_family: MIT + size: 32244 + timestamp: 1758383773196 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base-4.4.3-h35b0bb1_9.conda + sha256: 24032d26bdd64036ca0a999a13e832be06c98acc8c723d76ae04bf6f43ac5d09 + md5: 0d0711f8bae2082a1c3267c50e55aba8 depends: - - r-base >=4.4,<4.5.0a0 - - r-cli - - r-crayon >=1.3.4 - - r-ellipsis - - r-fansi - - r-lifecycle - - r-rlang >=0.3.0 - - r-utf8 >=1.1.0 - - r-vctrs >=0.2.0 - license: GPL-3.0-only - license_family: GPL3 - size: 629814 - timestamp: 1758149812405 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pillar-1.11.1-r45hc72bb7e_0.conda - sha256: b3f281041ecff2d4a9f40073ad5e7ec6fa7e0c841068ce85c550bcce0ff8938d - md5: 807ef77a70fc5156f830d6c683d07a29 + - __osx >=11.0 + - _r-mutex 1.* anacondar_1 + - bwidget + - bzip2 >=1.0.8,<2.0a0 + - cairo >=1.18.4,<2.0a0 + - clang_osx-arm64 >=19 + - clangxx_osx-arm64 >=19 + - curl + - fontconfig >=2.17.1,<3.0a0 + - fonts-conda-ecosystem + - gfortran_osx-arm64 14.* + - gsl >=2.7,<2.8.0a0 + - icu >=78.2,<79.0a0 + - libasprintf >=0.25.1,<1.0a0 + - libblas >=3.9.0,<4.0a0 + - libcurl >=8.19.0,<9.0a0 + - libcxx >=19 + - libdeflate >=1.25,<1.26.0a0 + - libexpat >=2.7.4,<3.0a0 + - libgettextpo >=0.25.1,<1.0a0 + - libgfortran + - libgfortran5 >=14.3.0 + - libglib >=2.86.4,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libintl >=0.25.1,<1.0a0 + - libjpeg-turbo >=3.1.2,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblzma >=5.8.2,<6.0a0 + - libpng >=1.6.55,<1.7.0a0 + - libtiff >=4.7.1,<4.8.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-openmp >=19.1.7 + - make + - pango >=1.56.4,<2.0a0 + - pcre2 >=10.47,<10.48.0a0 + - readline >=8.3,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tktable + - tzdata >=2024a + license: GPL-2.0-or-later + license_family: GPL + size: 27532873 + timestamp: 1773747592478 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base-4.5.3-h35b0bb1_1.conda + sha256: 20eab209e3205d74d186ea9d74ef4702966d09691b16ad231e162b868307e487 + md5: abfad467dbda22a7ee435d9eb40fef9a depends: - - r-base >=4.5,<4.6.0a0 - - r-cli - - r-crayon >=1.3.4 - - r-ellipsis - - r-fansi - - r-lifecycle - - r-rlang >=0.3.0 - - r-utf8 >=1.1.0 - - r-vctrs >=0.2.0 - license: GPL-3.0-only - license_family: GPL3 - size: 629867 - timestamp: 1758149763203 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgbuild-1.4.8-r44hc72bb7e_1.conda - sha256: 9fdfee8ede6ca0dc94e8f11eeaf7808570a050fbf59de96fb83e09f3133bebd2 - md5: 842576a213f96e7abacdc1a5afc42dc8 + - __osx >=11.0 + - _r-mutex 1.* anacondar_1 + - bwidget + - bzip2 >=1.0.8,<2.0a0 + - cairo >=1.18.4,<2.0a0 + - clang_osx-arm64 >=19 + - clangxx_osx-arm64 >=19 + - curl + - fontconfig >=2.17.1,<3.0a0 + - fonts-conda-ecosystem + - gfortran_osx-arm64 14.* + - gsl >=2.7,<2.8.0a0 + - icu >=78.2,<79.0a0 + - libasprintf >=0.25.1,<1.0a0 + - libblas >=3.9.0,<4.0a0 + - libcurl >=8.19.0,<9.0a0 + - libcxx >=19 + - libdeflate >=1.25,<1.26.0a0 + - libexpat >=2.7.4,<3.0a0 + - libgettextpo >=0.25.1,<1.0a0 + - libgfortran + - libgfortran5 >=14.3.0 + - libglib >=2.86.4,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libintl >=0.25.1,<1.0a0 + - libjpeg-turbo >=3.1.2,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblzma >=5.8.2,<6.0a0 + - libpng >=1.6.55,<1.7.0a0 + - libtiff >=4.7.1,<4.8.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-openmp >=19.1.7 + - make + - pango >=1.56.4,<2.0a0 + - pcre2 >=10.47,<10.48.0a0 + - readline >=8.3,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tktable + - tzdata >=2024a + license: GPL-2.0-or-later + license_family: GPL + size: 27921011 + timestamp: 1773747214847 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base64enc-0.1_6-r44hbe92478_0.conda + sha256: ee24ccf24f0a9503ebf24c802c06daac3acc50f6b6b09c3eaefb82b70c536453 + md5: af79e6b425787b4f4ecddf96196fadcf depends: + - __osx >=11.0 - r-base >=4.4,<4.5.0a0 - - r-callr >=3.2.0 - - r-cli - - r-crayon - - r-desc - - r-prettyunits - - r-r6 - - r-rprojroot - - r-withr >=2.1.2 - license: GPL-3.0-only + license: GPL-2.0-or-later license_family: GPL3 - size: 221541 - timestamp: 1757496269823 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgbuild-1.4.8-r45hc72bb7e_1.conda - sha256: 3d1b97a5616663fabcb165968e2d1ad3732d316a0d38be259ca84533986a0093 - md5: daea93b32bab57062ab586c9b6e3896e + size: 48233 + timestamp: 1770028060720 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-base64enc-0.1_6-r45hbe92478_0.conda + sha256: 9f807a81ed7db9c0679f77c940b7f99dd4dcea48a11eedaf1fc56475f7790f36 + md5: b813ab383126268f375504b4f017dfce depends: + - __osx >=11.0 - r-base >=4.5,<4.6.0a0 - - r-callr >=3.2.0 - - r-cli - - r-crayon - - r-desc - - r-prettyunits - - r-r6 - - r-rprojroot - - r-withr >=2.1.2 - license: GPL-3.0-only + license: GPL-2.0-or-later license_family: GPL3 - size: 221277 - timestamp: 1757496221 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgcache-2.2.4-r44hc72bb7e_1.conda - sha256: 87bc0cc34ca720e7d58d975dc0b3ae2431f71d6093791c77bc95acf2c7a03e76 - md5: 4be7666870dca1f47c487d301921b3da + size: 48581 + timestamp: 1770028450555 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-brio-1.1.5-r44h6168396_2.conda + sha256: 8fdeb734f259b3b4212e6099c695537bfa2c4affa303897d3bc0d2fa21e7f1fb + md5: 29cad55e2ccda4f88a79b76910768308 depends: + - __osx >=11.0 - r-base >=4.4,<4.5.0a0 - - r-callr >=2.0.4.9000 - - r-cli >=3.2.0 - - r-curl >=3.2 - - r-filelock - - r-jsonlite - - r-prettyunits - - r-processx >=3.3.0.9001 - - r-r6 - - r-rappdirs license: MIT license_family: MIT - size: 918394 - timestamp: 1758416351333 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgcache-2.2.4-r45hc72bb7e_1.conda - sha256: 7cd5e76b7e4dfbd40aeb0a3bc1b8171dbf045571476c53b0c2d4e02e9d87496f - md5: c2f0a882d15573cda41289201873077c + size: 44352 + timestamp: 1757421771711 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-cachem-1.1.0-r44h6168396_2.conda + sha256: 0f10c2770376e494304e10c6193c119a785db306db0d908b025294b4e4be1162 + md5: a5fcdf14a72ea9ae11c62e2fe6a9b271 depends: - - r-base >=4.5,<4.6.0a0 - - r-callr >=2.0.4.9000 - - r-cli >=3.2.0 - - r-curl >=3.2 - - r-filelock - - r-jsonlite - - r-prettyunits - - r-processx >=3.3.0.9001 - - r-r6 - - r-rappdirs + - __osx >=11.0 + - r-base >=4.4,<4.5.0a0 + - r-fastmap + - r-rlang license: MIT license_family: MIT - size: 921394 - timestamp: 1758416361320 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgconfig-2.0.3-r44hc72bb7e_5.conda - sha256: 6845c972210ee39fed0db7326685067cd213fc8d1136e0a2060063f3921ee494 - md5: bdc0f46c7111e1d4f7eb7133374b47b7 + size: 76874 + timestamp: 1757442117946 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-cli-3.6.6-r44h1380947_0.conda + sha256: 7a3b600bc7f01518c34647fdedcacf578035de1ad1cc8d1ecf1f65ce80268adf + md5: b6342df713443364fa7c27e7d7ab3bfa depends: + - __osx >=11.0 + - libcxx >=19 - r-base >=4.4,<4.5.0a0 license: MIT license_family: MIT - size: 27374 - timestamp: 1757447594870 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgconfig-2.0.3-r45hc72bb7e_5.conda - sha256: fda425435a533e86da5f0fc89cf45c9f889a4e6f1e2ed536ca23662a8461602c - md5: 40a5fdd06c7e7880758a021cf2df6c12 + size: 1325539 + timestamp: 1775734162346 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-cli-3.6.6-r45h1380947_0.conda + sha256: 35f3a1893aaef23acfe047d04d809530a72907964242ea80fd6a154cebeb8e77 + md5: 13eb6bb352f65c61c6553c7037a27b90 depends: + - __osx >=11.0 + - libcxx >=19 - r-base >=4.5,<4.6.0a0 license: MIT license_family: MIT - size: 27236 - timestamp: 1757447537447 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgdown-2.2.0-r44hc72bb7e_0.conda - sha256: a21fdcdb9b0374bb6031d1284d02a0781b3181ae4885bf43675667a145fbffd2 - md5: cbf95acbd79f34cada035113b917ec86 + size: 1322083 + timestamp: 1775734308033 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-commonmark-2.0.0-r44h6168396_1.conda + sha256: 10671f92c4de9eb8be1e9700ea3e4ec40003afb63abc99e68fb31f8783599ad4 + md5: 3b1416970ca34b5557cadb7adc4431cd depends: + - __osx >=11.0 - r-base >=4.4,<4.5.0a0 - - r-bslib >=0.5.1 - - r-callr >=3.7.3 - - r-cli >=3.6.1 - - r-desc >=1.4.0 - - r-downlit >=0.4.4 - - r-fontawesome - - r-fs >=1.4.0 - - r-httr2 >=1.0.2 - - r-jsonlite - - r-openssl - - r-purrr >=1.0.0 - - r-ragg >=1.4.0 - - r-rlang >=1.1.4 - - r-rmarkdown >=2.27 - - r-tibble - - r-whisker - - r-withr >=2.4.3 - - r-xml2 >=1.3.1 - - r-yaml - license: MIT - license_family: MIT - size: 905859 - timestamp: 1762414182135 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgdown-2.2.0-r45hc72bb7e_0.conda - sha256: e33f7255808935799a2bde0b7f19a66711b2abed5ad351d17fb2233e3e7879dd - md5: ac92b5648ff1ed7028576f00e8e30c57 + license: BSD-2-Clause + license_family: BSD + size: 120917 + timestamp: 1757422505144 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-curl-7.1.0-r44h090641b_0.conda + sha256: 747a6bb08e0c5691864f0a0148d1d615ead654f5696fc54c47d64533e595781b + md5: 4b0fd1895ea3e9b090db5f0fce18cb28 depends: - - r-base >=4.5,<4.6.0a0 - - r-bslib >=0.5.1 - - r-callr >=3.7.3 - - r-cli >=3.6.1 - - r-desc >=1.4.0 - - r-downlit >=0.4.4 - - r-fontawesome - - r-fs >=1.4.0 - - r-httr2 >=1.0.2 - - r-jsonlite - - r-openssl - - r-purrr >=1.0.0 - - r-ragg >=1.4.0 - - r-rlang >=1.1.4 - - r-rmarkdown >=2.27 - - r-tibble - - r-whisker - - r-withr >=2.4.3 - - r-xml2 >=1.3.1 - - r-yaml + - __osx >=11.0 + - libcurl >=8.19.0,<9.0a0 + - r-base >=4.4,<4.5.0a0 license: MIT license_family: MIT - size: 907520 - timestamp: 1762414187272 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgload-1.5.2-r44hc72bb7e_0.conda - sha256: e9515b07a3632127e443b37e9a89fd00f66f5a1519d79e45e72117216dd11b4b - md5: 12ff6174aa981027ca9f431fff72cfee + size: 471456 + timestamp: 1777148050569 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-diffobj-0.3.6-r44h6168396_1.conda + sha256: c77a6a40f698b32f485383d65c95cc966bdc04147f0a203008dbd197b0aa079a + md5: f23683f98f76681b5593340493b09b5e depends: + - __osx >=11.0 - r-base >=4.4,<4.5.0a0 - - r-cli >=3.3.0 - - r-desc - - r-fs - - r-glue - - r-lifecycle - - r-pkgbuild - - r-processx - - r-rlang >=1.1.1 - - r-rprojroot - - r-withr >=2.4.3 - license: GPL-3.0-only - license_family: GPL3 - size: 242328 - timestamp: 1776843464955 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-pkgload-1.5.2-r45hc72bb7e_0.conda - sha256: 238c86e19807c615aec85bda4e2929754900e946f3a463fcc47f0f8b5c91061c - md5: 9738f1d8051f1bf5d1b90cfc0aecbb2a + - r-crayon >=1.3.2 + license: GPL-2.0-or-later + license_family: GPL2 + size: 1001717 + timestamp: 1757459675415 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-digest-0.6.39-r44hc1cd577_0.conda + sha256: 945e67be78a409972cf3ceed7553f564477b41c170ac9397364667c3ed2241ef + md5: 4c2634f2998034129027c1c497593446 + depends: + - __osx >=11.0 + - libcxx >=19 + - r-base >=4.4,<4.5.0a0 + license: GPL-2.0-or-later + license_family: GPL2 + size: 208639 + timestamp: 1763567147222 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-digest-0.6.39-r45hc1cd577_0.conda + sha256: 507bd9f5d407aa8d744066d7629985040f9f9c9adc200f1b9a279e4730213c15 + md5: 7f7d936d7653327ab8b53f6d85c95178 depends: + - __osx >=11.0 + - libcxx >=19 - r-base >=4.5,<4.6.0a0 - - r-cli >=3.3.0 - - r-desc - - r-fs - - r-glue - - r-lifecycle - - r-pkgbuild - - r-processx - - r-rlang >=1.1.1 - - r-rprojroot - - r-withr >=2.4.3 - license: GPL-3.0-only - license_family: GPL3 - size: 242358 - timestamp: 1776843464574 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-praise-1.0.0-r44hc72bb7e_1009.conda - sha256: ab412aae97116199eca6ca377bef26aed160e835a9920a4764e160bd25b02233 - md5: 3be32de189a039db4fc08888bd95c2b8 + license: GPL-2.0-or-later + license_family: GPL2 + size: 208862 + timestamp: 1763567044192 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ellipsis-0.3.3-r44hbe92478_0.conda + sha256: 6d9eec4fa6261822a00fe72b8bbfea7d905bb9e87883657808189bc2ffb46895 + md5: db8b6ddcb30fee47bc25b116816e0c03 depends: + - __osx >=11.0 - r-base >=4.4,<4.5.0a0 + - r-rlang >=0.3.0 license: MIT license_family: MIT - size: 25896 - timestamp: 1757447349076 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-praise-1.0.0-r45hc72bb7e_1009.conda - sha256: 2f4b33c16d01df7d3a65cbb7a75989a2e3a1e068a354430da225d01d50870732 - md5: d9f7dfa06871712aaf768674dea06a0b + size: 34252 + timestamp: 1775287721272 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ellipsis-0.3.3-r45hbe92478_0.conda + sha256: c68decc012f0318029ec3d282f07274f1212d91b2ea0d1d2e793538389220efc + md5: 5e0e265490c4114a3b8a2ee3d7a8a830 depends: + - __osx >=11.0 - r-base >=4.5,<4.6.0a0 + - r-rlang >=0.3.0 license: MIT license_family: MIT - size: 25995 - timestamp: 1757447352187 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-prettycode-1.1.0-r44hc72bb7e_5.conda - sha256: e4940097823e1c3f64013d660043ba89d9b4fed134da10117aa393f624e05eb6 - md5: 9e00bc3ebc04b34668098162263acd92 + size: 34255 + timestamp: 1775287728004 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fansi-1.0.7-r44h6168396_0.conda + sha256: 9d3fe7009ecb519c2aef6d3d174d8844d3b5829fa89371689be08416dce1a061 + md5: 3ebccb0b86f52c0f1abfd8a5fc200da9 depends: + - __osx >=11.0 - r-base >=4.4,<4.5.0a0 - - r-crayon - - r-withr - license: MIT - license_family: MIT - size: 251661 - timestamp: 1757801141137 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-prettycode-1.1.0-r45hc72bb7e_5.conda - sha256: fdac4ff464bf1fd8dfd33cff7f76143ca120296d9ea59d8c0b0a001d5d5b7b16 - md5: a8d5f73a68f4d4171c40cfbb3c195477 + license: GPL-2.0-or-later + license_family: GPL3 + size: 324050 + timestamp: 1763566765615 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fansi-1.0.7-r45h6168396_0.conda + sha256: 8112dd835a6c5e52b40dd19cb339c29c29464f7f01cc47a841ce3ac54456af93 + md5: 6b8605f97d9e95528160a84bfb70c99e depends: + - __osx >=11.0 - r-base >=4.5,<4.6.0a0 - - r-crayon - - r-withr - license: MIT - license_family: MIT - size: 251464 - timestamp: 1757801114578 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-prettyunits-1.2.0-r44hc72bb7e_2.conda - sha256: cbee3643f2e5b45e52921f5a6246f572cadf5dcf540d352bbc0ff4ad0a96aa4f - md5: d0ddc1e17050afcb5f13ecdc1f4aba92 + license: GPL-2.0-or-later + license_family: GPL3 + size: 322546 + timestamp: 1763566692815 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fastmap-1.2.0-r44hc1cd577_2.conda + sha256: b97a439d1d1b25fa026bea9759e85b6a630e872a4631349655e27cdda606b981 + md5: 872e3a173570c0f936496f81f5822461 depends: - - r-assertthat + - __osx >=11.0 + - libcxx >=19 - r-base >=4.4,<4.5.0a0 - - r-magrittr license: MIT license_family: MIT - size: 161041 - timestamp: 1757463122545 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-prettyunits-1.2.0-r45hc72bb7e_2.conda - sha256: 0306580de6e867b9060595f5eedde4dbf531ee89c16dd3738dde995b30f3fe14 - md5: 07465728b1fd99d28b286156dac895a3 + size: 72818 + timestamp: 1757422275705 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fastmap-1.2.0-r45hc1cd577_2.conda + sha256: 53bbf12d1b47e618c15d4e19a478e5b5d0d25e1dfe43366b67d58bc157929301 + md5: 0ac8272c2d15122bf543dfd8c72654c1 depends: - - r-assertthat + - __osx >=11.0 + - libcxx >=19 - r-base >=4.5,<4.6.0a0 - - r-magrittr license: MIT license_family: MIT - size: 161043 - timestamp: 1757463130831 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-processx-3.9.0-r44h54b55ab_0.conda - sha256: a5709a9eac9b91090b4602b0159ed94c0328d904349d39f08735dad1cf90e368 - md5: a514fa73c8a7b0bec2d1c6bc0913f813 + size: 72957 + timestamp: 1757421937392 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-filelock-1.0.3-r44h6168396_2.conda + sha256: b12dbfab27d9c275f15ac9a881a16b7852067e7e921b0f58c70ba1f31086b385 + md5: 9a635b52271497d305123a6791342f8e depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 + - __osx >=11.0 - r-base >=4.4,<4.5.0a0 - - r-ps >=1.2.0 - - r-r6 license: MIT license_family: MIT - size: 410728 - timestamp: 1776865710444 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-processx-3.9.0-r45h8eed41d_0.conda - sha256: fe3b9a2cf3a2773a8da1dd18164459969c1b53429bf9fa5a9805ee931222c0ab - md5: a14ac3e048d5c63259602bf6591816e3 + size: 33538 + timestamp: 1757576202385 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-fs-2.1.0-r44h45a6d21_0.conda + sha256: 482d0809cd039b9c86527fff21584f0b3dd2ef6a860433e4136b09a0e42a61e4 + md5: 25237c24099b2d514d2fbb57ab4deda2 depends: - __osx >=11.0 - - r-base >=4.5,<4.6.0a0 - - r-ps >=1.2.0 - - r-r6 + - libcxx >=19 + - libuv >=1.51.0,<2.0a0 + - r-base >=4.4,<4.5.0a0 license: MIT license_family: MIT - size: 398197 - timestamp: 1776866021510 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-processx-3.9.0-r44hbe92478_0.conda - sha256: 67976a77cf644b85156dc6edbf7ef63cd6e0a984ea0660310585ba1bd71d1a83 - md5: c5fa9d5550e95566fef7082d64c33f74 + size: 236657 + timestamp: 1777152778881 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-gert-2.3.1-r44hc9f24b7_0.conda + sha256: b1c988e2ce5c4fffce3307c1f8ffd5416dd13b5fe08027ae11ea241b8cd0f431 + md5: 69ed9f4c6a99473ae6dfeb77c521829d depends: - __osx >=11.0 + - libgit2 >=1.9.2,<1.10.0a0 + - r-askpass - r-base >=4.4,<4.5.0a0 - - r-ps >=1.2.0 - - r-r6 + - r-credentials >=1.2.1 + - r-openssl >=2.0.3 + - r-rstudioapi >=0.11 + - r-zip >=2.1.0 license: MIT license_family: MIT - size: 398523 - timestamp: 1776866414094 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-processx-3.9.0-r45heceb674_0.conda - sha256: 76a4af871ce24b6bb118dc24ec14fad4de8922bf09077427f51b3fe63597e3d0 - md5: b888a5faaf0698769af67406b9998126 + size: 278147 + timestamp: 1768194343876 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-glue-1.8.1-r44hbe92478_0.conda + sha256: 609404bb41166c46c695acd347d8e3d3662817b22c530e36717595bdee772e6d + md5: c591df72f9899cfce892fadb2ae841e1 depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - __osx >=11.0 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 170947 + timestamp: 1776413888460 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-glue-1.8.1-r45hbe92478_0.conda + sha256: ed4dede3eb23e4132b1478edb9d157eae5a44ac6d5cd7f82ae8edafddc6f0ce6 + md5: b1c2c7d2f66f04cc3e32aeb679df3371 + depends: + - __osx >=11.0 - r-base >=4.5,<4.6.0a0 - - r-ps >=1.2.0 - - r-r6 - - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 614217 - timestamp: 1776865944919 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-profvis-0.4.0-r44h54b55ab_1.conda - sha256: 9dba8142fbbcec66203cc883d9504542fe71a7d226d7a66de9b212b9102eeb85 - md5: 6dfa35e198d2db0370f3ba6819ea5745 + size: 171239 + timestamp: 1776414040752 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-htmltools-0.5.9-r44hc1cd577_0.conda + sha256: 16471413bfcaa22a341dacf627c7f31f035b191286d7764290de94d295f79d24 + md5: 57b1e787a1bb6b9808a4742d841d0535 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 + - __osx >=11.0 + - libcxx >=19 - r-base >=4.4,<4.5.0a0 - - r-htmlwidgets >=0.3.2 - - r-purrr - - r-rlang >=0.4.9 - - r-stringr - - r-vctrs - license: GPL-3.0-only + - r-base64enc + - r-digest + - r-ellipsis + - r-fastmap >=1.1.0 + - r-rlang >=0.4.10 + license: GPL-2.0-or-later license_family: GPL3 - size: 229816 - timestamp: 1757585446968 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-profvis-0.4.0-r45h735ac91_1.conda - sha256: 5372687af9e85068701d1346585da7c1f768f9c3dff51867de52493084d516b2 - md5: b488dc7939e70bc81afd572409dbae5e + size: 366255 + timestamp: 1764861120525 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-htmltools-0.5.9-r45hc1cd577_0.conda + sha256: 3a03c1a57aefc54ba046d070e232958f7af8c13066c878a29b857e41dc601694 + md5: eaaf5ce4bf4665bccd96bb3006f5fd87 depends: - - __osx >=10.13 + - __osx >=11.0 + - libcxx >=19 - r-base >=4.5,<4.6.0a0 - - r-htmlwidgets >=0.3.2 - - r-purrr - - r-rlang >=0.4.9 - - r-stringr - - r-vctrs - license: GPL-3.0-only + - r-base64enc + - r-digest + - r-ellipsis + - r-fastmap >=1.1.0 + - r-rlang >=0.4.10 + license: GPL-2.0-or-later license_family: GPL3 - size: 229783 - timestamp: 1757585765463 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-profvis-0.4.0-r44h6168396_1.conda - sha256: 4bc3cfe9b7465a11cde6307da57a1921b6732655832806e58d8769c3d9f2f720 - md5: e551bbfe97f8f902086ab0b7beb7f914 + size: 366381 + timestamp: 1764860872591 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-httpuv-1.6.17-r44h1b96ac6_0.conda + sha256: 3649d467fe30c22b3a1c916360eb299a6dc2aa4b0e75c32a17460fcca9a65d89 + md5: 7205f3b9873f5189c122429dc75644cd depends: - __osx >=11.0 + - libcxx >=19 + - libuv >=1.51.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 - r-base >=4.4,<4.5.0a0 - - r-htmlwidgets >=0.3.2 - - r-purrr - - r-rlang >=0.4.9 - - r-stringr - - r-vctrs - license: GPL-3.0-only - license_family: GPL3 - size: 229832 - timestamp: 1757585783814 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-profvis-0.4.0-r45heceb674_1.conda - sha256: 4bd39b713c58721141f98c64665638609e4f4f65c29b0fb64dcc584385d35235 - md5: 7eb6ae59b27ac19d50968e4117573264 - depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - r-htmlwidgets >=0.3.2 - - r-purrr - - r-rlang >=0.4.9 - - r-stringr - - r-vctrs - - ucrt >=10.0.20348.0 - license: GPL-3.0-only + - r-later >=0.8.0 + - r-promises + - r-r6 + - r-rcpp >=1.0.7 + license: GPL-2.0-or-later license_family: GPL3 - size: 234733 - timestamp: 1757585857926 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-progress-1.2.3-r44hc72bb7e_2.conda - sha256: 23cf5fe12d5344af6dcc74d89504dee70b2534c62dee48b03515e44c27465c45 - md5: a6a93fa6ae11444ea50d897f35db7e5d + size: 571582 + timestamp: 1773825979461 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-jsonlite-2.0.0-r44h6168396_1.conda + sha256: eda247436019daba0951da897d28d788a93230b3d621a7bf88a125d66ae62e0c + md5: ba74496412d0d7d6b463be89badd3bbd depends: + - __osx >=11.0 - r-base >=4.4,<4.5.0a0 - - r-crayon - - r-hms - - r-prettyunits - - r-r6 license: MIT license_family: MIT - size: 96089 - timestamp: 1757484966329 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-progress-1.2.3-r45hc72bb7e_2.conda - sha256: 7dc34860af66a0305601d70714269d8e24766bc9780a43683c1b7989970a61a3 - md5: 619b691b0965c6894eb99d3851857df7 + size: 635615 + timestamp: 1757420155302 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-jsonlite-2.0.0-r45h6168396_1.conda + sha256: 7cc98177682b34e33f3fe4f216694f04f1b519928ea5ead7876dc1b12858f49f + md5: 16f0458678d7fd9d7237e9e330a35ad1 depends: + - __osx >=11.0 - r-base >=4.5,<4.6.0a0 - - r-crayon - - r-hms - - r-prettyunits - - r-r6 license: MIT license_family: MIT - size: 96260 - timestamp: 1757484957523 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-promises-1.5.0-r44hc72bb7e_1.conda - sha256: a1fad42c49ef0a7cf0744dfd860f8e9536124710b3522d39f0c08614c09c26cf - md5: 65078b0412ccfb1deab6873494f96d42 + size: 634332 + timestamp: 1757419931615 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-later-1.4.8-r44h1380947_0.conda + sha256: e526320fe09d33bd459b2c87cef0dc5e67b6409de6b84a3e6b51737d5bb2dcc6 + md5: b4671b36b1db0fdd53b7ff3acfdaa2c2 depends: + - __osx >=11.0 + - libcxx >=19 - r-base >=4.4,<4.5.0a0 - - r-fastmap >=1.1.0 - - r-later - - r-lifecycle - - r-magrittr >=1.5 - - r-otel >=0.2.0 - - r-r6 + - r-rcpp >=0.12.9 - r-rlang license: MIT license_family: MIT - size: 1597085 - timestamp: 1762426235911 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-promises-1.5.0-r45hc72bb7e_1.conda - sha256: 684dba5d20aae8da37868d603b662014e1944f5568e5f737e42d9d485892a26e - md5: b2c1b6ef8f12894fd2694b285fe8989a + size: 133659 + timestamp: 1772708262450 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-lpsolve-5.6.23-r44h6168396_1.conda + sha256: 6ff295f3600e7e3a6db16a1e07595b5fd5f22e7cacddb5a398bc022e0f63cc19 + md5: a8d2524bf6ff23621c94227f6a2818eb depends: - - r-base >=4.5,<4.6.0a0 - - r-fastmap >=1.1.0 - - r-later - - r-lifecycle - - r-magrittr >=1.5 - - r-otel >=0.2.0 - - r-r6 - - r-rlang + - __osx >=11.0 + - r-base >=4.4,<4.5.0a0 + license: LGPL-2.0-only + license_family: LGPL + size: 318918 + timestamp: 1757496016328 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-magrittr-2.0.5-r44hbe92478_0.conda + sha256: 3307560747b5fda8d3a4475bae40e5a4cfea9f4f92221c8e5a018a7cad1dba17 + md5: 89a513908036c039689914f74f817b5e + depends: + - __osx >=11.0 + - r-base >=4.4,<4.5.0a0 license: MIT license_family: MIT - size: 1597704 - timestamp: 1762426228446 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-ps-1.9.3-r44h54b55ab_0.conda - sha256: 8a3560c71204ba5dd72643c0c06efb626b45f26f55e12d38a4fc854cbce58edd - md5: f9a8ca27e2f6ba95cd8f4f185b8f4f54 + size: 211263 + timestamp: 1775299093094 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-mime-0.13-r44h6168396_1.conda + sha256: 3d0a844b7f3efd39da7c1d0a26f2a6f66a0b771904b27b3a49da5dc778eced70 + md5: 39b2ebfafc62d2a84749a0ceca2fda93 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 + - __osx >=11.0 - r-base >=4.4,<4.5.0a0 - license: BSD-3-Clause - license_family: BSD - size: 414055 - timestamp: 1777148026559 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-ps-1.9.3-r45h8eed41d_0.conda - sha256: 509f2629fcf9e79f2d78393ff168fea03e808f0a62870421d4e4e90a7a7bb73a - md5: 001fff6be2577b529a171c34071a30f8 + license: GPL-2.0-or-later + license_family: GPL + size: 64938 + timestamp: 1757441715839 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-openssl-2.4.1-r44h3dca6d3_0.conda + sha256: a9c30720cccc0816cbcf7f533dd7e2f2f965f84b9beb2ec953eb61cc2c220f27 + md5: 087cb0c27c59397516b312f808b84702 depends: - __osx >=11.0 - - r-base >=4.5,<4.6.0a0 - license: BSD-3-Clause - license_family: BSD - size: 409155 - timestamp: 1777148282616 + - openssl >=3.5.6,<4.0a0 + - r-askpass + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 681744 + timestamp: 1778776162206 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-processx-3.9.0-r44hbe92478_0.conda + sha256: 67976a77cf644b85156dc6edbf7ef63cd6e0a984ea0660310585ba1bd71d1a83 + md5: c5fa9d5550e95566fef7082d64c33f74 + depends: + - __osx >=11.0 + - r-base >=4.4,<4.5.0a0 + - r-ps >=1.2.0 + - r-r6 + license: MIT + license_family: MIT + size: 398523 + timestamp: 1776866414094 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-profvis-0.4.0-r44h6168396_1.conda + sha256: 4bc3cfe9b7465a11cde6307da57a1921b6732655832806e58d8769c3d9f2f720 + md5: e551bbfe97f8f902086ab0b7beb7f914 + depends: + - __osx >=11.0 + - r-base >=4.4,<4.5.0a0 + - r-htmlwidgets >=0.3.2 + - r-purrr + - r-rlang >=0.4.9 + - r-stringr + - r-vctrs + license: GPL-3.0-only + license_family: GPL3 + size: 229832 + timestamp: 1757585783814 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ps-1.9.3-r44hbe92478_0.conda sha256: 3a46645ce5bee19c6f38937732c8e395ce28925b978799f7244208ea823bed5b md5: cb766e4dfff2a7bca8dae7ace174eaba @@ -10402,24 +11168,11 @@ packages: license_family: BSD size: 409333 timestamp: 1777148912933 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-ps-1.9.3-r45heceb674_0.conda - sha256: bb789c87d7883f58fa445a488df3d210bfda3187b3d763feb9da0d394da2aa4a - md5: 4679d473fd587c95fa8960db9015224f - depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: BSD-3-Clause - license_family: BSD - size: 584910 - timestamp: 1777148234036 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-purrr-1.2.2-r44h54b55ab_0.conda - sha256: 3a9dec6181e7077520b2c86654ea613f86b1875f98ff5e20b072133ae26a289c - md5: bb8a0c5371d5881cbfac7fd503c907ba +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-purrr-1.2.2-r44hbe92478_0.conda + sha256: 0bbba90fd77652a3ce62aceaa68a51aa893cad74255b6a6ca62cb0258da54ca4 + md5: 8f36a8cb7cd7db752f1de63c7b7365e2 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 + - __osx >=11.0 - r-base >=4.4,<4.5.0a0 - r-cli >=3.4 - r-lifecycle >=1.0.3 @@ -10428,2296 +11181,2243 @@ packages: - r-vctrs >=0.5 license: MIT license_family: MIT - size: 547801 - timestamp: 1775853620724 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-purrr-1.2.2-r45h8eed41d_0.conda - sha256: 50cee8e2704ace7117bd300ad764f176b3b0e8fba8c1fd18ae975947a4c96a4c - md5: 8194147611edbe04fb268871c46bec58 + size: 547690 + timestamp: 1775854066177 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ragg-1.5.2-r44hdc8ef2b_0.conda + sha256: 99de844fb8e3f10b7879272512a47e20e27a5bcd32d5e6d3c6b5b072060f30e5 + md5: 9f33f570344f05aae80c297d1c0db985 depends: - __osx >=11.0 - - r-base >=4.5,<4.6.0a0 - - r-cli >=3.4 - - r-lifecycle >=1.0.3 - - r-magrittr >=1.5 - - r-rlang >=0.4.10 - - r-vctrs >=0.5 + - libcxx >=19 + - libfreetype >=2.14.2 + - libfreetype6 >=2.14.2 + - libjpeg-turbo >=3.1.2,<4.0a0 + - libpng >=1.6.55,<1.7.0a0 + - libtiff >=4.7.1,<4.8.0a0 + - r-base >=4.4,<4.5.0a0 + - r-systemfonts >=1.0.3 + - r-textshaping >=0.3.0 license: MIT license_family: MIT - size: 546287 - timestamp: 1775853844861 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-purrr-1.2.2-r44hbe92478_0.conda - sha256: 0bbba90fd77652a3ce62aceaa68a51aa893cad74255b6a6ca62cb0258da54ca4 - md5: 8f36a8cb7cd7db752f1de63c7b7365e2 + size: 528486 + timestamp: 1774268328471 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rappdirs-0.3.4-r44hbe92478_0.conda + sha256: 3e81a67878b270c697f2d9ba4b16253b43e85db278ee78ae65de697dcf359b28 + md5: 9cf0e70230938866f2b971d37d63eb04 + depends: + - __osx >=11.0 + - r-base >=4.4,<4.5.0a0 + license: MIT + license_family: MIT + size: 54657 + timestamp: 1768747869641 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rcpp-1.1.1_1.1-r44h1380947_0.conda + sha256: 96f4d378200b4f1cd34eee3d7b70e1e99739dfd1c502742390e0a88082e05154 + md5: 43629a5a43927d65f8d775e090e732df + depends: + - __osx >=11.0 + - libcxx >=19 + - r-base >=4.4,<4.5.0a0 + license: GPL-2.0-or-later + license_family: GPL2 + size: 2121658 + timestamp: 1777184897145 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rlang-1.2.0-r44h1380947_0.conda + sha256: 596ff3409c21dc94f5bdde16192ea2ea92b2b64181b74672624133c01e86b4d3 + md5: 97aca8c80d396675b2ecdec668507fba + depends: + - __osx >=11.0 + - libcxx >=19 + - r-base >=4.4,<4.5.0a0 + license: GPL-3.0-only + license_family: GPL3 + size: 1590367 + timestamp: 1775484098704 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rlang-1.2.0-r45h1380947_0.conda + sha256: 1cf095974a1ec3da7b5dce09f8ad3087dc70315caaa924ed382d2546f05cb521 + md5: 997e2d9c38b940fa7f55c0d999e7d689 + depends: + - __osx >=11.0 + - libcxx >=19 + - r-base >=4.5,<4.6.0a0 + license: GPL-3.0-only + license_family: GPL3 + size: 1583156 + timestamp: 1775484000407 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-roxygen2-8.0.0-r44h1380947_0.conda + sha256: 7a9a082b25dae07ac7fe176d21e8ecac38af2c5e5d6f6c183e7a1860f6a48c80 + md5: f85198ce54f2adc88128eefce1952501 + depends: + - __osx >=11.0 + - libcxx >=19 + - r-base >=4.4,<4.5.0a0 + - r-brew + - r-commonmark + - r-cpp11 + - r-desc >=1.2.0 + - r-digest + - r-knitr + - r-pkgload >=1.0.2 + - r-purrr >=0.3.3 + - r-r6 >=2.1.2 + - r-rlang + - r-stringi + - r-stringr >=1.0.0 + - r-xml2 + license: MIT + license_family: GPL3 + size: 982333 + timestamp: 1777663826860 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-sass-0.4.10-r44hc1cd577_1.conda + sha256: 830d16da5eeb96f9a15f813a509f198ed7fb57a542bc9e1fbb2e25ad4ea47b0f + md5: a71af8b2b4f529b1d39a9f12f18cd674 depends: - __osx >=11.0 + - libcxx >=19 - r-base >=4.4,<4.5.0a0 - - r-cli >=3.4 - - r-lifecycle >=1.0.3 - - r-magrittr >=1.5 - - r-rlang >=0.4.10 - - r-vctrs >=0.5 - license: MIT - license_family: MIT - size: 547690 - timestamp: 1775854066177 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-purrr-1.2.2-r45heceb674_0.conda - sha256: 5aff9f44a2b7f9d84ea82371fb66a29f43efa5fab58f94e62d48fbb3131c5f64 - md5: e1c7996cab29677228f12ca03628c5c9 - depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - r-cli >=3.4 - - r-lifecycle >=1.0.3 - - r-magrittr >=1.5 - - r-rlang >=0.4.10 - - r-vctrs >=0.5 - - ucrt >=10.0.20348.0 + - r-digest + - r-fs + - r-htmltools + - r-r6 + - r-rappdirs + - r-rlang license: MIT license_family: MIT - size: 549026 - timestamp: 1775853844347 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r44hc72bb7e_1.conda - sha256: 6cd12790c46f54c67dba4a08961c69cc82f025f2ba7a30f8fae3940d81def8bd - md5: a6809636e421b99a22d374a752c1a2d6 + size: 2088542 + timestamp: 1757465316904 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-sourcetools-0.1.7_2-r44h1380947_0.conda + sha256: e76acd95aa589ca6b45a0c50ebba23dd0e0dbe2df61b75ccc9303012b4e02a97 + md5: 029dcf287259931e6e5658f351aa282f depends: + - __osx >=11.0 + - libcxx >=19 - r-base >=4.4,<4.5.0a0 license: MIT license_family: MIT - size: 94729 - timestamp: 1757447588692 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-r6-2.6.1-r45hc72bb7e_1.conda - sha256: bd92e91332eba5f0c689583e80adec85ef272c4e0d0b36ee17cb7c11b5693cf2 - md5: 750802806d7d640c286ed8491bb395dc + size: 52733 + timestamp: 1774682592261 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-stringi-1.8.7-r44h76ca873_2.conda + sha256: b064827cfcfc36ee9e4f22ce7e9af221070191b37e4672098ea39b2efd5cee48 + md5: ba5e2315973833091b02e37dbcf212be depends: - - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 95073 - timestamp: 1757447661037 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-ragg-1.5.2-r44h9f1dc4d_0.conda - sha256: c17d0736822035b6b4bcd3da4ce08133b1d261e5f75797acbcb5c01ce2b736b1 - md5: 703283d95499342e45debb5d0dff6020 + - __osx >=11.0 + - icu >=78.2,<79.0a0 + - libcxx >=19 + - r-base >=4.4,<4.5.0a0 + license: FOSS + license_family: OTHER + size: 867575 + timestamp: 1772032993918 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-sys-3.4.3-r44h6168396_1.conda + sha256: 3325789c225438915283a1f343622c49008fcec7a351b0ca18e877cc89661235 + md5: 1f625213603063d363a95af7b0443ed0 depends: - - __glibc >=2.17,<3.0.a0 - - libfreetype >=2.14.2 - - libfreetype6 >=2.14.2 - - libgcc >=14 - - libjpeg-turbo >=3.1.2,<4.0a0 - - libpng >=1.6.55,<1.7.0a0 - - libstdcxx >=14 - - libtiff >=4.7.1,<4.8.0a0 - - libzlib >=1.3.2,<2.0a0 + - __osx >=11.0 - r-base >=4.4,<4.5.0a0 - - r-systemfonts >=1.0.3 - - r-textshaping >=0.3.0 license: MIT license_family: MIT - size: 597977 - timestamp: 1774267937122 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-ragg-1.5.2-r45hfe6cf39_0.conda - sha256: 10bb0c024dd98024cf8c232fd7ff5875eeeaf6f0dd81590e58a5cec69989320e - md5: 4d88961b5d81c4df3c577330c7a41e7f + size: 49809 + timestamp: 1757442423210 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-systemfonts-1.3.2-r44hff64bdd_0.conda + sha256: 947315326f8d515deaf2cd0435aa614b594455bea4837c7fb05d2a8d1f18e6fc + md5: 24f62a21d40b414e3d6a9c7fb077f8b9 depends: - __osx >=11.0 - libcxx >=19 - libfreetype >=2.14.2 - libfreetype6 >=2.14.2 - - libjpeg-turbo >=3.1.2,<4.0a0 - - libpng >=1.6.55,<1.7.0a0 - - libtiff >=4.7.1,<4.8.0a0 - - r-base >=4.5,<4.6.0a0 - - r-systemfonts >=1.0.3 - - r-textshaping >=0.3.0 + - r-base >=4.4,<4.5.0a0 + - r-base64enc + - r-cpp11 >=0.2.1 + - r-jsonlite + - r-lifecycle license: MIT license_family: MIT - size: 534482 - timestamp: 1774268365412 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-ragg-1.5.2-r44hdc8ef2b_0.conda - sha256: 99de844fb8e3f10b7879272512a47e20e27a5bcd32d5e6d3c6b5b072060f30e5 - md5: 9f33f570344f05aae80c297d1c0db985 + size: 663067 + timestamp: 1772798749601 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-testthat-3.3.2-r44h1380947_0.conda + sha256: 0e6a3bdbc7fa682a13947acd84dd223ca8362ef7099279cf33ed8aebd05d0175 + md5: 85790fa8f7768c27caeeaef1d645e163 depends: - __osx >=11.0 - libcxx >=19 - - libfreetype >=2.14.2 - - libfreetype6 >=2.14.2 - - libjpeg-turbo >=3.1.2,<4.0a0 - - libpng >=1.6.55,<1.7.0a0 - - libtiff >=4.7.1,<4.8.0a0 - r-base >=4.4,<4.5.0a0 - - r-systemfonts >=1.0.3 - - r-textshaping >=0.3.0 + - r-brio >=1.1.3 + - r-callr >=3.7.3 + - r-cli >=3.6.1 + - r-desc >=1.4.2 + - r-digest >=0.6.33 + - r-evaluate >=1.0.1 + - r-jsonlite >=1.8.7 + - r-lifecycle >=1.0.3 + - r-magrittr >=2.0.3 + - r-pkgload >=1.3.2.1 + - r-praise >=1.0.0 + - r-processx >=3.8.2 + - r-ps >=1.7.5 + - r-r6 >=2.5.1 + - r-rlang >=1.1.1 + - r-waldo >=0.6.0 + - r-withr >=3.0.2 license: MIT license_family: MIT - size: 528486 - timestamp: 1774268328471 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-ragg-1.5.2-r45h8a73c72_0.conda - sha256: 93c65a4f1578dcc64a219f644c4c2b5589568e073d8f6bd238cc42a7bd594de4 - md5: bcdaba64fc17aa2f3304858a87c09aaf + size: 1826573 + timestamp: 1768138651838 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-textshaping-1.0.5-r44hff64bdd_0.conda + sha256: ec07d09ad7c5d7b49c6a63d26ac909b1479c76f2df86c670c1217bf4f910a2ac + md5: b019a68fd2cc8fa23dce72cbad4636a7 depends: + - __osx >=11.0 + - fribidi >=1.0.16,<2.0a0 + - harfbuzz >=12.3.2 + - libcxx >=19 - libfreetype >=2.14.2 - libfreetype6 >=2.14.2 - - libgcc >=14 - - libjpeg-turbo >=3.1.2,<4.0a0 - - libpng >=1.6.55,<1.7.0a0 - - libstdcxx >=14 - - libtiff >=4.7.1,<4.8.0a0 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - r-systemfonts >=1.0.3 - - r-textshaping >=0.3.0 - - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 1935212 - timestamp: 1774268240585 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-rappdirs-0.3.4-r44h54b55ab_0.conda - sha256: 31c3077610a8cfd3439aa5536b9cf88ee828f78d7256ed1faaca5ba71c2e156f - md5: 8943834285f6f65c857c9f3bf020afed - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - r-base >=4.4,<4.5.0a0 + - r-cpp11 >=0.2.1 + - r-lifecycle + - r-stringi + - r-systemfonts >=1.3.0 license: MIT license_family: MIT - size: 54189 - timestamp: 1768747307308 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-rappdirs-0.3.4-r45hdab4d57_0.conda - sha256: 0fb0eb2ad831738ad79fbe0e40a46ff8b96e7ef9cbe7fe4315f1607fa7db831c - md5: f37aa365542e23151044d8f10785269f + size: 168075 + timestamp: 1772817229726 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-tibble-3.3.1-r44hbe92478_0.conda + sha256: f8e19ff2073a503eb15ad8d305600f75924f68caf599bcd6031b4009f09e6c8d + md5: c145e183683d1536fb15251a28bbec43 depends: - - __osx >=10.13 - - r-base >=4.5,<4.6.0a0 + - __osx >=11.0 + - r-base >=4.4,<4.5.0a0 + - r-fansi >=0.4.0 + - r-lifecycle >=1.0.0 + - r-magrittr + - r-pillar >=1.8.1 + - r-pkgconfig + - r-rlang >=1.0.2 + - r-vctrs >=0.4.2 license: MIT license_family: MIT - size: 53677 - timestamp: 1768747620337 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rappdirs-0.3.4-r44hbe92478_0.conda - sha256: 3e81a67878b270c697f2d9ba4b16253b43e85db278ee78ae65de697dcf359b28 - md5: 9cf0e70230938866f2b971d37d63eb04 + size: 590332 + timestamp: 1768139386281 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-utf8-1.2.6-r44h6168396_1.conda + sha256: 7f890ef0ba543e8351af8ff89bbf85da8b45908b17726dab7dce885c0f1b745c + md5: 0a93729634c01615f566c7a9b2ae5ef8 depends: - __osx >=11.0 - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: MIT - size: 54657 - timestamp: 1768747869641 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-rappdirs-0.3.4-r45heceb674_0.conda - sha256: 4d888be5008e4c27cc35e88eae59f081a4555332a0ffa2a527f503ee62cfe947 - md5: 9458da079685c56f20e8a75d322120a2 + license: Apache-2.0 + license_family: APACHE + size: 144919 + timestamp: 1757425308492 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-utf8-1.2.6-r45h6168396_1.conda + sha256: bb4223a470fba4fddea1d8daf3b4997a7fa76979418529750a4cb90139c1c3c7 + md5: 7f3d77dd38b1228dadadc00a7f01fa79 depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - __osx >=11.0 - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 59032 - timestamp: 1768747465653 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-rcmdcheck-1.4.0-r44h785f33e_4.conda - sha256: 5b71d6653e46d4f455e65d91f9a2b89dbd34be672490e614e5be8490f96715ec - md5: 5da521ad174d2921aeceac5a51774035 + license: Apache-2.0 + license_family: APACHE + size: 144448 + timestamp: 1757424920480 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-vctrs-0.7.3-r44h1380947_0.conda + sha256: 0e0c00c84f73258b7c32f66e41a219efc66b95d724ab9b6216203c1d0821f972 + md5: a91746997cd0f95ecc8640771d9722e5 depends: - - r-base >=4.4,<4.5.0a0 - - r-callr >=3.1.1.9000 - - r-cli >=3.0.0 - - r-curl - - r-desc >=1.2.0 - - r-digest - - r-pkgbuild - - r-prettyunits - - r-r6 - - r-rprojroot - - r-sessioninfo >=1.1.1 - - r-withr - - r-xopen + - __osx >=11.0 + - libcxx >=19 + - r-base >=4.4,<4.5.0a0 + - r-cli >=3.4.0 + - r-glue + - r-lifecycle >=1.0.3 + - r-rlang >=1.0.6 license: MIT license_family: MIT - size: 179296 - timestamp: 1758407837797 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-rcmdcheck-1.4.0-r45h785f33e_4.conda - sha256: 2511fd3049244f26c9bfee1f58823c6e9f200eded58fa893c928700b05271e9a - md5: 46cd08beb113bab9a16bc2a35ca9ea89 + size: 1764693 + timestamp: 1775898358775 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-vctrs-0.7.3-r45h1380947_0.conda + sha256: df102de311f51f8cf616202b34cc2c6000d9f5da4fde41c3c94fc76a53e36f62 + md5: 242bbcd2cd9fa3d2d9a6c4cbb0ada3fb depends: + - __osx >=11.0 + - libcxx >=19 - r-base >=4.5,<4.6.0a0 - - r-callr >=3.1.1.9000 - - r-cli >=3.0.0 - - r-curl - - r-desc >=1.2.0 - - r-digest - - r-pkgbuild - - r-prettyunits - - r-r6 - - r-rprojroot - - r-sessioninfo >=1.1.1 - - r-withr - - r-xopen + - r-cli >=3.4.0 + - r-glue + - r-lifecycle >=1.0.3 + - r-rlang >=1.0.6 license: MIT license_family: MIT - size: 179210 - timestamp: 1758407851979 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-rcpp-1.1.1_1.1-r44h3697838_0.conda - sha256: e163b875b3cacf1d7b91dca6342964b906db03d04a7120cab94b99caefcc27d1 - md5: 022b6d161815bd672368f5fc75175b75 + size: 1751318 + timestamp: 1775898398033 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-xfun-0.57-r44h45a6d21_0.conda + sha256: 5ca36ab3ac9cf39c68e82344c8c78864ba0437d9ca881951a1b37e299891c491 + md5: a1589aeea969b398c34380a53f863bad depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 + - __osx >=11.0 + - libcxx >=19 - r-base >=4.4,<4.5.0a0 - license: GPL-2.0-or-later - license_family: GPL2 - size: 2109454 - timestamp: 1777184201153 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-rcpp-1.1.1_1.1-r45h384437d_0.conda - sha256: c67e739aab8e757317ce6532f9fc7ace38f09fd038129cf46b158e3237181320 - md5: 62fcce24346ed0a529e4872d47228b8b + license: MIT + license_family: MIT + size: 596148 + timestamp: 1774807183712 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-xml2-1.5.2-r44h46c16c0_0.conda + sha256: d9047bc8b6a6fd42e74e080e81e344b3f767a663737e3932f32abd7bf66d0b42 + md5: e3fab16eb0034f903653a9cfc3365e44 depends: - __osx >=11.0 - libcxx >=19 - - r-base >=4.5,<4.6.0a0 + - libxml2 + - libxml2-16 >=2.14.6 + - r-base >=4.4,<4.5.0a0 + - r-cli + - r-rlang >=1.1.0 license: GPL-2.0-or-later license_family: GPL2 - size: 2132395 - timestamp: 1777184587353 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rcpp-1.1.1_1.1-r44h1380947_0.conda - sha256: 96f4d378200b4f1cd34eee3d7b70e1e99739dfd1c502742390e0a88082e05154 - md5: 43629a5a43927d65f8d775e090e732df + size: 203543 + timestamp: 1768765248674 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-yaml-2.3.12-r44h6168396_0.conda + sha256: 0607314d78eb8989a1cd94bb3d54fc1105275d39d9782fb3da2661779d2dbb72 + md5: 4e13e187582da652b054e5a999e25adb depends: - __osx >=11.0 - - libcxx >=19 - r-base >=4.4,<4.5.0a0 - license: GPL-2.0-or-later - license_family: GPL2 - size: 2121658 - timestamp: 1777184897145 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-rcpp-1.1.1_1.1-r45hd8a2815_0.conda - sha256: 58022948f2e166ea5d336981bd4d904fbcac73933d0cbd139d7f837732578b60 - md5: 4d9885196b3667d617242982155e78fe + license: BSD-3-Clause + license_family: BSD + size: 110777 + timestamp: 1765373432219 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-yr-0.1.4-r44h9cfc220_0.conda + sha256: d57f938cd20948c13a99bb42193189e955bd5376bddf6d788a66d3930add63d6 + md5: 72eb2fc523a96be02a62e5e3067066b0 depends: - - libgcc >=14 - - libstdcxx >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base + - __osx >=11.0 + - r-base >=4.4,<4.5.0a0 + constrains: + - __osx >=11.0 + license: MIT + size: 1162654 + timestamp: 1779355004541 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-yr-0.1.4-r45h4bc8d99_0.conda + sha256: 2118469f120ec01f81e7202bdfc7673509da1382da632627b8e266f6f15d1b14 + md5: 2ced5128d1f4c7ab69aac045c1f1c81d + depends: + - r-base + - __osx >=11.0 - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: GPL-2.0-or-later - license_family: GPL2 - size: 2109096 - timestamp: 1777184371532 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-rematch2-2.1.2-r44hc72bb7e_5.conda - sha256: dbce30e4ef2ffae2bb3cff19ca247cac23a863e7c7db7ca407d6c25552e56944 - md5: 9c13ea9c0d41379ad6deee9e0c3932e9 + constrains: + - __osx >=11.0 + license: MIT + size: 1163113 + timestamp: 1779355059148 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-zip-2.3.3-r44h6168396_1.conda + sha256: 5e4355d47e49519f498ebc027facfc5b22bd10ee986685d7afc79690bb72060d + md5: 17491aea153130d81bce091c8e61db10 depends: + - __osx >=11.0 - r-base >=4.4,<4.5.0a0 - - r-tibble + license: MIT + license_family: CC + size: 144715 + timestamp: 1757447922255 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.3-h46df422_0.conda + sha256: a77010528efb4b548ac2a4484eaf7e1c3907f2aec86123ed9c5212ae44502477 + md5: f8381319127120ce51e081dce4865cf4 + depends: + - __osx >=11.0 + - ncurses >=6.5,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 313930 + timestamp: 1765813902568 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.30.0-py314haad56a0_0.conda + sha256: e161dd97403b8b8a083d047369a5cf854557dba1204d29e2f0250f5ac4403925 + md5: 76a4f88d1b7748c477abf3c341edc64c + depends: + - python + - __osx >=11.0 + - python 3.14.* *_cp314 + - python_abi 3.14.* *_cp314 + constrains: + - __osx >=11.0 license: MIT license_family: MIT - size: 56015 - timestamp: 1757496162089 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-rematch2-2.1.2-r45hc72bb7e_5.conda - sha256: 20ec2130c80ac4b9f5488ea5b1d207b932e99b8a41beae62a58a3fcb98480025 - md5: 9190c3379d369e61841fe1bad6dc91e2 + size: 350976 + timestamp: 1764543169524 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-codesign-0.1.3-h98dc951_0.conda + sha256: f3d006e2441f110160a684744d90921bbedbffa247d7599d7e76b5cd048116dc + md5: ade77ad7513177297b1d75e351e136ce depends: - - r-base >=4.5,<4.6.0a0 - - r-tibble + - __osx >=11.0 + - libsigtool 0.1.3 h98dc951_0 + - openssl >=3.5.4,<4.0a0 license: MIT license_family: MIT - size: 56155 - timestamp: 1757496154915 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r44h785f33e_2.conda - sha256: d3042031f593eef9d930f96358fac052969605c261cfebe4921b2510cabeb6a5 - md5: 5d70ec0db6038ea5a9cb54d9fd66fb2f + size: 114331 + timestamp: 1767045086274 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1600.0.11.8-h997e182_2.conda + sha256: de6893e53664e769c1b1c4103a666d436e3d307c0eb6a09a164e749d116e80f7 + md5: 555070ad1e18b72de36e9ee7ed3236b3 depends: - - r-base >=4.4,<4.5.0a0 - - r-base64enc - - r-htmltools - - r-jsonlite - - r-pillar >=1.4.0 - license: GPL-3.0-only - license_family: GPL3 - size: 147720 - timestamp: 1757481827811 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-repr-1.1.7-r45h785f33e_2.conda - sha256: d8229a064695b7a0c36c70b148a76628f180693161bd35a77a9692481794ff37 - md5: 0442a7f2ecc741e142466a7edb5a606f + - libcxx >=19.0.0.a0 + - __osx >=11.0 + - ncurses >=6.5,<7.0a0 + license: NCSA + size: 200192 + timestamp: 1775657222120 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h010d191_3.conda + sha256: 799cab4b6cde62f91f750149995d149bc9db525ec12595e8a1d91b9317f038b3 + md5: a9d86bc62f39b94c4661716624eb21b0 depends: - - r-base >=4.5,<4.6.0a0 - - r-base64enc - - r-htmltools - - r-jsonlite - - r-pillar >=1.4.0 - license: GPL-3.0-only - license_family: GPL3 - size: 147271 - timestamp: 1757481783597 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-rlang-1.2.0-r44h3697838_0.conda - sha256: a40c0775bae9e3d011f42531e23aced9a80e6aa1b9c8f8cfc60c090afdc81bef - md5: 9790e1f5faafdd83f41d2b0562093322 + - __osx >=11.0 + - libzlib >=1.3.1,<2.0a0 + license: TCL + license_family: BSD + size: 3127137 + timestamp: 1769460817696 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tktable-2.10-h28d2b5e_8.conda + sha256: ffb3c72193a9bdb847ea3c95326d299c5788d18d69069ae1e01e717f07fa3626 + md5: 4b5985e749e865290a22d9752955a6ce depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 - license: GPL-3.0-only - license_family: GPL3 - size: 1588910 - timestamp: 1775483702902 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-rlang-1.2.0-r45h3697838_0.conda - sha256: d311a9320326f46ec7372aa4944fcbfaa62f9d976dec6be32f3e44f9bc1c720c - md5: f4fb1a80e2e11b92cfc654e9871dc2b7 + - tk + - __osx >=11.0 + - tk >=8.6.13,<8.7.0a0 + license: TCL + size: 91561 + timestamp: 1773732981206 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.5.5-py314h6c2aa35_0.conda + sha256: 4ccc4a20d676c0ba85adee9c99015bec7f5b685df0cf8006e34573f1d6c2ce75 + md5: 3f81f8b2fe2c26a82c0abf57ab2b9610 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.5,<4.6.0a0 - license: GPL-3.0-only - license_family: GPL3 - size: 1590688 - timestamp: 1775483709345 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-rlang-1.2.0-r45h384437d_0.conda - sha256: 115c8674ef36d4e8de565a7f0d0edb601c00f86100cca3d6d929b4626aef53a2 - md5: 8a3a7f7e2bac9186d3db9babaa6015af + - __osx >=11.0 + - python >=3.14,<3.15.0a0 + - python >=3.14,<3.15.0a0 *_cp314 + - python_abi 3.14.* *_cp314 + license: Apache-2.0 + license_family: Apache + size: 910845 + timestamp: 1774358965067 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/typos-1.46.2-h6fdd925_0.conda + sha256: 2e43bc0789d61ce84245f864d9cfe6cb039a1ccc20f5c094a2cbf2e505b15d74 + md5: 5a5ef0b0eeb3a9e68a7b86563c2b66ec + depends: + - __osx >=11.0 + constrains: + - __osx >=11.0 + license: MIT OR Apache-2.0 + size: 2703214 + timestamp: 1778960861007 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.1.0-py314h6cfcd04_0.conda + sha256: 033dbf9859fe58fb85350cf6395be6b1346792e1766d2d5acab538a6eb3659fb + md5: e229f444fbdb28d8c4f40e247154d993 depends: - __osx >=11.0 + - cffi - libcxx >=19 - - r-base >=4.5,<4.6.0a0 - license: GPL-3.0-only - license_family: GPL3 - size: 1588083 - timestamp: 1775484344009 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rlang-1.2.0-r44h1380947_0.conda - sha256: 596ff3409c21dc94f5bdde16192ea2ea92b2b64181b74672624133c01e86b4d3 - md5: 97aca8c80d396675b2ecdec668507fba + - python >=3.14,<3.15.0a0 + - python >=3.14,<3.15.0a0 *_cp314 + - python_abi 3.14.* *_cp314 + license: MIT + license_family: MIT + size: 14884 + timestamp: 1769439056290 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-6.0.5-h3feff0a_0.conda + sha256: 28167da09fe43ae1d7c65fd099bb7bd3b4d729336ae06a495a185f0dc34ac1f1 + md5: 6d7f82d33f7338e785d908bdf308fd25 depends: - - __osx >=11.0 - libcxx >=19 - - r-base >=4.4,<4.5.0a0 - license: GPL-3.0-only - license_family: GPL3 - size: 1590367 - timestamp: 1775484098704 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-rlang-1.2.0-r45h1380947_0.conda - sha256: 1cf095974a1ec3da7b5dce09f8ad3087dc70315caaa924ed382d2546f05cb521 - md5: 997e2d9c38b940fa7f55c0d999e7d689 + - __osx >=11.0 + - nlohmann_json-abi ==3.12.0 + license: BSD-3-Clause + license_family: BSD + size: 319780 + timestamp: 1776328966204 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-r-0.11.0-r44he0f44cb_0.conda + sha256: adb10a83f9e15d27da05b7b4c80ccca6f1fc4ec5905d76613d0c7fe529a149d9 + md5: 949f64cf71d4b63705bb835a7615b23f depends: + - r-base + - r-cli + - r-evaluate + - r-glue + - r-irdisplay + - r-jsonlite + - r-r6 + - r-repr + - r-rlang - __osx >=11.0 - libcxx >=19 - - r-base >=4.5,<4.6.0a0 - license: GPL-3.0-only - license_family: GPL3 - size: 1583156 - timestamp: 1775484000407 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-rlang-1.2.0-r45hd8a2815_0.conda - sha256: c7751407c7784526a4a5e7c2233c7beb5d37543a313cbdb3850b7da0d3a4d55d - md5: 282469d881efb5677157e0474ce66b68 - depends: - - libgcc >=14 - - libstdcxx >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - ucrt >=10.0.20348.0 - license: GPL-3.0-only - license_family: GPL3 - size: 1596881 - timestamp: 1775483949173 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-rmarkdown-2.31-r44hc72bb7e_0.conda - sha256: 406f6f8ecf8f5359a91b6fa58eb9e9977971b0b02c83ce4c6a4c2cae177885e9 - md5: 9249652dc813710baedac0a55da54846 - depends: - - pandoc >=1.14 - r-base >=4.4,<4.5.0a0 - - r-bslib >=0.2.5.1 - - r-evaluate >=0.13 - - r-fontawesome >=0.5.0 - - r-htmltools >=0.5.1 - - r-jquerylib - - r-jsonlite - - r-knitr >=1.43 - - r-tinytex >=0.31 - - r-xfun >=0.36 - - r-yaml >=2.1.19 + - nlohmann_json-abi ==3.12.0 + - xeus >=6.0.5,<6.1.0a0 + - xeus-zmq >=4.0.0,<4.1.0a0 license: GPL-3.0-only - license_family: GPL3 - size: 2085649 - timestamp: 1774555004040 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-rmarkdown-2.31-r45hc72bb7e_0.conda - sha256: b3735a4e75eca023b24678251da041854b94a8b96588d81b605928d6ecf74f11 - md5: 25b9dbf0ff990b8b3111774878e3bb07 + license_family: GPL + size: 339259 + timestamp: 1778071464252 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-r-0.11.0-r45he709540_0.conda + sha256: 7f4a39c06b50da020f98c6345fee616de5946219c7a15c7b42ff5ea03b0a31a1 + md5: e560fe2adcc9993ec970d4064b6a866f depends: - - pandoc >=1.14 - - r-base >=4.5,<4.6.0a0 - - r-bslib >=0.2.5.1 - - r-evaluate >=0.13 - - r-fontawesome >=0.5.0 - - r-htmltools >=0.5.1 - - r-jquerylib + - r-base + - r-cli + - r-evaluate + - r-glue + - r-irdisplay - r-jsonlite - - r-knitr >=1.43 - - r-tinytex >=0.31 - - r-xfun >=0.36 - - r-yaml >=2.1.19 - license: GPL-3.0-only - license_family: GPL3 - size: 2085382 - timestamp: 1774555006202 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-roxygen2-8.0.0-r44h3697838_0.conda - sha256: 4087b34ed6400777468d569e3b043f575fdbd8352f470ebbe134cd0c287e39fe - md5: 02b6639fb85246f7544b721f1bb57ba4 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 - - r-brew - - r-commonmark - - r-cpp11 - - r-desc >=1.2.0 - - r-digest - - r-knitr - - r-pkgload >=1.0.2 - - r-purrr >=0.3.3 - - r-r6 >=2.1.2 + - r-r6 + - r-repr - r-rlang - - r-stringi - - r-stringr >=1.0.0 - - r-xml2 - license: MIT - license_family: GPL3 - size: 838383 - timestamp: 1777663238876 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-roxygen2-8.0.0-r45h384437d_0.conda - sha256: 287edd5e8844ac55f8b5e6c760602152d158e4f69bdfd0b7ee7eb0c4bd9029ea - md5: e570442a63d895d8b940f02d70b5bacf - depends: - __osx >=11.0 - libcxx >=19 + - xeus-zmq >=4.0.0,<4.1.0a0 + - nlohmann_json-abi ==3.12.0 - r-base >=4.5,<4.6.0a0 - - r-brew - - r-commonmark - - r-cpp11 - - r-desc >=1.2.0 - - r-digest - - r-knitr - - r-pkgload >=1.0.2 - - r-purrr >=0.3.3 - - r-r6 >=2.1.2 - - r-rlang - - r-stringi - - r-stringr >=1.0.0 - - r-xml2 - license: MIT - license_family: GPL3 - size: 837162 - timestamp: 1777663467266 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-roxygen2-8.0.0-r44h1380947_0.conda - sha256: 7a9a082b25dae07ac7fe176d21e8ecac38af2c5e5d6f6c183e7a1860f6a48c80 - md5: f85198ce54f2adc88128eefce1952501 + - xeus >=6.0.5,<6.1.0a0 + license: GPL-3.0-only + license_family: GPL + size: 339309 + timestamp: 1778071382100 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-zmq-4.0.0-h5cc99d8_0.conda + sha256: f0d101dd79940a0598bd975f34794a9096fbf9003a67133254814dcc22d4e581 + md5: 33db501dd01c34f5ba00cf0d5cbc869f depends: - __osx >=11.0 - libcxx >=19 - - r-base >=4.4,<4.5.0a0 - - r-brew - - r-commonmark - - r-cpp11 - - r-desc >=1.2.0 - - r-digest - - r-knitr - - r-pkgload >=1.0.2 - - r-purrr >=0.3.3 - - r-r6 >=2.1.2 - - r-rlang - - r-stringi - - r-stringr >=1.0.0 - - r-xml2 + - nlohmann_json-abi ==3.12.0 + - xeus >=6.0.1,<6.1.0a0 + - openssl >=3.6.1,<4.0a0 + - zeromq >=4.3.5,<4.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 385074 + timestamp: 1772664418822 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h925e9cb_3.conda + sha256: b03433b13d89f5567e828ea9f1a7d5c5d697bf374c28a4168d71e9464f5dafac + md5: 78a0fe9e9c50d2c381e8ee47e3ea437d + depends: + - __osx >=11.0 license: MIT - license_family: GPL3 - size: 982333 - timestamp: 1777663826860 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-roxygen2-8.0.0-r45hd8a2815_0.conda - sha256: edac2c1b620137af93ad5874195183ae52b79f453b82d9cb33479797eb5baefd - md5: ac279cd9bfdb07c77f649c164aebc17d + license_family: MIT + size: 83386 + timestamp: 1753484079473 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-h10816f8_11.conda + sha256: 01fd50d2801b23b59fafea6bf704a6c5faf0f5969104400eae0e6572cb2e5304 + md5: d31c0e54c4f9c51100ec8c812ee925d1 + depends: + - libcxx >=19 + - __osx >=11.0 + - krb5 >=1.22.2,<1.23.0a0 + - libsodium >=1.0.22,<1.0.23.0a0 + license: MPL-2.0 + license_family: MOZILLA + size: 245404 + timestamp: 1779124076307 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.3.2-h8088a28_2.conda + sha256: 8dd2ac25f0ba714263aac5832d46985648f4bfb9b305b5021d702079badc08d2 + md5: f1c0bce276210bed45a04949cfe8dc20 + depends: + - __osx >=11.0 + - libzlib 1.3.2 h8088a28_2 + license: Zlib + license_family: Other + size: 81123 + timestamp: 1774072974535 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.7-hbf9d68e_6.conda + sha256: 9485ba49e8f47d2b597dd399e88f4802e100851b27c21d7525625b0b4025a5d9 + md5: ab136e4c34e97f34fb621d2592a393d8 + depends: + - __osx >=11.0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 433413 + timestamp: 1764777166076 +- conda: https://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-20_gnu.conda + build_number: 20 + sha256: 8a1cee28bd0ee7451ada1cd50b64720e57e17ff994fc62dd8329bef570d382e4 + md5: 1626967b574d1784b578b52eaeb071e7 + depends: + - libgomp >=7.5.0 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + constrains: + - openmp_impl <0.0a0 + - msys2-conda-epoch <0.0a0 + license: BSD-3-Clause + license_family: BSD + size: 52252 + timestamp: 1770943776666 +- conda: https://conda.anaconda.org/conda-forge/win-64/air-0.9.0-h18a1a76_2.conda + sha256: f4e412fa3800cd6dd7d696cc65360026695d2eb4e7c8f4f30d07bcae673e9479 + md5: 897a4d6c1368c3942b5e9df45487c130 depends: - - libgcc >=14 - - libstdcxx >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - r-brew - - r-commonmark - - r-cpp11 - - r-desc >=1.2.0 - - r-digest - - r-knitr - - r-pkgload >=1.0.2 - - r-purrr >=0.3.3 - - r-r6 >=2.1.2 - - r-rlang - - r-stringi - - r-stringr >=1.0.0 - - r-xml2 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 - ucrt >=10.0.20348.0 license: MIT - license_family: GPL3 - size: 849221 - timestamp: 1777663582454 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-rprojroot-2.1.1-r44hc72bb7e_1.conda - sha256: 23db8cfaf9c46b48fe8969c716887972f2d243e60268cca6999fdf1402b89f87 - md5: 51b5479ff88c1260e80ec9195189be13 + license_family: MIT + size: 2635166 + timestamp: 1775342514863 +- conda: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-25.1.0-py314h5a2d7ad_2.conda + sha256: a742e7cd0d5534bfff3fd550a0c1e430411fad60a24f88930d261056ab08096f + md5: ffa247e46f47e157851dc547f4c513e4 depends: - - r-base >=4.4,<4.5.0a0 + - cffi >=2.0.0b1 + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 license: MIT license_family: MIT - size: 116982 - timestamp: 1757447577256 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-rprojroot-2.1.1-r45hc72bb7e_1.conda - sha256: 9e359973b9433ffaef7a65a1f3483723048427aee4a3208512863c4c70c409a4 - md5: e1b7c51411ad3dd2a95aea6d466b12f7 + size: 38653 + timestamp: 1762509771011 +- conda: https://conda.anaconda.org/conda-forge/win-64/binutils_impl_win-64-2.45.1-default_ha84baeb_102.conda + sha256: 9123bf592bca01e226eeaf7ad70853a54eaae30d7585be5751eed2d6624bc39a + md5: 74d89550a0a593e67a32fd1d2509a85a depends: - - r-base >=4.5,<4.6.0a0 + - ld_impl_win-64 2.45.1 default_hfd38196_102 + - m2w64-sysroot_win-64 >=12.0.0.r0 + - zstd >=1.5.7,<1.6.0a0 + license: GPL-3.0-only + license_family: GPL + size: 6121562 + timestamp: 1774198074938 +- conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.2.0-py314he701e3d_1.conda + sha256: 6854ee7675135c57c73a04849c29cbebc2fb6a3a3bfee1f308e64bf23074719b + md5: 1302b74b93c44791403cbeee6a0f62a3 + depends: + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - libbrotlicommon 1.2.0 hfd05255_1 license: MIT license_family: MIT - size: 117773 - timestamp: 1757447613700 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-rstudioapi-0.18.0-r44hc72bb7e_0.conda - sha256: 939b5dcf6b45de5d133a4f5a06d3f049f9263dff1e74ce8b95e0d44c2ce39109 - md5: f8688c428b2bbd58f28537826f7e9afa + size: 335782 + timestamp: 1764018443683 +- conda: https://conda.anaconda.org/conda-forge/win-64/bwidget-1.10.1-h57928b3_1.conda + sha256: 539b9df7e02288e0a978f59616abe87c973debc1d65fee3caab3586c0d961547 + md5: f99aeb077e200ba813e2096d56efb4ae depends: - - r-base >=4.4,<4.5.0a0 + - tk + license: TCL + size: 126266 + timestamp: 1750261570600 +- conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_9.conda + sha256: 76dfb71df5e8d1c4eded2dbb5ba15bb8fb2e2b0fe42d94145d5eed4c75c35902 + md5: 4cb8e6b48f67de0b018719cdf1136306 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: bzip2-1.0.6 + license_family: BSD + size: 56115 + timestamp: 1771350256444 +- conda: https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.4-h477c42c_1.conda + sha256: 9ee4ad706c5d3e1c6c469785d60e3c2b263eec569be0eac7be33fbaef978bccc + md5: 52ea1beba35b69852d210242dd20f97d + depends: + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - icu >=78.1,<79.0a0 + - libexpat >=2.7.3,<3.0a0 + - libfreetype >=2.14.1 + - libfreetype6 >=2.14.1 + - libglib >=2.86.3,<3.0a0 + - libpng >=1.6.53,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - pixman >=0.46.4,<1.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: LGPL-2.1-only or MPL-1.1 + size: 1537783 + timestamp: 1766416059188 +- conda: https://conda.anaconda.org/conda-forge/win-64/cffi-2.0.0-py314h5a2d7ad_1.conda + sha256: 924f2f01fa7a62401145ef35ab6fc95f323b7418b2644a87fea0ea68048880ed + md5: c360170be1c9183654a240aadbedad94 + depends: + - pycparser + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 license: MIT license_family: MIT - size: 345579 - timestamp: 1768620468137 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-rstudioapi-0.18.0-r45hc72bb7e_0.conda - sha256: f5a35d4b7dfc17d7ae6eb92210906ccb1fbcc93acacb6d7b392e83bf15702fba - md5: e70e87e097876186fdac23d1a01faede + size: 294731 + timestamp: 1761203441365 +- conda: https://conda.anaconda.org/conda-forge/win-64/curl-8.20.0-h8206538_0.conda + sha256: 4d14e99627c35eb13261d930f6f58c4a295cbbdc90ec2e624a3cb13822078018 + md5: fdee2c425c3876a2fb3ba8a361e7ad2c depends: - - r-base >=4.5,<4.6.0a0 + - krb5 >=1.22.2,<1.23.0a0 + - libcurl 8.20.0 h8206538_0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: curl + license_family: MIT + size: 186081 + timestamp: 1777461642598 +- conda: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.20-py314hb98de8c_0.conda + sha256: ece1d8299ad081edaf1e5279f2a900bdedddb2c795ac029a06401543cd7610ad + md5: 48ae8370a4562f7049d587d017792a3a + depends: + - python + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.14.* *_cp314 license: MIT license_family: MIT - size: 345783 - timestamp: 1768620480911 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-rversions-3.0.0-r44hc72bb7e_0.conda - sha256: 2a992c4e66904053dda99f56144cc675bee383223cc9d75cef25115370fa63d6 - md5: 0d8372fccb5ca284a2d3707d2b9392e6 + size: 4026404 + timestamp: 1769745008861 +- conda: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.17.1-hd47e2ca_0.conda + sha256: ff2db9d305711854de430f946dc59bd40167940a1de38db29c5a78659f219d9c + md5: a0b1b87e871011ca3b783bbf410bc39f depends: - - r-base >=4.4,<4.5.0a0 - - r-curl - - r-xml2 >=1.0.0 + - libexpat >=2.7.4,<3.0a0 + - libfreetype >=2.14.1 + - libfreetype6 >=2.14.1 + - libiconv >=1.18,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 license: MIT license_family: MIT - size: 145164 - timestamp: 1760025528414 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-rversions-3.0.0-r45hc72bb7e_0.conda - sha256: ce6e20e0836735760c76ea66393c3f5d3447834cc8b2c064247a1ca238821d30 - md5: 3154fa3ece90604a48de42393bd6f7b0 + size: 195332 + timestamp: 1771382820659 +- conda: https://conda.anaconda.org/conda-forge/win-64/fribidi-1.0.16-hfd05255_0.conda + sha256: 15011071ee56c216ffe276c8d734427f1f893f275ef733f728d13f610ed89e6e + md5: c27bd87e70f970010c1c6db104b88b18 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: LGPL-2.1-or-later + size: 64394 + timestamp: 1757438741305 +- conda: https://conda.anaconda.org/conda-forge/win-64/gcc_impl_win-64-15.2.0-h062b9a2_19.conda + sha256: 9a1087fc15253a923d6c4f3a313285b1ad7f5e8c849f24086bc0696b9383313b + md5: 04354147d91b3ac936a4f410af5e1d0f + depends: + - binutils_impl_win-64 >=2.45 + - libgcc >=15.2.0 + - libgcc-devel_win-64 15.2.0 hbb59886_119 + - libgomp >=15.2.0 + - libstdcxx >=15.2.0 + - libstdcxx-devel_win-64 15.2.0 h0a72980_119 + - m2w64-sysroot_win-64 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 62130152 + timestamp: 1778273122806 +- conda: https://conda.anaconda.org/conda-forge/win-64/gfortran_impl_win-64-15.2.0-h0e079bb_19.conda + sha256: 0204002c214622bb701e643723c4ea4fb4417e9a59415fac804747289dafb446 + md5: f87fbb8ca50927f218328fcc8767130d + depends: + - gcc_impl_win-64 >=15.2.0 + - libgcc >=15.2.0 + - libgfortran5 >=15.2.0 + - libstdcxx >=15.2.0 + - m2w64-sysroot_win-64 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 17264590 + timestamp: 1778273342581 +- conda: https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.14-hac47afa_2.conda + sha256: 5f1714b07252f885a62521b625898326ade6ca25fbc20727cfe9a88f68a54bfd + md5: b785694dd3ec77a011ccf0c24725382b + depends: + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: LGPL-2.0-or-later + license_family: LGPL + size: 96336 + timestamp: 1755102441729 +- conda: https://conda.anaconda.org/conda-forge/win-64/gsl-2.7-hdfb1a43_0.tar.bz2 + sha256: 4bb43ff81eca1631a3738dee073763cbff2d27a47ac3c60d7b7233941d7ab202 + md5: ca5c581b3659140455cf6ae00f6a2ea9 + depends: + - libblas >=3.8.0,<4.0a0 + - libcblas >=3.8.0,<4.0a0 + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: GPL-3.0-or-later + license_family: GPL + size: 1739909 + timestamp: 1626371462874 +- conda: https://conda.anaconda.org/conda-forge/win-64/gxx_impl_win-64-15.2.0-h22fd5bf_19.conda + sha256: 2f3b16794653b12a4aebe9e8073f51dd5f8ff1c82b40585434d1a7f32ff0a558 + md5: 816b9049907b42a6a4ec655aebe67d3c + depends: + - gcc_impl_win-64 15.2.0 h062b9a2_19 + - libstdcxx-devel_win-64 15.2.0 h0a72980_119 + - m2w64-sysroot_win-64 + - tzdata + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 14813951 + timestamp: 1778273408391 +- conda: https://conda.anaconda.org/conda-forge/win-64/harfbuzz-14.2.0-h5a1b470_0.conda + sha256: 82abc468768c5130b45e4025fe289e0c84ea015d7fa23059503da212c89097cb + md5: b8862b83b5c899f5b65bcba0298b8478 depends: - - r-base >=4.5,<4.6.0a0 - - r-curl - - r-xml2 >=1.0.0 + - cairo >=1.18.4,<2.0a0 + - graphite2 >=1.3.14,<2.0a0 + - icu >=78.3,<79.0a0 + - libexpat >=2.7.5,<3.0a0 + - libfreetype >=2.14.3 + - libfreetype6 >=2.14.3 + - libglib >=2.86.4,<3.0a0 + - libzlib >=1.3.2,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 license: MIT license_family: MIT - size: 145145 - timestamp: 1760025497442 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-sass-0.4.10-r44h3697838_1.conda - sha256: 5aa378f547b9d77810f2c466a6a2715809e78af700e078d04ad839eb1f2f6e39 - md5: 523ee1e398b97b5369e9f457c6fabf45 + size: 1322557 + timestamp: 1776778816190 +- conda: https://conda.anaconda.org/conda-forge/win-64/icu-78.3-h637d24d_0.conda + sha256: 1bda728d70a619731b278c859eda364146cb5b4b8c739a64da8128353d81d1c4 + md5: 0097b24800cb696915c3dbd1f5335d3f depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 - - r-digest - - r-fs - - r-htmltools - - r-r6 - - r-rappdirs - - r-rlang + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 license: MIT license_family: MIT - size: 2316643 - timestamp: 1757464686244 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-sass-0.4.10-r45ha730edb_1.conda - sha256: 68c39f6613cb0caadecbcbf5e4e19c8757b143570a81ccd6add92de64b200624 - md5: 205f283f76621392df4e92255dccdf62 + size: 14954024 + timestamp: 1773822508646 +- conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.22.2-h0ea6238_0.conda + sha256: eb60f1ad8b597bcf95dee11bc11fe71a8325bc1204cf51d2bb1f2120ffd77761 + md5: 4432f52dc0c8eb6a7a6abc00a037d93c depends: - - __osx >=10.13 - - libcxx >=19 - - r-base >=4.5,<4.6.0a0 - - r-digest - - r-fs - - r-htmltools - - r-r6 - - r-rappdirs - - r-rlang + - openssl >=3.5.5,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 license: MIT license_family: MIT - size: 2130207 - timestamp: 1757465003313 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-sass-0.4.10-r44hc1cd577_1.conda - sha256: 830d16da5eeb96f9a15f813a509f198ed7fb57a542bc9e1fbb2e25ad4ea47b0f - md5: a71af8b2b4f529b1d39a9f12f18cd674 + size: 751055 + timestamp: 1769769688841 +- conda: https://conda.anaconda.org/conda-forge/win-64/ld_impl_win-64-2.45.1-default_hfd38196_102.conda + sha256: 5256fe3ac465452a9702ca2b48adf47d1de905ed47d98fd5976ddb9c7a85619c + md5: b0019a6e9267dd74b7efeefa970df76a depends: - - __osx >=11.0 - - libcxx >=19 - - r-base >=4.4,<4.5.0a0 - - r-digest - - r-fs - - r-htmltools - - r-r6 - - r-rappdirs - - r-rlang - license: MIT - license_family: MIT - size: 2088542 - timestamp: 1757465316904 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-sass-0.4.10-r45hd8a2815_1.conda - sha256: 87c20b656db555b1f499fb2abe3aa36dd8400fb78c388e9c22293c8bbe2f1950 - md5: c6172996a0b4944b9df1f266f88ef09b + - zstd >=1.5.7,<1.6.0a0 + constrains: + - binutils_impl_win-64 2.45.1 + license: GPL-3.0-only + license_family: GPL + size: 877159 + timestamp: 1774198058013 +- conda: https://conda.anaconda.org/conda-forge/win-64/lerc-4.1.0-hd936e49_0.conda + sha256: 45df58fca800b552b17c3914cc9ab0d55a82c5172d72b5c44a59c710c06c5473 + md5: 54b231d595bc1ff9bff668dd443ee012 depends: - - libgcc >=14 - - libstdcxx >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - r-digest - - r-fs - - r-htmltools - - r-r6 - - r-rappdirs - - r-rlang - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 2101750 - timestamp: 1757465457151 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-selectr-0.5_1-r44hc72bb7e_0.conda - sha256: 166a16ca7043cec69daf599fe4e467195502ced1cd2eae7a311c6c9a7a86e798 - md5: 785761bb8cca665133149cdc3ffbcb69 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: Apache-2.0 + license_family: Apache + size: 172395 + timestamp: 1773113455582 +- conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.11.0-7_h8455456_mkl.conda + build_number: 7 + sha256: 9eec27eee4300284e62a61cb2298089c80d31f6f9e924eeabc06e9788a00cffe + md5: 269e54b44974ff48846b4c31d0397041 depends: - - r-base >=4.4,<4.5.0a0 - - r-r6 - - r-stringr + - mkl >=2026.0.0,<2027.0a0 + constrains: + - blas 2.307 mkl + - libcblas 3.11.0 7*_mkl + - liblapacke 3.11.0 7*_mkl + - liblapack 3.11.0 7*_mkl license: BSD-3-Clause license_family: BSD - size: 484783 - timestamp: 1765969027875 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-selectr-0.5_1-r45hc72bb7e_0.conda - sha256: d5d4dddd88a5c282c345897bb9faaac4dcc2bca5e63269aec32fa6b21a77bfad - md5: cf2e9902cba2ba0ec9368910a6ae908e + size: 68060 + timestamp: 1778490352569 +- conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.11.0-7_h2a3cdd5_mkl.conda + build_number: 7 + sha256: 82da0f854831f783f9d3f1219c4255956e8167a474f3f526151128f02453871c + md5: 4700b7af6acefb26ff0127ba68230941 depends: - - r-base >=4.5,<4.6.0a0 - - r-r6 - - r-stringr + - libblas 3.11.0 7_h8455456_mkl + constrains: + - blas 2.307 mkl + - liblapacke 3.11.0 7*_mkl + - liblapack 3.11.0 7*_mkl license: BSD-3-Clause license_family: BSD - size: 478871 - timestamp: 1765968903101 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-sessioninfo-1.2.3-r44hc72bb7e_1.conda - sha256: 8d5af5e9db919709931128cc03df52eb420393a2f83414bac21955045224a9bc - md5: f0b99a3fe330a0b89cfd67e690ce8f1f - depends: - - r-base >=4.4,<4.5.0a0 - - r-cli - - r-withr - license: GPL-2.0-only - license_family: GPL2 - size: 210461 - timestamp: 1757548030427 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-sessioninfo-1.2.3-r45hc72bb7e_1.conda - sha256: 83749d9ea9422d89e8e59e93dfee6423297e83a1fab325b03d412700784773bc - md5: e2d98358063814d40bcb9150b45fb6e9 - depends: - - r-base >=4.5,<4.6.0a0 - - r-cli - - r-withr - license: GPL-2.0-only - license_family: GPL2 - size: 210056 - timestamp: 1757547994444 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-shiny-1.13.0-r44h785f33e_0.conda - sha256: 080a0bf20220f0e7f1f4c3bd23d1fc2e14b0eb1463529206e428cbaa108f3894 - md5: b640cb5cf0f76255e48ced588d786ae8 - depends: - - r-base >=4.4,<4.5.0a0 - - r-bslib >=0.6.0 - - r-cachem >=1.1.0 - - r-commonmark >=1.7 - - r-crayon - - r-fastmap >=1.1.1 - - r-fontawesome >=0.4.0 - - r-glue >=1.3.2 - - r-htmltools >=0.5.4 - - r-httpuv >=1.5.2 - - r-jsonlite >=0.9.16 - - r-later >=1.0.0 - - r-lifecycle >=0.2.0 - - r-mime >=0.3 - - r-promises >=1.1.0 - - r-r6 >=2.0 - - r-rlang >=0.4.10 - - r-sourcetools - - r-withr - - r-xtable - license: GPL-3.0-only - license_family: GPL3 - size: 3744885 - timestamp: 1771613519917 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-shiny-1.13.0-r45h785f33e_0.conda - sha256: 10515a454fe45fcadcb5e954fcebd59b8014a32d3d73e28b942fea64ecb54d97 - md5: 1f431e9c637e0e271d0f347829e09fa6 - depends: - - r-base >=4.5,<4.6.0a0 - - r-bslib >=0.6.0 - - r-cachem >=1.1.0 - - r-commonmark >=1.7 - - r-crayon - - r-fastmap >=1.1.1 - - r-fontawesome >=0.4.0 - - r-glue >=1.3.2 - - r-htmltools >=0.5.4 - - r-httpuv >=1.5.2 - - r-jsonlite >=0.9.16 - - r-later >=1.0.0 - - r-lifecycle >=0.2.0 - - r-mime >=0.3 - - r-promises >=1.1.0 - - r-r6 >=2.0 - - r-rlang >=0.4.10 - - r-sourcetools - - r-withr - - r-xtable - license: GPL-3.0-only - license_family: GPL3 - size: 3738931 - timestamp: 1771613508103 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-sourcetools-0.1.7_2-r44h3697838_0.conda - sha256: 6b81e212540d34adf1b51a91fb5ae4aed7340aea63d53b4fa789846d52b1d735 - md5: c7add8a0c4502dcc748bf3386541c224 + size: 68594 + timestamp: 1778490364980 +- conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.20.0-h8206538_0.conda + sha256: f4ce5aa835a698532feaa368e804365a7e45a9edebe006a8e1c80505d893c24e + md5: 7bee27a8f0a295117ccb864f30d2d87e depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 - license: MIT + - krb5 >=1.22.2,<1.23.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: curl license_family: MIT - size: 54863 - timestamp: 1774682292501 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-sourcetools-0.1.7_2-r45h384437d_0.conda - sha256: 9b68d95c899e2c6e1ecab615df7444a4769ad02e6f504bde7f7a0519577cfa45 - md5: afd1a125ebcb2387d547cc8a4c6b043e + size: 393114 + timestamp: 1777461635732 +- conda: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.25-h51727cc_0.conda + sha256: 834e4881a18b690d5ec36f44852facd38e13afe599e369be62d29bd675f107ee + md5: e77030e67343e28b084fabd7db0ce43e depends: - - __osx >=11.0 - - libcxx >=19 - - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 license: MIT license_family: MIT - size: 52606 - timestamp: 1774682566630 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-sourcetools-0.1.7_2-r44h1380947_0.conda - sha256: e76acd95aa589ca6b45a0c50ebba23dd0e0dbe2df61b75ccc9303012b4e02a97 - md5: 029dcf287259931e6e5658f351aa282f + size: 156818 + timestamp: 1761979842440 +- conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.8.1-hac47afa_0.conda + sha256: a65e518c20d1482182bc0f1f6dd5d992f25ca44c3b32307be39ae8310db8f060 + md5: 23eb9474a16d4b9f6f27429989e82002 depends: - - __osx >=11.0 - - libcxx >=19 - - r-base >=4.4,<4.5.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - expat 2.8.1.* license: MIT license_family: MIT - size: 52733 - timestamp: 1774682592261 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-sourcetools-0.1.7_2-r45hd8a2815_0.conda - sha256: b42a08a451bd976a64bbdf0e41546641b919f991f335dd539b08365200ff13cb - md5: f9d0b3d9db3721a96880a1fce5fdc825 + size: 71280 + timestamp: 1779278786150 +- conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.5.2-h3d046cb_0.conda + sha256: 59d01f2dfa8b77491b5888a5ab88ff4e1574c9359f7e229da254cdfe27ddc190 + md5: 720b39f5ec0610457b725eb3f396219a depends: - - libgcc >=14 - - libstdcxx >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 license: MIT license_family: MIT - size: 57962 - timestamp: 1774682536768 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-stringi-1.8.7-r44h3d52c89_2.conda - sha256: b2c0e9fe8d2973e8f550a6a4bcc877d5bddaf6aa4633efc8d0dc0cd02579f518 - md5: 716a7c37c2e2b12b4f844d986c55aee3 + size: 45831 + timestamp: 1769456418774 +- conda: https://conda.anaconda.org/conda-forge/win-64/libfreetype-2.14.3-h57928b3_0.conda + sha256: 71fae9ae05563ceec70adceb7bc66faa326a81a6590a8aac8a5074019070a2d8 + md5: d9f70dd06674e26b6d5a657ddd22b568 depends: - - __glibc >=2.17,<3.0.a0 - - icu >=78.2,<79.0a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 - license: FOSS - license_family: OTHER - size: 939815 - timestamp: 1772032520166 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-stringi-1.8.7-r45h64d3038_2.conda - sha256: 9a30d40249d831d0c0ea00485ec88b8c1d818c146f88560c0c5ccbb02e9ecc10 - md5: d39d22e6a04cd39ab54925210ac949e1 + - libfreetype6 >=2.14.3 + license: GPL-2.0-only OR FTL + size: 8379 + timestamp: 1774300468411 +- conda: https://conda.anaconda.org/conda-forge/win-64/libfreetype6-2.14.3-hdbac1cb_0.conda + sha256: 497e9ab7c80f579e1b2850523740d6a543b8020f6b43be6bd6e83b3a6fb7fb32 + md5: f9975a0177ee6cdda10c86d1db1186b0 depends: - - __osx >=11.0 - - icu >=78.2,<79.0a0 - - libcxx >=19 - - r-base >=4.5,<4.6.0a0 - license: FOSS - license_family: OTHER - size: 883046 - timestamp: 1772032927355 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-stringi-1.8.7-r44h76ca873_2.conda - sha256: b064827cfcfc36ee9e4f22ce7e9af221070191b37e4672098ea39b2efd5cee48 - md5: ba5e2315973833091b02e37dbcf212be + - libpng >=1.6.55,<1.7.0a0 + - libzlib >=1.3.2,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - freetype >=2.14.3 + license: GPL-2.0-only OR FTL + size: 340180 + timestamp: 1774300467879 +- conda: https://conda.anaconda.org/conda-forge/win-64/libgcc-15.2.0-h8ee18e1_19.conda + sha256: 80e80ef5e31b00b12539db3c5aaecde60dab91381abfc1060e323d5c3b016dce + md5: cc5d690fc1c629038f13c68e88e65f44 depends: - - __osx >=11.0 - - icu >=78.2,<79.0a0 - - libcxx >=19 - - r-base >=4.4,<4.5.0a0 - license: FOSS - license_family: OTHER - size: 867575 - timestamp: 1772032993918 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-stringi-1.8.7-r45hd8a2815_2.conda - sha256: ddb9bb6fa3e094f50019106bc1ed9f1f5616a7543cefb8e8c9f4694707f31c8e - md5: c695560326ab4871a637e8fdaba4d92b + - _openmp_mutex >=4.5 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + constrains: + - msys2-conda-epoch <0.0a0 + - libgcc-ng ==15.2.0=*_19 + - libgomp 15.2.0 h8ee18e1_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 821854 + timestamp: 1778273037795 +- conda: https://conda.anaconda.org/conda-forge/win-64/libgfortran-15.2.0-h719f0c7_19.conda + sha256: c312a73e6f032898ab07d9ab5f1e9752ee5a8017acfa3fe8707b8ad67f703c4e + md5: f92c61628b028b94ad20c3d09b1bcd6b depends: - - libgcc >=14 - - libstdcxx >=14 + - libgfortran5 15.2.0 h44d81a7_19 + constrains: + - libgfortran-ng ==15.2.0=*_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 51402 + timestamp: 1778273257466 +- conda: https://conda.anaconda.org/conda-forge/win-64/libgfortran5-15.2.0-h44d81a7_19.conda + sha256: 5b094652485b6307bb8991a5f877d15c10a4f0c6b5698b041bb6e1bd408e01f4 + md5: 4849bc0fd45bcb95ce981c449e8cf7f4 + depends: + - libgcc >=15.2.0 - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 + constrains: + - libgfortran 15.2.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 2792696 + timestamp: 1778273047082 +- conda: https://conda.anaconda.org/conda-forge/win-64/libgit2-1.9.3-hce7164d_0.conda + sha256: 7a2ce25012d0ee82a51b7574bcd4637770bb0e4c8c2f8149dbc209d6d2354a03 + md5: 72cad1389453f8cb712602734003b95e + depends: + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 - ucrt >=10.0.20348.0 - license: FOSS - license_family: OTHER - size: 10963469 - timestamp: 1772033155177 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-stringr-1.6.0-r44h785f33e_0.conda - sha256: 257a890269425bc338ee660fba694d28e9cc48e7bea9e6f1af9334123d97965c - md5: 4186ef1048a6a5e5f55c359eb442093f + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + license: GPL-2.0-only WITH GCC-exception-2.0 + license_family: GPL + size: 1178336 + timestamp: 1777944428375 +- conda: https://conda.anaconda.org/conda-forge/win-64/libglib-2.88.1-h7ce1215_2.conda + sha256: f61277e224e9889c221bb2eac0f57d5aeeb82fc45d3dc326957d251c97444f7c + md5: 5fb838786a8317ebb38056bbe236d3ff depends: - - r-base >=4.4,<4.5.0a0 - - r-cli - - r-glue >=1.6.1 - - r-lifecycle >=1.0.3 - - r-magrittr - - r-rlang >=1.0.0 - - r-stringi >=1.5.3 - - r-vctrs - license: MIT - license_family: MIT - size: 318920 - timestamp: 1762269717092 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-stringr-1.6.0-r45h785f33e_0.conda - sha256: dea2a7676dd03ed93fa0ec961883c5075c361c8522659a1bc1e6b5c16525cb24 - md5: 8db438d8aa370726ee1ce8bf458f2e6d + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - libiconv >=1.18,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + - pcre2 >=10.47,<10.48.0a0 + - libintl >=0.22.5,<1.0a0 + - libffi >=3.5.2,<3.6.0a0 + constrains: + - glib >2.66 + license: LGPL-2.1-or-later + size: 4522891 + timestamp: 1778508851933 +- conda: https://conda.anaconda.org/conda-forge/win-64/libgomp-15.2.0-h8ee18e1_19.conda + sha256: 4dc958ced2fc7f42bc675b07e2c9abe3e150875ffdf62ca551d94fc6facf1fd7 + md5: f1147651e3fdd585e2f442c0c2fc8f2d depends: - - r-base >=4.5,<4.6.0a0 - - r-cli - - r-glue >=1.6.1 - - r-lifecycle >=1.0.3 - - r-magrittr - - r-rlang >=1.0.0 - - r-stringi >=1.5.3 - - r-vctrs - license: MIT - license_family: MIT - size: 319328 - timestamp: 1762269757617 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-sys-3.4.3-r44h54b55ab_1.conda - sha256: fb66890ea18fb2cc36ed1349cda0d5da831cdb186344ee7a781adc18ad29ffe1 - md5: 52483832668bfe9a097ce5c438751fee + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + constrains: + - msys2-conda-epoch <0.0a0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 664640 + timestamp: 1778272979661 +- conda: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.13.0-default_h049141e_1000.conda + sha256: 2ee12e37223dfcd0acd050c80a91150c482b6e2899198521e1800dce66662467 + md5: 6a01c986e30292c715038d2788aa1385 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: MIT - size: 50068 - timestamp: 1757441775859 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-sys-3.4.3-r45h735ac91_1.conda - sha256: aeb21ac5fe82391242bffe9311b6667f5a1e0e27cc2586566d2922ac8b133800 - md5: fce9523c92ae8be9e7d13b626d40b9c4 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - libxml2 + - libxml2-16 >=2.14.6 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: BSD-3-Clause + license_family: BSD + size: 2396128 + timestamp: 1770954127918 +- conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.18-hc1393d2_2.conda + sha256: 0dcdb1a5f01863ac4e8ba006a8b0dc1a02d2221ec3319b5915a1863254d7efa7 + md5: 64571d1dd6cdcfa25d0664a5950fdaa2 depends: - - __osx >=10.13 - - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 48825 - timestamp: 1757442111729 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-sys-3.4.3-r44h6168396_1.conda - sha256: 3325789c225438915283a1f343622c49008fcec7a351b0ca18e877cc89661235 - md5: 1f625213603063d363a95af7b0443ed0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: LGPL-2.1-only + size: 696926 + timestamp: 1754909290005 +- conda: https://conda.anaconda.org/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda + sha256: c7e4600f28bcada8ea81456a6530c2329312519efcf0c886030ada38976b0511 + md5: 2cf0cf76cc15d360dfa2f17fd6cf9772 depends: - - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: MIT - size: 49809 - timestamp: 1757442423210 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-sys-3.4.3-r45heceb674_1.conda - sha256: dae2326728d982382576ce16bd0e74de7d9baaa0ceaf31754bc78681c1e6047e - md5: a395d5faf0148acdfafa79cbbc003fd0 + - libiconv >=1.17,<2.0a0 + license: LGPL-2.1-or-later + size: 95568 + timestamp: 1723629479451 +- conda: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.1.4.1-hfd05255_0.conda + sha256: 698d57b5b90120270eaa401298319fcb25ea186ae95b340c2f4813ed9171083d + md5: 25a127bad5470852b30b239f030ec95b depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 54312 - timestamp: 1757441968270 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-systemfonts-1.3.2-r44h74f4acd_0.conda - sha256: f9360850ff6fd066611cbe12d2e03d30c78dc73248b6ea9b118824cc1ab2fcdc - md5: 96fa109c591c3a36b233118064d90f2e + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 842806 + timestamp: 1775962811457 +- conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.11.0-7_hf9ab0e9_mkl.conda + build_number: 7 + sha256: cd20e15b893ef82612fa46db41ad677351feb0c42cf3c27172777a35bb99b421 + md5: 56de899eaa1209fd8769418b7bc7a60c depends: - - __glibc >=2.17,<3.0.a0 - - libfreetype >=2.14.2 - - libfreetype6 >=2.14.2 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 - - r-base64enc - - r-cpp11 >=0.2.1 - - r-jsonlite - - r-lifecycle - license: MIT - license_family: MIT - size: 709551 - timestamp: 1772797918598 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-systemfonts-1.3.2-r45h50b51c1_0.conda - sha256: 926a89a48098f6cd0e825f8815faa3f2ba2a169008379597daffc0e0862b22e2 - md5: 12b991063ac953c1dcc2d82aac69511b + - libblas 3.11.0 7_h8455456_mkl + constrains: + - blas 2.307 mkl + - libcblas 3.11.0 7*_mkl + - liblapacke 3.11.0 7*_mkl + license: BSD-3-Clause + license_family: BSD + size: 80578 + timestamp: 1778490377191 +- conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.3-hfd05255_0.conda + sha256: d636d1a25234063642f9c531a7bb58d84c1c496411280a36ea000bd122f078f1 + md5: 8f83619ab1588b98dd99c90b0bfc5c6d depends: - - __osx >=11.0 - - libcxx >=19 - - libfreetype >=2.14.2 - - libfreetype6 >=2.14.2 - - r-base >=4.5,<4.6.0a0 - - r-base64enc - - r-cpp11 >=0.2.1 - - r-jsonlite - - r-lifecycle - license: MIT - license_family: MIT - size: 672110 - timestamp: 1772798481838 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-systemfonts-1.3.2-r44hff64bdd_0.conda - sha256: 947315326f8d515deaf2cd0435aa614b594455bea4837c7fb05d2a8d1f18e6fc - md5: 24f62a21d40b414e3d6a9c7fb077f8b9 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - xz 5.8.3.* + license: 0BSD + size: 106486 + timestamp: 1775825663227 +- conda: https://conda.anaconda.org/conda-forge/win-64/libmpdec-4.0.0-hfd05255_1.conda + sha256: 40dcd0b9522a6e0af72a9db0ced619176e7cfdb114855c7a64f278e73f8a7514 + md5: e4a9fc2bba3b022dad998c78856afe47 depends: - - __osx >=11.0 - - libcxx >=19 - - libfreetype >=2.14.2 - - libfreetype6 >=2.14.2 - - r-base >=4.4,<4.5.0a0 - - r-base64enc - - r-cpp11 >=0.2.1 - - r-jsonlite - - r-lifecycle - license: MIT - license_family: MIT - size: 663067 - timestamp: 1772798749601 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-systemfonts-1.3.2-r45h295cb35_0.conda - sha256: a01b30c6f466896b871fc4a43f8c4f2b765e4ed7b2ae67badf5c8aefa1bb6b5c - md5: 7ff20352407ef26122adec8be2c69ed1 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: BSD-2-Clause + license_family: BSD + size: 89411 + timestamp: 1769482314283 +- conda: https://conda.anaconda.org/conda-forge/win-64/libnghttp2-1.68.1-hac47afa_0.conda + sha256: 9b780f2129b3fb26b6ea62f3aaac9c72363f1aaaa2f428641eac279553d9a37a + md5: 395cb5ecb21a0c5103752bee89af2d68 depends: - - libfreetype >=2.14.2 - - libfreetype6 >=2.14.2 - - libgcc >=14 - - libstdcxx >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - r-base64enc - - r-cpp11 >=0.2.1 - - r-jsonlite - - r-lifecycle - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 license: MIT license_family: MIT - size: 1566074 - timestamp: 1772798267720 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-testthat-3.3.2-r44h3697838_0.conda - sha256: e5eb7862965a8e8293641367eecc6fc48b9d57958b50b3d1ae7980315064b913 - md5: 023ba33273b38b9c3ec1f7b88d1fe057 + size: 121363 + timestamp: 1773853965838 +- conda: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.58-h7351971_0.conda + sha256: 218913aeee391460bd0e341b834dbd9c6fa6ae0a4276c0c300266cc99a816a28 + md5: 52f1280563f3b48b5f75414cd2d15dd1 depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 - - r-brio >=1.1.3 - - r-callr >=3.7.3 - - r-cli >=3.6.1 - - r-desc >=1.4.2 - - r-digest >=0.6.33 - - r-evaluate >=1.0.1 - - r-jsonlite >=1.8.7 - - r-lifecycle >=1.0.3 - - r-magrittr >=2.0.3 - - r-pkgload >=1.3.2.1 - - r-praise >=1.0.0 - - r-processx >=3.8.2 - - r-ps >=1.7.5 - - r-r6 >=2.5.1 - - r-rlang >=1.1.1 - - r-waldo >=0.6.0 - - r-withr >=3.0.2 - license: MIT - license_family: MIT - size: 1845818 - timestamp: 1768138291423 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-testthat-3.3.2-r45hed9a748_0.conda - sha256: 535fa0572855e8ed07fa97c416af23cdd6d1a38e28c7e18422303683dd8bac82 - md5: 9647ebd70ed8ea8def1d6ba4b237eebb + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - libzlib >=1.3.2,<2.0a0 + license: zlib-acknowledgement + size: 385227 + timestamp: 1776315248638 +- conda: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.22-h6a83c73_1.conda + sha256: de45b71224da77a1c3a7dd48d8885eb957c9f05455d4f0828463293e7144330f + md5: 7d5abf7ca1bd00b43d273f44d93d05dc depends: - - __osx >=10.13 - - libcxx >=19 - - r-base >=4.5,<4.6.0a0 - - r-brio >=1.1.3 - - r-callr >=3.7.3 - - r-cli >=3.6.1 - - r-desc >=1.4.2 - - r-digest >=0.6.33 - - r-evaluate >=1.0.1 - - r-jsonlite >=1.8.7 - - r-lifecycle >=1.0.3 - - r-magrittr >=2.0.3 - - r-pkgload >=1.3.2.1 - - r-praise >=1.0.0 - - r-processx >=3.8.2 - - r-ps >=1.7.5 - - r-r6 >=2.5.1 - - r-rlang >=1.1.1 - - r-waldo >=0.6.0 - - r-withr >=3.0.2 - license: MIT - license_family: MIT - size: 1833834 - timestamp: 1768138584762 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-testthat-3.3.2-r44h1380947_0.conda - sha256: 0e6a3bdbc7fa682a13947acd84dd223ca8362ef7099279cf33ed8aebd05d0175 - md5: 85790fa8f7768c27caeeaef1d645e163 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + license: ISC + size: 280234 + timestamp: 1779164124739 +- conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.53.1-hf5d6505_0.conda + sha256: e70562450332ca8954bc16f3455468cca5ef3695c7d7187ecc87f8fc3c70e9eb + md5: 7fea434a17c323256acc510a041b80d7 depends: - - __osx >=11.0 - - libcxx >=19 - - r-base >=4.4,<4.5.0a0 - - r-brio >=1.1.3 - - r-callr >=3.7.3 - - r-cli >=3.6.1 - - r-desc >=1.4.2 - - r-digest >=0.6.33 - - r-evaluate >=1.0.1 - - r-jsonlite >=1.8.7 - - r-lifecycle >=1.0.3 - - r-magrittr >=2.0.3 - - r-pkgload >=1.3.2.1 - - r-praise >=1.0.0 - - r-processx >=3.8.2 - - r-ps >=1.7.5 - - r-r6 >=2.5.1 - - r-rlang >=1.1.1 - - r-waldo >=0.6.0 - - r-withr >=3.0.2 - license: MIT - license_family: MIT - size: 1826573 - timestamp: 1768138651838 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-testthat-3.3.2-r45hd8a2815_0.conda - sha256: f5a72214cdf8d408486d4d3f6697ccd9f6ab5dc617751cc88f5c411407626d75 - md5: 6ea6742e318daf31265a275367238329 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: blessing + size: 1304178 + timestamp: 1777986510497 +- conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda + sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 + md5: 9dce2f112bfd3400f4f432b3d0ac07b2 + depends: + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.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: 292785 + timestamp: 1745608759342 +- conda: https://conda.anaconda.org/conda-forge/win-64/libstdcxx-15.2.0-hae5796f_19.conda + sha256: 39e3ccf4fa64e24196e57ca34387bdd8f7c749bf3beab1a849244e6923c288d2 + md5: fff457de671788d3df3d5cb246caec3e depends: - - libgcc >=14 - - libstdcxx >=14 + - libgcc 15.2.0 h8ee18e1_19 - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - r-brio >=1.1.3 - - r-callr >=3.7.3 - - r-cli >=3.6.1 - - r-desc >=1.4.2 - - r-digest >=0.6.33 - - r-evaluate >=1.0.1 - - r-jsonlite >=1.8.7 - - r-lifecycle >=1.0.3 - - r-magrittr >=2.0.3 - - r-pkgload >=1.3.2.1 - - r-praise >=1.0.0 - - r-processx >=3.8.2 - - r-ps >=1.7.5 - - r-r6 >=2.5.1 - - r-rlang >=1.1.1 - - r-waldo >=0.6.0 - - r-withr >=3.0.2 + constrains: + - libstdcxx-ng ==15.2.0=*_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 6461114 + timestamp: 1778273060138 +- conda: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.1-h8f73337_1.conda + sha256: f1b8cccaaeea38a28b9cd496694b2e3d372bb5be0e9377c9e3d14b330d1cba8a + md5: 549845d5133100142452812feb9ba2e8 + depends: + - lerc >=4.0.0,<5.0a0 + - libdeflate >=1.25,<1.26.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libzlib >=1.3.1,<2.0a0 - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 1808011 - timestamp: 1768138442987 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-textshaping-1.0.5-r44h74f4acd_0.conda - sha256: cea854352390c0812f1ef07b6543fb686ba2f0af6245d9fcd4a7484fcc199782 - md5: 9ef6dfccbb04a1487ba71aad719174c4 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - zstd >=1.5.7,<1.6.0a0 + license: HPND + size: 993166 + timestamp: 1762022118895 +- conda: https://conda.anaconda.org/conda-forge/win-64/libuv-1.51.0-hfd05255_1.conda + sha256: f03dc82e6fb1725788e73ae97f0cd3d820d5af0d351a274104a0767035444c59 + md5: 31e1545994c48efc3e6ea32ca02a8724 depends: - - __glibc >=2.17,<3.0.a0 - - fribidi >=1.0.16,<2.0a0 - - harfbuzz >=12.3.2 - - libfreetype >=2.14.2 - - libfreetype6 >=2.14.2 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 - - r-cpp11 >=0.2.1 - - r-lifecycle - - r-stringi - - r-systemfonts >=1.3.0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 license: MIT license_family: MIT - size: 190495 - timestamp: 1772816658774 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-textshaping-1.0.5-r45h50b51c1_0.conda - sha256: 5c37daba8883a90a635210037b8e3b00096d66e23f0e277c3f0c42194c510afe - md5: 8d6a35f5f0178c5240c3ce2fc3fcb52f + size: 297087 + timestamp: 1753948490874 +- conda: https://conda.anaconda.org/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_10.conda + sha256: 0fccf2d17026255b6e10ace1f191d0a2a18f2d65088fd02430be17c701f8ffe0 + md5: 8a86073cf3b343b87d03f41790d8b4e5 depends: - - __osx >=11.0 - - fribidi >=1.0.16,<2.0a0 - - harfbuzz >=12.3.2 - - libcxx >=19 - - libfreetype >=2.14.2 - - libfreetype6 >=2.14.2 - - r-base >=4.5,<4.6.0a0 - - r-cpp11 >=0.2.1 - - r-lifecycle - - r-stringi - - r-systemfonts >=1.3.0 - license: MIT - license_family: MIT - size: 174097 - timestamp: 1772817897333 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-textshaping-1.0.5-r44hff64bdd_0.conda - sha256: ec07d09ad7c5d7b49c6a63d26ac909b1479c76f2df86c670c1217bf4f910a2ac - md5: b019a68fd2cc8fa23dce72cbad4636a7 + - ucrt + constrains: + - pthreads-win32 <0.0a0 + - msys2-conda-epoch <0.0a0 + license: MIT AND BSD-3-Clause-Clear + size: 36621 + timestamp: 1759768399557 +- conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-16-2.15.3-h3cfd58e_0.conda + sha256: 3b61ee3caba702d2ff432fa3920835db963026e5c99c4e6fdca0c6114f59e7ce + md5: 9e8dd0d90ed830107b2c36801035b7db depends: - - __osx >=11.0 - - fribidi >=1.0.16,<2.0a0 - - harfbuzz >=12.3.2 - - libcxx >=19 - - libfreetype >=2.14.2 - - libfreetype6 >=2.14.2 - - r-base >=4.4,<4.5.0a0 - - r-cpp11 >=0.2.1 - - r-lifecycle - - r-stringi - - r-systemfonts >=1.3.0 + - icu >=78.3,<79.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.3,<6.0a0 + - libzlib >=1.3.2,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - libxml2 2.15.3 license: MIT license_family: MIT - size: 168075 - timestamp: 1772817229726 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-textshaping-1.0.5-r45h295cb35_0.conda - sha256: dba2fa8859bafb1a351887d5f6ed347d2ea5b5e44f43d85edf6d85791cd8391b - md5: 1dd5c0f947f11470639796c55df01b1c + size: 519871 + timestamp: 1776376969852 +- conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.15.3-h8ef44ab_0.conda + sha256: a4599c6bbbbdd7db570896e520c557eec8e66d94e839a59d17dc1f24a3d5f82b + md5: 95591ca5671d2213f5b2d5aa7818420d depends: - - fribidi >=1.0.16,<2.0a0 - - harfbuzz >=12.3.2 - - libfreetype >=2.14.2 - - libfreetype6 >=2.14.2 - - libgcc >=14 - - libstdcxx >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - r-cpp11 >=0.2.1 - - r-lifecycle - - r-stringi - - r-systemfonts >=1.3.0 + - icu >=78.3,<79.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.3,<6.0a0 + - libxml2-16 2.15.3 h3cfd58e_0 + - libzlib >=1.3.2,<2.0a0 - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 license: MIT license_family: MIT - size: 1070232 - timestamp: 1772816858019 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-tibble-3.3.1-r44h54b55ab_0.conda - sha256: 2c9351a0390512341bd1e03352728e176912fabacbe44e8912a0d42d262f1351 - md5: 4896d527628b3637c7e5bd2132a4c6a1 + size: 43684 + timestamp: 1776376992865 +- conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.2-hfd05255_2.conda + sha256: 88609816e0cc7452bac637aaf65783e5edf4fee8a9f8e22bdc3a75882c536061 + md5: dbabbd6234dea34040e631f87676292f depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - - r-fansi >=0.4.0 - - r-lifecycle >=1.0.0 - - r-magrittr - - r-pillar >=1.8.1 - - r-pkgconfig - - r-rlang >=1.0.2 - - r-vctrs >=0.4.2 - license: MIT - license_family: MIT - size: 590155 - timestamp: 1768139123115 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-tibble-3.3.1-r45hdab4d57_0.conda - sha256: 151684365b3488be9348dc077dccf9f26dbff053163efec838dcbb93c99a96a2 - md5: 6718afb349aecd1ccb57d6cf017133e5 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - zlib 1.3.2 *_2 + license: Zlib + license_family: Other + size: 58347 + timestamp: 1774072851498 +- conda: https://conda.anaconda.org/conda-forge/win-64/llvm-openmp-22.1.6-h4fa8253_0.conda + sha256: b12aa9c957fadf488888aa4cad6d424d499ffcceefe5d8e9077c4da46308f26b + md5: 1966432ddb4d5e13890dae3758a112d3 depends: - - __osx >=10.13 - - r-base >=4.5,<4.6.0a0 - - r-fansi >=0.4.0 - - r-lifecycle >=1.0.0 - - r-magrittr - - r-pillar >=1.8.1 - - r-pkgconfig - - r-rlang >=1.0.2 - - r-vctrs >=0.4.2 - license: MIT - license_family: MIT - size: 588925 - timestamp: 1768139585173 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-tibble-3.3.1-r44hbe92478_0.conda - sha256: f8e19ff2073a503eb15ad8d305600f75924f68caf599bcd6031b4009f09e6c8d - md5: c145e183683d1536fb15251a28bbec43 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - openmp 22.1.6|22.1.6.* + - intel-openmp <0.0a0 + license: Apache-2.0 WITH LLVM-exception + size: 347116 + timestamp: 1779341186510 +- conda: https://conda.anaconda.org/conda-forge/win-64/m2-conda-epoch-20250515-0_x86_64.conda + build_number: 0 + sha256: 51e9214548f177db9c3fe70424e3774c95bf19cd69e0e56e83abe2e393228ba1 + md5: 7d60fb16df2cd07fbc3dbff1c9df4244 + constrains: + - msys2-conda-epoch <0.0a0 + license: BSD-3-Clause + license_family: BSD + size: 7539 + timestamp: 1747330852019 +- conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.3-py314h2359020_1.conda + sha256: 02805a0f3cd168dbf13afc5e4aed75cc00fe538ce143527a6471485b36f5887c + md5: 8de7b40f8b30a8fcaa423c2537fe4199 depends: - - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - - r-fansi >=0.4.0 - - r-lifecycle >=1.0.0 - - r-magrittr - - r-pillar >=1.8.1 - - r-pkgconfig - - r-rlang >=1.0.2 - - r-vctrs >=0.4.2 - license: MIT - license_family: MIT - size: 590332 - timestamp: 1768139386281 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-tibble-3.3.1-r45heceb674_0.conda - sha256: 142660ae043a8aec21b54e1c135ad20461a46413f475c978a18c974d09b31762 - md5: d3d5ed60c4643f8b0e7d94280f1dbd95 + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 30022 + timestamp: 1772445159549 +- conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2026.0.0-hac47afa_908.conda + sha256: f997bfc9bc4d4e14261cdcd1ad195d64a72ee44dca3145d24c1349f8d1311aa5 + md5: 36ea6e1292e9d5e89374201da79646ef depends: - - libgcc >=14 - - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - r-base >=4.5,<4.6.0a0 - - r-fansi >=0.4.0 - - r-lifecycle >=1.0.0 - - r-magrittr - - r-pillar >=1.8.1 - - r-pkgconfig - - r-rlang >=1.0.2 - - r-vctrs >=0.4.2 + - llvm-openmp >=22.1.5 + - onemkl-license 2026.0.0 h57928b3_908 + - tbb >=2023.0.0 - ucrt >=10.0.20348.0 - license: MIT - license_family: MIT - size: 593964 - timestamp: 1768139280446 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-tinytex-0.59-r44hc72bb7e_0.conda - sha256: 6b048dce9baa52fd24fa12b87b6ae08474bf660f958fb800fd7cd7005b44e724 - md5: 011fa05cdf36b7d5aa0861ee6f2413d7 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: LicenseRef-IntelSimplifiedSoftwareOct2022 + license_family: Proprietary + size: 114354729 + timestamp: 1779293121860 +- conda: https://conda.anaconda.org/conda-forge/win-64/onemkl-license-2026.0.0-h57928b3_908.conda + sha256: 42ad15cbb3bf31830efa04d4b86dd2d5c0dd590c86f98adcd3c8c1f75acf5dd5 + md5: 9c9303e08b50e09f5c23e1dac99d0936 + license: LicenseRef-IntelSimplifiedSoftwareOct2022 + license_family: Proprietary + size: 41580 + timestamp: 1779292867015 +- conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.6.2-hf411b9b_0.conda + sha256: feb5815125c60f2be4a411e532db1ed1cd2d7261a6a43c54cb6ae90724e2e154 + md5: 05c7d624cff49dbd8db1ad5ba537a8a3 depends: - - r-base >=4.4,<4.5.0a0 - - r-xfun >=0.5 - license: MIT - license_family: MIT - size: 157615 - timestamp: 1774815068505 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-tinytex-0.59-r45hc72bb7e_0.conda - sha256: cabc58da08c6398846a9150447bef28da09ea440e10d4dcf39e46cbb26424848 - md5: 23e96bde077293a06d1f16ca1d33e009 + - ca-certificates + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: Apache-2.0 + license_family: Apache + size: 9410183 + timestamp: 1775589779763 +- conda: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.9.0.2-h57928b3_0.conda + sha256: e7e19b88040df48b172eef8270e6ca55d93243635fb447527831974a0714b761 + md5: 1844e86a2fffbd77a99d03af217d9dfa + license: GPL-2.0-or-later + license_family: GPL + size: 26667130 + timestamp: 1773933498636 +- conda: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.47-hd2b5f0e_0.conda + sha256: 3e9e02174edf02cb4bcdd75668ad7b74b8061791a3bc8bdb8a52ae336761ba3e + md5: 77eaf2336f3ae749e712f63e36b0f0a1 depends: - - r-base >=4.5,<4.6.0a0 - - r-xfun >=0.5 + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: BSD-3-Clause + license_family: BSD + size: 995992 + timestamp: 1763655708300 +- conda: https://conda.anaconda.org/conda-forge/win-64/pixman-0.46.4-h5112557_1.conda + sha256: 246fce4706b3f8b247a7d6142ba8d732c95263d3c96e212b9d63d6a4ab4aff35 + md5: 08c8fa3b419df480d985e304f7884d35 + depends: + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 157337 - timestamp: 1774815071643 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-urlchecker-1.0.1-r44hc72bb7e_4.conda - sha256: 387f16b5cd2a43008b960540a062a4f640beb6330bda558fcc8ee3a4c65440b2 - md5: 758d7f34c4ee93da99b03493760aae48 + size: 542795 + timestamp: 1754665193489 +- conda: https://conda.anaconda.org/conda-forge/win-64/psutil-7.2.2-py314hc5dbbe4_0.conda + sha256: 17c8274ce5a32c9793f73a5a0094bd6188f3a13026a93147655143d4df034214 + md5: fd539ac231820f64066839251aa9fa48 depends: - - r-base >=4.4,<4.5.0a0 - - r-cli - - r-curl - - r-xml2 - license: GPL-3.0-only - license_family: GPL3 - size: 52354 - timestamp: 1758409122934 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-urlchecker-1.0.1-r45hc72bb7e_4.conda - sha256: 3c1ac479352099400b82b866db5a49b6c2f9802451e5ecf42385abaf4db73f4f - md5: d8603dd91958a841382fdced991aba9a + - python + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.14.* *_cp314 + license: BSD-3-Clause + license_family: BSD + size: 249950 + timestamp: 1769678167309 +- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.14.5-h4b44e0e_100_cp314.conda + build_number: 100 + sha256: c561d171e5d1f1bb1a83ca6fa6aa49577a2956a245c5040dfaf8ca20c10a096e + md5: 3f76bc298eebc1ec1497852f4d7f09d9 depends: - - r-base >=4.5,<4.6.0a0 - - r-cli - - r-curl - - r-xml2 - license: GPL-3.0-only - license_family: GPL3 - size: 52246 - timestamp: 1758409118952 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-usethis-3.2.1-r44hc72bb7e_1.conda - sha256: 1182f2621d960e48c425ef9531be71217db3ef308040752050ad89ccde248fbf - md5: c12c8d608c5d8300418923e35724ebc8 + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.8.0,<3.0a0 + - libffi >=3.5.2,<3.6.0a0 + - liblzma >=5.8.3,<6.0a0 + - libmpdec >=4.0.0,<5.0a0 + - libsqlite >=3.53.1,<4.0a0 + - libzlib >=1.3.2,<2.0a0 + - openssl >=3.5.6,<4.0a0 + - python_abi 3.14.* *_cp314 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - zstd >=1.5.7,<1.6.0a0 + license: Python-2.0 + size: 18375338 + timestamp: 1779237800732 + python_site_packages_path: Lib/site-packages +- conda: https://conda.anaconda.org/conda-forge/win-64/pywin32-311-py314hcaaf0b2_2.conda + sha256: 695a42ed8597df226b32bdca6a90df7c188b99820388c9faf77d5e23bf595738 + md5: 7e2c2a44161e600982eb1b7437125396 depends: - - r-base >=4.4,<4.5.0a0 - - r-cli - - r-clipr >=0.3.0 - - r-crayon - - r-curl >=2.7 - - r-desc - - r-ellipsis - - r-fs >=1.3.0 - - r-gert >=1.0.2 - - r-gh >=1.2.0 - - r-glue >=1.3.0 - - r-jsonlite - - r-lifecycle - - r-purrr - - r-rappdirs - - r-rlang >=0.4.3 - - r-rprojroot >=1.2 - - r-rstudioapi - - r-whisker - - r-withr >=2.3.0 - - r-yaml - license: MIT - license_family: MIT - size: 916613 - timestamp: 1758433321593 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-usethis-3.2.1-r45hc72bb7e_1.conda - sha256: 3c8dc056e071d002dfde20f14cd8b1bad4b210f6e7e2d26cfc5eaf8f1342b1b2 - md5: dcbfbae5c448a2e54f37457f16075468 + - python + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.14.* *_cp314 + license: PSF-2.0 + license_family: PSF + size: 6713587 + timestamp: 1779222949650 +- conda: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.15-py314h51f0985_1.conda + sha256: 048e20641da680aedaab285640a2aca56b7b5baf7a18f8f164f2796e13628c1f + md5: dd84e8748bd3c85a5c751b0576488080 depends: - - r-base >=4.5,<4.6.0a0 - - r-cli - - r-clipr >=0.3.0 - - r-crayon - - r-curl >=2.7 - - r-desc - - r-ellipsis - - r-fs >=1.3.0 - - r-gert >=1.0.2 - - r-gh >=1.2.0 - - r-glue >=1.3.0 - - r-jsonlite - - r-lifecycle - - r-purrr - - r-rappdirs - - r-rlang >=0.4.3 - - r-rprojroot >=1.2 - - r-rstudioapi - - r-whisker - - r-withr >=2.3.0 - - r-yaml + - python >=3.14.0rc3,<3.15.0a0 + - python_abi 3.14.* *_cp314 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - winpty license: MIT license_family: MIT - size: 915479 - timestamp: 1758433263601 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-utf8-1.2.6-r44h54b55ab_1.conda - sha256: 8baeb9d46c17ce6578155af0f2dce665267eb8a16fa263659ad33e5005c3ed3f - md5: c7bce6987e0f5aaf9bdf5296dd3693c4 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - license: Apache-2.0 - license_family: APACHE - size: 147724 - timestamp: 1757424747047 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-utf8-1.2.6-r45h54b55ab_1.conda - sha256: 97186abdf7c29872e012c9fe05ec16c019b58c43ac7b778baa480a8acae9c914 - md5: 75cb2540ac930ea879e92d99e00e97c3 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - r-base >=4.5,<4.6.0a0 - license: Apache-2.0 - license_family: APACHE - size: 147244 - timestamp: 1757424673681 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-utf8-1.2.6-r45h735ac91_1.conda - sha256: 3d9badbdfdb0b87973ade8079d6e66f9cb81544c06d3b4db9b96a004eed92e04 - md5: d1f457be352ee40e54cc1c99d3e27ac3 - depends: - - __osx >=10.13 - - r-base >=4.5,<4.6.0a0 - license: Apache-2.0 - license_family: APACHE - size: 143423 - timestamp: 1757424904605 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-utf8-1.2.6-r44h6168396_1.conda - sha256: 7f890ef0ba543e8351af8ff89bbf85da8b45908b17726dab7dce885c0f1b745c - md5: 0a93729634c01615f566c7a9b2ae5ef8 + size: 216325 + timestamp: 1759557436167 +- conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.3-py314h2359020_1.conda + sha256: a2aff34027aa810ff36a190b75002d2ff6f9fbef71ec66e567616ac3a679d997 + md5: 0cd9b88826d0f8db142071eb830bce56 depends: - - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - license: Apache-2.0 - license_family: APACHE - size: 144919 - timestamp: 1757425308492 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-utf8-1.2.6-r45h6168396_1.conda - sha256: bb4223a470fba4fddea1d8daf3b4997a7fa76979418529750a4cb90139c1c3c7 - md5: 7f3d77dd38b1228dadadc00a7f01fa79 + - python >=3.14,<3.15.0a0 + - python_abi 3.14.* *_cp314 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + size: 181257 + timestamp: 1770223460931 +- conda: https://conda.anaconda.org/conda-forge/win-64/pyzmq-27.1.0-py312h343a6d4_2.conda + noarch: python + sha256: d84bcc19a945ca03d1fd794be3e9896ab6afc9f691d58d9c2da514abe584d4df + md5: eb1ec67a70b4d479f7dd76e6c8fe7575 depends: - - __osx >=11.0 - - r-base >=4.5,<4.6.0a0 - license: Apache-2.0 - license_family: APACHE - size: 144448 - timestamp: 1757424920480 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-utf8-1.2.6-r45heceb674_1.conda - sha256: dd762d00890c7acf305c01e2ea336779cf967c4392c78e2e24b924177ea77ec2 - md5: a5c083558799a8281380d0151f0cf58e + - python + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - zeromq >=4.3.5,<4.3.6.0a0 + - _python_abi3_support 1.* + - cpython >=3.12 + license: BSD-3-Clause + license_family: BSD + size: 183235 + timestamp: 1771716967192 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-askpass-1.2.1-r45heceb674_1.conda + sha256: 7e6dcbc6f4831745a42479249cb81b459910ec0eacb844df73f1f87275257916 + md5: 474cb96dedd2ba0cfd431ad2cbeebb1c depends: - libgcc >=14 - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 + - r-sys >=2.1 - ucrt >=10.0.20348.0 - license: Apache-2.0 - license_family: APACHE - size: 145731 - timestamp: 1757424927032 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-vctrs-0.7.3-r44h3697838_0.conda - sha256: b3e9ab33e1b23036f628307a6ffd440276895292929ee9dfd916ed74db64cf6f - md5: 77dedc64b9fe9f8452c57b503d231f96 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 - - r-cli >=3.4.0 - - r-glue - - r-lifecycle >=1.0.3 - - r-rlang >=1.0.6 license: MIT license_family: MIT - size: 1807489 - timestamp: 1775897992371 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-vctrs-0.7.3-r45h3697838_0.conda - sha256: 73b0cdea9f85496b80e75ffa20f94aa4ab746f4b7af566742e22381bffa6772d - md5: 372cefc1b05a567d1fbe19633766ab0c + size: 74071 + timestamp: 1758384205961 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-base-4.5.3-h9c56521_1.conda + sha256: 9dc73a10c38bc5f963f60a72682f69669aa36b9d0f4af7fa2183783c9a375710 + md5: f0454070cab8fea2780daf61cec65cc0 + depends: + - _r-mutex 1.* anacondar_1 + - bwidget + - bzip2 >=1.0.8,<2.0a0 + - cairo >=1.18.4,<2.0a0 + - curl + - fontconfig >=2.17.1,<3.0a0 + - fonts-conda-ecosystem + - gcc_impl_win-64 >=13 + - gfortran_impl_win-64 + - gsl >=2.7,<2.8.0a0 + - gxx_impl_win-64 >=13 + - icu >=78.2,<79.0a0 + - libblas >=3.9.0,<4.0a0 + - libcurl >=8.19.0,<9.0a0 + - libdeflate >=1.25,<1.26.0a0 + - libgcc >=13 + - libgfortran + - libgfortran5 >=13.4.0 + - libiconv >=1.18,<2.0a0 + - libjpeg-turbo >=3.1.2,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblzma >=5.8.2,<6.0a0 + - libpng >=1.6.55,<1.7.0a0 + - libstdcxx >=13 + - libtiff >=4.7.1,<4.8.0a0 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - libzlib >=1.3.1,<2.0a0 + - pcre2 >=10.47,<10.48.0a0 + - tk >=8.6.13,<8.7.0a0 + - tktable + - tzdata >=2024a + - ucrt >=10.0.20348.0 + license: GPL-2.0-or-later + license_family: GPL + size: 38915936 + timestamp: 1773746823908 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-base64enc-0.1_6-r45heceb674_0.conda + sha256: 8790ea51ef67c48c9474d1f2757a0c18e7d70299a1037b31541fd79d0771ab90 + md5: 711ac906944bc43e7268c4631d1e5dd1 depends: - - __glibc >=2.17,<3.0.a0 - libgcc >=14 - - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 - - r-cli >=3.4.0 - - r-glue - - r-lifecycle >=1.0.3 - - r-rlang >=1.0.6 - license: MIT - license_family: MIT - size: 1805012 - timestamp: 1775897999712 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-vctrs-0.7.3-r45h384437d_0.conda - sha256: df916a617096a5c65a3367070b09fe07f60d22b85fb6a9133294ea0dbc61cf4a - md5: b18d1b41722edec3bde565749498800b + - ucrt >=10.0.20348.0 + license: GPL-2.0-or-later + license_family: GPL3 + size: 52354 + timestamp: 1770027960844 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-brio-1.1.5-r45h2a2a84f_2.conda + sha256: 134b0cc2b0ab5115e95188fcfd28739090f126d6fe681c5c82e7432ca68c990a + md5: 01fec883ec69b490bd0bd61a835b40e7 depends: - - __osx >=11.0 - - libcxx >=19 + - libgcc >=14 - r-base >=4.5,<4.6.0a0 - - r-cli >=3.4.0 - - r-glue - - r-lifecycle >=1.0.3 - - r-rlang >=1.0.6 - license: MIT - license_family: MIT - size: 1790414 - timestamp: 1775898386677 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-vctrs-0.7.3-r44h1380947_0.conda - sha256: 0e0c00c84f73258b7c32f66e41a219efc66b95d724ab9b6216203c1d0821f972 - md5: a91746997cd0f95ecc8640771d9722e5 - depends: - - __osx >=11.0 - - libcxx >=19 - - r-base >=4.4,<4.5.0a0 - - r-cli >=3.4.0 - - r-glue - - r-lifecycle >=1.0.3 - - r-rlang >=1.0.6 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 license: MIT license_family: MIT - size: 1764693 - timestamp: 1775898358775 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-vctrs-0.7.3-r45h1380947_0.conda - sha256: df102de311f51f8cf616202b34cc2c6000d9f5da4fde41c3c94fc76a53e36f62 - md5: 242bbcd2cd9fa3d2d9a6c4cbb0ada3fb + size: 48226 + timestamp: 1757421656962 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-cachem-1.1.0-r45heceb674_2.conda + sha256: a8ba041c8fb1cbda53b5beb6d95dbbb7dd7fd2ad95477d0846ed3e46bc92ba02 + md5: 2e9ed4b00823968c3c28b36df170e41a depends: - - __osx >=11.0 - - libcxx >=19 + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 - - r-cli >=3.4.0 - - r-glue - - r-lifecycle >=1.0.3 - - r-rlang >=1.0.6 + - r-fastmap + - r-rlang + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 1751318 - timestamp: 1775898398033 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-vctrs-0.7.3-r45hd8a2815_0.conda - sha256: 1bcae9c37983949cfd3acc690609bdbcf62aba08c59e33c7524720b167ae4d26 - md5: c81708d30d6a77d9696ed19df9c7027e + size: 81112 + timestamp: 1757441692478 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-cli-3.6.6-r45hd8a2815_0.conda + sha256: 8684ebf63d339e79928692b9a32fdc3abd5292645290f6c2e4047c86916b70bd + md5: 0dc93a336948f0bfe32bb35b7b446677 depends: - libgcc >=14 - libstdcxx >=14 - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 - - r-cli >=3.4.0 - - r-glue - - r-lifecycle >=1.0.3 - - r-rlang >=1.0.6 - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 1795231 - timestamp: 1775898230795 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-waldo-0.6.2-r44hc72bb7e_1.conda - sha256: 1df50e9e24eebacb023a3ce10ad8dbc2e72f4ececef481173b8b3af64486b98d - md5: af452397f5133a113606b71049cc2f78 + size: 1334060 + timestamp: 1775734040388 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-commonmark-2.0.0-r45heceb674_1.conda + sha256: 550fb0fa745b8e5089b35d3a4c9870bb0ed86ea9c49e4cfeffd18402a26aadaf + md5: 71fd8e902fc90e0ce760809ee641f6d5 depends: - - r-base >=4.4,<4.5.0a0 - - r-cli - - r-diffobj >=0.3.4 - - r-fansi - - r-glue - - r-rematch2 - - r-rlang >=1.0.0 - - r-tibble - license: MIT - license_family: MIT - size: 144342 - timestamp: 1757501600562 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-waldo-0.6.2-r45hc72bb7e_1.conda - sha256: 57eb80cb919524dde77b4c19f257ac9b327aba900e28298d990fa622f30b6f09 - md5: 86406bcc46061e27fe7ec24f73eb6676 + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 + license: BSD-2-Clause + license_family: BSD + size: 135377 + timestamp: 1757422445310 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-curl-7.1.0-r45h2d9cb95_0.conda + sha256: 08e96837184057c4a338470b01aa747217bd99410c2814c9b62d2e683625e989 + md5: 70bf0789e3790199e20400b58b95a0e9 depends: + - libcurl >=8.19.0,<9.0a0 + - libgcc >=14 + - libnghttp2 >=1.68.1,<2.0a0 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 - - r-cli - - r-diffobj >=0.3.4 - - r-fansi - - r-glue - - r-rematch2 - - r-rlang >=1.0.0 - - r-tibble + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 144204 - timestamp: 1757501656298 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-whisker-0.4.1-r44hc72bb7e_3.conda - sha256: 62f9d8bac98740183d1613605e8652b67ed9eae896481996f327b63a6e644831 - md5: edd5604d0bc3692b35ee0eb73283499f - depends: - - r-base >=4.4,<4.5.0a0 - license: GPL-3.0-only - license_family: GPL3 - size: 82818 - timestamp: 1757468218832 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-whisker-0.4.1-r45hc72bb7e_3.conda - sha256: f61bc764a85693d28dfc9dba60bc13acd89c3fd8fe85aa212530a3558bfecec0 - md5: 5cd861608ecbeab0574d59a7754deba7 - depends: - - r-base >=4.5,<4.6.0a0 - license: GPL-3.0-only - license_family: GPL3 - size: 83008 - timestamp: 1757468282426 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-withr-3.0.2-r44hc72bb7e_1.conda - sha256: dda58385230d6969a184022bbd3d692007d696c3b4491f70ecaa94ee0c5e7dac - md5: 0fdd8ccde2641093c651e2b6a25d85e1 + size: 476172 + timestamp: 1777147929626 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-diffobj-0.3.6-r45heceb674_1.conda + sha256: c524776d1c528a63cbab0fe0c0057c65bf0420a97e6cdca2379f5aa19279f34d + md5: 20ba872be12595edfc8adc49094b2104 depends: - - r-base >=4.4,<4.5.0a0 + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - r-crayon >=1.3.2 + - ucrt >=10.0.20348.0 license: GPL-2.0-or-later license_family: GPL2 - size: 235008 - timestamp: 1757447310876 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-withr-3.0.2-r45hc72bb7e_1.conda - sha256: ce2d02905f29ae7e9e18a44d1985896628f6bb1ae6348a67e9534d5b8779485b - md5: 56c45a76870f89e39aeca8ba4d4e911a + size: 1011439 + timestamp: 1757459510713 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-digest-0.6.39-r45hd8a2815_0.conda + sha256: 1f2bf0416eea469bf53373fe624c0618634739eff299f42282947da82478716a + md5: 890fd3e7c2f8800daf26a76b186113ba depends: + - libgcc >=14 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 license: GPL-2.0-or-later license_family: GPL2 - size: 235156 - timestamp: 1757447242401 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-xfun-0.57-r44h3697838_0.conda - sha256: 54f85063e1ac8b1552be55bab4b617652eb579cc417957238416a659f1cc1134 - md5: fdaaee96389d978ddc44c53928d9b175 + size: 212967 + timestamp: 1763566967158 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-ellipsis-0.3.3-r45heceb674_0.conda + sha256: f140d6114ab870ca32254704672c5df52a0a8c999bd0725b1253789ee9fa897a + md5: 8e0a6e985a5a27f910a75659bc397db2 depends: - - __glibc >=2.17,<3.0.a0 - libgcc >=14 - - libstdcxx >=14 - - r-base >=4.4,<4.5.0a0 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - r-rlang >=0.3.0 + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 596539 - timestamp: 1774807154852 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-xfun-0.57-r45h384437d_0.conda - sha256: d533059c3f82f39e5000c595a45c41e252c5696b135aea617d54b2a1a49ba325 - md5: 7f85f4a865a8715edd879b4296e5c7e6 + size: 34209 + timestamp: 1775287402869 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-fansi-1.0.7-r45heceb674_0.conda + sha256: 6d5025f89f3fd4eb7b96e301e0bdeefefb61aa94cf019beb16dc289a07c0a666 + md5: 4dcf42965e23954628f5d7c40ce46942 depends: - - __osx >=11.0 - - libcxx >=19 + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 - license: MIT - license_family: MIT - size: 596675 - timestamp: 1774807581542 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-xfun-0.57-r44h45a6d21_0.conda - sha256: 5ca36ab3ac9cf39c68e82344c8c78864ba0437d9ca881951a1b37e299891c491 - md5: a1589aeea969b398c34380a53f863bad + - ucrt >=10.0.20348.0 + license: GPL-2.0-or-later + license_family: GPL3 + size: 330610 + timestamp: 1763566271027 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-fastmap-1.2.0-r45hd8a2815_2.conda + sha256: f9925f74898c74b794f7eb88f802ee57021f798927776d2acd0a77e43a60e4d0 + md5: e0c1813af7036243fc2b5ff4b7be14e7 depends: - - __osx >=11.0 - - libcxx >=19 - - r-base >=4.4,<4.5.0a0 + - libgcc >=14 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 596148 - timestamp: 1774807183712 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-xfun-0.57-r45hd8a2815_0.conda - sha256: e14264b5fb07e0a6c45eec0a4d3829e45129ef3b11caadbd7267593c2288c685 - md5: 1065fdc645c4c2e7f73d0cb1e673b3fd + size: 75572 + timestamp: 1757421799637 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-filelock-1.0.3-r45heceb674_2.conda + sha256: 1fe9e21afcf1068a4ce5b968af5a3f492db2b68e94f2cfbc585e3916319e228d + md5: 0c195742da3857e05a76ea2c081d0025 depends: - libgcc >=14 - - libstdcxx >=14 - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 599250 - timestamp: 1774807413510 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-xml2-1.5.2-r44he78afff_0.conda - sha256: 86a21951791b81df7c9ed32efcc3420bcb3dcb9aa126f3e6a08141c357eefec8 - md5: 743b5f2542598b875d89620bbedb23c1 + size: 38112 + timestamp: 1757576170763 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-fs-2.1.0-r45h225bc52_0.conda + sha256: 928f2603de1787f16c64adcbd141099c1be0e11c390126ed92861fa03e0f47de + md5: d4917e751c845a842ff98f77507c9bc6 depends: - - __glibc >=2.17,<3.0.a0 - libgcc >=14 - - liblzma >=5.8.2,<6.0a0 - libstdcxx >=14 - - libxml2 - - libxml2-16 >=2.14.6 - - libzlib >=1.3.1,<2.0a0 - - r-base >=4.4,<4.5.0a0 - - r-cli - - r-rlang >=1.1.0 - license: GPL-2.0-or-later - license_family: GPL2 - size: 355197 - timestamp: 1768764917147 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-xml2-1.5.2-r45h2546f75_0.conda - sha256: 092e4037ae8e83ee22f41856e23b1f5bb60099f16e57916a4d421ac5d27d4c42 - md5: a6cfca3d40743bfa27576c69dd613615 - depends: - - __osx >=10.13 - - libcxx >=19 - - libxml2 - - libxml2-16 >=2.14.6 + - libuv >=1.51.0,<2.0a0 + - libzlib >=1.3.2,<2.0a0 - r-base >=4.5,<4.6.0a0 - - r-cli - - r-rlang >=1.1.0 - license: GPL-2.0-or-later - license_family: GPL2 - size: 351146 - timestamp: 1768765134239 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-xml2-1.5.2-r44h46c16c0_0.conda - sha256: d9047bc8b6a6fd42e74e080e81e344b3f767a663737e3932f32abd7bf66d0b42 - md5: e3fab16eb0034f903653a9cfc3365e44 - depends: - - __osx >=11.0 - - libcxx >=19 - - libxml2 - - libxml2-16 >=2.14.6 - - r-base >=4.4,<4.5.0a0 - - r-cli - - r-rlang >=1.1.0 - license: GPL-2.0-or-later - license_family: GPL2 - size: 203543 - timestamp: 1768765248674 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-xml2-1.5.2-r45h1e5fb1b_0.conda - sha256: 68dde8f8b681072855a22a9921405f5c628c2749cece19805a803e8993460dbd - md5: a6dd714a130f6c45feb1899a850a7366 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: MIT + license_family: MIT + size: 252903 + timestamp: 1777152900952 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-gert-2.3.1-r45hedacc9e_0.conda + sha256: 72a098dd93aee96c71aa5b9c75cff76ec7368deef851d42447ba535296603fd1 + md5: f51eeb55e3bb1ffc7bcef4c3f9ec2dc3 depends: - libgcc >=14 - - libiconv >=1.18,<2.0a0 - - libstdcxx >=14 + - libgit2 >=1.9.2,<1.10.0a0 - libwinpthread >=12.0.0.r4.gg4f2fc60ca - - libxml2 - - libxml2-16 >=2.14.6 - libzlib >=1.3.1,<2.0a0 + - r-askpass - r-base >=4.5,<4.6.0a0 - - r-cli - - r-rlang >=1.1.0 + - r-credentials >=1.2.1 + - r-openssl >=2.0.3 + - r-rstudioapi >=0.11 + - r-zip >=2.1.0 - ucrt >=10.0.20348.0 - license: GPL-2.0-or-later - license_family: GPL2 - size: 861799 - timestamp: 1768765094775 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-xopen-1.0.1-r44hc72bb7e_2.conda - sha256: b0ceffeda93d9be2cf342d17e95efe7db725738ac65d6ff3db5b7b30e76e9b06 - md5: ef40111fafaa159e49c0058ccd4484c8 - depends: - - r-base >=4.4,<4.5.0a0 - - r-processx license: MIT license_family: MIT - size: 33449 - timestamp: 1757570911160 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-xopen-1.0.1-r45hc72bb7e_2.conda - sha256: af8aecc4a3fe0bf7936ca178a3280ac5dcdcfe385c8337b9a29630cb96aa9bda - md5: c2a6b820f0a9d1ed0cf0e134933d0f84 + size: 292936 + timestamp: 1768194166756 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-glue-1.8.1-r45heceb674_0.conda + sha256: c64f8f76390f1ab7f97bd51c77eeaf6b17bd099c9e9b9fab158ce1fa088b948d + md5: 49e189395597d9ca6a7e9b54827086d7 depends: + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 - - r-processx + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 33290 - timestamp: 1757570912406 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-xtable-1.8_8-r44hc72bb7e_0.conda - sha256: d92e76260e8964432af32575d330d2fd1e3d6700cb5d894916af9218ac5d6937 - md5: ad080fefb02afa5ad21fdf0ef771fc79 - depends: - - r-base >=4.4,<4.5.0a0 - license: GPL (>= 2) - license_family: GPL3 - size: 744672 - timestamp: 1771859979802 -- conda: https://conda.anaconda.org/conda-forge/noarch/r-xtable-1.8_8-r45hc72bb7e_0.conda - sha256: 972923364cfd616ccf38768477c435677cfe1ea18a72016f90344ea920e4fea5 - md5: e18fda0821f0fdc1c34276c5e0acdc92 - depends: - - r-base >=4.5,<4.6.0a0 - license: GPL (>= 2) - license_family: GPL3 - size: 744345 - timestamp: 1771859982217 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-yaml-2.3.12-r44h54b55ab_0.conda - sha256: 0d6afd319e16f755fc5b47a12878a5cf12357810511b5d68bc7f826f54c07713 - md5: 27e45fcad46b1607f16e8d5f2655a370 + size: 175487 + timestamp: 1776413821460 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-htmltools-0.5.9-r45hd8a2815_0.conda + sha256: d5412faeb7ea1ace9bafa2753193e4d9556fd991f6f95fc71babc71544f5422a + md5: ea9a67e66b16b93078f7f0ec1cde0b9d depends: - - __glibc >=2.17,<3.0.a0 - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - license: BSD-3-Clause - license_family: BSD - size: 124898 - timestamp: 1765372811440 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-yaml-2.3.12-r45h735ac91_0.conda - sha256: bb88b98ca4202c5c3e3ff1a86dd6ea8881894c780eaf84b3dbdc470184f20fca - md5: bc0dcd3a525ac4c238c2098b31f33638 - depends: - - __osx >=10.13 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 - license: BSD-3-Clause - license_family: BSD - size: 114092 - timestamp: 1765373682665 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-yaml-2.3.12-r44h6168396_0.conda - sha256: 0607314d78eb8989a1cd94bb3d54fc1105275d39d9782fb3da2661779d2dbb72 - md5: 4e13e187582da652b054e5a999e25adb - depends: - - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - license: BSD-3-Clause - license_family: BSD - size: 110777 - timestamp: 1765373432219 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-yaml-2.3.12-r45heceb674_0.conda - sha256: 760f585b535ba8110ac8dfc8b26423300245e0ee3ebb6751e17209c087637920 - md5: 7d31d3b73f9afaa57b92d8f9d21a197c + - r-base64enc + - r-digest + - r-ellipsis + - r-fastmap >=1.1.0 + - r-rlang >=0.4.10 + - ucrt >=10.0.20348.0 + license: GPL-2.0-or-later + license_family: GPL3 + size: 369048 + timestamp: 1764860707552 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-httpuv-1.6.17-r45h68b42e3_0.conda + sha256: b6ff48cb7376368420c4bb7b6db2158eee3677742d8cd61a8fb13a933a426ea9 + md5: bf7e0ae3c42403a6a39737a5a5e5c922 depends: - libgcc >=14 + - libstdcxx >=14 + - libuv >=1.51.0,<2.0a0 - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - libzlib >=1.3.1,<2.0a0 - r-base >=4.5,<4.6.0a0 + - r-later >=0.8.0 + - r-promises + - r-r6 + - r-rcpp >=1.0.7 - ucrt >=10.0.20348.0 - license: BSD-3-Clause - license_family: BSD - size: 122208 - timestamp: 1765373012816 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-yr-0.1.2-r44h0f53718_0.conda - sha256: 98da2f0b2ef91f33cd184cf3c4f1555d4fe160889bd3aa4718aae7b7b4fe756a - md5: a08a9791f2d3e7869927d1b44ccf0fe5 + license: GPL-2.0-or-later + license_family: GPL3 + size: 532895 + timestamp: 1773825689896 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-jsonlite-2.0.0-r45heceb674_1.conda + sha256: f3ca1bd7e0aadf856958e465ec186a301c9b2bfd54ea61ce23adaa2277b86373 + md5: 35cb191fa8aa28a6edb5ed54246709e6 depends: - - r-base - libgcc >=14 - - __glibc >=2.17,<3.0.a0 - - r-base >=4.4,<4.5.0a0 - constrains: - - __glibc >=2.17 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 license: MIT - size: 2054501 - timestamp: 1779115568578 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-yr-0.1.2-r45h5a63543_0.conda - sha256: 52178aabdf30323e49afa19d84dc891cf9f2b7cd9d11deb62e7d8a2b60f3eae4 - md5: 3f1f87d5d519db30269681b2524e2e26 + license_family: MIT + size: 661158 + timestamp: 1757419686337 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-later-1.4.8-r45hd8a2815_0.conda + sha256: 13037ea5a3b395f834428ec0a398801658669009c784fa3f14a20bb63b6872cf + md5: c5b82f87eaeafae39c8d44440a65ce10 depends: - - r-base - - __glibc >=2.17,<3.0.a0 - libgcc >=14 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 - constrains: - - __glibc >=2.17 + - r-rcpp >=0.12.9 + - r-rlang + - ucrt >=10.0.20348.0 license: MIT - size: 2054674 - timestamp: 1779115559905 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-yr-0.1.2-r45he03009a_0.conda - sha256: 847ec5936c3a7024b255595a3df05f3e572f13676f679295d4c4400abb2511c9 - md5: 0b060e7276117e590c617222c1b91022 + license_family: MIT + size: 148172 + timestamp: 1772707512494 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-lpsolve-5.6.23-r45heceb674_1.conda + sha256: c4b8f2897be522fdc1e7d932743b8c6fb09ba30aa12f67f31e355740427a0427 + md5: 9804ab0354b384a4699ae1aeb0c875ca depends: - - r-base - - __osx >=11.0 + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 - constrains: - - __osx >=11.0 - license: MIT - size: 1216931 - timestamp: 1779115692089 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-yr-0.1.2-r44h9cfc220_0.conda - sha256: 04f499c4b99d4e5b68f00018484dbd41e271c12ba4c7d4f0fe6ee3823d04549d - md5: 1dbe032b51a63ca3e5170db6ae6cc922 - depends: - - r-base - - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - constrains: - - __osx >=11.0 - license: MIT - size: 1161474 - timestamp: 1779115616421 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-yr-0.1.2-r45h4bc8d99_0.conda - sha256: f4fa13c9e60760a46276126b48abab0d7ed37a21ff9e0e734bd6e38811e2de8d - md5: 5ea365722917c18d6f5cdbc8747ffef0 + - ucrt >=10.0.20348.0 + license: LGPL-2.0-only + license_family: LGPL + size: 333415 + timestamp: 1757495986794 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-magrittr-2.0.5-r45heceb674_0.conda + sha256: 9f4b625d95085fc6eb77c306b15b7da19d1f245d43439dc20fe23b2db536c075 + md5: f166a0d9045d1b8049a69b52e22e7176 depends: - - r-base - - __osx >=11.0 + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 - constrains: - - __osx >=11.0 + - ucrt >=10.0.20348.0 license: MIT - size: 1160707 - timestamp: 1779115705601 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-yr-0.1.2-r45hc352b38_0.conda - sha256: 661d0a4a8549c51ecd1e31487d13a118de513f4aa84682129dccd0c4647f381b - md5: dba8c6dc027c77c9e912f23f4c0e4dff + license_family: MIT + size: 214713 + timestamp: 1775298839888 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-mime-0.13-r45heceb674_1.conda + sha256: 5cf02f25458c0bcabbccb52ea0606dc4d18f2a3f94858e6fd5143c2dedf4d2bb + md5: 504d8595125c36530dc082a3502f7f9f depends: - - r-base + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 - license: MIT - size: 1005211 - timestamp: 1779115597043 -- conda: https://conda.anaconda.org/conda-forge/linux-64/r-zip-2.3.3-r44h54b55ab_1.conda - sha256: 4ab80520dedd0043b132df9b2cdbf8d3a789902e389bccaa10d0a3f9b16585c4 - md5: 24fa0d0ad4b69d842e6ff62356c81128 + - ucrt >=10.0.20348.0 + license: GPL-2.0-or-later + license_family: GPL + size: 70188 + timestamp: 1757441608944 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-openssl-2.4.1-r45h2f70138_0.conda + sha256: e0c407d58a5f0afa7d191b4fb9a560d3f1bf1225ee25faa727aaff25b89607aa + md5: ebf47d2424353939b09ffea0eed582f3 depends: - - __glibc >=2.17,<3.0.a0 - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: CC - size: 156936 - timestamp: 1757447522903 -- conda: https://conda.anaconda.org/conda-forge/osx-64/r-zip-2.3.3-r45h735ac91_1.conda - sha256: 752638a5c4dfaf46fc51a3d150c359d5bac804251af7249694da2bc142452bf6 - md5: 7a79470436ae5c6f62c08b12dc3ee11e - depends: - - __osx >=10.13 + - openssl >=3.5.6,<4.0a0 + - r-askpass - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 license: MIT - license_family: CC - size: 147908 - timestamp: 1757447808792 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/r-zip-2.3.3-r44h6168396_1.conda - sha256: 5e4355d47e49519f498ebc027facfc5b22bd10ee986685d7afc79690bb72060d - md5: 17491aea153130d81bce091c8e61db10 - depends: - - __osx >=11.0 - - r-base >=4.4,<4.5.0a0 - license: MIT - license_family: CC - size: 144715 - timestamp: 1757447922255 -- conda: https://conda.anaconda.org/conda-forge/win-64/r-zip-2.3.3-r45heceb674_1.conda - sha256: 656d7a82cca7228e1b8e8e313989732b0ec0983c3df12f462cbbc27edf9959a1 - md5: 44d8ba37d2149a82d304590bb6c7eca7 + license_family: MIT + size: 2481777 + timestamp: 1778775719554 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-processx-3.9.0-r45heceb674_0.conda + sha256: 76a4af871ce24b6bb118dc24ec14fad4de8922bf09077427f51b3fe63597e3d0 + md5: b888a5faaf0698769af67406b9998126 depends: - libgcc >=14 - libwinpthread >=12.0.0.r4.gg4f2fc60ca - r-base >=4.5,<4.6.0a0 + - r-ps >=1.2.0 + - r-r6 - ucrt >=10.0.20348.0 license: MIT - license_family: CC - size: 322049 - timestamp: 1757447790085 -- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.3-h853b02a_0.conda - sha256: 12ffde5a6f958e285aa22c191ca01bbd3d6e710aa852e00618fa6ddc59149002 - md5: d7d95fc8287ea7bf33e0e7116d2b95ec + license_family: MIT + size: 614217 + timestamp: 1776865944919 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-profvis-0.4.0-r45heceb674_1.conda + sha256: 4bd39b713c58721141f98c64665638609e4f4f65c29b0fb64dcc584385d35235 + md5: 7eb6ae59b27ac19d50968e4117573264 depends: - - __glibc >=2.17,<3.0.a0 - libgcc >=14 - - ncurses >=6.5,<7.0a0 - license: GPL-3.0-only - license_family: GPL - size: 345073 - timestamp: 1765813471974 -- conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.3-h68b038d_0.conda - sha256: 4614af680aa0920e82b953fece85a03007e0719c3399f13d7de64176874b80d5 - md5: eefd65452dfe7cce476a519bece46704 - depends: - - __osx >=10.13 - - ncurses >=6.5,<7.0a0 - license: GPL-3.0-only - license_family: GPL - size: 317819 - timestamp: 1765813692798 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.3-h46df422_0.conda - sha256: a77010528efb4b548ac2a4484eaf7e1c3907f2aec86123ed9c5212ae44502477 - md5: f8381319127120ce51e081dce4865cf4 - depends: - - __osx >=11.0 - - ncurses >=6.5,<7.0a0 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - r-htmlwidgets >=0.3.2 + - r-purrr + - r-rlang >=0.4.9 + - r-stringr + - r-vctrs + - ucrt >=10.0.20348.0 license: GPL-3.0-only - license_family: GPL - size: 313930 - timestamp: 1765813902568 -- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.37.0-pyhcf101f3_0.conda - sha256: 0577eedfb347ff94d0f2fa6c052c502989b028216996b45c7f21236f25864414 - md5: 870293df500ca7e18bedefa5838a22ab - depends: - - attrs >=22.2.0 - - python >=3.10 - - rpds-py >=0.7.0 - - typing_extensions >=4.4.0 - - python - license: MIT - license_family: MIT - size: 51788 - timestamp: 1760379115194 -- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.34.2-pyhcf101f3_0.conda - sha256: 1715246b19c9f85ee022933b4845f2fc14ac9184981b7b7d9b728bec8e9588da - md5: 4a85203c1d80c1059086ae860836ffb9 + license_family: GPL3 + size: 234733 + timestamp: 1757585857926 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-ps-1.9.3-r45heceb674_0.conda + sha256: bb789c87d7883f58fa445a488df3d210bfda3187b3d763feb9da0d394da2aa4a + md5: 4679d473fd587c95fa8960db9015224f depends: - - python >=3.10 - - certifi >=2023.5.7 - - charset-normalizer >=2,<4 - - idna >=2.5,<4 - - urllib3 >=1.26,<3 - - python - constrains: - - chardet >=3.0.2,<8 - license: Apache-2.0 - license_family: APACHE - size: 68709 - timestamp: 1778851103479 -- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda - sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 - md5: 36de09a8d3e5d5e6f4ee63af49e59706 + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 + license: BSD-3-Clause + license_family: BSD + size: 584910 + timestamp: 1777148234036 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-purrr-1.2.2-r45heceb674_0.conda + sha256: 5aff9f44a2b7f9d84ea82371fb66a29f43efa5fab58f94e62d48fbb3131c5f64 + md5: e1c7996cab29677228f12ca03628c5c9 depends: - - python >=3.9 - - six + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - r-cli >=3.4 + - r-lifecycle >=1.0.3 + - r-magrittr >=1.5 + - r-rlang >=0.4.10 + - r-vctrs >=0.5 + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 10209 - timestamp: 1733600040800 -- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 - sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37 - md5: 912a71cc01012ee38e6b90ddd561e36f + size: 549026 + timestamp: 1775853844347 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-ragg-1.5.2-r45h8a73c72_0.conda + sha256: 93c65a4f1578dcc64a219f644c4c2b5589568e073d8f6bd238cc42a7bd594de4 + md5: bcdaba64fc17aa2f3304858a87c09aaf depends: - - python + - libfreetype >=2.14.2 + - libfreetype6 >=2.14.2 + - libgcc >=14 + - libjpeg-turbo >=3.1.2,<4.0a0 + - libpng >=1.6.55,<1.7.0a0 + - libstdcxx >=14 + - libtiff >=4.7.1,<4.8.0a0 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - r-systemfonts >=1.0.3 + - r-textshaping >=0.3.0 + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 7818 - timestamp: 1598024297745 -- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3987-syntax-1.1.0-pyhe01879c_1.conda - sha256: 70001ac24ee62058557783d9c5a7bbcfd97bd4911ef5440e3f7a576f9e43bc92 - md5: 7234f99325263a5af6d4cd195035e8f2 + size: 1935212 + timestamp: 1774268240585 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-rappdirs-0.3.4-r45heceb674_0.conda + sha256: 4d888be5008e4c27cc35e88eae59f081a4555332a0ffa2a527f503ee62cfe947 + md5: 9458da079685c56f20e8a75d322120a2 depends: - - python >=3.9 - - lark >=1.2.2 - - python + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 22913 - timestamp: 1752876729969 -- conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.30.0-py314h2e6c369_0.conda - sha256: e53b0cbf3b324eaa03ca1fe1a688fdf4ab42cea9c25270b0a7307d8aaaa4f446 - md5: c1c368b5437b0d1a68f372ccf01cb133 + size: 59032 + timestamp: 1768747465653 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-rcpp-1.1.1_1.1-r45hd8a2815_0.conda + sha256: 58022948f2e166ea5d336981bd4d904fbcac73933d0cbd139d7f837732578b60 + md5: 4d9885196b3667d617242982155e78fe depends: - - python - libgcc >=14 - - __glibc >=2.17,<3.0.a0 - - python_abi 3.14.* *_cp314 - constrains: - - __glibc >=2.17 - license: MIT - license_family: MIT - size: 376121 - timestamp: 1764543122774 -- conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.30.0-py314ha7b6dee_0.conda - sha256: 368a758ba6f4fb3c6c9a0d25c090807553af5b3dc937a2180ff047fe8ebf6820 - md5: 816cb6c142c86de627fe7ffa1affddb2 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 + license: GPL-2.0-or-later + license_family: GPL2 + size: 2109096 + timestamp: 1777184371532 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-rlang-1.2.0-r45hd8a2815_0.conda + sha256: c7751407c7784526a4a5e7c2233c7beb5d37543a313cbdb3850b7da0d3a4d55d + md5: 282469d881efb5677157e0474ce66b68 depends: - - python - - __osx >=10.13 - - python_abi 3.14.* *_cp314 - constrains: - - __osx >=10.13 + - libgcc >=14 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 + license: GPL-3.0-only + license_family: GPL3 + size: 1596881 + timestamp: 1775483949173 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-roxygen2-8.0.0-r45hd8a2815_0.conda + sha256: edac2c1b620137af93ad5874195183ae52b79f453b82d9cb33479797eb5baefd + md5: ac279cd9bfdb07c77f649c164aebc17d + depends: + - libgcc >=14 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - r-brew + - r-commonmark + - r-cpp11 + - r-desc >=1.2.0 + - r-digest + - r-knitr + - r-pkgload >=1.0.2 + - r-purrr >=0.3.3 + - r-r6 >=2.1.2 + - r-rlang + - r-stringi + - r-stringr >=1.0.0 + - r-xml2 + - ucrt >=10.0.20348.0 license: MIT - license_family: MIT - size: 362381 - timestamp: 1764543188314 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.30.0-py314haad56a0_0.conda - sha256: e161dd97403b8b8a083d047369a5cf854557dba1204d29e2f0250f5ac4403925 - md5: 76a4f88d1b7748c477abf3c341edc64c + license_family: GPL3 + size: 849221 + timestamp: 1777663582454 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-sass-0.4.10-r45hd8a2815_1.conda + sha256: 87c20b656db555b1f499fb2abe3aa36dd8400fb78c388e9c22293c8bbe2f1950 + md5: c6172996a0b4944b9df1f266f88ef09b depends: - - python - - __osx >=11.0 - - python 3.14.* *_cp314 - - python_abi 3.14.* *_cp314 - constrains: - - __osx >=11.0 + - libgcc >=14 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - r-digest + - r-fs + - r-htmltools + - r-r6 + - r-rappdirs + - r-rlang + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 350976 - timestamp: 1764543169524 -- conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.30.0-py314h9f07db2_0.conda - sha256: e4435368c5c25076dc0f5918ba531c5a92caee8e0e2f9912ef6810049cf00db2 - md5: e86531e278ad304438e530953cd55d14 + size: 2101750 + timestamp: 1757465457151 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-sourcetools-0.1.7_2-r45hd8a2815_0.conda + sha256: b42a08a451bd976a64bbdf0e41546641b919f991f335dd539b08365200ff13cb + md5: f9d0b3d9db3721a96880a1fce5fdc825 depends: - - python - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 + - libgcc >=14 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 - ucrt >=10.0.20348.0 - - python_abi 3.14.* *_cp314 license: MIT license_family: MIT - size: 235780 - timestamp: 1764543046065 -- conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-64-26.0-h62b880e_7.conda - sha256: 7e7e2556978bc9bd9628c6e39138c684082320014d708fbca0c9050df98c0968 - md5: 68a978f77c0ba6ca10ce55e188a21857 - license: BSD-3-Clause - license_family: BSD - size: 4948 - timestamp: 1771434185960 -- conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-arm64-26.0-ha3f98da_7.conda - sha256: fabfe031ede99898cb2b0b805f6c0d64fcc24ecdb444de3a83002d8135bf4804 - md5: 5f0ebbfea12d8e5bddff157e271fdb2f - license: BSD-3-Clause - license_family: BSD - size: 4971 - timestamp: 1771434195389 -- conda: https://conda.anaconda.org/conda-forge/linux-64/sed-4.10-h19d0853_0.conda - sha256: b013d2085ce4ac01daec7b30472e9f3b6c2d69eb3a3a85a6cee3e01a3cb4f61a - md5: e4a1ff2e59a5d9b38be71d15c93cf1bd + size: 57962 + timestamp: 1774682536768 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-stringi-1.8.7-r45hd8a2815_2.conda + sha256: ddb9bb6fa3e094f50019106bc1ed9f1f5616a7543cefb8e8c9f4694707f31c8e + md5: c695560326ab4871a637e8fdaba4d92b depends: - - __glibc >=2.17,<3.0.a0 - libgcc >=14 - license: GPL-3.0-only - license_family: GPL - size: 268482 - timestamp: 1776859422619 -- conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-2.1.0-pyh5552912_1.conda - sha256: 8fc024bf1a7b99fc833b131ceef4bef8c235ad61ecb95a71a6108be2ccda63e8 - md5: b70e2d44e6aa2beb69ba64206a16e4c6 - depends: - - __osx - - pyobjc-framework-cocoa - - python >=3.10 - - python - license: BSD-3-Clause - license_family: BSD - size: 22519 - timestamp: 1770937603551 -- conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-2.1.0-pyh6dadd2b_1.conda - sha256: 305446a0b018f285351300463653d3d3457687270e20eda37417b12ee386ef76 - md5: 6ac53f3fff2c416d63511843a04646fa - depends: - - __win - - pywin32 - - python >=3.10 - - python - license: BSD-3-Clause - license_family: BSD - size: 22864 - timestamp: 1770937641143 -- conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-2.1.0-pyha191276_1.conda - sha256: 59656f6b2db07229351dfb3a859c35e57cc8e8bcbc86d4e501bff881a6f771f1 - md5: 28eb91468df04f655a57bcfbb35fc5c5 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 + license: FOSS + license_family: OTHER + size: 10963469 + timestamp: 1772033155177 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-sys-3.4.3-r45heceb674_1.conda + sha256: dae2326728d982382576ce16bd0e74de7d9baaa0ceaf31754bc78681c1e6047e + md5: a395d5faf0148acdfafa79cbbc003fd0 depends: - - __linux - - python >=3.10 - - python - license: BSD-3-Clause - license_family: BSD - size: 24108 - timestamp: 1770937597662 -- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda - sha256: 82088a6e4daa33329a30bc26dc19a98c7c1d3f05c0f73ce9845d4eab4924e9e1 - md5: 8e194e7b992f99a5015edbd4ebd38efd + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 + license: MIT + license_family: MIT + size: 54312 + timestamp: 1757441968270 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-systemfonts-1.3.2-r45h295cb35_0.conda + sha256: a01b30c6f466896b871fc4a43f8c4f2b765e4ed7b2ae67badf5c8aefa1bb6b5c + md5: 7ff20352407ef26122adec8be2c69ed1 depends: - - python >=3.10 + - libfreetype >=2.14.2 + - libfreetype6 >=2.14.2 + - libgcc >=14 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - r-base64enc + - r-cpp11 >=0.2.1 + - r-jsonlite + - r-lifecycle + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 639697 - timestamp: 1773074868565 -- conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-codesign-0.1.3-hc0f2934_0.conda - sha256: b89d89d0b62e0a84093205607d071932cca228d4d6982a5b073eec7e765b146d - md5: 1261fc730f1d8af7eeea8a0024b23493 + size: 1566074 + timestamp: 1772798267720 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-testthat-3.3.2-r45hd8a2815_0.conda + sha256: f5a72214cdf8d408486d4d3f6697ccd9f6ab5dc617751cc88f5c411407626d75 + md5: 6ea6742e318daf31265a275367238329 depends: - - __osx >=10.13 - - libsigtool 0.1.3 hc0f2934_0 - - openssl >=3.5.4,<4.0a0 + - libgcc >=14 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - r-brio >=1.1.3 + - r-callr >=3.7.3 + - r-cli >=3.6.1 + - r-desc >=1.4.2 + - r-digest >=0.6.33 + - r-evaluate >=1.0.1 + - r-jsonlite >=1.8.7 + - r-lifecycle >=1.0.3 + - r-magrittr >=2.0.3 + - r-pkgload >=1.3.2.1 + - r-praise >=1.0.0 + - r-processx >=3.8.2 + - r-ps >=1.7.5 + - r-r6 >=2.5.1 + - r-rlang >=1.1.1 + - r-waldo >=0.6.0 + - r-withr >=3.0.2 + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 123083 - timestamp: 1767045007433 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-codesign-0.1.3-h98dc951_0.conda - sha256: f3d006e2441f110160a684744d90921bbedbffa247d7599d7e76b5cd048116dc - md5: ade77ad7513177297b1d75e351e136ce + size: 1808011 + timestamp: 1768138442987 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-textshaping-1.0.5-r45h295cb35_0.conda + sha256: dba2fa8859bafb1a351887d5f6ed347d2ea5b5e44f43d85edf6d85791cd8391b + md5: 1dd5c0f947f11470639796c55df01b1c depends: - - __osx >=11.0 - - libsigtool 0.1.3 h98dc951_0 - - openssl >=3.5.4,<4.0a0 + - fribidi >=1.0.16,<2.0a0 + - harfbuzz >=12.3.2 + - libfreetype >=2.14.2 + - libfreetype6 >=2.14.2 + - libgcc >=14 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - r-cpp11 >=0.2.1 + - r-lifecycle + - r-stringi + - r-systemfonts >=1.3.0 + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 114331 - timestamp: 1767045086274 -- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda - sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d - md5: 3339e3b65d58accf4ca4fb8748ab16b3 + size: 1070232 + timestamp: 1772816858019 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-tibble-3.3.1-r45heceb674_0.conda + sha256: 142660ae043a8aec21b54e1c135ad20461a46413f475c978a18c974d09b31762 + md5: d3d5ed60c4643f8b0e7d94280f1dbd95 depends: - - python >=3.9 - - python + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - r-fansi >=0.4.0 + - r-lifecycle >=1.0.0 + - r-magrittr + - r-pillar >=1.8.1 + - r-pkgconfig + - r-rlang >=1.0.2 + - r-vctrs >=0.4.2 + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 18455 - timestamp: 1753199211006 -- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_2.conda - sha256: dce518f45e24cd03f401cb0616917773159a210c19d601c5f2d4e0e5879d30ad - md5: 03fe290994c5e4ec17293cfb6bdce520 + size: 593964 + timestamp: 1768139280446 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-utf8-1.2.6-r45heceb674_1.conda + sha256: dd762d00890c7acf305c01e2ea336779cf967c4392c78e2e24b924177ea77ec2 + md5: a5c083558799a8281380d0151f0cf58e depends: - - python >=3.10 + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 license: Apache-2.0 - license_family: Apache - size: 15698 - timestamp: 1762941572482 -- conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.8.3-pyhd8ed1ab_0.conda - sha256: 23b71ecf089967d2900126920e7f9ff18cdcef82dbff3e2f54ffa360243a17ac - md5: 18de09b20462742fe093ba39185d9bac + license_family: APACHE + size: 145731 + timestamp: 1757424927032 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-vctrs-0.7.3-r45hd8a2815_0.conda + sha256: 1bcae9c37983949cfd3acc690609bdbcf62aba08c59e33c7524720b167ae4d26 + md5: c81708d30d6a77d9696ed19df9c7027e depends: - - python >=3.10 + - libgcc >=14 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - r-cli >=3.4.0 + - r-glue + - r-lifecycle >=1.0.3 + - r-rlang >=1.0.6 + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 38187 - timestamp: 1769034509657 -- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda - sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 - md5: b1b505328da7a6b246787df4b5a49fbc + size: 1795231 + timestamp: 1775898230795 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-xfun-0.57-r45hd8a2815_0.conda + sha256: e14264b5fb07e0a6c45eec0a4d3829e45129ef3b11caadbd7267593c2288c685 + md5: 1065fdc645c4c2e7f73d0cb1e673b3fd depends: - - asttokens - - executing - - pure_eval - - python >=3.9 + - libgcc >=14 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 license: MIT license_family: MIT - size: 26988 - timestamp: 1733569565672 -- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda - sha256: c47299fe37aebb0fcf674b3be588e67e4afb86225be4b0d452c7eb75c086b851 - md5: 13dc3adbc692664cd3beabd216434749 - depends: - - __glibc >=2.28 - - kernel-headers_linux-64 4.18.0 he073ed8_9 - - tzdata - license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later - license_family: GPL - size: 24008591 - timestamp: 1765578833462 -- conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1600.0.11.8-h8d8e812_2.conda - sha256: 0e814730160c8e214eadd7905e3659d8f52af86fd37d85fd287060748948a2b8 - md5: 524528dee57e42d77b1af677137de5a5 - depends: - - libcxx >=19.0.0.a0 - - __osx >=10.13 - - ncurses >=6.5,<7.0a0 - license: NCSA - size: 213790 - timestamp: 1775657389876 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1600.0.11.8-h997e182_2.conda - sha256: de6893e53664e769c1b1c4103a666d436e3d307c0eb6a09a164e749d116e80f7 - md5: 555070ad1e18b72de36e9ee7ed3236b3 - depends: - - libcxx >=19.0.0.a0 - - __osx >=11.0 - - ncurses >=6.5,<7.0a0 - license: NCSA - size: 200192 - timestamp: 1775657222120 -- conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2023.0.0-hd3d4ead_2.conda - sha256: 8a4053839b8e997a5965e2dff7d6cf3c77be62d82c0e48c8a04a5ed2d2e73035 - md5: 8ee01a693aecff5432069eaaf1183c45 + size: 599250 + timestamp: 1774807413510 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-xml2-1.5.2-r45h1e5fb1b_0.conda + sha256: 68dde8f8b681072855a22a9921405f5c628c2749cece19805a803e8993460dbd + md5: a6dd714a130f6c45feb1899a850a7366 depends: - - libhwloc >=2.13.0,<2.13.1.0a0 + - libgcc >=14 + - libiconv >=1.18,<2.0a0 + - libstdcxx >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - r-base >=4.5,<4.6.0a0 + - r-cli + - r-rlang >=1.1.0 - ucrt >=10.0.20348.0 - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - license: Apache-2.0 - license_family: APACHE - size: 156515 - timestamp: 1778673901757 -- conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh6dadd2b_1.conda - sha256: b375e8df0d5710717c31e7c8e93c025c37fa3504aea325c7a55509f64e5d4340 - md5: e43ca10d61e55d0a8ec5d8c62474ec9e - depends: - - __win - - pywinpty >=1.1.0 - - python >=3.10 - - tornado >=6.1.0 - - python - license: BSD-2-Clause - license_family: BSD - size: 23665 - timestamp: 1766513806974 -- conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyhc90fa1f_1.conda - sha256: 6b6727a13d1ca6a23de5e6686500d0669081a117736a87c8abf444d60c1e40eb - md5: 17b43cee5cc84969529d5d0b0309b2cb - depends: - - __unix - - ptyprocess - - python >=3.10 - - tornado >=6.1.0 - - python - license: BSD-2-Clause - license_family: BSD - size: 24749 - timestamp: 1766513766867 -- conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda - sha256: cad582d6f978276522f84bd209a5ddac824742fe2d452af6acf900f8650a73a2 - md5: f1acf5fdefa8300de697982bcb1761c9 + license: GPL-2.0-or-later + license_family: GPL2 + size: 861799 + timestamp: 1768765094775 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-yaml-2.3.12-r45heceb674_0.conda + sha256: 760f585b535ba8110ac8dfc8b26423300245e0ee3ebb6751e17209c087637920 + md5: 7d31d3b73f9afaa57b92d8f9d21a197c depends: - - python >=3.5 - - webencodings >=0.4 + - libgcc >=14 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 license: BSD-3-Clause license_family: BSD - size: 28285 - timestamp: 1729802975370 -- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda - sha256: cafeec44494f842ffeca27e9c8b0c27ed714f93ac77ddadc6aaf726b5554ebac - md5: cffd3bdd58090148f4cfcd831f4b26ab + size: 122208 + timestamp: 1765373012816 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-yr-0.1.4-r45hc352b38_0.conda + sha256: bdd266ecb2a55f27595588c5e2827e432b8d520b6bb0ce7a1a486d4cdb5e110f + md5: e045699cdd869c7145460ab3d5341012 + depends: + - r-base + - r-base >=4.5,<4.6.0a0 + license: MIT + size: 1006965 + timestamp: 1779354976415 +- conda: https://conda.anaconda.org/conda-forge/win-64/r-zip-2.3.3-r45heceb674_1.conda + sha256: 656d7a82cca7228e1b8e8e313989732b0ec0983c3df12f462cbbc27edf9959a1 + md5: 44d8ba37d2149a82d304590bb6c7eca7 depends: - - __glibc >=2.17,<3.0.a0 - libgcc >=14 - - libzlib >=1.3.1,<2.0a0 - constrains: - - xorg-libx11 >=1.8.12,<2.0a0 - license: TCL - license_family: BSD - size: 3301196 - timestamp: 1769460227866 -- conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h7142dee_3.conda - sha256: 7f0d9c320288532873e2d8486c331ec6d87919c9028208d3f6ac91dc8f99a67b - md5: 6e6efb7463f8cef69dbcb4c2205bf60e + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - r-base >=4.5,<4.6.0a0 + - ucrt >=10.0.20348.0 + license: MIT + license_family: CC + size: 322049 + timestamp: 1757447790085 +- conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.30.0-py314h9f07db2_0.conda + sha256: e4435368c5c25076dc0f5918ba531c5a92caee8e0e2f9912ef6810049cf00db2 + md5: e86531e278ad304438e530953cd55d14 depends: - - __osx >=10.13 - - libzlib >=1.3.1,<2.0a0 - license: TCL - license_family: BSD - size: 3282953 - timestamp: 1769460532442 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h010d191_3.conda - sha256: 799cab4b6cde62f91f750149995d149bc9db525ec12595e8a1d91b9317f038b3 - md5: a9d86bc62f39b94c4661716624eb21b0 + - python + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.14.* *_cp314 + license: MIT + license_family: MIT + size: 235780 + timestamp: 1764543046065 +- conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2023.0.0-hd3d4ead_2.conda + sha256: 8a4053839b8e997a5965e2dff7d6cf3c77be62d82c0e48c8a04a5ed2d2e73035 + md5: 8ee01a693aecff5432069eaaf1183c45 depends: - - __osx >=11.0 - - libzlib >=1.3.1,<2.0a0 - license: TCL - license_family: BSD - size: 3127137 - timestamp: 1769460817696 + - libhwloc >=2.13.0,<2.13.1.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: Apache-2.0 + license_family: APACHE + size: 156515 + timestamp: 1778673901757 - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h6ed50ae_3.conda sha256: 0e79810fae28f3b69fe7391b0d43f5474d6bd91d451d5f2bde02f55ae481d5e3 md5: 0481bfd9814bf525bd4b3ee4b51494c4 @@ -12729,38 +13429,6 @@ packages: license_family: BSD size: 3526350 timestamp: 1769460339384 -- conda: https://conda.anaconda.org/conda-forge/linux-64/tktable-2.10-h5a7a40f_8.conda - sha256: 3e20b2f2902a1f402ef2420ce2b9e8c91f9e02748d55530894ac1f640561fdd0 - md5: 72628f56d7a99b86efa435a0b97a4b47 - depends: - - tk - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - tk >=8.6.13,<8.7.0a0 - - xorg-libx11 >=1.8.13,<2.0a0 - license: TCL - size: 102544 - timestamp: 1773732786017 -- conda: https://conda.anaconda.org/conda-forge/osx-64/tktable-2.10-h8925a82_8.conda - sha256: 73c55dc920f297ff48e7da57542bb492c02f18dfa0fe9babd7e2faa201333af3 - md5: eb114b7aed519d340fe699de143cae17 - depends: - - tk - - __osx >=11.0 - - tk >=8.6.13,<8.7.0a0 - license: TCL - size: 93128 - timestamp: 1773733001137 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tktable-2.10-h28d2b5e_8.conda - sha256: ffb3c72193a9bdb847ea3c95326d299c5788d18d69069ae1e01e717f07fa3626 - md5: 4b5985e749e865290a22d9752955a6ce - depends: - - tk - - __osx >=11.0 - - tk >=8.6.13,<8.7.0a0 - license: TCL - size: 91561 - timestamp: 1773732981206 - conda: https://conda.anaconda.org/conda-forge/win-64/tktable-2.10-h2df95b8_8.conda sha256: c4d1e3bca4fcd09fc79d1d5c0183026bd72cfbc5577ecb8c633c2101b3638f83 md5: 1f55e334e0eaa7ddac119e17dc6ea234 @@ -12773,51 +13441,6 @@ packages: license: TCL size: 145028 timestamp: 1773732791952 -- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.4.1-pyhcf101f3_0.conda - sha256: 91cafdb64268e43e0e10d30bd1bef5af392e69f00edd34dfaf909f69ab2da6bd - md5: b5325cf06a000c5b14970462ff5e4d58 - depends: - - python >=3.10 - - python - license: MIT - license_family: MIT - size: 21561 - timestamp: 1774492402955 -- conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.5.5-py314h5bd0f2a_0.conda - sha256: ed8d06093ff530a2dae9ed1e51eb6f908fbfd171e8b62f4eae782d67b420be5a - md5: dc1ff1e915ab35a06b6fa61efae73ab5 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - license: Apache-2.0 - license_family: Apache - size: 912476 - timestamp: 1774358032579 -- conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.5.5-py314h217eccc_0.conda - sha256: 602be948753f2e6300aa505faee0e4a6ac48865504f93b0935d5cf9a7d8e1cc5 - md5: 9fdead77ed9fd152b131289c6984ed7c - depends: - - __osx >=11.0 - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - license: Apache-2.0 - license_family: Apache - size: 910512 - timestamp: 1774358311298 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.5.5-py314h6c2aa35_0.conda - sha256: 4ccc4a20d676c0ba85adee9c99015bec7f5b685df0cf8006e34573f1d6c2ce75 - md5: 3f81f8b2fe2c26a82c0abf57ab2b9610 - depends: - - __osx >=11.0 - - python >=3.14,<3.15.0a0 - - python >=3.14,<3.15.0a0 *_cp314 - - python_abi 3.14.* *_cp314 - license: Apache-2.0 - license_family: Apache - size: 910845 - timestamp: 1774358965067 - conda: https://conda.anaconda.org/conda-forge/win-64/tornado-6.5.5-py314h5a2d7ad_0.conda sha256: 49d64837dd02475903479ca47b82669bd6c9f7e6afde61860c6f3f2bd57d8a03 md5: 87b1215adf7f0ba1fb9250af9fc668e1 @@ -12831,141 +13454,25 @@ packages: license_family: Apache size: 914835 timestamp: 1774358183098 -- conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.15.0-pyhcf101f3_0.conda - sha256: dfb681579be59c2e790c95f7f49b7529a9b0511d6385ad276e3c8988cbd54d2c - md5: 4bada6a6d908a27262af8ebddf4f7492 - depends: - - python >=3.10 - - python - license: BSD-3-Clause - license_family: BSD - size: 115165 - timestamp: 1778074251714 -- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda - sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c - md5: edd329d7d3a4ab45dcf905899a7a6115 - depends: - - typing_extensions ==4.15.0 pyhcf101f3_0 - license: PSF-2.0 - license_family: PSF - size: 91383 - timestamp: 1756220668932 -- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda - sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 - md5: 0caa1af407ecff61170c9437a808404d - depends: - - python >=3.10 - - python - license: PSF-2.0 - license_family: PSF - size: 51692 - timestamp: 1756220668932 -- conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda - sha256: 3088d5d873411a56bf988eee774559335749aed6f6c28e07bf933256afb9eb6c - md5: f6d7aa696c67756a650e91e15e88223c - depends: - - python >=3.9 - license: Apache-2.0 - license_family: APACHE - size: 15183 - timestamp: 1733331395943 -- conda: https://conda.anaconda.org/conda-forge/linux-64/typos-1.46.2-hb17b654_0.conda - sha256: 5a557b74e31e9cfd34f63c619de196faee556e0f41118fbc72812c1b996c6dab - md5: 98aaa371a09257ab9a554d2b355350fc - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - constrains: - - __glibc >=2.17 - license: MIT OR Apache-2.0 - size: 3359334 - timestamp: 1778960855880 -- conda: https://conda.anaconda.org/conda-forge/osx-64/typos-1.46.2-h19f9e61_0.conda - sha256: 58a598d4a9dccef532bd215bb6acc5ac91f820bd7d92cbee90d52495fe31dad1 - md5: 2eb3681df2f889b926a8e57e6dfde1cf - depends: - - __osx >=11.0 - constrains: - - __osx >=11.0 - license: MIT OR Apache-2.0 - size: 2850251 - timestamp: 1778960896009 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/typos-1.46.2-h6fdd925_0.conda - sha256: 2e43bc0789d61ce84245f864d9cfe6cb039a1ccc20f5c094a2cbf2e505b15d74 - md5: 5a5ef0b0eeb3a9e68a7b86563c2b66ec - depends: - - __osx >=11.0 - constrains: - - __osx >=11.0 - license: MIT OR Apache-2.0 - size: 2703214 - timestamp: 1778960861007 - conda: https://conda.anaconda.org/conda-forge/win-64/typos-1.46.2-h18a1a76_0.conda - sha256: 58278f406bad717f39cb08b5108b997c92cc5e4c790bc7a525bd3466b705c43c - md5: 6b91406d326ee3b87bfdaeedea9ee8a0 - depends: - - vc >=14.3,<15 - - vc14_runtime >=14.44.35208 - - ucrt >=10.0.20348.0 - license: MIT OR Apache-2.0 - size: 2908648 - timestamp: 1778960888715 -- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda - sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c - md5: ad659d0a2b3e47e38d829aa8cad2d610 - license: LicenseRef-Public-Domain - size: 119135 - timestamp: 1767016325805 -- conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda - sha256: 3005729dce6f3d3f5ec91dfc49fc75a0095f9cd23bab49efb899657297ac91a5 - md5: 71b24316859acd00bdb8b38f5e2ce328 - constrains: - - vc14_runtime >=14.29.30037 - - vs2015_runtime >=14.29.30037 - license: LicenseRef-MicrosoftWindowsSDK10 - size: 694692 - timestamp: 1756385147981 -- conda: https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.1.0-py314h9891dd4_0.conda - sha256: c84034056dc938c853e4f61e72e5bd37e2ec91927a661fb9762f678cbea52d43 - md5: 5d3c008e54c7f49592fca9c32896a76f - depends: - - __glibc >=2.17,<3.0.a0 - - cffi - - libgcc >=14 - - libstdcxx >=14 - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - license: MIT - license_family: MIT - size: 15004 - timestamp: 1769438727085 -- conda: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.1.0-py314h473ef84_0.conda - sha256: a77214fabb930c5332dece5407973c0c1c711298bf687976a0b6a9207b758e12 - md5: 08a26dd1ba8fc9681d6b5256b2895f8e - depends: - - __osx >=10.13 - - cffi - - libcxx >=19 - - python >=3.14,<3.15.0a0 - - python_abi 3.14.* *_cp314 - license: MIT - license_family: MIT - size: 14286 - timestamp: 1769439103231 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.1.0-py314h6cfcd04_0.conda - sha256: 033dbf9859fe58fb85350cf6395be6b1346792e1766d2d5acab538a6eb3659fb - md5: e229f444fbdb28d8c4f40e247154d993 - depends: - - __osx >=11.0 - - cffi - - libcxx >=19 - - python >=3.14,<3.15.0a0 - - python >=3.14,<3.15.0a0 *_cp314 - - python_abi 3.14.* *_cp314 - license: MIT - license_family: MIT - size: 14884 - timestamp: 1769439056290 + sha256: 58278f406bad717f39cb08b5108b997c92cc5e4c790bc7a525bd3466b705c43c + md5: 6b91406d326ee3b87bfdaeedea9ee8a0 + depends: + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + license: MIT OR Apache-2.0 + size: 2908648 + timestamp: 1778960888715 +- conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda + sha256: 3005729dce6f3d3f5ec91dfc49fc75a0095f9cd23bab49efb899657297ac91a5 + md5: 71b24316859acd00bdb8b38f5e2ce328 + constrains: + - vc14_runtime >=14.29.30037 + - vs2015_runtime >=14.29.30037 + license: LicenseRef-MicrosoftWindowsSDK10 + size: 694692 + timestamp: 1756385147981 - conda: https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.1.0-py314h909e829_0.conda sha256: 96990a5948e0c30788360836d94bf6145fdac0c187695ed9b3c2d61d9e11d267 md5: 54e012b629ac5a40c9b3fa32738375dc @@ -12980,173 +13487,55 @@ packages: license_family: MIT size: 18504 timestamp: 1769438844417 -- conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda - sha256: e0eb6c8daf892b3056f08416a96d68b0a358b7c46b99c8a50481b22631a4dfc0 - md5: e7cb0f5745e4c5035a460248334af7eb - depends: - - python >=3.9 - license: MIT - license_family: MIT - size: 23990 - timestamp: 1733323714454 -- conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.7.0-pyhd8ed1ab_0.conda - sha256: feff959a816f7988a0893201aa9727bbb7ee1e9cec2c4f0428269b489eb93fb4 - md5: cbb88288f74dbe6ada1c6c7d0a97223e - depends: - - backports.zstd >=1.0.0 - - brotli-python >=1.2.0 - - h2 >=4,<5 - - pysocks >=1.5.6,<2.0,!=1.5.7 - - python >=3.10 - license: MIT - license_family: MIT - size: 103560 - timestamp: 1778188657149 -- conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.5-h1b7c187_36.conda - sha256: dbcbad366e38979ac8ca9efb0ec48e5fedf9ce76f9485120c131cab7315c681c - md5: 10eac3d81ceea1be614f1d90045c7e9b +- conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.5-h1b7c187_37.conda + sha256: 67397a65e42537e9635f2be59f13437b1876ece09ce200b09deec81f186db98e + md5: 3dbe647b692777a9aecab9832004d147 depends: - vc14_runtime >=14.51.36231 track_features: - vc14 license: BSD-3-Clause license_family: BSD - size: 20260 - timestamp: 1779061872533 -- conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_36.conda - sha256: e6f48954124c4f9419e50b3de7cb4b88f3a6078bf3616e997ea60144d499aa30 - md5: df9d8c15f117f28087b4aa6efa529a56 + size: 20372 + timestamp: 1779261134447 +- conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.51.36231-h1b9f54f_37.conda + sha256: 4e83cc4e8c5513b5a0f174d9b0fe8f0ddc6adc71b28a289fe731415aef98c3e0 + md5: 96433009c79679ac14eed33479742be7 depends: - ucrt >=10.0.20348.0 - - vcomp14 14.51.36231 h1b9f54f_36 + - vcomp14 14.51.36231 h1b9f54f_37 constrains: - - vs2015_runtime 14.51.36231.* *_36 + - vs2015_runtime 14.51.36231.* *_37 license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime license_family: Proprietary - size: 739707 - timestamp: 1779061867466 -- conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_36.conda - sha256: bba3bcaf805eefd0aa14beb3d08a34a81d5d36e6890bd6ce33fcb968429a3bc7 - md5: d929e2c56341be7ae1bd9a77a9b535c2 + size: 742016 + timestamp: 1779261130367 +- conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.51.36231-h1b9f54f_37.conda + sha256: fec2c325c85505f3957f0bdb130418a09623bcaa9286239b15f8572a00d876a8 + md5: 776acae29085df3ad5f3123888ac7c1d depends: - ucrt >=10.0.20348.0 constrains: - - vs2015_runtime 14.51.36231.* *_36 + - vs2015_runtime 14.51.36231.* *_37 license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime license_family: Proprietary - size: 124124 - timestamp: 1779061850036 -- conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-21.3.3-pyhcf101f3_0.conda - sha256: 67a5a8b0976f11bd821909dd7ffd393ae32879ec22be622344277f04a1450aff - md5: a678237f7d0db44f8a20a21f03844613 - depends: - - python >=3.10 - - distlib >=0.3.7,<1 - - filelock <4,>=3.24.2 - - importlib-metadata >=6.6 - - platformdirs >=3.9.1,<5 - - python-discovery >=1 - - typing_extensions >=4.13.2 - - python - license: MIT - license_family: MIT - size: 5154878 - timestamp: 1778710685928 -- conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.51.36231-h84cd919_36.conda - sha256: 720d9bbbd0cd48f80d1b295fd6eb9f2e4accade35226470db97b6f09745df149 - md5: d4e73c2ddb98e1071de99e37f4499c6c + size: 124184 + timestamp: 1779261112360 +- conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.51.36231-h84cd919_37.conda + sha256: 527b7d257711d0e2335f89619120a7f3da172c19abdf8d2adace198394b2ddd7 + md5: 012c85e470c2f1f0f64078d6796f09a8 depends: - vc14_runtime >=14.51.36231 license: BSD-3-Clause license_family: BSD - size: 20247 - timestamp: 1779061872946 -- conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.7.0-pyhd8ed1ab_0.conda - sha256: 1ee2d8384972ecbf8630ce8a3ea9d16858358ad3e8566675295e66996d5352da - md5: eb9538b8e55069434a18547f43b96059 - depends: - - python >=3.10 - license: MIT - license_family: MIT - size: 82917 - timestamp: 1777744489106 -- conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-25.10.0-pyhd8ed1ab_0.conda - sha256: 21f6c8a20fe050d09bfda3fb0a9c3493936ce7d6e1b3b5f8b01319ee46d6c6f6 - md5: 6639b6b0d8b5a284f027a2003669aa65 - depends: - - python >=3.10 - license: BSD-3-Clause - license_family: BSD - size: 18987 - timestamp: 1761899393153 -- conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda - sha256: 19ff205e138bb056a46f9e3839935a2e60bd1cf01c8241a5e172a422fed4f9c6 - md5: 2841eb5bfc75ce15e9a0054b98dcd64d - depends: - - python >=3.9 - license: BSD-3-Clause - license_family: BSD - size: 15496 - timestamp: 1733236131358 -- conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.9.0-pyhd8ed1ab_0.conda - sha256: 42a2b61e393e61cdf75ced1f5f324a64af25f347d16c60b14117393a98656397 - md5: 2f1ed718fcd829c184a6d4f0f2e07409 - depends: - - python >=3.10 - license: Apache-2.0 - license_family: APACHE - size: 61391 - timestamp: 1759928175142 -- conda: 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 + size: 20347 + timestamp: 1779261134803 - conda: https://conda.anaconda.org/conda-forge/win-64/winpty-0.4.3-4.tar.bz2 sha256: 9df10c5b607dd30e05ba08cbd940009305c75db242476f4e845ea06008b0a283 md5: 1cee351bf20b830d991dbe0bc8cd7dfe license: MIT license_family: MIT size: 1176306 -- conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-6.0.5-hbf34205_0.conda - sha256: 8ec1b66ae38f285c7ffb189e0f833079c88aee7334223b1cba45a5210b021621 - md5: de79fb0836ea2840cca7719ec94a9958 - depends: - - libstdcxx >=14 - - libgcc >=14 - - __glibc >=2.17,<3.0.a0 - - nlohmann_json-abi ==3.12.0 - - libuuid >=2.42,<3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 411232 - timestamp: 1776328566268 -- conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-6.0.5-hebe015c_0.conda - sha256: ee62923babd9d4cec7dff146924eeb280dbcbe85f524243ca2f7286fa87cf1fa - md5: 6d4fc729f7f92af7338f2698a4a21f69 - depends: - - libcxx >=19 - - __osx >=11.0 - - nlohmann_json-abi ==3.12.0 - license: BSD-3-Clause - license_family: BSD - size: 317550 - timestamp: 1776328834132 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-6.0.5-h3feff0a_0.conda - sha256: 28167da09fe43ae1d7c65fd099bb7bd3b4d729336ae06a495a185f0dc34ac1f1 - md5: 6d7f82d33f7338e785d908bdf308fd25 - depends: - - libcxx >=19 - - __osx >=11.0 - - nlohmann_json-abi ==3.12.0 - license: BSD-3-Clause - license_family: BSD - size: 319780 - timestamp: 1776328966204 - conda: https://conda.anaconda.org/conda-forge/win-64/xeus-6.0.5-h477610d_0.conda sha256: d5667501daddcd02767dde4dba659373c295bafb9703a67a95c7e589b3952a13 md5: bb9947f7ff7dce8ce1951f23b448cdf7 @@ -13156,126 +13545,9 @@ packages: - ucrt >=10.0.20348.0 - nlohmann_json-abi ==3.12.0 license: BSD-3-Clause - license_family: BSD - size: 1370738 - timestamp: 1776328619108 -- conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-r-0.11.0-r44h55ad566_0.conda - sha256: 4be045f74c226fc2bf52bb2b7e6a8acbba4be08c7d04ccf2cc0f29c17c1c9503 - md5: 299bfb1a34e6da9f68955de259c4acf7 - depends: - - r-base - - r-cli - - r-evaluate - - r-glue - - r-irdisplay - - r-jsonlite - - r-r6 - - r-repr - - r-rlang - - __glibc >=2.17,<3.0.a0 - - libstdcxx >=14 - - libgcc >=14 - - r-base >=4.4,<4.5.0a0 - - xeus-zmq >=4.0.0,<4.1.0a0 - - nlohmann_json-abi ==3.12.0 - - xeus >=6.0.5,<6.1.0a0 - license: GPL-3.0-only - license_family: GPL - size: 353846 - timestamp: 1778071256541 -- conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-r-0.11.0-r45h92b7d08_0.conda - sha256: cf228de66d3349fa4903e3df1ae5c4ab49725e3226dedde980cce339995a80ae - md5: ec4be10699652501db1563293492a3ab - depends: - - r-base - - r-cli - - r-evaluate - - r-glue - - r-irdisplay - - r-jsonlite - - r-r6 - - r-repr - - r-rlang - - libstdcxx >=14 - - libgcc >=14 - - __glibc >=2.17,<3.0.a0 - - nlohmann_json-abi ==3.12.0 - - xeus-zmq >=4.0.0,<4.1.0a0 - - xeus >=6.0.5,<6.1.0a0 - - r-base >=4.5,<4.6.0a0 - license: GPL-3.0-only - license_family: GPL - size: 353722 - timestamp: 1778071249166 -- conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-r-0.11.0-r45h45edcf1_0.conda - sha256: a88367143e274ed8eb0429b84d840c4fdc2ac1bc8fbe224b66de043b410735b0 - md5: afdfa691fe70781600fc9943007c17cd - depends: - - r-base - - r-cli - - r-evaluate - - r-glue - - r-irdisplay - - r-jsonlite - - r-r6 - - r-repr - - r-rlang - - libcxx >=19 - - __osx >=11.0 - - nlohmann_json-abi ==3.12.0 - - xeus-zmq >=4.0.0,<4.1.0a0 - - r-base >=4.5,<4.6.0a0 - - xeus >=6.0.5,<6.1.0a0 - license: GPL-3.0-only - license_family: GPL - size: 329912 - timestamp: 1778071465040 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-r-0.11.0-r44he0f44cb_0.conda - sha256: adb10a83f9e15d27da05b7b4c80ccca6f1fc4ec5905d76613d0c7fe529a149d9 - md5: 949f64cf71d4b63705bb835a7615b23f - depends: - - r-base - - r-cli - - r-evaluate - - r-glue - - r-irdisplay - - r-jsonlite - - r-r6 - - r-repr - - r-rlang - - __osx >=11.0 - - libcxx >=19 - - r-base >=4.4,<4.5.0a0 - - nlohmann_json-abi ==3.12.0 - - xeus >=6.0.5,<6.1.0a0 - - xeus-zmq >=4.0.0,<4.1.0a0 - license: GPL-3.0-only - license_family: GPL - size: 339259 - timestamp: 1778071464252 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-r-0.11.0-r45he709540_0.conda - sha256: 7f4a39c06b50da020f98c6345fee616de5946219c7a15c7b42ff5ea03b0a31a1 - md5: e560fe2adcc9993ec970d4064b6a866f - depends: - - r-base - - r-cli - - r-evaluate - - r-glue - - r-irdisplay - - r-jsonlite - - r-r6 - - r-repr - - r-rlang - - __osx >=11.0 - - libcxx >=19 - - xeus-zmq >=4.0.0,<4.1.0a0 - - nlohmann_json-abi ==3.12.0 - - r-base >=4.5,<4.6.0a0 - - xeus >=6.0.5,<6.1.0a0 - license: GPL-3.0-only - license_family: GPL - size: 339309 - timestamp: 1778071382100 + license_family: BSD + size: 1370738 + timestamp: 1776328619108 - conda: https://conda.anaconda.org/conda-forge/win-64/xeus-r-0.11.0-r45h72f11de_0.conda sha256: e2a3f3fa5937c9864e10792bc70d0aad9f39a17481fd4c632bf46b988dc74764 md5: 1be0ff75ed08c0119b51d4f6775eea04 @@ -13300,50 +13572,6 @@ packages: license_family: GPL size: 598204 timestamp: 1778071295741 -- conda: https://conda.anaconda.org/conda-forge/linux-64/xeus-zmq-4.0.0-ha280ed4_0.conda - sha256: 440a9c83c432bfc8ffb55f3764d9e31325a8b912acc17ba3bf0ad8e86748c5a3 - md5: 1d7280c6f786768194eeaa6da2013c74 - depends: - - libstdcxx >=14 - - libgcc >=14 - - __glibc >=2.17,<3.0.a0 - - zeromq >=4.3.5,<4.4.0a0 - - nlohmann_json-abi ==3.12.0 - - openssl >=3.6.1,<4.0a0 - - xeus >=6.0.1,<6.1.0a0 - - libuuid >=2.41.3,<3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 508540 - timestamp: 1772664288344 -- conda: https://conda.anaconda.org/conda-forge/osx-64/xeus-zmq-4.0.0-h695af4d_0.conda - sha256: 0b031f558e183438dc431ad8339dca30e167c54510f85e776dd9a878399a0a5b - md5: ddebcd6dc700ce160da7e6c4b1cecaf2 - depends: - - __osx >=11.0 - - libcxx >=19 - - zeromq >=4.3.5,<4.4.0a0 - - nlohmann_json-abi ==3.12.0 - - xeus >=6.0.1,<6.1.0a0 - - openssl >=3.6.1,<4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 369456 - timestamp: 1772664500433 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xeus-zmq-4.0.0-h5cc99d8_0.conda - sha256: f0d101dd79940a0598bd975f34794a9096fbf9003a67133254814dcc22d4e581 - md5: 33db501dd01c34f5ba00cf0d5cbc869f - depends: - - __osx >=11.0 - - libcxx >=19 - - nlohmann_json-abi ==3.12.0 - - xeus >=6.0.1,<6.1.0a0 - - openssl >=3.6.1,<4.0a0 - - zeromq >=4.3.5,<4.4.0a0 - license: BSD-3-Clause - license_family: BSD - size: 385074 - timestamp: 1772664418822 - conda: https://conda.anaconda.org/conda-forge/win-64/xeus-zmq-4.0.0-hecdc818_0.conda sha256: 85c6444d08a8ed97a5eb64eb58367e319f629785a43c5bd36fccfa0a6d07ec76 md5: f8fd29907aceeedd313f13ab3923f58a @@ -13359,122 +13587,6 @@ packages: license_family: BSD size: 1707936 timestamp: 1772664314598 -- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda - sha256: c12396aabb21244c212e488bbdc4abcdef0b7404b15761d9329f5a4a39113c4b - md5: fb901ff28063514abb6046c9ec2c4a45 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - license: MIT - license_family: MIT - size: 58628 - timestamp: 1734227592886 -- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda - sha256: 277841c43a39f738927145930ff963c5ce4c4dacf66637a3d95d802a64173250 - md5: 1c74ff8c35dcadf952a16f752ca5aa49 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - - libuuid >=2.38.1,<3.0a0 - - xorg-libice >=1.1.2,<2.0a0 - license: MIT - license_family: MIT - size: 27590 - timestamp: 1741896361728 -- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.13-he1eb515_0.conda - sha256: 516d4060139dbb4de49a4dcdc6317a9353fb39ebd47789c14e6fe52de0deee42 - md5: 861fb6ccbc677bb9a9fb2468430b9c6a - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - libxcb >=1.17.0,<2.0a0 - license: MIT - license_family: MIT - size: 839652 - timestamp: 1770819209719 -- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.12-hb03c661_1.conda - sha256: 6bc6ab7a90a5d8ac94c7e300cc10beb0500eeba4b99822768ca2f2ef356f731b - md5: b2895afaf55bf96a8c8282a2e47a5de0 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - license: MIT - license_family: MIT - size: 15321 - timestamp: 1762976464266 -- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb03c661_1.conda - sha256: 25d255fb2eef929d21ff660a0c687d38a6d2ccfbcbf0cc6aa738b12af6e9d142 - md5: 1dafce8548e38671bea82e3f5c6ce22f - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - license: MIT - license_family: MIT - size: 20591 - timestamp: 1762976546182 -- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.7-hb03c661_0.conda - sha256: 79c60fc6acfd3d713d6340d3b4e296836a0f8c51602327b32794625826bd052f - md5: 34e54f03dfea3e7a2dcf1453a85f1085 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=14 - - xorg-libx11 >=1.8.12,<2.0a0 - license: MIT - license_family: MIT - size: 50326 - timestamp: 1769445253162 -- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda - sha256: 044c7b3153c224c6cedd4484dd91b389d2d7fd9c776ad0f4a34f099b3389f4a1 - md5: 96d57aba173e878a2089d5638016dc5e - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - - xorg-libx11 >=1.8.10,<2.0a0 - license: MIT - license_family: MIT - size: 33005 - timestamp: 1734229037766 -- conda: 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 -- conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda - sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad - md5: a77f85f77be52ff59391544bfe73390a - depends: - - libgcc >=14 - - __glibc >=2.17,<3.0.a0 - license: MIT - license_family: MIT - size: 85189 - timestamp: 1753484064210 -- conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h4132b18_3.conda - sha256: a335161bfa57b64e6794c3c354e7d49449b28b8d8a7c4ed02bf04c3f009953f9 - md5: a645bb90997d3fc2aea0adf6517059bd - depends: - - __osx >=10.13 - license: MIT - license_family: MIT - size: 79419 - timestamp: 1753484072608 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h925e9cb_3.conda - sha256: b03433b13d89f5567e828ea9f1a7d5c5d697bf374c28a4168d71e9464f5dafac - md5: 78a0fe9e9c50d2c381e8ee47e3ea437d - depends: - - __osx >=11.0 - license: MIT - license_family: MIT - size: 83386 - timestamp: 1753484079473 - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h6a83c73_3.conda sha256: 80ee68c1e7683a35295232ea79bcc87279d31ffeda04a1665efdb43cbd50a309 md5: 433699cba6602098ae8957a323da2664 @@ -13489,135 +13601,19 @@ packages: license_family: MIT size: 63944 timestamp: 1753484092156 -- conda: https://conda.anaconda.org/conda-forge/noarch/yjs-widgets-0.5.1-pyhcf101f3_0.conda - sha256: b71a470cb5205e0917746b705434c25c00a45227ba2044469bd17de9500fadd0 - md5: 0b9a1b6ac64d07fd43c783f0da66141e - depends: - - python >=3.10 - - python - license: BSD-3-Clause - size: 38600 - timestamp: 1779191003900 -- conda: https://conda.anaconda.org/conda-forge/noarch/yjs-widgets-collection-0.5.1-pyh09b8992_0.conda - sha256: a757728a193793799cfe58cee7f842fec86563127871de6f473506b7156114c6 - md5: 635c6d948f936e415717fee074df379a - depends: - - yjs-widgets ==0.5.1 pyhcf101f3_0 - - python >=3.10 - - python - license: BSD-3-Clause - size: 31544 - timestamp: 1779191003900 -- conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h41580af_10.conda - sha256: 325d370b28e2b9cc1f765c5b4cdb394c91a5d958fbd15da1a14607a28fee09f6 - md5: 755b096086851e1193f3b10347415d7c - depends: - - libgcc >=14 - - __glibc >=2.17,<3.0.a0 - - libstdcxx >=14 - - krb5 >=1.22.2,<1.23.0a0 - - libsodium >=1.0.21,<1.0.22.0a0 - license: MPL-2.0 - license_family: MOZILLA - size: 311150 - timestamp: 1772476812121 -- conda: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-h27d9b8f_10.conda - sha256: c7265cc5184897358af8b87c614288bc79645ef4340e01c2cd8469078dc56007 - md5: 1a774dcaff94c2dd98451a26a46714b8 - depends: - - libcxx >=19 - - __osx >=11.0 - - libsodium >=1.0.21,<1.0.22.0a0 - - krb5 >=1.22.2,<1.23.0a0 - license: MPL-2.0 - license_family: MOZILLA - size: 260841 - timestamp: 1772476936933 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-h4818236_10.conda - sha256: 2705360c72d4db8de34291493379ffd13b09fd594d0af20c9eefa8a3f060d868 - md5: e85dcd3bde2b10081cdcaeae15797506 - depends: - - __osx >=11.0 - - libcxx >=19 - - krb5 >=1.22.2,<1.23.0a0 - - libsodium >=1.0.21,<1.0.22.0a0 - license: MPL-2.0 - license_family: MOZILLA - size: 245246 - timestamp: 1772476886668 -- conda: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-h507cc87_10.conda - sha256: b8568dfde46edf3455458912ea6ffb760e4456db8230a0cf34ecbc557d3c275f - md5: 1ab0237036bfb14e923d6107473b0021 +- conda: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-h3a581c9_11.conda + sha256: c3e279cb309b153152fcdd6ee6d039ad996d563c849f06be39d85b8e3351df25 + md5: f016c0c5f9c01549b259146614786192 depends: - vc >=14.3,<15 - vc14_runtime >=14.44.35208 - ucrt >=10.0.20348.0 - - libsodium >=1.0.21,<1.0.22.0a0 + - libsodium >=1.0.22,<1.0.23.0a0 - krb5 >=1.22.2,<1.23.0a0 license: MPL-2.0 license_family: MOZILLA - size: 265665 - timestamp: 1772476832995 -- conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.23.1-pyhcf101f3_0.conda - sha256: 523616c0530d305d2216c2b4a8dfd3872628b60083255b89c5e0d8c42e738cca - md5: e1c36c6121a7c9c76f2f148f1e83b983 - depends: - - python >=3.10 - - python - license: MIT - license_family: MIT - size: 24461 - timestamp: 1776131454755 -- conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.2-hbb4bfdb_2.conda - sha256: 5dd728cebca2e96fa48d41661f1a35ed0ee3cb722669eee4e2d854c6745655eb - md5: 6276aa61ffc361cbf130d78cfb88a237 - depends: - - __osx >=11.0 - - libzlib 1.3.2 hbb4bfdb_2 - license: Zlib - license_family: Other - size: 92411 - timestamp: 1774073075482 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.3.2-h8088a28_2.conda - sha256: 8dd2ac25f0ba714263aac5832d46985648f4bfb9b305b5021d702079badc08d2 - md5: f1c0bce276210bed45a04949cfe8dc20 - depends: - - __osx >=11.0 - - libzlib 1.3.2 h8088a28_2 - license: Zlib - license_family: Other - size: 81123 - timestamp: 1774072974535 -- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda - sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7 - md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829 - depends: - - __glibc >=2.17,<3.0.a0 - - libzlib >=1.3.1,<2.0a0 - license: BSD-3-Clause - license_family: BSD - size: 601375 - timestamp: 1764777111296 -- conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.7-h3eecb57_6.conda - sha256: 47101a4055a70a4876ffc87b750ab2287b67eca793f21c8224be5e1ee6394d3f - md5: 727109b184d680772e3122f40136d5ca - depends: - - __osx >=10.13 - - libzlib >=1.3.1,<2.0a0 - license: BSD-3-Clause - license_family: BSD - size: 528148 - timestamp: 1764777156963 -- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.7-hbf9d68e_6.conda - sha256: 9485ba49e8f47d2b597dd399e88f4802e100851b27c21d7525625b0b4025a5d9 - md5: ab136e4c34e97f34fb621d2592a393d8 - depends: - - __osx >=11.0 - - libzlib >=1.3.1,<2.0a0 - license: BSD-3-Clause - license_family: BSD - size: 433413 - timestamp: 1764777166076 + size: 265717 + timestamp: 1779124031378 - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.7-h534d264_6.conda sha256: 368d8628424966fd8f9c8018326a9c779e06913dd39e646cf331226acc90e5b2 md5: 053b84beec00b71ea8ff7a4f84b55207 diff --git a/pixi.toml b/pixi.toml index c91b8c3..de892d8 100644 --- a/pixi.toml +++ b/pixi.toml @@ -10,7 +10,7 @@ dev = { features = ["test", "dev"], solve-group = "default" } # Runtime dependencies — present in every environment. [dependencies] r-base = ">=4.1" -r-yr = ">=0.1.2" +r-yr = ">=0.1.4" xeus-r = ">=0.11.0" # hera r-r6 = "*" @@ -42,7 +42,7 @@ depends-on = ["install-ywidgets"] [feature.dev.tasks] # Document -doc = "Rscript -e 'devtools::document()'" +doc = "rm -rf man/ && Rscript -e 'devtools::document()'" # Formatters fmt-air = "air format R/ tests/" fmt-tombi = "tombi format" diff --git a/tests/testthat/test-reactive.R b/tests/testthat/test-reactive.R index 2b31ea8..55dc72d 100644 --- a/tests/testthat/test-reactive.R +++ b/tests/testthat/test-reactive.R @@ -31,10 +31,10 @@ test_that("Reactive set updates the value", { expect_equal(r$get(), 2) }) -test_that("Reactive emits signal when value changes", { +test_that("Reactive emits local_changed when value changes", { r <- Reactive$new(1) fired <- NULL - r$signal$connect(function(v) fired <<- v) + r$local_changed$connect(function(v) fired <<- v) r$set(2) expect_equal(fired, 2) }) @@ -42,11 +42,22 @@ test_that("Reactive emits signal when value changes", { test_that("Reactive does not emit when value is identical", { r <- Reactive$new(1) count <- 0L - r$signal$connect(function(v) count <<- count + 1L) + r$local_changed$connect(function(v) count <<- count + 1L) r$set(1) expect_equal(count, 0L) }) +test_that("Reactive remote_changed is NULL when storage has none", { + r <- Reactive$new(1) + expect_null(r$remote_changed) +}) + +test_that("Reactive re-exposes storage remote_changed signal", { + s <- RemoteLocalStorage$new(1) + r <- Reactive$new(storage = s) + expect_identical(r$remote_changed, s$remote_changed) +}) + test_that("Reactive delegates reads and updates to a custom storage backend", { log <- c() mock_storage <- list( diff --git a/tests/testthat/test-widget.R b/tests/testthat/test-widget.R index 5ac2e49..be5e56e 100644 --- a/tests/testthat/test-widget.R +++ b/tests/testthat/test-widget.R @@ -41,6 +41,23 @@ test_that("Widget callback does not fire when value is unchanged", { expect_equal(count, 0L) }) +test_that("Widget stores Prelim attribute values as CRDT types", { + W <- make_widget("W", body = yr::Prelim$text("hi")) + w <- W$new() + expect_true(inherits(w$body, "TextRef")) + expect_equal( + w$ydoc$with_transaction(function(t) w$body$get_string(t)), + "hi" + ) + + w$body <- yr::Prelim$text("bye") + expect_true(inherits(w$body, "TextRef")) + expect_equal( + w$ydoc$with_transaction(function(t) w$body$get_string(t)), + "bye" + ) +}) + test_that("Widget join creates widget with field values from source", { W <- make_widget("W", foo = "hello", bar = 42L) local <- W$new() @@ -71,52 +88,109 @@ make_wire <- function() { ) } -test_that("manual wire delivers updates between widgets", { - W <- make_widget("W", foo = "", bar = "") - local <- W$new() - remote <- W$join(local) - - l_to_r <- make_wire() - r_to_l <- make_wire() +# Read the current string content from a Prelim-text-backed attribute. Works +# uniformly across flavors because both YAttrWidget (with Prelim$text default) +# and YRootWidget expose the attribute as a TextRef. +read_text <- function(w, name) { + ref <- w[[name]] + w$ydoc$with_transaction(function(t) ref$get_string(t)) +} - # Producers: a widget's local-origin changes are pushed as v1 update bytes. - encode_into <- function(wire) { - function(trans, event) { - origin <- trans$origin() - if (!is.null(origin) && origin$equal(REMOTE_ORIGIN)) { - return() +# Per-flavor write: YAttrWidget supports both assign-style (replacing the +# attrs-map slot with a fresh Prelim text) and in-place ref mutation; +# YRootWidget's active binding is read-only, so callers must mutate the ref. +mutate_in_place <- function(w, name, value) { + ref <- w[[name]] + w$ydoc$with_transaction( + function(t) { + len <- ref$len(t) + if (len > 0L) { + ref$remove_range(t, 0L, len) } - diff <- trans$encode_diff_v1(event$before_state()) - if (length(diff) > 0L) wire$send(diff) + ref$push(t, value) + }, + mutable = TRUE, + origin = LOCAL_ORIGIN + ) +} + +flavors <- list( + list( + name = "YAttrWidget (assign)", + inherit = YAttrWidget, + write = function(w, name, value) { + # Full replace via setter + w[[name]] <- yr::Prelim$text(value) } - } - local$ydoc$observe_transaction_cleanup(encode_into(l_to_r), key = 1L) - remote$ydoc$observe_transaction_cleanup(encode_into(r_to_l), key = 1L) - - # Consumers: incoming bytes are applied to the peer with REMOTE_ORIGIN. - apply_into <- function(widget) { - function(diff) { - widget$ydoc$with_transaction( - function(t) t$apply_update_v1(diff), - mutable = TRUE, - origin = REMOTE_ORIGIN + ), + list( + name = "YAttrWidget (in-place)", + inherit = YAttrWidget, + write = mutate_in_place + ), + list( + name = "YRootWidget", + inherit = YRootWidget, + write = mutate_in_place + ) +) + +for (f in flavors) { + test_that( + paste0("manual wire delivers updates between widgets (", f$name, ")"), + { + W <- make_widget( + "W", + foo = yr::Prelim$text(""), + bar = yr::Prelim$text(""), + inherit = f$inherit ) + local <- W$new() + remote <- W$join(local) + + l_to_r <- make_wire() + r_to_l <- make_wire() + + # Producers: a widget's local-origin changes are pushed as v1 update bytes. + encode_into <- function(wire) { + function(trans, event) { + origin <- trans$origin() + if (!is.null(origin) && origin$equal(REMOTE_ORIGIN)) { + return() + } + diff <- trans$encode_diff_v1(event$before_state()) + if (length(diff) > 0L) wire$send(diff) + } + } + local$ydoc$observe_transaction_cleanup(encode_into(l_to_r), key = 1L) + remote$ydoc$observe_transaction_cleanup(encode_into(r_to_l), key = 1L) + + # Consumers: incoming bytes are applied to the peer with REMOTE_ORIGIN. + apply_into <- function(widget) { + function(diff) { + widget$ydoc$with_transaction( + function(t) t$apply_update_v1(diff), + mutable = TRUE, + origin = REMOTE_ORIGIN + ) + } + } + l_to_r$subscribe(apply_into(remote)) + r_to_l$subscribe(apply_into(local)) + + f$write(local, "foo", "synced") + expect_equal(read_text(remote, "foo"), "") # not delivered yet + expect_equal(l_to_r$pending(), 1L) + + l_to_r$flush() + expect_equal(read_text(remote, "foo"), "synced") + expect_equal(l_to_r$pending(), 0L) + expect_equal(r_to_l$pending(), 0L) # REMOTE_ORIGIN apply does not echo back + + f$write(remote, "bar", "also-synced") + expect_equal(read_text(local, "bar"), "") + r_to_l$flush() + expect_equal(read_text(local, "bar"), "also-synced") } - } - l_to_r$subscribe(apply_into(remote)) - r_to_l$subscribe(apply_into(local)) - - local$foo <- "synced" - expect_equal(remote$foo, "") # not delivered yet - expect_equal(l_to_r$pending(), 1L) - - l_to_r$flush() - expect_equal(remote$foo, "synced") - expect_equal(l_to_r$pending(), 0L) - expect_equal(r_to_l$pending(), 0L) # REMOTE_ORIGIN apply does not echo back - - remote$bar <- "also-synced" - expect_equal(local$bar, "") - r_to_l$flush() - expect_equal(local$bar, "also-synced") -}) + ) +}